blob: ee815c7d3e4cc4d893314b68d225970c5f4179a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx>
3 * Copyright (C) 2004 Intel Corp.
4 *
5 * This code is released under the GNU General Public License version 2.
6 */
7
8/*
9 * mmconfig.c - Low-level direct PCI config space access via MMCONFIG
10 */
11
12#include <linux/pci.h>
13#include <linux/init.h>
Greg Kroah-Hartman54549392005-06-23 17:35:56 -070014#include <linux/acpi.h>
Arjan van de Ven946f2ee2006-04-07 19:49:30 +020015#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "pci.h"
17
Arjan van de Ven946f2ee2006-04-07 19:49:30 +020018#define MMCONFIG_APER_SIZE (256*1024*1024)
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define mmcfg_virt_addr ((void __iomem *) fix_to_virt(FIX_PCIE_MCFG))
21
22/* The base address of the last MMCONFIG device accessed */
23static u32 mmcfg_last_accessed_device;
24
Andi Kleend6ece542005-12-12 22:17:11 -080025static DECLARE_BITMAP(fallback_slots, 32);
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/*
28 * Functions for accessing PCI configuration space with MMCONFIG accesses
29 */
Andi Kleend6ece542005-12-12 22:17:11 -080030static u32 get_base_addr(unsigned int seg, int bus, unsigned devfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070032 int cfg_num = -1;
33 struct acpi_table_mcfg_config *cfg;
34
Andi Kleend6ece542005-12-12 22:17:11 -080035 if (seg == 0 && bus == 0 &&
36 test_bit(PCI_SLOT(devfn), fallback_slots))
37 return 0;
38
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070039 while (1) {
40 ++cfg_num;
41 if (cfg_num >= pci_mmcfg_config_num) {
Andi Kleen31030392006-01-27 02:03:50 +010042 break;
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070043 }
44 cfg = &pci_mmcfg_config[cfg_num];
45 if (cfg->pci_segment_group_number != seg)
46 continue;
47 if ((cfg->start_bus_number <= bus) &&
48 (cfg->end_bus_number >= bus))
49 return cfg->base_address;
50 }
Andi Kleen31030392006-01-27 02:03:50 +010051
52 /* Handle more broken MCFG tables on Asus etc.
53 They only contain a single entry for bus 0-0. Assume
54 this applies to all busses. */
55 cfg = &pci_mmcfg_config[0];
56 if (pci_mmcfg_config_num == 1 &&
57 cfg->pci_segment_group_number == 0 &&
58 (cfg->start_bus_number | cfg->end_bus_number) == 0)
59 return cfg->base_address;
60
61 /* Fall back to type 0 */
62 return 0;
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070063}
64
Andi Kleen928cf8c2005-12-12 22:17:10 -080065static inline void pci_exp_set_dev_base(unsigned int base, int bus, int devfn)
Greg Kroah-Hartmand57e26c2005-06-23 17:35:56 -070066{
Andi Kleen928cf8c2005-12-12 22:17:10 -080067 u32 dev_base = base | (bus << 20) | (devfn << 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (dev_base != mmcfg_last_accessed_device) {
69 mmcfg_last_accessed_device = dev_base;
70 set_fixmap_nocache(FIX_PCIE_MCFG, dev_base);
71 }
72}
73
74static int pci_mmcfg_read(unsigned int seg, unsigned int bus,
75 unsigned int devfn, int reg, int len, u32 *value)
76{
77 unsigned long flags;
Andi Kleen928cf8c2005-12-12 22:17:10 -080078 u32 base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 if (!value || (bus > 255) || (devfn > 255) || (reg > 4095))
81 return -EINVAL;
82
Andi Kleend6ece542005-12-12 22:17:11 -080083 base = get_base_addr(seg, bus, devfn);
Andi Kleen928cf8c2005-12-12 22:17:10 -080084 if (!base)
85 return pci_conf1_read(seg,bus,devfn,reg,len,value);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 spin_lock_irqsave(&pci_config_lock, flags);
88
Andi Kleen928cf8c2005-12-12 22:17:10 -080089 pci_exp_set_dev_base(base, bus, devfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 switch (len) {
92 case 1:
93 *value = readb(mmcfg_virt_addr + reg);
94 break;
95 case 2:
96 *value = readw(mmcfg_virt_addr + reg);
97 break;
98 case 4:
99 *value = readl(mmcfg_virt_addr + reg);
100 break;
101 }
102
103 spin_unlock_irqrestore(&pci_config_lock, flags);
104
105 return 0;
106}
107
108static int pci_mmcfg_write(unsigned int seg, unsigned int bus,
109 unsigned int devfn, int reg, int len, u32 value)
110{
111 unsigned long flags;
Andi Kleen928cf8c2005-12-12 22:17:10 -0800112 u32 base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 if ((bus > 255) || (devfn > 255) || (reg > 4095))
115 return -EINVAL;
116
Andi Kleend6ece542005-12-12 22:17:11 -0800117 base = get_base_addr(seg, bus, devfn);
Andi Kleen928cf8c2005-12-12 22:17:10 -0800118 if (!base)
119 return pci_conf1_write(seg,bus,devfn,reg,len,value);
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 spin_lock_irqsave(&pci_config_lock, flags);
122
Andi Kleen928cf8c2005-12-12 22:17:10 -0800123 pci_exp_set_dev_base(base, bus, devfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 switch (len) {
126 case 1:
127 writeb(value, mmcfg_virt_addr + reg);
128 break;
129 case 2:
130 writew(value, mmcfg_virt_addr + reg);
131 break;
132 case 4:
133 writel(value, mmcfg_virt_addr + reg);
134 break;
135 }
136
137 spin_unlock_irqrestore(&pci_config_lock, flags);
138
139 return 0;
140}
141
142static struct pci_raw_ops pci_mmcfg = {
143 .read = pci_mmcfg_read,
144 .write = pci_mmcfg_write,
145};
146
Andi Kleend6ece542005-12-12 22:17:11 -0800147/* K8 systems have some devices (typically in the builtin northbridge)
148 that are only accessible using type1
149 Normally this can be expressed in the MCFG by not listing them
150 and assigning suitable _SEGs, but this isn't implemented in some BIOS.
151 Instead try to discover all devices on bus 0 that are unreachable using MM
152 and fallback for them.
153 We only do this for bus 0/seg 0 */
154static __init void unreachable_devices(void)
155{
156 int i;
157 unsigned long flags;
158
159 for (i = 0; i < 32; i++) {
160 u32 val1;
161 u32 addr;
162
163 pci_conf1_read(0, 0, PCI_DEVFN(i, 0), 0, 4, &val1);
164 if (val1 == 0xffffffff)
165 continue;
166
167 /* Locking probably not needed, but safer */
168 spin_lock_irqsave(&pci_config_lock, flags);
169 addr = get_base_addr(0, 0, PCI_DEVFN(i, 0));
170 if (addr != 0)
171 pci_exp_set_dev_base(addr, 0, PCI_DEVFN(i, 0));
Andi Kleen42f3ab42005-12-16 11:08:55 -0800172 if (addr == 0 || readl((u32 __iomem *)mmcfg_virt_addr) != val1)
Andi Kleend6ece542005-12-12 22:17:11 -0800173 set_bit(i, fallback_slots);
174 spin_unlock_irqrestore(&pci_config_lock, flags);
175 }
176}
177
Andi Kleen92c05fc2006-03-23 14:35:12 -0800178void __init pci_mmcfg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 if ((pci_probe & PCI_PROBE_MMCONF) == 0)
Andi Kleen92c05fc2006-03-23 14:35:12 -0800181 return;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700182
183 acpi_table_parse(ACPI_MCFG, acpi_parse_mcfg);
184 if ((pci_mmcfg_config_num == 0) ||
185 (pci_mmcfg_config == NULL) ||
186 (pci_mmcfg_config[0].base_address == 0))
Andi Kleen92c05fc2006-03-23 14:35:12 -0800187 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Arjan van de Ven946f2ee2006-04-07 19:49:30 +0200189 if (!e820_all_mapped(pci_mmcfg_config[0].base_address,
190 pci_mmcfg_config[0].base_address + MMCONFIG_APER_SIZE,
191 E820_RESERVED)) {
192 printk(KERN_ERR "PCI: BIOS Bug: MCFG area is not E820-reserved\n");
193 printk(KERN_ERR "PCI: Not using MMCONFIG.\n");
194 return;
195 }
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 printk(KERN_INFO "PCI: Using MMCONFIG\n");
198 raw_pci_ops = &pci_mmcfg;
199 pci_probe = (pci_probe & ~PCI_PROBE_MASK) | PCI_PROBE_MMCONF;
200
Andi Kleend6ece542005-12-12 22:17:11 -0800201 unreachable_devices();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}