[PATCH v2] PCI: mvebu - Support a bridge with no IO port window
From: Jason Gunthorpe <hidden>
Date: 2013-10-31 16:48:10
Also in:
linux-pci
On Thu, Oct 31, 2013 at 10:13:57AM +0100, Thomas Petazzoni wrote:
Sorry for the delay in testing this, I was busy with kernel summit / ELCE. Unfortunately, this patch still causes problems here: it breaks usage of I/O region. I have a modified version of the e1000e driver that makes it access an I/O region, that I have used for testing that I/O handling is at least minimally working. Without your patch, it works fine:
No problem, thank you for testing it, I don't have any hardware like this..
After debugging, it turns out that the following change is the problem: - if (port->bridge.iolimit < port->bridge.iobase || + if (port->bridge.iolimit <= port->bridge.iobase ||
Indeed.. I was having problems here because linux was writing 0,0 during discovery to the base,limit registers to 'disable' the IO window, which triggered a window allocation. So I re-read the PCI bridge spec (apparently too quickly) and decided 0,0 was OK, and it should be <=. However, looking again@the spec - it is very clear, < is the correct test, and when the values is equal a 4k window should be created. So, I wonder if there is a little bug in the Linux discovery code path, should it write FFFF,0 instead? In any event, I can respin this patch so it works, I have to drop the WARN_ON in that routine to accommodate the 0,0 write however.
window is never created and the pci_ioremap_io() function is never called. Reverting this change makes your patch works fine for me.
Great, the next version should be good to go then. Thanks, Jason