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

📄 ati_radeon_fb.c

📁 uboot详细解读可用启动引导LINUX2.6内核
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * ATI Radeon Video card Framebuffer driver. * * Copyright 2007 Freescale Semiconductor, Inc. * Zhang Wei <wei.zhang@freescale.com> * Jason Jin <jason.jin@freescale.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Some codes of this file is partly ported from Linux kernel * ATI video framebuffer driver. * * Now the driver is tested on below ATI chips: *   9200 *   X300 *   X700 * */#include <common.h>#ifdef CONFIG_ATI_RADEON_FB#include <command.h>#include <pci.h>#include <asm/processor.h>#include <asm/errno.h>#include <asm/io.h>#include <malloc.h>#include <video_fb.h>#include "videomodes.h"#include <radeon.h>#include "ati_ids.h"#include "ati_radeon_fb.h"#undef DEBUG#ifdef DEBUG#define DPRINT(x...) printf(x)#else#define DPRINT(x...) do{}while(0)#endif#ifndef min_t#define min_t(type,x,y) \	({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })#endif#define MAX_MAPPED_VRAM	(2048*2048*4)#define MIN_MAPPED_VRAM	(1024*768*1)#define RADEON_BUFFER_ALIGN		0x00000fff#define SURF_UPPER_BOUND(x,y,bpp)	(((((x) * (((y) + 15) & ~15) * (bpp)/8) + RADEON_BUFFER_ALIGN) \					  & ~RADEON_BUFFER_ALIGN) - 1)#define RADEON_CRT_PITCH(width, bpp)	((((width) * (bpp) + ((bpp) * 8 - 1)) / ((bpp) * 8)) | \					 ((((width) * (bpp) + ((bpp) * 8 - 1)) / ((bpp) * 8)) << 16))#define CRTC_H_TOTAL_DISP_VAL(htotal, hdisp) \		(((((htotal) / 8) - 1) & 0x3ff) | (((((hdisp) / 8) - 1) & 0x1ff) << 16))#define CRTC_HSYNC_STRT_WID_VAL(hsync_srtr, hsync_wid) \		(((hsync_srtr) & 0x1fff) | (((hsync_wid) & 0x3f) << 16))#define CRTC_V_TOTAL_DISP_VAL(vtotal, vdisp) \		((((vtotal) - 1) & 0xffff) | (((vdisp) - 1) << 16))#define CRTC_VSYNC_STRT_WID_VAL(vsync_srtr, vsync_wid) \		((((vsync_srtr) - 1) & 0xfff) | (((vsync_wid) & 0x1f) << 16))/*#define PCI_VENDOR_ID_ATI*/#define PCI_CHIP_RV280_5960		0x5960#define PCI_CHIP_RV280_5961		0x5961#define PCI_CHIP_RV280_5962		0x5962#define PCI_CHIP_RV280_5964		0x5964#define PCI_CHIP_RV280_5C63		0x5C63#define PCI_CHIP_RV370_5B60		0x5B60#define PCI_CHIP_RV380_5657		0x5657#define PCI_CHIP_R420_554d		0x554dstatic struct pci_device_id ati_radeon_pci_ids[] = {	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5960},	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5961},	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5962},	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5964},	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV280_5C63},	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV370_5B60},	{PCI_VENDOR_ID_ATI, PCI_CHIP_RV380_5657},	{PCI_VENDOR_ID_ATI, PCI_CHIP_R420_554d},	{0, 0}};static u16 ati_radeon_id_family_table[][2] = {	{PCI_CHIP_RV280_5960, CHIP_FAMILY_RV280},	{PCI_CHIP_RV280_5961, CHIP_FAMILY_RV280},	{PCI_CHIP_RV280_5962, CHIP_FAMILY_RV280},	{PCI_CHIP_RV280_5964, CHIP_FAMILY_RV280},	{PCI_CHIP_RV280_5C63, CHIP_FAMILY_RV280},	{PCI_CHIP_RV370_5B60, CHIP_FAMILY_RV380},	{PCI_CHIP_RV380_5657, CHIP_FAMILY_RV380},	{PCI_CHIP_R420_554d,  CHIP_FAMILY_R420},	{0, 0}};u16 get_radeon_id_family(u16 device){	int i;	for (i=0; ati_radeon_id_family_table[0][i]; i+=2)		if (ati_radeon_id_family_table[0][i] == device)			return ati_radeon_id_family_table[0][i + 1];	return 0;}struct radeonfb_info *rinfo;static void radeon_identify_vram(struct radeonfb_info *rinfo){	u32 tmp;	/* framebuffer size */	if ((rinfo->family == CHIP_FAMILY_RS100) ||		(rinfo->family == CHIP_FAMILY_RS200) ||		(rinfo->family == CHIP_FAMILY_RS300)) {		u32 tom = INREG(NB_TOM);		tmp = ((((tom >> 16) - (tom & 0xffff) + 1) << 6) * 1024);		radeon_fifo_wait(6);		OUTREG(MC_FB_LOCATION, tom);		OUTREG(DISPLAY_BASE_ADDR, (tom & 0xffff) << 16);		OUTREG(CRTC2_DISPLAY_BASE_ADDR, (tom & 0xffff) << 16);		OUTREG(OV0_BASE_ADDR, (tom & 0xffff) << 16);		/* This is supposed to fix the crtc2 noise problem. */		OUTREG(GRPH2_BUFFER_CNTL, INREG(GRPH2_BUFFER_CNTL) & ~0x7f0000);		if ((rinfo->family == CHIP_FAMILY_RS100) ||			(rinfo->family == CHIP_FAMILY_RS200)) {		/* This is to workaround the asic bug for RMX, some versions		   of BIOS dosen't have this register initialized correctly.		*/			OUTREGP(CRTC_MORE_CNTL, CRTC_H_CUTOFF_ACTIVE_EN,				~CRTC_H_CUTOFF_ACTIVE_EN);		}	} else {		tmp = INREG(CONFIG_MEMSIZE);	}	/* mem size is bits [28:0], mask off the rest */	rinfo->video_ram = tmp & CONFIG_MEMSIZE_MASK;	/*	 * Hack to get around some busted production M6's	 * reporting no ram	 */	if (rinfo->video_ram == 0) {		switch (rinfo->pdev.device) {		case PCI_CHIP_RADEON_LY:		case PCI_CHIP_RADEON_LZ:			rinfo->video_ram = 8192 * 1024;			break;		default:			break;		}	}	/*	 * Now try to identify VRAM type	 */	if ((rinfo->family >= CHIP_FAMILY_R300) ||	    (INREG(MEM_SDRAM_MODE_REG) & (1<<30)))		rinfo->vram_ddr = 1;	else		rinfo->vram_ddr = 0;	tmp = INREG(MEM_CNTL);	if (IS_R300_VARIANT(rinfo)) {		tmp &=  R300_MEM_NUM_CHANNELS_MASK;		switch (tmp) {		case 0:  rinfo->vram_width = 64; break;		case 1:  rinfo->vram_width = 128; break;		case 2:  rinfo->vram_width = 256; break;		default: rinfo->vram_width = 128; break;		}	} else if ((rinfo->family == CHIP_FAMILY_RV100) ||		   (rinfo->family == CHIP_FAMILY_RS100) ||		   (rinfo->family == CHIP_FAMILY_RS200)){		if (tmp & RV100_MEM_HALF_MODE)			rinfo->vram_width = 32;		else			rinfo->vram_width = 64;	} else {		if (tmp & MEM_NUM_CHANNELS_MASK)			rinfo->vram_width = 128;		else			rinfo->vram_width = 64;	}	/* This may not be correct, as some cards can have half of channel disabled	 * ToDo: identify these cases	 */	DPRINT("radeonfb: Found %ldk of %s %d bits wide videoram\n",	       rinfo->video_ram / 1024,	       rinfo->vram_ddr ? "DDR" : "SDRAM",	       rinfo->vram_width);}static void radeon_write_pll_regs(struct radeonfb_info *rinfo, struct radeon_regs *mode){	int i;	radeon_fifo_wait(20);#if 0	/* Workaround from XFree */	if (rinfo->is_mobility) {		/* A temporal workaround for the occational blanking on certain laptop		 * panels. This appears to related to the PLL divider registers		 * (fail to lock?). It occurs even when all dividers are the same		 * with their old settings. In this case we really don't need to		 * fiddle with PLL registers. By doing this we can avoid the blanking		 * problem with some panels.		 */		if ((mode->ppll_ref_div == (INPLL(PPLL_REF_DIV) & PPLL_REF_DIV_MASK)) &&		    (mode->ppll_div_3 == (INPLL(PPLL_DIV_3) &					  (PPLL_POST3_DIV_MASK | PPLL_FB3_DIV_MASK)))) {			/* We still have to force a switch to selected PPLL div thanks to			 * an XFree86 driver bug which will switch it away in some cases			 * even when using UseFDev */			OUTREGP(CLOCK_CNTL_INDEX,				mode->clk_cntl_index & PPLL_DIV_SEL_MASK,				~PPLL_DIV_SEL_MASK);			radeon_pll_errata_after_index(rinfo);			radeon_pll_errata_after_data(rinfo);			return;		}	}#endif	if(rinfo->pdev.device == PCI_CHIP_RV370_5B60) return;	/* Swich VCKL clock input to CPUCLK so it stays fed while PPLL updates*/	OUTPLLP(VCLK_ECP_CNTL, VCLK_SRC_SEL_CPUCLK, ~VCLK_SRC_SEL_MASK);	/* Reset PPLL & enable atomic update */	OUTPLLP(PPLL_CNTL,		PPLL_RESET | PPLL_ATOMIC_UPDATE_EN | PPLL_VGA_ATOMIC_UPDATE_EN,		~(PPLL_RESET | PPLL_ATOMIC_UPDATE_EN | PPLL_VGA_ATOMIC_UPDATE_EN));	/* Switch to selected PPLL divider */	OUTREGP(CLOCK_CNTL_INDEX,		mode->clk_cntl_index & PPLL_DIV_SEL_MASK,		~PPLL_DIV_SEL_MASK);	/* Set PPLL ref. div */	if (rinfo->family == CHIP_FAMILY_R300 ||	    rinfo->family == CHIP_FAMILY_RS300 ||	    rinfo->family == CHIP_FAMILY_R350 ||	    rinfo->family == CHIP_FAMILY_RV350) {		if (mode->ppll_ref_div & R300_PPLL_REF_DIV_ACC_MASK) {			/* When restoring console mode, use saved PPLL_REF_DIV			 * setting.			 */			OUTPLLP(PPLL_REF_DIV, mode->ppll_ref_div, 0);		} else {			/* R300 uses ref_div_acc field as real ref divider */			OUTPLLP(PPLL_REF_DIV,				(mode->ppll_ref_div << R300_PPLL_REF_DIV_ACC_SHIFT),				~R300_PPLL_REF_DIV_ACC_MASK);		}	} else		OUTPLLP(PPLL_REF_DIV, mode->ppll_ref_div, ~PPLL_REF_DIV_MASK);	/* Set PPLL divider 3 & post divider*/	OUTPLLP(PPLL_DIV_3, mode->ppll_div_3, ~PPLL_FB3_DIV_MASK);	OUTPLLP(PPLL_DIV_3, mode->ppll_div_3, ~PPLL_POST3_DIV_MASK);	/* Write update */	while (INPLL(PPLL_REF_DIV) & PPLL_ATOMIC_UPDATE_R)		;	OUTPLLP(PPLL_REF_DIV, PPLL_ATOMIC_UPDATE_W, ~PPLL_ATOMIC_UPDATE_W);	/* Wait read update complete */	/* FIXME: Certain revisions of R300 can't recover here.  Not sure of	   the cause yet, but this workaround will mask the problem for now.	   Other chips usually will pass at the very first test, so the	   workaround shouldn't have any effect on them. */	for (i = 0; (i < 10000 && INPLL(PPLL_REF_DIV) & PPLL_ATOMIC_UPDATE_R); i++)		;	OUTPLL(HTOTAL_CNTL, 0);	/* Clear reset & atomic update */	OUTPLLP(PPLL_CNTL, 0,		~(PPLL_RESET | PPLL_SLEEP | PPLL_ATOMIC_UPDATE_EN | PPLL_VGA_ATOMIC_UPDATE_EN));	/* We may want some locking ... oh well */	udelay(5000);	/* Switch back VCLK source to PPLL */	OUTPLLP(VCLK_ECP_CNTL, VCLK_SRC_SEL_PPLLCLK, ~VCLK_SRC_SEL_MASK);}typedef struct {	u16 reg;	u32 val;} reg_val;#if 0	/* unused ? -> scheduled for removal *//* these common regs are cleared before mode setting so they do not * interfere with anything */static reg_val common_regs[] = {	{ OVR_CLR, 0 },	{ OVR_WID_LEFT_RIGHT, 0 },	{ OVR_WID_TOP_BOTTOM, 0 },	{ OV0_SCALE_CNTL, 0 },	{ SUBPIC_CNTL, 0 },	{ VIPH_CONTROL, 0 },	{ I2C_CNTL_1, 0 },	{ GEN_INT_CNTL, 0 },	{ CAP0_TRIG_CNTL, 0 },	{ CAP1_TRIG_CNTL, 0 },};#endif /* 0 */void radeon_setmode(void){	struct radeon_regs *mode = malloc(sizeof(struct radeon_regs));	mode->crtc_gen_cntl = 0x03000200;	mode->crtc_ext_cntl = 0x00008048;	mode->dac_cntl = 0xff002100;	mode->crtc_h_total_disp = 0x4f0063;	mode->crtc_h_sync_strt_wid = 0x8c02a2;	mode->crtc_v_total_disp = 0x01df020c;	mode->crtc_v_sync_strt_wid = 0x8201ea;	mode->crtc_pitch = 0x00500050;	OUTREG(CRTC_GEN_CNTL, mode->crtc_gen_cntl);	OUTREGP(CRTC_EXT_CNTL, mode->crtc_ext_cntl,		~(CRTC_HSYNC_DIS | CRTC_VSYNC_DIS | CRTC_DISPLAY_DIS));	OUTREGP(DAC_CNTL, mode->dac_cntl, DAC_RANGE_CNTL | DAC_BLANKING);	OUTREG(CRTC_H_TOTAL_DISP, mode->crtc_h_total_disp);	OUTREG(CRTC_H_SYNC_STRT_WID, mode->crtc_h_sync_strt_wid);	OUTREG(CRTC_V_TOTAL_DISP, mode->crtc_v_total_disp);	OUTREG(CRTC_V_SYNC_STRT_WID, mode->crtc_v_sync_strt_wid);	OUTREG(CRTC_OFFSET, 0);	OUTREG(CRTC_OFFSET_CNTL, 0);	OUTREG(CRTC_PITCH, mode->crtc_pitch);	mode->clk_cntl_index = 0x300;	mode->ppll_ref_div = 0xc;	mode->ppll_div_3 = 0x00030059;	radeon_write_pll_regs(rinfo, mode);}static void set_pal(void){	int idx, val = 0;	for (idx = 0; idx < 256; idx++) {		OUTREG8(PALETTE_INDEX, idx);		OUTREG(PALETTE_DATA, val);		val += 0x00010101;	}}void radeon_setmode_9200(int vesa_idx, int bpp){	struct radeon_regs *mode = malloc(sizeof(struct radeon_regs));	mode->crtc_gen_cntl = CRTC_EN | CRTC_EXT_DISP_EN;	mode->crtc_ext_cntl = VGA_ATI_LINEAR | XCRT_CNT_EN | CRTC_CRT_ON;	mode->dac_cntl = DAC_MASK_ALL | DAC_VGA_ADR_EN | DAC_8BIT_EN;	mode->crtc_offset_cntl = CRTC_OFFSET_CNTL__CRTC_TILE_EN;

⌨️ 快捷键说明

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