1 // SPDX-License-Identifier: GPL-2.0
5 * (C) Copyright 2004 Jon Smirl <jonsmirl@yahoo.com>
6 * (C) Copyright 2004 Silicon Graphics, Inc. Jesse Barnes <jbarnes@sgi.com>
8 * PCI ROM access routines
10 #include <linux/kernel.h>
11 #include <linux/export.h>
12 #include <linux/pci.h>
13 #include <linux/slab.h>
18 * pci_enable_rom - enable ROM decoding for a PCI device
19 * @pdev: PCI device to enable
21 * Enable ROM decoding on @dev. This involves simply turning on the last
22 * bit of the PCI ROM BAR. Note that some cards may share address decoders
23 * between the ROM and other resources, so enabling it may disable access
24 * to MMIO registers or other card memory.
26 int pci_enable_rom(struct pci_dev
*pdev
)
28 struct resource
*res
= &pdev
->resource
[PCI_ROM_RESOURCE
];
29 struct pci_bus_region region
;
35 /* Nothing to enable if we're using a shadow copy in RAM */
36 if (res
->flags
& IORESOURCE_ROM_SHADOW
)
40 * Ideally pci_update_resource() would update the ROM BAR address,
41 * and we would only set the enable bit here. But apparently some
42 * devices have buggy ROM BARs that read as zero when disabled.
44 pcibios_resource_to_bus(pdev
->bus
, ®ion
, res
);
45 pci_read_config_dword(pdev
, pdev
->rom_base_reg
, &rom_addr
);
46 rom_addr
&= ~PCI_ROM_ADDRESS_MASK
;
47 rom_addr
|= region
.start
| PCI_ROM_ADDRESS_ENABLE
;
48 pci_write_config_dword(pdev
, pdev
->rom_base_reg
, rom_addr
);
51 EXPORT_SYMBOL_GPL(pci_enable_rom
);
54 * pci_disable_rom - disable ROM decoding for a PCI device
55 * @pdev: PCI device to disable
57 * Disable ROM decoding on a PCI device by turning off the last bit in the
60 void pci_disable_rom(struct pci_dev
*pdev
)
62 struct resource
*res
= &pdev
->resource
[PCI_ROM_RESOURCE
];
65 if (res
->flags
& IORESOURCE_ROM_SHADOW
)
68 pci_read_config_dword(pdev
, pdev
->rom_base_reg
, &rom_addr
);
69 rom_addr
&= ~PCI_ROM_ADDRESS_ENABLE
;
70 pci_write_config_dword(pdev
, pdev
->rom_base_reg
, rom_addr
);
72 EXPORT_SYMBOL_GPL(pci_disable_rom
);
75 * pci_get_rom_size - obtain the actual size of the ROM image
76 * @pdev: target PCI device
77 * @rom: kernel virtual pointer to image of ROM
78 * @size: size of PCI window
79 * return: size of actual ROM image
81 * Determine the actual length of the ROM image.
82 * The PCI window size could be much larger than the
85 size_t pci_get_rom_size(struct pci_dev
*pdev
, void __iomem
*rom
, size_t size
)
94 /* Standard PCI ROMs start out with these bytes 55 AA */
95 if (readw(image
) != 0xAA55) {
96 pci_info(pdev
, "Invalid PCI ROM header signature: expecting 0xaa55, got %#06x\n",
100 /* get the PCI data structure and check its "PCIR" signature */
101 pds
= image
+ readw(image
+ 24);
102 if (readl(pds
) != 0x52494350) {
103 pci_info(pdev
, "Invalid PCI ROM data signature: expecting 0x52494350, got %#010x\n",
107 last_image
= readb(pds
+ 21) & 0x80;
108 length
= readw(pds
+ 16);
109 image
+= length
* 512;
110 /* Avoid iterating through memory outside the resource window */
111 if (image
> rom
+ size
)
113 } while (length
&& !last_image
);
115 /* never return a size larger than the PCI resource window */
116 /* there are known ROMs that get the size wrong */
117 return min((size_t)(image
- rom
), size
);
121 * pci_map_rom - map a PCI ROM to kernel space
122 * @pdev: pointer to pci device struct
123 * @size: pointer to receive size of pci window over ROM
125 * Return: kernel virtual pointer to image of ROM
127 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
128 * the shadow BIOS copy will be returned instead of the
131 void __iomem
*pci_map_rom(struct pci_dev
*pdev
, size_t *size
)
133 struct resource
*res
= &pdev
->resource
[PCI_ROM_RESOURCE
];
137 /* assign the ROM an address if it doesn't have one */
138 if (res
->parent
== NULL
&& pci_assign_resource(pdev
, PCI_ROM_RESOURCE
))
141 start
= pci_resource_start(pdev
, PCI_ROM_RESOURCE
);
142 *size
= pci_resource_len(pdev
, PCI_ROM_RESOURCE
);
146 /* Enable ROM space decodes */
147 if (pci_enable_rom(pdev
))
150 rom
= ioremap(start
, *size
);
155 * Try to find the true size of the ROM since sometimes the PCI window
156 * size is much larger than the actual size of the ROM.
157 * True size is important if the ROM is going to be copied.
159 *size
= pci_get_rom_size(pdev
, rom
, *size
);
168 /* restore enable if ioremap fails */
169 if (!(res
->flags
& IORESOURCE_ROM_ENABLE
))
170 pci_disable_rom(pdev
);
173 EXPORT_SYMBOL(pci_map_rom
);
176 * pci_unmap_rom - unmap the ROM from kernel space
177 * @pdev: pointer to pci device struct
178 * @rom: virtual address of the previous mapping
180 * Remove a mapping of a previously mapped ROM
182 void pci_unmap_rom(struct pci_dev
*pdev
, void __iomem
*rom
)
184 struct resource
*res
= &pdev
->resource
[PCI_ROM_RESOURCE
];
188 /* Disable again before continuing */
189 if (!(res
->flags
& IORESOURCE_ROM_ENABLE
))
190 pci_disable_rom(pdev
);
192 EXPORT_SYMBOL(pci_unmap_rom
);
195 * pci_platform_rom - provides a pointer to any ROM image provided by the
197 * @pdev: pointer to pci device struct
198 * @size: pointer to receive size of pci window over ROM
200 void __iomem
*pci_platform_rom(struct pci_dev
*pdev
, size_t *size
)
202 if (pdev
->rom
&& pdev
->romlen
) {
203 *size
= pdev
->romlen
;
204 return phys_to_virt((phys_addr_t
)pdev
->rom
);
209 EXPORT_SYMBOL(pci_platform_rom
);