blob: 8e05449660fe9ffd45d9405a3bc144c256b95539 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mmconfig.c - Low-level direct PCI config space access via MMCONFIG
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +03003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This is an 64bit optimized version that always keeps the full mmconfig
5 * space mapped. This allows lockless config space operation.
6 */
7
8#include <linux/pci.h>
9#include <linux/init.h>
Greg Kroah-Hartman54549392005-06-23 17:35:56 -070010#include <linux/acpi.h>
Andi Kleend6ece542005-12-12 22:17:11 -080011#include <linux/bitmap.h>
Arjan van de Ven946f2ee2006-04-07 19:49:30 +020012#include <asm/e820.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "pci.h"
15
Chuck Ebbertead2bfe2006-06-15 04:41:52 -040016/* aperture is up to 256MB but BIOS may reserve less */
17#define MMCONFIG_APER_MIN (2 * 1024*1024)
18#define MMCONFIG_APER_MAX (256 * 1024*1024)
19
Andi Kleen8c30b1a742006-04-07 19:50:12 +020020/* Verify the first 16 busses. We assume that systems with more busses
21 get MCFG right. */
Olivier Galibertb7867392007-02-13 13:26:20 +010022#define PCI_MMCFG_MAX_CHECK_BUS 16
Andi Kleend6ece542005-12-12 22:17:11 -080023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/* Static virtual mapping of the MMCONFIG aperture */
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070025struct mmcfg_virt {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030026 struct acpi_mcfg_allocation *cfg;
Al Viro8b8a4e32005-12-15 09:17:44 +000027 char __iomem *virt;
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070028};
29static struct mmcfg_virt *pci_mmcfg_virt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
OGAWA Hirofumifaed1972007-02-13 13:26:20 +010031static inline int mcfg_broken(void)
32{
33 struct acpi_mcfg_allocation *cfg = &pci_mmcfg_config[0];
34
35 /* Handle more broken MCFG tables on Asus etc.
36 They only contain a single entry for bus 0-0. Assume
37 this applies to all busses. */
38 if (pci_mmcfg_config_num == 1 &&
39 cfg->pci_segment_group_number == 0 &&
40 (cfg->start_bus_number | cfg->end_bus_number) == 0)
41 return 1;
42 return 0;
43}
44
45static void __iomem *mcfg_ioremap(struct acpi_mcfg_allocation *cfg)
46{
47 void __iomem *addr;
48 u32 size;
49
50 if (mcfg_broken())
51 size = 256 << 20;
52 else
53 size = (cfg->end_bus_number + 1) << 20;
54
55 addr = ioremap_nocache(cfg->base_address, size);
56 if (addr) {
57 printk(KERN_INFO "PCI: Using MMCONFIG at %x - %x\n",
58 cfg->base_address,
59 cfg->base_address + size - 1);
60 }
61 return addr;
62}
63
Al Viro8b8a4e32005-12-15 09:17:44 +000064static char __iomem *get_virt(unsigned int seg, unsigned bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070066 int cfg_num = -1;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030067 struct acpi_mcfg_allocation *cfg;
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070068
69 while (1) {
70 ++cfg_num;
Andi Kleen31030392006-01-27 02:03:50 +010071 if (cfg_num >= pci_mmcfg_config_num)
72 break;
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070073 cfg = pci_mmcfg_virt[cfg_num].cfg;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +030074 if (cfg->pci_segment != seg)
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070075 continue;
76 if ((cfg->start_bus_number <= bus) &&
77 (cfg->end_bus_number >= bus))
78 return pci_mmcfg_virt[cfg_num].virt;
79 }
Andi Kleen31030392006-01-27 02:03:50 +010080
OGAWA Hirofumifaed1972007-02-13 13:26:20 +010081 if (mcfg_broken())
Andi Kleen1de6bf32006-02-03 21:51:29 +010082 return pci_mmcfg_virt[0].virt;
Andi Kleen31030392006-01-27 02:03:50 +010083
84 /* Fall back to type 0 */
Al Virocc598532006-02-03 20:28:01 -050085 return NULL;
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070086}
87
Al Viro8b8a4e32005-12-15 09:17:44 +000088static char __iomem *pci_dev_base(unsigned int seg, unsigned int bus, unsigned int devfn)
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -070089{
Al Viro8b8a4e32005-12-15 09:17:44 +000090 char __iomem *addr;
Olivier Galibertb7867392007-02-13 13:26:20 +010091 if (seg == 0 && bus < PCI_MMCFG_MAX_CHECK_BUS &&
92 test_bit(32*bus + PCI_SLOT(devfn), pci_mmcfg_fallback_slots))
Andi Kleend6ece542005-12-12 22:17:11 -080093 return NULL;
94 addr = get_virt(seg, bus);
Andi Kleen928cf8c2005-12-12 22:17:10 -080095 if (!addr)
96 return NULL;
97 return addr + ((bus << 20) | (devfn << 12));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static int pci_mmcfg_read(unsigned int seg, unsigned int bus,
101 unsigned int devfn, int reg, int len, u32 *value)
102{
Al Viro8b8a4e32005-12-15 09:17:44 +0000103 char __iomem *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Andi Kleen928cf8c2005-12-12 22:17:10 -0800105 /* Why do we have this when nobody checks it. How about a BUG()!? -AK */
Andi Kleenecc16ba2006-04-11 12:54:48 +0200106 if (unlikely((bus > 255) || (devfn > 255) || (reg > 4095))) {
Andi Kleen49c93e82006-04-07 19:50:15 +0200107 *value = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return -EINVAL;
Andi Kleen49c93e82006-04-07 19:50:15 +0200109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Andi Kleen928cf8c2005-12-12 22:17:10 -0800111 addr = pci_dev_base(seg, bus, devfn);
112 if (!addr)
113 return pci_conf1_read(seg,bus,devfn,reg,len,value);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 switch (len) {
116 case 1:
117 *value = readb(addr + reg);
118 break;
119 case 2:
120 *value = readw(addr + reg);
121 break;
122 case 4:
123 *value = readl(addr + reg);
124 break;
125 }
126
127 return 0;
128}
129
130static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
131 unsigned int devfn, int reg, int len, u32 value)
132{
Al Viro8b8a4e32005-12-15 09:17:44 +0000133 char __iomem *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Andi Kleen928cf8c2005-12-12 22:17:10 -0800135 /* Why do we have this when nobody checks it. How about a BUG()!? -AK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (unlikely((bus > 255) || (devfn > 255) || (reg > 4095)))
137 return -EINVAL;
138
Andi Kleen928cf8c2005-12-12 22:17:10 -0800139 addr = pci_dev_base(seg, bus, devfn);
140 if (!addr)
141 return pci_conf1_write(seg,bus,devfn,reg,len,value);
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 switch (len) {
144 case 1:
145 writeb(value, addr + reg);
146 break;
147 case 2:
148 writew(value, addr + reg);
149 break;
150 case 4:
151 writel(value, addr + reg);
152 break;
153 }
154
155 return 0;
156}
157
158static struct pci_raw_ops pci_mmcfg = {
159 .read = pci_mmcfg_read,
160 .write = pci_mmcfg_write,
161};
162
Olivier Galibertb7867392007-02-13 13:26:20 +0100163int __init pci_mmcfg_arch_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700165 int i;
Olivier Galibertb7867392007-02-13 13:26:20 +0100166 pci_mmcfg_virt = kmalloc(sizeof(*pci_mmcfg_virt) *
167 pci_mmcfg_config_num, GFP_KERNEL);
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700168 if (pci_mmcfg_virt == NULL) {
Dave Jones3095fc02006-10-20 14:45:33 -0700169 printk(KERN_ERR "PCI: Can not allocate memory for mmconfig structures\n");
Olivier Galibertb7867392007-02-13 13:26:20 +0100170 return 0;
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700171 }
Olivier Galibertb7867392007-02-13 13:26:20 +0100172
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700173 for (i = 0; i < pci_mmcfg_config_num; ++i) {
174 pci_mmcfg_virt[i].cfg = &pci_mmcfg_config[i];
OGAWA Hirofumifaed1972007-02-13 13:26:20 +0100175 pci_mmcfg_virt[i].virt = mcfg_ioremap(&pci_mmcfg_config[i]);
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700176 if (!pci_mmcfg_virt[i].virt) {
Dave Jones3095fc02006-10-20 14:45:33 -0700177 printk(KERN_ERR "PCI: Cannot map mmconfig aperture for "
178 "segment %d\n",
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300179 pci_mmcfg_config[i].pci_segment);
Olivier Galibertb7867392007-02-13 13:26:20 +0100180 return 0;
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700181 }
Greg Kroah-Hartman1cde8a12005-06-23 17:35:56 -0700182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 raw_pci_ops = &pci_mmcfg;
Olivier Galibertb7867392007-02-13 13:26:20 +0100184 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}