|
@@ -24,13 +24,17 @@
|
|
|
*/
|
|
*/
|
|
|
int pci_enable_rom(struct pci_dev *pdev)
|
|
int pci_enable_rom(struct pci_dev *pdev)
|
|
|
{
|
|
{
|
|
|
- struct resource *res = pdev->resource + PCI_ROM_RESOURCE;
|
|
|
|
|
|
|
+ struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
|
|
|
struct pci_bus_region region;
|
|
struct pci_bus_region region;
|
|
|
u32 rom_addr;
|
|
u32 rom_addr;
|
|
|
|
|
|
|
|
if (!res->flags)
|
|
if (!res->flags)
|
|
|
return -1;
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
+ /* Nothing to enable if we're using a shadow copy in RAM */
|
|
|
|
|
+ if (res->flags & IORESOURCE_ROM_SHADOW)
|
|
|
|
|
+ return 0;
|
|
|
|
|
+
|
|
|
pcibios_resource_to_bus(pdev->bus, ®ion, res);
|
|
pcibios_resource_to_bus(pdev->bus, ®ion, res);
|
|
|
pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
|
|
pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
|
|
|
rom_addr &= ~PCI_ROM_ADDRESS_MASK;
|
|
rom_addr &= ~PCI_ROM_ADDRESS_MASK;
|
|
@@ -49,7 +53,12 @@ EXPORT_SYMBOL_GPL(pci_enable_rom);
|
|
|
*/
|
|
*/
|
|
|
void pci_disable_rom(struct pci_dev *pdev)
|
|
void pci_disable_rom(struct pci_dev *pdev)
|
|
|
{
|
|
{
|
|
|
|
|
+ struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
|
|
|
u32 rom_addr;
|
|
u32 rom_addr;
|
|
|
|
|
+
|
|
|
|
|
+ if (res->flags & IORESOURCE_ROM_SHADOW)
|
|
|
|
|
+ return;
|
|
|
|
|
+
|
|
|
pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
|
|
pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
|
|
|
rom_addr &= ~PCI_ROM_ADDRESS_ENABLE;
|
|
rom_addr &= ~PCI_ROM_ADDRESS_ENABLE;
|
|
|
pci_write_config_dword(pdev, pdev->rom_base_reg, rom_addr);
|
|
pci_write_config_dword(pdev, pdev->rom_base_reg, rom_addr);
|
|
@@ -119,43 +128,23 @@ void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)
|
|
|
loff_t start;
|
|
loff_t start;
|
|
|
void __iomem *rom;
|
|
void __iomem *rom;
|
|
|
|
|
|
|
|
- /*
|
|
|
|
|
- * IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy
|
|
|
|
|
- * memory map if the VGA enable bit of the Bridge Control register is
|
|
|
|
|
- * set for embedded VGA.
|
|
|
|
|
- */
|
|
|
|
|
- if (res->flags & IORESOURCE_ROM_SHADOW) {
|
|
|
|
|
- /* primary video rom always starts here */
|
|
|
|
|
- start = (loff_t)0xC0000;
|
|
|
|
|
- *size = 0x20000; /* cover C000:0 through E000:0 */
|
|
|
|
|
- } else {
|
|
|
|
|
- if (res->flags &
|
|
|
|
|
- (IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY)) {
|
|
|
|
|
- *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
|
|
|
|
|
- return (void __iomem *)(unsigned long)
|
|
|
|
|
- pci_resource_start(pdev, PCI_ROM_RESOURCE);
|
|
|
|
|
- } else {
|
|
|
|
|
- /* assign the ROM an address if it doesn't have one */
|
|
|
|
|
- if (res->parent == NULL &&
|
|
|
|
|
- pci_assign_resource(pdev, PCI_ROM_RESOURCE))
|
|
|
|
|
- return NULL;
|
|
|
|
|
- start = pci_resource_start(pdev, PCI_ROM_RESOURCE);
|
|
|
|
|
- *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
|
|
|
|
|
- if (*size == 0)
|
|
|
|
|
- return NULL;
|
|
|
|
|
-
|
|
|
|
|
- /* Enable ROM space decodes */
|
|
|
|
|
- if (pci_enable_rom(pdev))
|
|
|
|
|
- return NULL;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ /* assign the ROM an address if it doesn't have one */
|
|
|
|
|
+ if (res->parent == NULL && pci_assign_resource(pdev, PCI_ROM_RESOURCE))
|
|
|
|
|
+ return NULL;
|
|
|
|
|
+
|
|
|
|
|
+ start = pci_resource_start(pdev, PCI_ROM_RESOURCE);
|
|
|
|
|
+ *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
|
|
|
|
|
+ if (*size == 0)
|
|
|
|
|
+ return NULL;
|
|
|
|
|
+
|
|
|
|
|
+ /* Enable ROM space decodes */
|
|
|
|
|
+ if (pci_enable_rom(pdev))
|
|
|
|
|
+ return NULL;
|
|
|
|
|
|
|
|
rom = ioremap(start, *size);
|
|
rom = ioremap(start, *size);
|
|
|
if (!rom) {
|
|
if (!rom) {
|
|
|
/* restore enable if ioremap fails */
|
|
/* restore enable if ioremap fails */
|
|
|
- if (!(res->flags & (IORESOURCE_ROM_ENABLE |
|
|
|
|
|
- IORESOURCE_ROM_SHADOW |
|
|
|
|
|
- IORESOURCE_ROM_COPY)))
|
|
|
|
|
|
|
+ if (!(res->flags & IORESOURCE_ROM_ENABLE))
|
|
|
pci_disable_rom(pdev);
|
|
pci_disable_rom(pdev);
|
|
|
return NULL;
|
|
return NULL;
|
|
|
}
|
|
}
|
|
@@ -181,36 +170,14 @@ void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom)
|
|
|
{
|
|
{
|
|
|
struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
|
|
struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
|
|
|
|
|
|
|
|
- if (res->flags & (IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY))
|
|
|
|
|
- return;
|
|
|
|
|
-
|
|
|
|
|
iounmap(rom);
|
|
iounmap(rom);
|
|
|
|
|
|
|
|
- /* Disable again before continuing, leave enabled if pci=rom */
|
|
|
|
|
- if (!(res->flags & (IORESOURCE_ROM_ENABLE | IORESOURCE_ROM_SHADOW)))
|
|
|
|
|
|
|
+ /* Disable again before continuing */
|
|
|
|
|
+ if (!(res->flags & IORESOURCE_ROM_ENABLE))
|
|
|
pci_disable_rom(pdev);
|
|
pci_disable_rom(pdev);
|
|
|
}
|
|
}
|
|
|
EXPORT_SYMBOL(pci_unmap_rom);
|
|
EXPORT_SYMBOL(pci_unmap_rom);
|
|
|
|
|
|
|
|
-/**
|
|
|
|
|
- * pci_cleanup_rom - free the ROM copy created by pci_map_rom_copy
|
|
|
|
|
- * @pdev: pointer to pci device struct
|
|
|
|
|
- *
|
|
|
|
|
- * Free the copied ROM if we allocated one.
|
|
|
|
|
- */
|
|
|
|
|
-void pci_cleanup_rom(struct pci_dev *pdev)
|
|
|
|
|
-{
|
|
|
|
|
- struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
|
|
|
|
|
-
|
|
|
|
|
- if (res->flags & IORESOURCE_ROM_COPY) {
|
|
|
|
|
- kfree((void *)(unsigned long)res->start);
|
|
|
|
|
- res->flags |= IORESOURCE_UNSET;
|
|
|
|
|
- res->flags &= ~IORESOURCE_ROM_COPY;
|
|
|
|
|
- res->start = 0;
|
|
|
|
|
- res->end = 0;
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* pci_platform_rom - provides a pointer to any ROM image provided by the
|
|
* pci_platform_rom - provides a pointer to any ROM image provided by the
|
|
|
* platform
|
|
* platform
|