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

📄 radeonfb.c

📁 ati driver
💻 C
📖 第 1 页 / 共 5 页
字号:
                        v.blue.offset = 0;                        v.red.length = 5;                        v.green.length = 6;                        v.blue.length = 5;                        v.transp.offset = v.transp.length = 0;                        break;                                          case 24:                        nom = 4;                        den = 1;                        v.red.offset = 16;                        v.green.offset = 8;                        v.blue.offset = 0;                        v.red.length = v.blue.length = v.green.length = 8;                        v.transp.offset = v.transp.length = 0;                        break;                case 32:                        nom = 4;                        den = 1;                        v.red.offset = 16;                        v.green.offset = 8;                        v.blue.offset = 0;                        v.red.length = v.blue.length = v.green.length = 8;                        v.transp.offset = 24;                        v.transp.length = 8;                        break;                default:                        printk ("radeonfb: mode %dx%dx%d rejected, color depth invalid\n",                                var->xres, var->yres, var->bits_per_pixel);                        return -EINVAL;        }        if (radeon_do_maximize(rinfo, var, &v, nom, den) < 0)                return -EINVAL;                          if (v.xoffset < 0)                v.xoffset = 0;        if (v.yoffset < 0)                v.yoffset = 0;                 if (v.xoffset > v.xres_virtual - v.xres)                v.xoffset = v.xres_virtual - v.xres - 1;                                if (v.yoffset > v.yres_virtual - v.yres)                v.yoffset = v.yres_virtual - v.yres - 1;                 v.red.msb_right = v.green.msb_right = v.blue.msb_right =                          v.transp.offset = v.transp.length =                          v.transp.msb_right = 0;	if (noaccel)		v.accel_flags = 0;			        memcpy(var, &v, sizeof(v));                return 0;}static int radeonfb_pan_display (struct fb_var_screeninfo *var,                                 struct fb_info *info){        struct radeonfb_info *rinfo = (struct radeonfb_info *) info;        if ((var->xoffset + var->xres > var->xres_virtual)	    || (var->yoffset + var->yres > var->yres_virtual))               return -EINVAL;                        if (rinfo->asleep)        	return 0;        OUTREG(CRTC_OFFSET, ((var->yoffset * var->xres_virtual + var->xoffset)			     * var->bits_per_pixel / 8) & ~7);        return 0;}static int radeonfb_ioctl (struct inode *inode, struct file *file, unsigned int cmd,                           unsigned long arg, struct fb_info *info){        struct radeonfb_info *rinfo = (struct radeonfb_info *) info;	unsigned int tmp;	u32 value = 0;	int rc;	switch (cmd) {		/*		 * TODO:  set mirror accordingly for non-Mobility chipsets with 2 CRTC's		 */		case FBIO_RADEON_SET_MIRROR:			switch (rinfo->arch) {				case RADEON_R100:				case RADEON_RV100:				case RADEON_R200:				case RADEON_RV200:				case RADEON_RV250:				case RADEON_R300:					return -EINVAL;				default:					/* RADEON M6, RADEON_M7, RADEON_M9 */					break;			}			rc = get_user(value, (__u32*)arg);			if (rc)				return rc;			if (value & 0x01) {				tmp = INREG(LVDS_GEN_CNTL);				tmp |= (LVDS_ON | LVDS_BLON);			} else {				tmp = INREG(LVDS_GEN_CNTL);				tmp &= ~(LVDS_ON | LVDS_BLON);			}			OUTREG(LVDS_GEN_CNTL, tmp);			if (value & 0x02) {				tmp = INREG(CRTC_EXT_CNTL);				tmp |= CRTC_CRT_ON;				mirror = 1;			} else {				tmp = INREG(CRTC_EXT_CNTL);				tmp &= ~CRTC_CRT_ON;				mirror = 0;			}			OUTREG(CRTC_EXT_CNTL, tmp);			break;		case FBIO_RADEON_GET_MIRROR:			switch (rinfo->arch) {				case RADEON_R100:				case RADEON_RV100:				case RADEON_R200:				case RADEON_RV200:				case RADEON_RV250:				case RADEON_R300:					return -EINVAL;				default:					/* RADEON M6, RADEON_M7, RADEON_M9 */					break;			}			tmp = INREG(LVDS_GEN_CNTL);			if ((LVDS_ON | LVDS_BLON) & tmp)				value |= 0x01;			tmp = INREG(CRTC_EXT_CNTL);			if (CRTC_CRT_ON & tmp)				value |= 0x02;			return put_user(value, (__u32*)arg);		default:			return -EINVAL;	}	return -EINVAL;}static int radeonfb_blank (int blank, struct fb_info *info){        struct radeonfb_info *rinfo = (struct radeonfb_info *) info;        u32 val = INREG(CRTC_EXT_CNTL);	u32 val2 = INREG(LVDS_GEN_CNTL);	if (rinfo->asleep)		return 0;		#ifdef CONFIG_PMAC_BACKLIGHT	if (rinfo->dviDisp_type == MT_LCD && _machine == _MACH_Pmac) {		set_backlight_enable(!blank);		return 0;	}#endif                                /* reset it */        val &= ~(CRTC_DISPLAY_DIS | CRTC_HSYNC_DIS |                 CRTC_VSYNC_DIS);	val2 &= ~(LVDS_DISPLAY_DIS);        switch (blank) {                case VESA_NO_BLANKING:                        break;                case VESA_VSYNC_SUSPEND:                        val |= (CRTC_DISPLAY_DIS | CRTC_VSYNC_DIS);                        break;                case VESA_HSYNC_SUSPEND:                        val |= (CRTC_DISPLAY_DIS | CRTC_HSYNC_DIS);                        break;                case VESA_POWERDOWN:                        val |= (CRTC_DISPLAY_DIS | CRTC_VSYNC_DIS |                                 CRTC_HSYNC_DIS);			val2 |= (LVDS_DISPLAY_DIS);                        break;        }	switch (rinfo->dviDisp_type) {		case MT_LCD:			OUTREG(LVDS_GEN_CNTL, val2);			break;		case MT_CRT:		default:		        OUTREG(CRTC_EXT_CNTL, val);			break;	}	return 0;}static int radeonfb_setcolreg (unsigned regno, unsigned red, unsigned green,                             unsigned blue, unsigned transp, struct fb_info *info){        struct radeonfb_info *rinfo = (struct radeonfb_info *) info;	u32 pindex, vclk_cntl;	unsigned int i;		if (regno > 255)		return 1;	red >>= 8;	green >>= 8;	blue >>= 8;	rinfo->palette[regno].red = red;	rinfo->palette[regno].green = green;	rinfo->palette[regno].blue = blue;        /* default */        pindex = regno;        if (!rinfo->asleep) {		vclk_cntl = INPLL(VCLK_ECP_CNTL);		OUTPLL(VCLK_ECP_CNTL, vclk_cntl & ~PIXCLK_DAC_ALWAYS_ONb);		if (rinfo->bpp == 16) {			pindex = regno * 8;			if (rinfo->depth == 16 && regno > 63)				return 1;			if (rinfo->depth == 15 && regno > 31)				return 1;			/* For 565, the green component is mixed one order below */			if (rinfo->depth == 16) {		                OUTREG(PALETTE_INDEX, pindex>>1);	       	         	OUTREG(PALETTE_DATA, (rinfo->palette[regno>>1].red << 16) |	                        	(green << 8) | (rinfo->palette[regno>>1].blue));	                	green = rinfo->palette[regno<<1].green;	        	}		}		if (rinfo->depth != 16 || regno < 32) {			OUTREG(PALETTE_INDEX, pindex);			OUTREG(PALETTE_DATA, (red << 16) | (green << 8) | blue);		}		OUTPLL(VCLK_ECP_CNTL, vclk_cntl);	} 	if (regno < 16) {        	switch (rinfo->depth) {		case 15:			((u16 *) (info->pseudo_palette))[regno] =			    (regno << 10) | (regno << 5) | regno;			break;		case 16:			((u16 *) (info->pseudo_palette))[regno] =			    (regno << 11) | (regno << 6) | regno;			break;		case 24:			((u32 *) (info->pseudo_palette))[regno] =			    (regno << 16) | (regno << 8) | regno;			break;		case 32:			i = (regno << 8) | regno;			((u32 *) (info->pseudo_palette))[regno] =			    (i << 16) | i;			break;		}        }	return 0;}static void radeon_save_state (struct radeonfb_info *rinfo,                               struct radeon_regs *save){	/* CRTC regs */	save->crtc_gen_cntl = INREG(CRTC_GEN_CNTL);	save->crtc_ext_cntl = INREG(CRTC_EXT_CNTL);	save->dac_cntl = INREG(DAC_CNTL);        save->crtc_h_total_disp = INREG(CRTC_H_TOTAL_DISP);        save->crtc_h_sync_strt_wid = INREG(CRTC_H_SYNC_STRT_WID);        save->crtc_v_total_disp = INREG(CRTC_V_TOTAL_DISP);        save->crtc_v_sync_strt_wid = INREG(CRTC_V_SYNC_STRT_WID);	save->crtc_pitch = INREG(CRTC_PITCH);#if defined(__BIG_ENDIAN)	save->surface_cntl = INREG(SURFACE_CNTL);#endif	/* FP regs */	save->fp_crtc_h_total_disp = INREG(FP_CRTC_H_TOTAL_DISP);	save->fp_crtc_v_total_disp = INREG(FP_CRTC_V_TOTAL_DISP);	save->fp_gen_cntl = INREG(FP_GEN_CNTL);	save->fp_h_sync_strt_wid = INREG(FP_H_SYNC_STRT_WID);	save->fp_horz_stretch = INREG(FP_HORZ_STRETCH);	save->fp_v_sync_strt_wid = INREG(FP_V_SYNC_STRT_WID);	save->fp_vert_stretch = INREG(FP_VERT_STRETCH);	save->lvds_gen_cntl = INREG(LVDS_GEN_CNTL);	save->lvds_pll_cntl = INREG(LVDS_PLL_CNTL);	save->tmds_crc = INREG(TMDS_CRC);	save->tmds_transmitter_cntl = INREG(TMDS_TRANSMITTER_CNTL);	save->vclk_ecp_cntl = INPLL(VCLK_ECP_CNTL);}static int radeonfb_set_par (struct fb_info *info){	struct radeonfb_info *rinfo = (struct radeonfb_info *)info->par;	struct fb_var_screeninfo *mode = &info->var;	struct radeon_regs newmode;	int hTotal, vTotal, hSyncStart, hSyncEnd,	    hSyncPol, vSyncStart, vSyncEnd, vSyncPol, cSync;	u8 hsync_adj_tab[] = {0, 0x12, 9, 9, 6, 5};	u8 hsync_fudge_fp[] = {2, 2, 0, 0, 5, 5};	u32 dotClock = 1000000000 / mode->pixclock,	    sync, h_sync_pol, v_sync_pol;	int freq = dotClock / 10;  /* x 100 */        int xclk_freq, vclk_freq, xclk_per_trans, xclk_per_trans_precise;        int useable_precision, roff, ron;        int min_bits, format = 0;	int hsync_start, hsync_fudge, bytpp, hsync_wid, vsync_wid;	int primary_mon = PRIMARY_MONITOR(rinfo);	int depth = var_to_depth(mode);	rinfo->xres = mode->xres;	rinfo->yres = mode->yres;	rinfo->xres_virtual = mode->xres_virtual;	rinfo->yres_virtual = mode->yres_virtual;	rinfo->pixclock = mode->pixclock;	hSyncStart = mode->xres + mode->right_margin;	hSyncEnd = hSyncStart + mode->hsync_len;	hTotal = hSyncEnd + mode->left_margin;	vSyncStart = mode->yres + mode->lower_margin;	vSyncEnd = vSyncStart + mode->vsync_len;	vTotal = vSyncEnd + mode->upper_margin;	if ((primary_mon == MT_DFP) || (primary_mon == MT_LCD)) {		if (rinfo->panel_xres < mode->xres)			rinfo->xres = mode->xres = rinfo->panel_xres;		if (rinfo->panel_yres < mode->yres)			rinfo->yres = mode->yres = rinfo->panel_yres;		hTotal = mode->xres + rinfo->hblank;		hSyncStart = mode->xres + rinfo->hOver_plus;		hSyncEnd = hSyncStart + rinfo->hSync_width;		vTotal = mode->yres + rinfo->vblank;		vSyncStart = mode->yres + rinfo->vOver_plus;		vSyncEnd = vSyncStart + rinfo->vSync_width;	}	sync = mode->sync;	h_sync_pol = sync & FB_SYNC_HOR_HIGH_ACT ? 0 : 1;	v_sync_pol = sync & FB_SYNC_VERT_HIGH_ACT ? 0 : 1;	RTRACE("hStart = %d, hEnd = %d, hTotal = %d\n",		hSyncStart, hSyncEnd, hTotal);	RTRACE("vStart = %d, vEnd = %d, vTotal = %d\n",		vSyncStart, vSyncEnd, vTotal);	hsync_wid = (hSyncEnd - hSyncStart) / 8;	vsync_wid = vSyncEnd - vSyncStart;	if (hsync_wid == 0)		hsync_wid = 1;	else if (hsync_wid > 0x3f)	/* max */		hsync_wid = 0x3f;	if (vsync_wid == 0)		vsync_wid = 1;	else if (vsync_wid > 0x1f)	/* max */		vsync_wid = 0x1f;	hSyncPol = mode->sync & FB_SYNC_HOR_HIGH_ACT ? 0 : 1;	vSyncPol = mode->sync & FB_SYNC_VERT_HIGH_ACT ? 0 : 1;	cSync = mode->sync & FB_SYNC_COMP_HIGH_ACT ? (1 << 4) : 0;	format = radeon_get_dstbpp(depth);	bytpp = mode->bits_per_pixel >> 3;	if ((primary_mon == MT_DFP) || (primary_mon == MT_LCD))		hsync_fudge = hsync_fudge_fp[format-1];	else		hsync_fudge = hsync_adj_tab[format-1];	hsync_start = hSyncStart - 8 + hsync_fudge;	newmode.crtc_gen_cntl = CRTC_EXT_DISP_EN | CRTC_EN |				(format << 8);	if ((primary_mon == MT_DFP) || (primary_mon == MT_LCD)) {		newmode.crtc_ext_cntl = VGA_ATI_LINEAR | XCRT_CNT_EN;		if (mirror)			newmode.crtc_ext_cntl |= CRTC_CRT_ON;		newmode.crtc_gen_cntl &= ~(CRTC_DBL_SCAN_EN |					   CRTC_INTERLACE_EN);	} else {		newmode.crtc_ext_cntl = VGA_ATI_LINEAR | XCRT_CNT_EN |					CRTC_CRT_ON;	}	newmode.dac_cntl = /* INREG(DAC_CNTL) | */ DAC_MASK_ALL | DAC_VGA_ADR_EN |			   DAC_8BIT_EN;	newmode.crtc_h_total_disp = ((((hTotal / 8) - 1) & 0x3ff) |				     (((mode->xres / 8) - 1) << 16));	newmode.crtc_h_sync_strt_wid = ((hsync_start & 0x1fff) |					(hsync_wid << 16) | (h_sync_pol << 23));	newmode.crtc_v_total_disp = ((vTotal - 1) & 0xffff) |				    ((mode->yres - 1) << 16);	newmode.crtc_v_sync_strt_wid = (((vSyncStart - 1) & 0xfff) |					 (vsync_wid << 16) | (v_sync_pol  << 23));	newmode.crtc_pitch = (mode->xres_virtual >> 3);	newmode.crtc_pitch |= (newmode.crtc_pitch << 16);#if defined(__BIG_ENDIAN)	/*	 * It looks like recent chips have a problem with SURFACE_CNTL,	 * setting SURF_TRANSLATION_DIS completely disables the	 * swapper as well, so we leave it unset now.	 */	newmode.surface_cntl = 0;	/* Setup swapping on both apertures, though we currently	 * only use aperture 0, enabling swapper on aperture 1	 * won't harm	 */	switch (mode->bits_per_pixel) {		case 16:			newmode.surface_cntl |= NONSURF_AP0_SWP_16BPP;			newmode.surface_cntl |= NONSURF_AP1_SWP_16BPP;			break;		case 24:			case 32:			newmode.surface_cntl |= NONSURF_AP0_SWP_32BPP;			newmode.surface_cntl |= NONSURF_AP1_SWP_32BPP;			break;	}#endif	rinfo->pitch = ((mode->xres_virtual * ((mode->bits_per_pixel + 1) / 8) + 0x3f) 			& ~(0x3f)) / 64;	RTRACE("h_total_disp = 0x%x\t   hsync_strt_wid = 0x%x\n",		newmode.crtc_h_total_disp, newmode.crtc_h_sync_strt_wid);	RTRACE("v_total_disp = 0x%x\t   vsync_strt_wid = 0x%x\n",		newmode.crtc_v_total_disp, newmode.crtc_v_sync_strt_wid);	newmode.xres = mode->xres;	newmode.yres = mode->yres;	rinfo->bpp = mode->bits_per_pixel;

⌨️ 快捷键说明

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