⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sa1100fb.c

📁 Linux环境下视频显示卡设备的驱动程序源代码
💻 C
📖 第 1 页 / 共 3 页
字号:
		val |= ((blue >> 12) & 0x00f);		if (regno == 0)			val |= palette_pbs(&fbi->fb.var);		fbi->palette_cpu[regno] = val;		ret = 0;	}	return ret;}static intsa1100fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,		   u_int trans, struct fb_info *info){	struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;	unsigned int val;	int ret = 1;	/*	 * If inverse mode was selected, invert all the colours	 * rather than the register number.  The register number	 * is what you poke into the framebuffer to produce the	 * colour you requested.	 */	if (fbi->cmap_inverse) {		red   = 0xffff - red;		green = 0xffff - green;		blue  = 0xffff - blue;	}	/*	 * If greyscale is true, then we convert the RGB value	 * to greyscale no mater what visual we are using.	 */	if (fbi->fb.var.grayscale)		red = green = blue = (19595 * red + 38470 * green +					7471 * blue) >> 16;	switch (fbi->fb.fix.visual) {	case FB_VISUAL_TRUECOLOR:		/*		 * 12 or 16-bit True Colour.  We encode the RGB value		 * according to the RGB bitfield information.		 */		if (regno < 16) {			u32 *pal = fbi->fb.pseudo_palette;			val  = chan_to_field(red, &fbi->fb.var.red);			val |= chan_to_field(green, &fbi->fb.var.green);			val |= chan_to_field(blue, &fbi->fb.var.blue);			pal[regno] = val;			ret = 0;		}		break;	case FB_VISUAL_STATIC_PSEUDOCOLOR:	case FB_VISUAL_PSEUDOCOLOR:		ret = sa1100fb_setpalettereg(regno, red, green, blue, trans, info);		break;	}	return ret;}#ifdef CONFIG_CPU_FREQ/* *  sa1100fb_display_dma_period() *    Calculate the minimum period (in picoseconds) between two DMA *    requests for the LCD controller.  If we hit this, it means we're *    doing nothing but LCD DMA. */static inline unsigned int sa1100fb_display_dma_period(struct fb_var_screeninfo *var){	/*	 * Period = pixclock * bits_per_byte * bytes_per_transfer	 *		/ memory_bits_per_pixel;	 */	return var->pixclock * 8 * 16 / var->bits_per_pixel;}#endif/* *  sa1100fb_check_var(): *    Round up in the following order: bits_per_pixel, xres, *    yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale, *    bitfields, horizontal timing, vertical timing. */static intsa1100fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info){	struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;	int rgbidx;	if (var->xres < MIN_XRES)		var->xres = MIN_XRES;	if (var->yres < MIN_YRES)		var->yres = MIN_YRES;	if (var->xres > fbi->max_xres)		var->xres = fbi->max_xres;	if (var->yres > fbi->max_yres)		var->yres = fbi->max_yres;	var->xres_virtual = max(var->xres_virtual, var->xres);	var->yres_virtual = max(var->yres_virtual, var->yres);	DPRINTK("var->bits_per_pixel=%d\n", var->bits_per_pixel);	switch (var->bits_per_pixel) {	case 4:		rgbidx = RGB_8;		break;	case 8:		rgbidx = RGB_8;		break;	case 16:		rgbidx = RGB_16;		break;	default:		return -EINVAL;	}	/*	 * Copy the RGB parameters for this display	 * from the machine specific parameters.	 */	var->red    = fbi->rgb[rgbidx]->red;	var->green  = fbi->rgb[rgbidx]->green;	var->blue   = fbi->rgb[rgbidx]->blue;	var->transp = fbi->rgb[rgbidx]->transp;	DPRINTK("RGBT length = %d:%d:%d:%d\n",		var->red.length, var->green.length, var->blue.length,		var->transp.length);	DPRINTK("RGBT offset = %d:%d:%d:%d\n",		var->red.offset, var->green.offset, var->blue.offset,		var->transp.offset);#ifdef CONFIG_CPU_FREQ	printk(KERN_DEBUG "dma period = %d ps, clock = %d kHz\n",		sa1100fb_display_dma_period(var),		cpufreq_get(smp_processor_id()));#endif	return 0;}static inline void sa1100fb_set_truecolor(u_int is_true_color){	if (machine_is_assabet()) {#if 1		// phase 4 or newer Assabet's		if (is_true_color)			ASSABET_BCR_set(ASSABET_BCR_LCD_12RGB);		else			ASSABET_BCR_clear(ASSABET_BCR_LCD_12RGB);#else		// older Assabet's		if (is_true_color)			ASSABET_BCR_clear(ASSABET_BCR_LCD_12RGB);		else			ASSABET_BCR_set(ASSABET_BCR_LCD_12RGB);#endif	}}/* * sa1100fb_set_par(): *	Set the user defined part of the display for the specified console */static int sa1100fb_set_par(struct fb_info *info){	struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;	struct fb_var_screeninfo *var = &info->var;	unsigned long palette_mem_size;	DPRINTK("set_par\n");	if (var->bits_per_pixel == 16)		fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;	else if (!fbi->cmap_static)		fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;	else {		/*		 * Some people have weird ideas about wanting static		 * pseudocolor maps.  I suspect their user space		 * applications are broken.		 */		fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;	}	fbi->fb.fix.line_length = var->xres_virtual *				  var->bits_per_pixel / 8;	fbi->palette_size = var->bits_per_pixel == 8 ? 256 : 16;	palette_mem_size = fbi->palette_size * sizeof(u16);	DPRINTK("palette_mem_size = 0x%08lx\n", (u_long) palette_mem_size);	fbi->palette_cpu = (u16 *)(fbi->map_cpu + PAGE_SIZE - palette_mem_size);	fbi->palette_dma = fbi->map_dma + PAGE_SIZE - palette_mem_size;	/*	 * Set (any) board control register to handle new color depth	 */	sa1100fb_set_truecolor(fbi->fb.fix.visual == FB_VISUAL_TRUECOLOR);	sa1100fb_activate_var(var, fbi);	return 0;}#if 0static intsa1100fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,		  struct fb_info *info){	struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;	/*	 * Make sure the user isn't doing something stupid.	 */	if (!kspc && (fbi->fb.var.bits_per_pixel == 16 || fbi->cmap_static))		return -EINVAL;	return gen_set_cmap(cmap, kspc, con, info);}#endif/* * Formal definition of the VESA spec: *  On *  	This refers to the state of the display when it is in full operation *  Stand-By *  	This defines an optional operating state of minimal power reduction with *  	the shortest recovery time *  Suspend *  	This refers to a level of power management in which substantial power *  	reduction is achieved by the display.  The display can have a longer  *  	recovery time from this state than from the Stand-by state *  Off *  	This indicates that the display is consuming the lowest level of power *  	and is non-operational. Recovery from this state may optionally require *  	the user to manually power on the monitor * *  Now, the fbdev driver adds an additional state, (blank), where they *  turn off the video (maybe by colormap tricks), but don't mess with the *  video itself: think of it semantically between on and Stand-By. * *  So here's what we should do in our fbdev blank routine: * *  	VESA_NO_BLANKING (mode 0)	Video on,  front/back light on *  	VESA_VSYNC_SUSPEND (mode 1)  	Video on,  front/back light off *  	VESA_HSYNC_SUSPEND (mode 2)  	Video on,  front/back light off *  	VESA_POWERDOWN (mode 3)		Video off, front/back light off * *  This will match the matrox implementation. *//* * sa1100fb_blank(): *	Blank the display by setting all palette values to zero.  Note, the  * 	12 and 16 bpp modes don't really use the palette, so this will not *      blank the display in all modes.   */static int sa1100fb_blank(int blank, struct fb_info *info){	struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;	int i;	DPRINTK("sa1100fb_blank: blank=%d\n", blank);	switch (blank) {	case FB_BLANK_POWERDOWN:	case FB_BLANK_VSYNC_SUSPEND:	case FB_BLANK_HSYNC_SUSPEND:	case FB_BLANK_NORMAL:		if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||		    fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)			for (i = 0; i < fbi->palette_size; i++)				sa1100fb_setpalettereg(i, 0, 0, 0, 0, info);		sa1100fb_schedule_work(fbi, C_DISABLE);		break;	case FB_BLANK_UNBLANK:		if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||		    fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)			fb_set_cmap(&fbi->fb.cmap, info);		sa1100fb_schedule_work(fbi, C_ENABLE);	}	return 0;}static int sa1100fb_mmap(struct fb_info *info,			 struct vm_area_struct *vma){	struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;	unsigned long start, len, off = vma->vm_pgoff << PAGE_SHIFT;	if (off < info->fix.smem_len) {		vma->vm_pgoff += 1; /* skip over the palette */		return dma_mmap_writecombine(fbi->dev, vma, fbi->map_cpu,					     fbi->map_dma, fbi->map_size);	}	start = info->fix.mmio_start;	len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);	if ((vma->vm_end - vma->vm_start + off) > len)		return -EINVAL;	off += start & PAGE_MASK;	vma->vm_pgoff = off >> PAGE_SHIFT;	vma->vm_flags |= VM_IO;	vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);	return io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,				   vma->vm_end - vma->vm_start,				   vma->vm_page_prot);}static struct fb_ops sa1100fb_ops = {	.owner		= THIS_MODULE,	.fb_check_var	= sa1100fb_check_var,	.fb_set_par	= sa1100fb_set_par,//	.fb_set_cmap	= sa1100fb_set_cmap,	.fb_setcolreg	= sa1100fb_setcolreg,	.fb_fillrect	= cfb_fillrect,	.fb_copyarea	= cfb_copyarea,	.fb_imageblit	= cfb_imageblit,	.fb_blank	= sa1100fb_blank,	.fb_mmap	= sa1100fb_mmap,};/* * Calculate the PCD value from the clock rate (in picoseconds). * We take account of the PPCR clock setting. */static inline unsigned int get_pcd(unsigned int pixclock, unsigned int cpuclock){	unsigned int pcd = cpuclock / 100;	pcd *= pixclock;	pcd /= 10000000;	return pcd + 1;	/* make up for integer math truncations */}/* * sa1100fb_activate_var(): *	Configures LCD Controller based on entries in var parameter.  Settings are       *	only written to the controller if changes were made.   */static int sa1100fb_activate_var(struct fb_var_screeninfo *var, struct sa1100fb_info *fbi){	struct sa1100fb_lcd_reg new_regs;	u_int half_screen_size, yres, pcd;	u_long flags;	DPRINTK("Configuring SA1100 LCD\n");	DPRINTK("var: xres=%d hslen=%d lm=%d rm=%d\n",		var->xres, var->hsync_len,		var->left_margin, var->right_margin);	DPRINTK("var: yres=%d vslen=%d um=%d bm=%d\n",		var->yres, var->vsync_len,		var->upper_margin, var->lower_margin);#if DEBUG_VAR	if (var->xres < 16        || var->xres > 1024)		printk(KERN_ERR "%s: invalid xres %d\n",			fbi->fb.fix.id, var->xres);	if (var->hsync_len < 1    || var->hsync_len > 64)		printk(KERN_ERR "%s: invalid hsync_len %d\n",			fbi->fb.fix.id, var->hsync_len);	if (var->left_margin < 1  || var->left_margin > 255)		printk(KERN_ERR "%s: invalid left_margin %d\n",			fbi->fb.fix.id, var->left_margin);	if (var->right_margin < 1 || var->right_margin > 255)		printk(KERN_ERR "%s: invalid right_margin %d\n",			fbi->fb.fix.id, var->right_margin);	if (var->yres < 1         || var->yres > 1024)		printk(KERN_ERR "%s: invalid yres %d\n",			fbi->fb.fix.id, var->yres);	if (var->vsync_len < 1    || var->vsync_len > 64)		printk(KERN_ERR "%s: invalid vsync_len %d\n",			fbi->fb.fix.id, var->vsync_len);	if (var->upper_margin < 0 || var->upper_margin > 255)		printk(KERN_ERR "%s: invalid upper_margin %d\n",			fbi->fb.fix.id, var->upper_margin);	if (var->lower_margin < 0 || var->lower_margin > 255)		printk(KERN_ERR "%s: invalid lower_margin %d\n",			fbi->fb.fix.id, var->lower_margin);#endif	new_regs.lccr0 = fbi->lccr0 |		LCCR0_LEN | LCCR0_LDM | LCCR0_BAM |		LCCR0_ERM | LCCR0_LtlEnd | LCCR0_DMADel(0);	new_regs.lccr1 =		LCCR1_DisWdth(var->xres) +		LCCR1_HorSnchWdth(var->hsync_len) +		LCCR1_BegLnDel(var->left_margin) +		LCCR1_EndLnDel(var->right_margin);	/*	 * If we have a dual scan LCD, then we need to halve	 * the YRES parameter.	 */	yres = var->yres;	if (fbi->lccr0 & LCCR0_Dual)		yres /= 2;	new_regs.lccr2 =		LCCR2_DisHght(yres) +		LCCR2_VrtSnchWdth(var->vsync_len) +		LCCR2_BegFrmDel(var->upper_margin) +		LCCR2_EndFrmDel(var->lower_margin);	pcd = get_pcd(var->pixclock, cpufreq_get(0));	new_regs.lccr3 = LCCR3_PixClkDiv(pcd) | fbi->lccr3 |		(var->sync & FB_SYNC_HOR_HIGH_ACT ? LCCR3_HorSnchH : LCCR3_HorSnchL) |		(var->sync & FB_SYNC_VERT_HIGH_ACT ? LCCR3_VrtSnchH : LCCR3_VrtSnchL);	DPRINTK("nlccr0 = 0x%08lx\n", new_regs.lccr0);	DPRINTK("nlccr1 = 0x%08lx\n", new_regs.lccr1);	DPRINTK("nlccr2 = 0x%08lx\n", new_regs.lccr2);	DPRINTK("nlccr3 = 0x%08lx\n", new_regs.lccr3);	half_screen_size = var->bits_per_pixel;	half_screen_size = half_screen_size * var->xres * var->yres / 16;	/* Update shadow copy atomically */	local_irq_save(flags);	fbi->dbar1 = fbi->palette_dma;	fbi->dbar2 = fbi->screen_dma + half_screen_size;	fbi->reg_lccr0 = new_regs.lccr0;	fbi->reg_lccr1 = new_regs.lccr1;	fbi->reg_lccr2 = new_regs.lccr2;	fbi->reg_lccr3 = new_regs.lccr3;	local_irq_restore(flags);	/*	 * Only update the registers if the controller is enabled	 * and something has changed.	 */	if ((LCCR0 != fbi->reg_lccr0)       || (LCCR1 != fbi->reg_lccr1) ||	    (LCCR2 != fbi->reg_lccr2)       || (LCCR3 != fbi->reg_lccr3) ||	    (DBAR1 != fbi->dbar1) || (DBAR2 != fbi->dbar2))		sa1100fb_schedule_work(fbi, C_REENABLE);	return 0;}/* * NOTE!  The following functions are purely helpers for set_ctrlr_state. * Do not call them directly; set_ctrlr_state does the correct serialisation * to ensure that things happen in the right way 100% of time time. *	-- rmk */static inline void __sa1100fb_backlight_power(struct sa1100fb_info *fbi, int on){	DPRINTK("backlight o%s\n", on ? "n" : "ff");	if (sa1100fb_backlight_power)		sa1100fb_backlight_power(on);}static inline void __sa1100fb_lcd_power(struct sa1100fb_info *fbi, int on){	DPRINTK("LCD power o%s\n", on ? "n" : "ff");	if (sa1100fb_lcd_power)		sa1100fb_lcd_power(on);}static void sa1100fb_setup_gpio(struct sa1100fb_info *fbi){	u_int mask = 0;	/*	 * Enable GPIO<9:2> for LCD use if:	 *  1. Active display, or	 *  2. Color Dual Passive display	 *	 * see table 11.8 on page 11-27 in the SA1100 manual	 *   -- Erik.	 *	 * SA1110 spec update nr. 25 says we can and should	 * clear LDD15 to 12 for 4 or 8bpp modes with active	 * panels.  	 */	if ((fbi->reg_lccr0 & LCCR0_CMS) == LCCR0_Color &&	    (fbi->reg_lccr0 & (LCCR0_Dual|LCCR0_Act)) != 0) {		mask = GPIO_LDD11 | GPIO_LDD10 | GPIO_LDD9  | GPIO_LDD8;		if (fbi->fb.var.bits_per_pixel > 8 ||		    (fbi->reg_lccr0 & (LCCR0_Dual|LCCR0_Act)) == LCCR0_Dual)			mask |= GPIO_LDD15 | GPIO_LDD14 | GPIO_LDD13 | GPIO_LDD12;	}	if (mask) {		GPDR |= mask;		GAFR |= mask;	}}static void sa1100fb_enable_controller(struct sa1100fb_info *fbi){	DPRINTK("Enabling LCD controller\n");	/*	 * Make sure the mode bits are present in the first palette entry	 */	fbi->palette_cpu[0] &= 0xcfff;	fbi->palette_cpu[0] |= palette_pbs(&fbi->fb.var);	/* Sequence from 11.7.10 */	LCCR3 = fbi->reg_lccr3;	LCCR2 = fbi->reg_lccr2;	LCCR1 = fbi->reg_lccr1;	LCCR0 = fbi->reg_lccr0 & ~LCCR0_LEN;	DBAR1 = fbi->dbar1;	DBAR2 = fbi->dbar2;	LCCR0 |= LCCR0_LEN;	if (machine_is_shannon()) {		GPDR |= SHANNON_GPIO_DISP_EN;		GPSR |= SHANNON_GPIO_DISP_EN;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -