rom.c 6.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
/*
 * drivers/pci/rom.c
 *
 * (C) Copyright 2004 Jon Smirl <jonsmirl@yahoo.com>
 * (C) Copyright 2004 Silicon Graphics, Inc. Jesse Barnes <jbarnes@sgi.com>
 *
 * PCI ROM access routines
 */
#include <linux/kernel.h>
10
#include <linux/export.h>
L
Linus Torvalds 已提交
11
#include <linux/pci.h>
T
Tim Schmielau 已提交
12
#include <linux/slab.h>
L
Linus Torvalds 已提交
13 14 15 16 17

#include "pci.h"

/**
 * pci_enable_rom - enable ROM decoding for a PCI device
18
 * @pdev: PCI device to enable
L
Linus Torvalds 已提交
19 20 21 22 23 24
 *
 * Enable ROM decoding on @dev.  This involves simply turning on the last
 * bit of the PCI ROM BAR.  Note that some cards may share address decoders
 * between the ROM and other resources, so enabling it may disable access
 * to MMIO registers or other card memory.
 */
A
Alan Cox 已提交
25
int pci_enable_rom(struct pci_dev *pdev)
L
Linus Torvalds 已提交
26
{
27
	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
28
	struct pci_bus_region region;
L
Linus Torvalds 已提交
29 30
	u32 rom_addr;

31 32 33
	if (!res->flags)
		return -1;

34 35 36 37
	/* Nothing to enable if we're using a shadow copy in RAM */
	if (res->flags & IORESOURCE_ROM_SHADOW)
		return 0;

38
	pcibios_resource_to_bus(pdev->bus, &region, res);
L
Linus Torvalds 已提交
39
	pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
40 41
	rom_addr &= ~PCI_ROM_ADDRESS_MASK;
	rom_addr |= region.start | PCI_ROM_ADDRESS_ENABLE;
L
Linus Torvalds 已提交
42
	pci_write_config_dword(pdev, pdev->rom_base_reg, rom_addr);
43
	return 0;
L
Linus Torvalds 已提交
44
}
45
EXPORT_SYMBOL_GPL(pci_enable_rom);
L
Linus Torvalds 已提交
46 47 48

/**
 * pci_disable_rom - disable ROM decoding for a PCI device
49
 * @pdev: PCI device to disable
L
Linus Torvalds 已提交
50 51 52 53
 *
 * Disable ROM decoding on a PCI device by turning off the last bit in the
 * ROM BAR.
 */
A
Alan Cox 已提交
54
void pci_disable_rom(struct pci_dev *pdev)
L
Linus Torvalds 已提交
55
{
56
	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
L
Linus Torvalds 已提交
57
	u32 rom_addr;
58 59 60 61

	if (res->flags & IORESOURCE_ROM_SHADOW)
		return;

L
Linus Torvalds 已提交
62 63 64 65
	pci_read_config_dword(pdev, pdev->rom_base_reg, &rom_addr);
	rom_addr &= ~PCI_ROM_ADDRESS_ENABLE;
	pci_write_config_dword(pdev, pdev->rom_base_reg, rom_addr);
}
66
EXPORT_SYMBOL_GPL(pci_disable_rom);
L
Linus Torvalds 已提交
67

68 69
/**
 * pci_get_rom_size - obtain the actual size of the ROM image
R
Randy Dunlap 已提交
70
 * @pdev: target PCI device
71 72 73 74 75 76 77 78
 * @rom: kernel virtual pointer to image of ROM
 * @size: size of PCI window
 *  return: size of actual ROM image
 *
 * Determine the actual length of the ROM image.
 * The PCI window size could be much larger than the
 * actual image size.
 */
79
size_t pci_get_rom_size(struct pci_dev *pdev, void __iomem *rom, size_t size)
80 81 82
{
	void __iomem *image;
	int last_image;
83
	unsigned length;
84 85 86 87 88

	image = rom;
	do {
		void __iomem *pds;
		/* Standard PCI ROMs start out with these bytes 55 AA */
89 90 91
		if (readw(image) != 0xAA55) {
			dev_err(&pdev->dev, "Invalid PCI ROM header signature: expecting 0xaa55, got %#06x\n",
				readw(image));
92
			break;
93
		}
94
		/* get the PCI data structure and check its "PCIR" signature */
95
		pds = image + readw(image + 24);
96 97 98
		if (readl(pds) != 0x52494350) {
			dev_err(&pdev->dev, "Invalid PCI ROM data signature: expecting 0x52494350, got %#010x\n",
				readl(pds));
99
			break;
100
		}
101
		last_image = readb(pds + 21) & 0x80;
102 103
		length = readw(pds + 16);
		image += length * 512;
104 105 106
		/* Avoid iterating through memory outside the resource window */
		if (image > rom + size)
			break;
107
	} while (length && !last_image);
108 109 110 111 112 113

	/* never return a size larger than the PCI resource window */
	/* there are known ROMs that get the size wrong */
	return min((size_t)(image - rom), size);
}

L
Linus Torvalds 已提交
114 115
/**
 * pci_map_rom - map a PCI ROM to kernel space
116
 * @pdev: pointer to pci device struct
L
Linus Torvalds 已提交
117
 * @size: pointer to receive size of pci window over ROM
118 119
 *
 * Return: kernel virtual pointer to image of ROM
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127
 *
 * Map a PCI ROM into kernel space. If ROM is boot video ROM,
 * the shadow BIOS copy will be returned instead of the
 * actual ROM.
 */
void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)
{
	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
128
	loff_t start;
L
Linus Torvalds 已提交
129 130
	void __iomem *rom;

131 132
		if (res->flags &
			(IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY)) {
L
Linus Torvalds 已提交
133
			*size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
134 135
			return (void __iomem *)(unsigned long)
				pci_resource_start(pdev, PCI_ROM_RESOURCE);
L
Linus Torvalds 已提交
136
		} else {
137 138
			/* assign the ROM an address if it doesn't have one */
			if (res->parent == NULL &&
R
Ryan Desfosses 已提交
139
			    pci_assign_resource(pdev, PCI_ROM_RESOURCE))
140 141 142 143 144
				return NULL;
			start = pci_resource_start(pdev, PCI_ROM_RESOURCE);
			*size = pci_resource_len(pdev, PCI_ROM_RESOURCE);
			if (*size == 0)
				return NULL;
L
Linus Torvalds 已提交
145

146 147 148 149
			/* Enable ROM space decodes */
			if (pci_enable_rom(pdev))
				return NULL;
		}
150

L
Linus Torvalds 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164
	rom = ioremap(start, *size);
	if (!rom) {
		/* restore enable if ioremap fails */
		if (!(res->flags & (IORESOURCE_ROM_ENABLE |
				    IORESOURCE_ROM_COPY)))
			pci_disable_rom(pdev);
		return NULL;
	}

	/*
	 * Try to find the true size of the ROM since sometimes the PCI window
	 * size is much larger than the actual size of the ROM.
	 * True size is important if the ROM is going to be copied.
	 */
165
	*size = pci_get_rom_size(pdev, rom, *size);
L
Linus Torvalds 已提交
166 167
	return rom;
}
168
EXPORT_SYMBOL(pci_map_rom);
L
Linus Torvalds 已提交
169 170 171

/**
 * pci_unmap_rom - unmap the ROM from kernel space
172
 * @pdev: pointer to pci device struct
L
Linus Torvalds 已提交
173 174 175 176 177 178 179 180
 * @rom: virtual address of the previous mapping
 *
 * Remove a mapping of a previously mapped ROM
 */
void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom)
{
	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];

181
	if (res->flags & (IORESOURCE_ROM_COPY | IORESOURCE_ROM_BIOS_COPY))
L
Linus Torvalds 已提交
182 183
		return;

184
	iounmap(rom);
L
Linus Torvalds 已提交
185

186 187
	/* Disable again before continuing */
	if (!(res->flags & IORESOURCE_ROM_ENABLE))
L
Linus Torvalds 已提交
188 189
		pci_disable_rom(pdev);
}
190
EXPORT_SYMBOL(pci_unmap_rom);
L
Linus Torvalds 已提交
191 192

/**
193
 * pci_cleanup_rom - free the ROM copy created by pci_map_rom_copy
194
 * @pdev: pointer to pci device struct
L
Linus Torvalds 已提交
195 196 197 198 199 200
 *
 * Free the copied ROM if we allocated one.
 */
void pci_cleanup_rom(struct pci_dev *pdev)
{
	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE];
201

L
Linus Torvalds 已提交
202
	if (res->flags & IORESOURCE_ROM_COPY) {
R
Ryan Desfosses 已提交
203
		kfree((void *)(unsigned long)res->start);
204
		res->flags |= IORESOURCE_UNSET;
L
Linus Torvalds 已提交
205 206 207 208 209 210
		res->flags &= ~IORESOURCE_ROM_COPY;
		res->start = 0;
		res->end = 0;
	}
}

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
/**
 * pci_platform_rom - provides a pointer to any ROM image provided by the
 * platform
 * @pdev: pointer to pci device struct
 * @size: pointer to receive size of pci window over ROM
 */
void __iomem *pci_platform_rom(struct pci_dev *pdev, size_t *size)
{
	if (pdev->rom && pdev->romlen) {
		*size = pdev->romlen;
		return phys_to_virt((phys_addr_t)pdev->rom);
	}

	return NULL;
}
EXPORT_SYMBOL(pci_platform_rom);