Currently PCI expansion ROM address is assigned by a call to
pciauto_setup_rom() outside of the pci auto config process.
This does not work when expansion ROM is on a device behind
PCI bridge where bridge's memory limit register was already
programmed to a value that does not cover the newly assigned
expansion ROM address. To fix this, we should configure the
ROM address during the auto config process.

Signed-off-by: Bin Meng <bmeng...@gmail.com>
---

 drivers/pci/pci_auto.c | 40 ++++++++++++++--------------------------
 drivers/pci/pci_rom.c  |  5 -----
 include/pci.h          |  9 ---------
 3 files changed, 14 insertions(+), 40 deletions(-)

diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto.c
index 7c10983..92b4933 100644
--- a/drivers/pci/pci_auto.c
+++ b/drivers/pci/pci_auto.c
@@ -182,36 +182,24 @@ void pciauto_setup_device(struct pci_controller *hose,
                bar_nr++;
        }
 
-       pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
-       pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
-               CONFIG_SYS_PCI_CACHE_LINE_SIZE);
-       pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
-}
-
-int pciauto_setup_rom(struct pci_controller *hose, pci_dev_t dev)
-{
-       pci_addr_t bar_value;
-       pci_size_t bar_size;
-       u32 bar_response;
-       u16 cmdstat = 0;
-
+       /* Configure the expansion ROM address */
        pci_hose_write_config_dword(hose, dev, PCI_ROM_ADDRESS, 0xfffffffe);
        pci_hose_read_config_dword(hose, dev, PCI_ROM_ADDRESS, &bar_response);
-       if (!bar_response)
-               return -ENOENT;
-
-       bar_size = -(bar_response & ~1);
-       DEBUGF("PCI Autoconfig: ROM, size=%#x, ", bar_size);
-       if (pciauto_region_allocate(hose->pci_mem, bar_size, &bar_value) == 0) {
-               pci_hose_write_config_dword(hose, dev, PCI_ROM_ADDRESS,
-                                           bar_value);
+       if (bar_response) {
+               bar_size = -(bar_response & ~1);
+               DEBUGF("PCI Autoconfig: ROM, size=%#x, ", bar_size);
+               if (pciauto_region_allocate(mem, bar_size, &bar_value) == 0) {
+                       pci_hose_write_config_dword(hose, dev, PCI_ROM_ADDRESS,
+                                                   bar_value);
+               }
+               cmdstat |= PCI_COMMAND_MEMORY;
+               DEBUGF("\n");
        }
-       DEBUGF("\n");
-       pci_hose_read_config_word(hose, dev, PCI_COMMAND, &cmdstat);
-       cmdstat |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
-       pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
 
-       return 0;
+       pci_hose_write_config_word(hose, dev, PCI_COMMAND, cmdstat);
+       pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE,
+                                  CONFIG_SYS_PCI_CACHE_LINE_SIZE);
+       pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
 }
 
 void pciauto_prescan_setup_bridge(struct pci_controller *hose,
diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pci_rom.c
index 37450c8..f364799 100644
--- a/drivers/pci/pci_rom.c
+++ b/drivers/pci/pci_rom.c
@@ -83,11 +83,6 @@ static int pci_rom_probe(pci_dev_t dev, uint class,
        rom_address = CONFIG_X86_OPTION_ROM_ADDR;
 #else
 
-       if (pciauto_setup_rom(pci_bus_to_hose(PCI_BUS(dev)), dev)) {
-               debug("Cannot find option ROM\n");
-               return -ENOENT;
-       }
-
        pci_read_config_dword(dev, PCI_ROM_ADDRESS, &rom_address);
        if (rom_address == 0x00000000 || rom_address == 0xffffffff) {
                debug("%s: rom_address=%x\n", __func__, rom_address);
diff --git a/include/pci.h b/include/pci.h
index 07b1e9a..966be97 100644
--- a/include/pci.h
+++ b/include/pci.h
@@ -712,15 +712,6 @@ void pci_write_bar32(struct pci_controller *hose, 
pci_dev_t dev, int barnum,
 u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum);
 
 /**
- * pciauto_setup_rom() - Set up access to a device ROM
- *
- * @hose:      PCI hose to use
- * @dev:       PCI device to adjust
- * @return 0 if done, -ve on error
- */
-int pciauto_setup_rom(struct pci_controller *hose, pci_dev_t dev);
-
-/**
  * pci_hose_find_devices() - Find devices by vendor/device ID
  *
  * @hose:      PCI hose to search
-- 
1.8.2.1

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to