blob: 49bd21702314ccda11e716c1b99aa2e2d1229ade [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 */
9#include <linux/config.h>
10#include <linux/kernel.h>
11#include <linux/pci.h>
12
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 */
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100024static int 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 */
48static void pci_disable_rom(struct pci_dev *pdev)
49{
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/**
57 * pci_map_rom - map a PCI ROM to kernel space
Martin Waitz67be2dd2005-05-01 08:59:26 -070058 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * @size: pointer to receive size of pci window over ROM
60 * @return: kernel virtual pointer to image of ROM
61 *
62 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
63 * the shadow BIOS copy will be returned instead of the
64 * actual ROM.
65 */
66void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)
67{
68 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
69 loff_t start;
70 void __iomem *rom;
71 void __iomem *image;
72 int last_image;
73
74 /* IORESOURCE_ROM_SHADOW only set on x86 */
75 if (res->flags & IORESOURCE_ROM_SHADOW) {
76 /* primary video rom always starts here */
77 start = (loff_t)0xC0000;
78 *size = 0x20000; /* cover C000:0 through E000:0 */
79 } else {
80 if (res->flags & IORESOURCE_ROM_COPY) {
81 *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100082 return (void __iomem *)pci_resource_start(pdev,
83 PCI_ROM_RESOURCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 } else {
85 /* assign the ROM an address if it doesn't have one */
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100086 if (res->parent == NULL &&
87 pci_assign_resource(pdev,PCI_ROM_RESOURCE))
88 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 start = pci_resource_start(pdev, PCI_ROM_RESOURCE);
90 *size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
91 if (*size == 0)
92 return NULL;
93
94 /* Enable ROM space decodes */
Benjamin Herrenschmidt8085ce082005-08-31 14:16:53 +100095 if (pci_enable_rom(pdev))
96 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98 }
99
100 rom = ioremap(start, *size);
101 if (!rom) {
102 /* restore enable if ioremap fails */
103 if (!(res->flags & (IORESOURCE_ROM_ENABLE |
104 IORESOURCE_ROM_SHADOW |
105 IORESOURCE_ROM_COPY)))
106 pci_disable_rom(pdev);
107 return NULL;
108 }
109
110 /*
111 * Try to find the true size of the ROM since sometimes the PCI window
112 * size is much larger than the actual size of the ROM.
113 * True size is important if the ROM is going to be copied.
114 */
115 image = rom;
116 do {
117 void __iomem *pds;
118 /* Standard PCI ROMs start out with these bytes 55 AA */
119 if (readb(image) != 0x55)
120 break;
121 if (readb(image + 1) != 0xAA)
122 break;
123 /* get the PCI data structure and check its signature */
124 pds = image + readw(image + 24);
125 if (readb(pds) != 'P')
126 break;
127 if (readb(pds + 1) != 'C')
128 break;
129 if (readb(pds + 2) != 'I')
130 break;
131 if (readb(pds + 3) != 'R')
132 break;
133 last_image = readb(pds + 21) & 0x80;
134 /* this length is reliable */
135 image += readw(pds + 16) * 512;
136 } while (!last_image);
137
Jon Smirl761a3ac2005-07-29 12:16:17 -0700138 /* never return a size larger than the PCI resource window */
139 /* there are known ROMs that get the size wrong */
140 *size = min((size_t)(image - rom), *size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 return rom;
143}
144
145/**
146 * pci_map_rom_copy - map a PCI ROM to kernel space, create a copy
Martin Waitz67be2dd2005-05-01 08:59:26 -0700147 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * @size: pointer to receive size of pci window over ROM
149 * @return: kernel virtual pointer to image of ROM
150 *
151 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
152 * the shadow BIOS copy will be returned instead of the
153 * actual ROM.
154 */
155void __iomem *pci_map_rom_copy(struct pci_dev *pdev, size_t *size)
156{
157 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
158 void __iomem *rom;
159
160 rom = pci_map_rom(pdev, size);
161 if (!rom)
162 return NULL;
163
164 if (res->flags & (IORESOURCE_ROM_COPY | IORESOURCE_ROM_SHADOW))
165 return rom;
166
167 res->start = (unsigned long)kmalloc(*size, GFP_KERNEL);
168 if (!res->start)
169 return rom;
170
171 res->end = res->start + *size;
172 memcpy_fromio((void*)res->start, rom, *size);
173 pci_unmap_rom(pdev, rom);
174 res->flags |= IORESOURCE_ROM_COPY;
175
176 return (void __iomem *)res->start;
177}
178
179/**
180 * pci_unmap_rom - unmap the ROM from kernel space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700181 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * @rom: virtual address of the previous mapping
183 *
184 * Remove a mapping of a previously mapped ROM
185 */
186void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom)
187{
188 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
189
190 if (res->flags & IORESOURCE_ROM_COPY)
191 return;
192
193 iounmap(rom);
194
195 /* Disable again before continuing, leave enabled if pci=rom */
196 if (!(res->flags & (IORESOURCE_ROM_ENABLE | IORESOURCE_ROM_SHADOW)))
197 pci_disable_rom(pdev);
198}
199
200/**
201 * pci_remove_rom - disable the ROM and remove its sysfs attribute
Martin Waitz67be2dd2005-05-01 08:59:26 -0700202 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * Remove the rom file in sysfs and disable ROM decoding.
205 */
206void pci_remove_rom(struct pci_dev *pdev)
207{
208 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
209
210 if (pci_resource_len(pdev, PCI_ROM_RESOURCE))
211 sysfs_remove_bin_file(&pdev->dev.kobj, pdev->rom_attr);
212 if (!(res->flags & (IORESOURCE_ROM_ENABLE |
213 IORESOURCE_ROM_SHADOW |
214 IORESOURCE_ROM_COPY)))
215 pci_disable_rom(pdev);
216}
217
218/**
219 * pci_cleanup_rom - internal routine for freeing the ROM copy created
220 * by pci_map_rom_copy called from remove.c
Martin Waitz67be2dd2005-05-01 08:59:26 -0700221 * @pdev: pointer to pci device struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * Free the copied ROM if we allocated one.
224 */
225void pci_cleanup_rom(struct pci_dev *pdev)
226{
227 struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
228 if (res->flags & IORESOURCE_ROM_COPY) {
229 kfree((void*)res->start);
230 res->flags &= ~IORESOURCE_ROM_COPY;
231 res->start = 0;
232 res->end = 0;
233 }
234}
235
236EXPORT_SYMBOL(pci_map_rom);
237EXPORT_SYMBOL(pci_map_rom_copy);
238EXPORT_SYMBOL(pci_unmap_rom);
239EXPORT_SYMBOL(pci_remove_rom);