From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ondrej Zary Date: Thu, 12 Feb 2015 21:11:28 +0000 Subject: gxt4500 on x86 (Fire GL2) Message-Id: <201502122211.28752.linux@rainbow-software.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Paul Mackerras Cc: linux-fbdev@vger.kernel.org, Kernel development list Hello, I'm trying to get gxt4500 driver to work on x86 with Diamond/ATI Fire GL2 AGP card: 01:00.0 VGA compatible controller [0300]: IBM GXT6000P Graphics Adapter [1014:0170] (rev 02) (prog-if 00 [VGA controller]) Subsystem: Diamond Multimedia Systems Fire GL2 [1092:0172] Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B+ DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- regs + (reg)) -#define writereg(par, reg, val) writel((val), (par)->regs + (reg)) +#define readreg(par, reg) be32_to_cpu(readl((par)->regs + (reg))) +#define writereg(par, reg, val) writel(cpu_to_be32(val), (par)->regs + (reg)) struct gxt4500_par { void __iomem *regs; But nothing changed, still no signal. Any ideas? I was able to get the ancient fgl23 driver (from AMD web site) to work by installing Debian Woody to a small partition. It's not very useful today but it might be possible to dump the chip's registers and compare with gxt4500. -- Ondrej Zary