Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752103AbbBLVL4 (ORCPT ); Thu, 12 Feb 2015 16:11:56 -0500 Received: from mail-1.atlantis.sk ([80.94.52.57]:56106 "EHLO mail-1.atlantis.sk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751083AbbBLVLy (ORCPT ); Thu, 12 Feb 2015 16:11:54 -0500 From: Ondrej Zary To: Paul Mackerras Subject: gxt4500 on x86 (Fire GL2) Date: Thu, 12 Feb 2015 22:11:28 +0100 User-Agent: KMail/1.9.10 (enterprise35 0.20100827.1168748) Cc: linux-fbdev@vger.kernel.org, Kernel development list MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <201502122211.28752.linux@rainbow-software.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2586 Lines: 51 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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/