* RFC: [MIPS] BCM1480HT set mips_io_port_base
@ 2010-02-24 20:47 Bjorn Helgaas
2010-02-24 22:00 ` Thomas Bogendoerfer
0 siblings, 1 reply; 2+ messages in thread
From: Bjorn Helgaas @ 2010-02-24 20:47 UTC (permalink / raw)
To: Ralf Baechle; +Cc: Thomas Bogendoerfer, linux-mips
I don't see anywhere that BCM1480HT sets mips_io_port_base (but maybe
I missed it). We *do* set bcm1480ht_controller.io_map_base, so pci_iomap()
should work, but without mips_io_port_base, I don't think inb() et al.
will work.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
diff --git a/arch/mips/pci/pci-bcm1480ht.c b/arch/mips/pci/pci-bcm1480ht.c
index 0fd0222..021e959 100644
--- a/arch/mips/pci/pci-bcm1480ht.c
+++ b/arch/mips/pci/pci-bcm1480ht.c
@@ -205,6 +205,7 @@ static int __init bcm1480ht_pcibios_init(void)
4 * 1024 * 1024);
bcm1480ht_controller.io_map_base = (unsigned long)
ioremap(A_BCM1480_PHYS_HT_IO_MATCH_BYTES, 65536);
+ set_io_port_base(bcm1480ht_controller.io_map_base);
register_pci_controller(&bcm1480ht_controller);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: RFC: [MIPS] BCM1480HT set mips_io_port_base
2010-02-24 20:47 RFC: [MIPS] BCM1480HT set mips_io_port_base Bjorn Helgaas
@ 2010-02-24 22:00 ` Thomas Bogendoerfer
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Bogendoerfer @ 2010-02-24 22:00 UTC (permalink / raw)
To: Bjorn Helgaas; +Cc: Ralf Baechle, linux-mips
On Wed, Feb 24, 2010 at 01:47:07PM -0700, Bjorn Helgaas wrote:
> I don't see anywhere that BCM1480HT sets mips_io_port_base (but maybe
> I missed it). We *do* set bcm1480ht_controller.io_map_base, so pci_iomap()
> should work, but without mips_io_port_base, I don't think inb() et al.
> will work.
there are two hoses on the BCM1480 one is a via the PCI host controller
the other one via the hypertransport. set_io_port_base() is an old hack
to get inX/outX drivers working. Drivers using in/out will only work for
devices on the PCI host controller and will be broken for devies on the
HT side. Your change will make the devices on the HT side working, but
break the one on the PCI bus. Either way isn't too nice, but at least
nobody had a problem with the current behaviour. So it might be better
to not apply your patch.
Thomas.
--
Crap can work. Given enough thrust pigs will fly, but it's not necessary a
good idea. [ RFC1925, 2.3 ]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-02-24 22:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-24 20:47 RFC: [MIPS] BCM1480HT set mips_io_port_base Bjorn Helgaas
2010-02-24 22:00 ` Thomas Bogendoerfer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox