From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Date: Wed, 08 Jan 2014 14:48:09 +0000 Subject: Re: [PATCH] video: vgacon: Don't build on arm64 Message-Id: <201401081548.09459.arnd@arndb.de> List-Id: References: <1387323421-26126-1-git-send-email-broonie@kernel.org> In-Reply-To: <1387323421-26126-1-git-send-email-broonie@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-fbdev@vger.kernel.org On Wednesday 08 January 2014, Geert Uytterhoeven wrote: > VGA is special, in that it uses "ISA memory space". This is not a subset of > "PCI memory space", but something different. Some PCI host bridges > (IIRC, e.g. on Mac) do not allow access to this space. > Most other "PC I/O" use ISA I/O space, which is a subset of PCI I/O space. Right, but they often go together, and I think vgacon actually requires both, doesn't it? I'm not aware of anything else requiring access to the 0xa0000-0xfffff or the 0xf00000-0xffffff ISA memory windows except VGA, but I could be missing some less common devices. These are often not available on non-x86 systems, which prevents VGA from working even if low I/O space addresses are routed to PCI. The CONFIG_PC_IO symbol would mostly be used for stuff like PC-style floppy, dma, rtc, pic, parport, uart, etc. I think it does make sense to include VGA in that list, but we may want to add a few machines that explicitly support VGA on PCI without supporting other PC-style components. Arnd