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

📄 asiliantfb.c

📁 Linux环境下视频显示卡设备的驱动程序源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * drivers/video/asiliantfb.c *  frame buffer driver for Asiliant 69000 chip *  Copyright (C) 2001-2003 Saito.K & Jeanne * *  from driver/video/chipsfb.c and, * *  drivers/video/asiliantfb.c -- frame buffer device for *  Asiliant 69030 chip (formerly Intel, formerly Chips & Technologies) *  Author: apc@agelectronics.co.uk *  Copyright (C) 2000 AG Electronics *  Note: the data sheets don't seem to be available from Asiliant. *  They are available by searching developer.intel.com, but are not otherwise *  linked to. * *  This driver should be portable with minimal effort to the 69000 display *  chip, and to the twin-display mode of the 69030. *  Contains code from Thomas Hhenleitner <th@visuelle-maschinen.de> (thanks) * *  Derived from the CT65550 driver chipsfb.c: *  Copyright (C) 1998 Paul Mackerras *  ...which was derived from the Powermac "chips" driver: *  Copyright (C) 1997 Fabio Riccardi. *  And from the frame buffer device for Open Firmware-initialized devices: *  Copyright (C) 1997 Geert Uytterhoeven. * *  This file is subject to the terms and conditions of the GNU General Public *  License. See the file COPYING in the main directory of this archive for *  more details. */#include <linux/module.h>#include <linux/kernel.h>#include <linux/errno.h>#include <linux/string.h>#include <linux/mm.h>#include <linux/slab.h>#include <linux/vmalloc.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/fb.h>#include <linux/init.h>#include <linux/pci.h>#include <asm/io.h>/* Built in clock of the 69030 */static const unsigned Fref = 14318180;#define mmio_base (p->screen_base + 0x400000)#define mm_write_ind(num, val, ap, dp)	do { \	writeb((num), mmio_base + (ap)); writeb((val), mmio_base + (dp)); \} while (0)static void mm_write_xr(struct fb_info *p, u8 reg, u8 data){	mm_write_ind(reg, data, 0x7ac, 0x7ad);}#define write_xr(num, val)	mm_write_xr(p, num, val)static void mm_write_fr(struct fb_info *p, u8 reg, u8 data){	mm_write_ind(reg, data, 0x7a0, 0x7a1);}#define write_fr(num, val)	mm_write_fr(p, num, val)static void mm_write_cr(struct fb_info *p, u8 reg, u8 data){	mm_write_ind(reg, data, 0x7a8, 0x7a9);}#define write_cr(num, val)	mm_write_cr(p, num, val)static void mm_write_gr(struct fb_info *p, u8 reg, u8 data){	mm_write_ind(reg, data, 0x79c, 0x79d);}#define write_gr(num, val)	mm_write_gr(p, num, val)static void mm_write_sr(struct fb_info *p, u8 reg, u8 data){	mm_write_ind(reg, data, 0x788, 0x789);}#define write_sr(num, val)	mm_write_sr(p, num, val)static void mm_write_ar(struct fb_info *p, u8 reg, u8 data){	readb(mmio_base + 0x7b4);	mm_write_ind(reg, data, 0x780, 0x780);}#define write_ar(num, val)	mm_write_ar(p, num, val)static int asiliantfb_pci_init(struct pci_dev *dp, const struct pci_device_id *);static int asiliantfb_check_var(struct fb_var_screeninfo *var,				struct fb_info *info);static int asiliantfb_set_par(struct fb_info *info);static int asiliantfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,				u_int transp, struct fb_info *info);static struct fb_ops asiliantfb_ops = {	.owner		= THIS_MODULE,	.fb_check_var	= asiliantfb_check_var,	.fb_set_par	= asiliantfb_set_par,	.fb_setcolreg	= asiliantfb_setcolreg,	.fb_fillrect	= cfb_fillrect,	.fb_copyarea	= cfb_copyarea,	.fb_imageblit	= cfb_imageblit,};/* Calculate the ratios for the dot clocks without using a single long long * value */static void asiliant_calc_dclk2(u32 *ppixclock, u8 *dclk2_m, u8 *dclk2_n, u8 *dclk2_div){	unsigned pixclock = *ppixclock;	unsigned Ftarget = 1000000 * (1000000 / pixclock);	unsigned n;	unsigned best_error = 0xffffffff;	unsigned best_m = 0xffffffff,	         best_n = 0xffffffff;	unsigned ratio;	unsigned remainder;	unsigned char divisor = 0;	/* Calculate the frequency required. This is hard enough. */	ratio = 1000000 / pixclock;	remainder = 1000000 % pixclock;	Ftarget = 1000000 * ratio + (1000000 * remainder) / pixclock;	while (Ftarget < 100000000) {		divisor += 0x10;		Ftarget <<= 1;	}	ratio = Ftarget / Fref;	remainder = Ftarget % Fref;	/* This expresses the constraint that 150kHz <= Fref/n <= 5Mhz,	 * together with 3 <= n <= 257. */	for (n = 3; n <= 257; n++) {		unsigned m = n * ratio + (n * remainder) / Fref;		/* 3 <= m <= 257 */		if (m >= 3 && m <= 257) {			unsigned new_error = ((Ftarget * n) - (Fref * m)) >= 0 ?					       ((Ftarget * n) - (Fref * m)) : ((Fref * m) - (Ftarget * n));			if (new_error < best_error) {				best_n = n;				best_m = m;				best_error = new_error;			}		}		/* But if VLD = 4, then 4m <= 1028 */		else if (m <= 1028) {			/* remember there are still only 8-bits of precision in m, so			 * avoid over-optimistic error calculations */			unsigned new_error = ((Ftarget * n) - (Fref * (m & ~3))) >= 0 ?					       ((Ftarget * n) - (Fref * (m & ~3))) : ((Fref * (m & ~3)) - (Ftarget * n));			if (new_error < best_error) {				best_n = n;				best_m = m;				best_error = new_error;			}		}	}	if (best_m > 257)		best_m >>= 2;	/* divide m by 4, and leave VCO loop divide at 4 */	else		divisor |= 4;	/* or set VCO loop divide to 1 */	*dclk2_m = best_m - 2;	*dclk2_n = best_n - 2;	*dclk2_div = divisor;	*ppixclock = pixclock;	return;}static void asiliant_set_timing(struct fb_info *p){	unsigned hd = p->var.xres / 8;	unsigned hs = (p->var.xres + p->var.right_margin) / 8;       	unsigned he = (p->var.xres + p->var.right_margin + p->var.hsync_len) / 8;	unsigned ht = (p->var.left_margin + p->var.xres + p->var.right_margin + p->var.hsync_len) / 8;	unsigned vd = p->var.yres;	unsigned vs = p->var.yres + p->var.lower_margin;	unsigned ve = p->var.yres + p->var.lower_margin + p->var.vsync_len;	unsigned vt = p->var.upper_margin + p->var.yres + p->var.lower_margin + p->var.vsync_len;	unsigned wd = (p->var.xres_virtual * ((p->var.bits_per_pixel+7)/8)) / 8;	if ((p->var.xres == 640) && (p->var.yres == 480) && (p->var.pixclock == 39722)) {	  write_fr(0x01, 0x02);  /* LCD */	} else {	  write_fr(0x01, 0x01);  /* CRT */	}	write_cr(0x11, (ve - 1) & 0x0f);	write_cr(0x00, (ht - 5) & 0xff);	write_cr(0x01, hd - 1);	write_cr(0x02, hd);	write_cr(0x03, ((ht - 1) & 0x1f) | 0x80);	write_cr(0x04, hs);	write_cr(0x05, (((ht - 1) & 0x20) <<2) | (he & 0x1f));	write_cr(0x3c, (ht - 1) & 0xc0);	write_cr(0x06, (vt - 2) & 0xff);	write_cr(0x30, (vt - 2) >> 8);	write_cr(0x07, 0x00);	write_cr(0x08, 0x00);	write_cr(0x09, 0x00);	write_cr(0x10, (vs - 1) & 0xff);	write_cr(0x32, ((vs - 1) >> 8) & 0xf);	write_cr(0x11, ((ve - 1) & 0x0f) | 0x80);	write_cr(0x12, (vd - 1) & 0xff);	write_cr(0x31, ((vd - 1) & 0xf00) >> 8);	write_cr(0x13, wd & 0xff);	write_cr(0x41, (wd & 0xf00) >> 8);	write_cr(0x15, (vs - 1) & 0xff);	write_cr(0x33, ((vs - 1) >> 8) & 0xf);	write_cr(0x38, ((ht - 5) & 0x100) >> 8);	write_cr(0x16, (vt - 1) & 0xff);	write_cr(0x18, 0x00);	if (p->var.xres == 640) {	  writeb(0xc7, mmio_base + 0x784);	/* set misc output reg */	} else {	  writeb(0x07, mmio_base + 0x784);	/* set misc output reg */	}}static int asiliantfb_check_var(struct fb_var_screeninfo *var,			     struct fb_info *p){	unsigned long Ftarget, ratio, remainder;	ratio = 1000000 / var->pixclock;	remainder = 1000000 % var->pixclock;	Ftarget = 1000000 * ratio + (1000000 * remainder) / var->pixclock;	/* First check the constraint that the maximum post-VCO divisor is 32,	 * and the maximum Fvco is 220MHz */	if (Ftarget > 220000000 || Ftarget < 3125000) {		printk(KERN_ERR "asiliantfb dotclock must be between 3.125 and 220MHz\n");		return -ENXIO;	}	var->xres_virtual = var->xres;	var->yres_virtual = var->yres;	if (var->bits_per_pixel == 24) {		var->red.offset = 16;		var->green.offset = 8;		var->blue.offset = 0;		var->red.length = var->blue.length = var->green.length = 8;	} else if (var->bits_per_pixel == 16) {		switch (var->red.offset) {			case 11:				var->green.length = 6;				break;			case 10:				var->green.length = 5;				break;			default:				return -EINVAL;		}		var->green.offset = 5;		var->blue.offset = 0;		var->red.length = var->blue.length = 5;	} else if (var->bits_per_pixel == 8) {		var->red.offset = var->green.offset = var->blue.offset = 0;		var->red.length = var->green.length = var->blue.length = 8;	}	return 0;}static int asiliantfb_set_par(struct fb_info *p){	u8 dclk2_m;		/* Holds m-2 value for register */	u8 dclk2_n;		/* Holds n-2 value for register */	u8 dclk2_div;		/* Holds divisor bitmask */	/* Set pixclock */	asiliant_calc_dclk2(&p->var.pixclock, &dclk2_m, &dclk2_n, &dclk2_div);	/* Set color depth */	if (p->var.bits_per_pixel == 24) {		write_xr(0x81, 0x16);	/* 24 bit packed color mode */		write_xr(0x82, 0x00);	/* Disable palettes */		write_xr(0x20, 0x20);	/* 24 bit blitter mode */	} else if (p->var.bits_per_pixel == 16) {		if (p->var.red.offset == 11)			write_xr(0x81, 0x15);	/* 16 bit color mode */		else			write_xr(0x81, 0x14);	/* 15 bit color mode */		write_xr(0x82, 0x00);	/* Disable palettes */		write_xr(0x20, 0x10);	/* 16 bit blitter mode */	} else if (p->var.bits_per_pixel == 8) {		write_xr(0x0a, 0x02);	/* Linear */		write_xr(0x81, 0x12);	/* 8 bit color mode */		write_xr(0x82, 0x00);	/* Graphics gamma enable */		write_xr(0x20, 0x00);	/* 8 bit blitter mode */	}	p->fix.line_length = p->var.xres * (p->var.bits_per_pixel >> 3);	p->fix.visual = (p->var.bits_per_pixel == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;	write_xr(0xc4, dclk2_m);	write_xr(0xc5, dclk2_n);	write_xr(0xc7, dclk2_div);	/* Set up the CR registers */	asiliant_set_timing(p);	return 0;}

⌨️ 快捷键说明

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