blob: 132a78159b60e51bc988dc17acbaec5725e0ed98 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/pci/rom.c
3 *
4 * (C) Copyright 2004 Jon Smirl <jonsmirl@yahoo.com>
5 * (C) Copyright 2004 Silicon Graphics, Inc. Jesse Barnes <jbarnes@sgi.com>
6 *
7 * PCI ROM access routines
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/pci.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080011#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include "pci.h"
14
15/**
16 * pci_enable_rom - enable ROM decoding for a PCI device
Martin Waitz67be2dd2005-05-01 08:59:26 -070017 * @pdev: PCI device to enable
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
19 * Enable ROM decoding on @dev. This involves simply turning on the last
20 * bit of the PCI ROM BAR. Note that some cards may share address decoders
21 * between the ROM and other resources, so enabling it may disable access
22 * to MMIO registers or other card memory.
23 */
Alan Coxe416de52008-09-23 17:25:10 +010024int pci_enable_rom(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100026 struct resource *res = pdev->resource + PCI_ROM_RESOURCE;
27 struct pci_bus_region region;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 u32 rom_addr;
29
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100030 if (!res->flags)
31 return -1;
32
33 pcibios_resource_to_bus(pdev, &region, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100035 rom_addr &= ~PCI_ROM_ADDRESS_MASK;
36 rom_addr |= region.start | PCI_ROM_ADDRESS_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 pci_write_config_dword(pdev, pdev->rom_base_reg, rom_addr);
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100038 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41/**
42 * pci_disable_rom - disable ROM decoding for a PCI device
Martin Waitz67be2dd2005-05-01 08:59:26 -070043 * @pdev: PCI device to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 *
45 * Disable ROM decoding on a PCI device by turning off the last bit in the
46 * ROM BAR.
47 */
Alan Coxe416de52008-09-23 17:25:10 +010048void pci_disable_rom(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 u32 rom_addr;
51 pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
52 rom_addr &= ~PCI_ROM_ADDRESS_ENABLE;
53 pci_write_config_dword(pdev, pdev->rom_base_reg, rom_addr);
54}
55
56/**
John Kellerd7ad2252007-07-09 11:42:24 -070057 * pci_get_rom_size - obtain the actual size of the ROM image
58 * @rom: kernel virtual pointer to image of ROM
59 * @size: size of PCI window
60 * return: size of actual ROM image
61 *
62 * Determine the actual length of the ROM image.
63 * The PCI window size could be much larger than the
64 * actual image size.
65 */
66size_t pci_get_rom_size(void __iomem *rom, size_t size)
67{
68 void __iomem *image;
69 int last_image;
70
71 image = rom;
72 do {
73 void __iomem *pds;
74 /* Standard PCI ROMs start out with these bytes 55 AA */
75 if (readb(image) != 0x55)
76 break;
77 if (readb(image + 1) != 0xAA)
78 break;
79 /* get the PCI data structure and check its signature */
80 pds = image + readw(image + 24);
81 if (readb(pds) != 'P')
82 break;
83 if (readb(pds + 1) != 'C')
84 break;
85 if (readb(pds + 2) != 'I')
86 break;
87 if (readb(pds + 3) != 'R')
88 break;
89 last_image = readb(pds + 21) & 0x80;
90 /* this length is reliable */
91 image += readw(pds + 16) * 512;
92 } while (!last_image);
93
94 /* never return a size larger than the PCI resource window */
95 /* there are known ROMs that get the size wrong */
96 return min((size_t)(image - rom), size);
97}
98
99/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * pci_map_rom - map a PCI ROM to kernel space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700101 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * @size: pointer to receive size of pci window over ROM
Randy Dunlapf5dafca2008-10-29 22:35:12 -0700103 *
104 * Return: kernel virtual pointer to image of ROM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
106 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
107 * the shadow BIOS copy will be returned instead of the
108 * actual ROM.
109 */
110void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)
111{
112 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
113 loff_t start;
114 void __iomem *rom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
eiichiro.oiwa.nm@hitachi.comb5e4efe2006-09-28 13:55:47 +0900116 /*
Eiichiro Oiwa6b5c76b2006-10-23 15:14:07 +0900117 * IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy
118 * memory map if the VGA enable bit of the Bridge Control register is
119 * set for embedded VGA.
eiichiro.oiwa.nm@hitachi.comb5e4efe2006-09-28 13:55:47 +0900120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (res->flags & IORESOURCE_ROM_SHADOW) {
122 /* primary video rom always starts here */
123 start = (loff_t)0xC0000;
124 *size = 0x20000; /* cover C000:0 through E000:0 */
125 } else {
John Kellera2302c62006-10-04 16:49:52 -0500126 if (res->flags &
127 (IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700129 return (void __iomem *)(unsigned long)
130 pci_resource_start(pdev, PCI_ROM_RESOURCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 } else {
132 /* assign the ROM an address if it doesn't have one */
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +1000133 if (res->parent == NULL &&
134 pci_assign_resource(pdev,PCI_ROM_RESOURCE))
135 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 start = pci_resource_start(pdev, PCI_ROM_RESOURCE);
137 *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
138 if (*size == 0)
139 return NULL;
140
141 /* Enable ROM space decodes */
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +1000142 if (pci_enable_rom(pdev))
143 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 }
146
147 rom = ioremap(start, *size);
148 if (!rom) {
149 /* restore enable if ioremap fails */
150 if (!(res->flags & (IORESOURCE_ROM_ENABLE |
151 IORESOURCE_ROM_SHADOW |
152 IORESOURCE_ROM_COPY)))
153 pci_disable_rom(pdev);
154 return NULL;
155 }
156
157 /*
158 * Try to find the true size of the ROM since sometimes the PCI window
159 * size is much larger than the actual size of the ROM.
160 * True size is important if the ROM is going to be copied.
161 */
John Kellerd7ad2252007-07-09 11:42:24 -0700162 *size = pci_get_rom_size(rom, *size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return rom;
164}
165
Adrian Bunkb09549e2007-10-27 03:06:25 +0200166#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/**
168 * pci_map_rom_copy - map a PCI ROM to kernel space, create a copy
Martin Waitz67be2dd2005-05-01 08:59:26 -0700169 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * @size: pointer to receive size of pci window over ROM
Randy Dunlapf5dafca2008-10-29 22:35:12 -0700171 *
172 * Return: kernel virtual pointer to image of ROM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
174 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
175 * the shadow BIOS copy will be returned instead of the
176 * actual ROM.
177 */
178void __iomem *pci_map_rom_copy(struct pci_dev *pdev, size_t *size)
179{
180 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
181 void __iomem *rom;
182
183 rom = pci_map_rom(pdev, size);
184 if (!rom)
185 return NULL;
186
John Kellera2302c62006-10-04 16:49:52 -0500187 if (res->flags & (IORESOURCE_ROM_COPY | IORESOURCE_ROM_SHADOW |
188 IORESOURCE_ROM_BIOS_COPY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return rom;
190
191 res->start = (unsigned long)kmalloc(*size, GFP_KERNEL);
192 if (!res->start)
193 return rom;
194
195 res->end = res->start + *size;
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700196 memcpy_fromio((void*)(unsigned long)res->start, rom, *size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 pci_unmap_rom(pdev, rom);
198 res->flags |= IORESOURCE_ROM_COPY;
199
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700200 return (void __iomem *)(unsigned long)res->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
Adrian Bunkb09549e2007-10-27 03:06:25 +0200202#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204/**
205 * pci_unmap_rom - unmap the ROM from kernel space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700206 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * @rom: virtual address of the previous mapping
208 *
209 * Remove a mapping of a previously mapped ROM
210 */
211void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom)
212{
213 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
214
John Kellera2302c62006-10-04 16:49:52 -0500215 if (res->flags & (IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return;
217
218 iounmap(rom);
219
220 /* Disable again before continuing, leave enabled if pci=rom */
221 if (!(res->flags & (IORESOURCE_ROM_ENABLE | IORESOURCE_ROM_SHADOW)))
222 pci_disable_rom(pdev);
223}
224
Adrian Bunkb09549e2007-10-27 03:06:25 +0200225#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/**
227 * pci_remove_rom - disable the ROM and remove its sysfs attribute
Martin Waitz67be2dd2005-05-01 08:59:26 -0700228 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 *
230 * Remove the rom file in sysfs and disable ROM decoding.
231 */
232void pci_remove_rom(struct pci_dev *pdev)
233{
234 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
235
236 if (pci_resource_len(pdev, PCI_ROM_RESOURCE))
237 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
238 if (!(res->flags & (IORESOURCE_ROM_ENABLE |
239 IORESOURCE_ROM_SHADOW |
John Kellera2302c62006-10-04 16:49:52 -0500240 IORESOURCE_ROM_BIOS_COPY |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 IORESOURCE_ROM_COPY)))
242 pci_disable_rom(pdev);
243}
Adrian Bunkb09549e2007-10-27 03:06:25 +0200244#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246/**
Randy Dunlap06432452008-02-29 22:03:15 -0800247 * pci_cleanup_rom - free the ROM copy created by pci_map_rom_copy
Martin Waitz67be2dd2005-05-01 08:59:26 -0700248 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 *
250 * Free the copied ROM if we allocated one.
251 */
252void pci_cleanup_rom(struct pci_dev *pdev)
253{
254 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
255 if (res->flags & IORESOURCE_ROM_COPY) {
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700256 kfree((void*)(unsigned long)res->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 res->flags &= ~IORESOURCE_ROM_COPY;
258 res->start = 0;
259 res->end = 0;
260 }
261}
262
263EXPORT_SYMBOL(pci_map_rom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264EXPORT_SYMBOL(pci_unmap_rom);
Alan Coxe416de52008-09-23 17:25:10 +0100265EXPORT_SYMBOL_GPL(pci_enable_rom);
266EXPORT_SYMBOL_GPL(pci_disable_rom);