blob: ea6072fcf3d4b86cd959d816551ddde3622090dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/init.h>
2#include <linux/pci.h>
Robert Richterd199a042008-07-02 22:50:26 +02003#include <linux/topology.h>
Robert Richter91ede002008-08-22 20:23:38 +02004#include <linux/cpu.h>
Yinghai Lu27811d82010-02-10 01:20:07 -08005#include <linux/range.h>
6
Jaswinder Singh Rajput82487712008-12-27 18:32:28 +05307#include <asm/pci_x86.h>
Robert Richter3a27dd12008-06-12 20:19:23 +02008
Yinghai Lu871d5f82008-02-19 03:20:09 -08009#include <asm/pci-direct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Yinghai Lu99935a72009-10-04 21:54:24 -070011#include "bus_numa.h"
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013/*
14 * This discovers the pcibus <-> node mapping on AMD K8.
Yinghai Lu30a18d62008-02-19 03:21:20 -080015 * also get peer root bus resource for io,mmio
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Yinghai Lu30a18d62008-02-19 03:21:20 -080018struct pci_hostbridge_probe {
19 u32 bus;
20 u32 slot;
21 u32 vendor;
22 u32 device;
23};
24
25static struct pci_hostbridge_probe pci_probes[] __initdata = {
26 { 0, 0x18, PCI_VENDOR_ID_AMD, 0x1100 },
27 { 0, 0x18, PCI_VENDOR_ID_AMD, 0x1200 },
28 { 0xff, 0, PCI_VENDOR_ID_AMD, 0x1200 },
29 { 0, 0x18, PCI_VENDOR_ID_AMD, 0x1300 },
30};
31
Yinghai Lu6e184f22008-03-06 01:15:31 -080032static u64 __initdata fam10h_mmconf_start;
33static u64 __initdata fam10h_mmconf_end;
34static void __init get_pci_mmcfg_amd_fam10h_range(void)
35{
36 u32 address;
37 u64 base, msr;
38 unsigned segn_busn_bits;
39
40 /* assume all cpus from fam10h have mmconf */
41 if (boot_cpu_data.x86 < 0x10)
42 return;
43
44 address = MSR_FAM10H_MMIO_CONF_BASE;
45 rdmsrl(address, msr);
46
47 /* mmconfig is not enable */
48 if (!(msr & FAM10H_MMIO_CONF_ENABLE))
49 return;
50
51 base = msr & (FAM10H_MMIO_CONF_BASE_MASK<<FAM10H_MMIO_CONF_BASE_SHIFT);
52
53 segn_busn_bits = (msr >> FAM10H_MMIO_CONF_BUSRANGE_SHIFT) &
54 FAM10H_MMIO_CONF_BUSRANGE_MASK;
55
56 fam10h_mmconf_start = base;
57 fam10h_mmconf_end = base + (1ULL<<(segn_busn_bits + 20)) - 1;
58}
59
Yinghai Lu27811d82010-02-10 01:20:07 -080060#define RANGE_NUM 16
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/**
Yinghai Lu871d5f82008-02-19 03:20:09 -080063 * early_fill_mp_bus_to_node()
64 * called before pcibios_scan_root and pci_scan_bus
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * fills the mp_bus_to_cpumask array based according to the LDT Bus Number
66 * Registers found in the K8 northbridge
67 */
Yinghai Lu30a18d62008-02-19 03:21:20 -080068static int __init early_fill_mp_bus_info(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Yinghai Lu30a18d62008-02-19 03:21:20 -080070 int i;
71 int j;
72 unsigned bus;
Yinghai Lu871d5f82008-02-19 03:20:09 -080073 unsigned slot;
Yinghai Lu35ddd062008-02-19 03:15:08 -080074 int node;
Yinghai Lu30a18d62008-02-19 03:21:20 -080075 int link;
76 int def_node;
77 int def_link;
78 struct pci_root_info *info;
79 u32 reg;
80 struct resource *res;
Yinghai Lu97445c32010-02-10 01:20:10 -080081 u64 start;
82 u64 end;
Yinghai Lu27811d82010-02-10 01:20:07 -080083 struct range range[RANGE_NUM];
Yinghai Lu30a18d62008-02-19 03:21:20 -080084 u64 val;
85 u32 address;
Yinghai Lu3e3da002010-02-10 01:20:09 -080086 bool found;
Yinghai Lu35ddd062008-02-19 03:15:08 -080087
Yinghai Lu871d5f82008-02-19 03:20:09 -080088 if (!early_pci_allowed())
89 return -1;
90
Yinghai Lu3e3da002010-02-10 01:20:09 -080091 found = false;
Yinghai Lu30a18d62008-02-19 03:21:20 -080092 for (i = 0; i < ARRAY_SIZE(pci_probes); i++) {
93 u32 id;
94 u16 device;
95 u16 vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Yinghai Lu30a18d62008-02-19 03:21:20 -080097 bus = pci_probes[i].bus;
98 slot = pci_probes[i].slot;
99 id = read_pci_config(bus, slot, 0, PCI_VENDOR_ID);
Yinghai Lu35ddd062008-02-19 03:15:08 -0800100
Yinghai Lu30a18d62008-02-19 03:21:20 -0800101 vendor = id & 0xffff;
102 device = (id>>16) & 0xffff;
103 if (pci_probes[i].vendor == vendor &&
104 pci_probes[i].device == device) {
Yinghai Lu3e3da002010-02-10 01:20:09 -0800105 found = true;
Yinghai Lu30a18d62008-02-19 03:21:20 -0800106 break;
107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
Yinghai Lu3e3da002010-02-10 01:20:09 -0800110 if (!found)
Yinghai Lu30a18d62008-02-19 03:21:20 -0800111 return 0;
112
113 pci_root_num = 0;
114 for (i = 0; i < 4; i++) {
115 int min_bus;
116 int max_bus;
117 reg = read_pci_config(bus, slot, 1, 0xe0 + (i << 2));
118
119 /* Check if that register is enabled for bus range */
120 if ((reg & 7) != 3)
121 continue;
122
123 min_bus = (reg >> 16) & 0xff;
124 max_bus = (reg >> 24) & 0xff;
125 node = (reg >> 4) & 0x07;
126#ifdef CONFIG_NUMA
127 for (j = min_bus; j <= max_bus; j++)
Jesse Barnes25470892009-07-10 14:04:30 -0700128 set_mp_bus_to_node(j, node);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800129#endif
130 link = (reg >> 8) & 0x03;
131
132 info = &pci_root_info[pci_root_num];
133 info->bus_min = min_bus;
134 info->bus_max = max_bus;
135 info->node = node;
136 info->link = link;
137 sprintf(info->name, "PCI Bus #%02x", min_bus);
138 pci_root_num++;
139 }
140
141 /* get the default node and link for left over res */
142 reg = read_pci_config(bus, slot, 0, 0x60);
143 def_node = (reg >> 8) & 0x07;
144 reg = read_pci_config(bus, slot, 0, 0x64);
145 def_link = (reg >> 8) & 0x03;
146
147 memset(range, 0, sizeof(range));
148 range[0].end = 0xffff;
149 /* io port resource */
150 for (i = 0; i < 4; i++) {
151 reg = read_pci_config(bus, slot, 1, 0xc0 + (i << 3));
152 if (!(reg & 3))
153 continue;
154
155 start = reg & 0xfff000;
156 reg = read_pci_config(bus, slot, 1, 0xc4 + (i << 3));
157 node = reg & 0x07;
158 link = (reg >> 4) & 0x03;
159 end = (reg & 0xfff000) | 0xfff;
160
161 /* find the position */
162 for (j = 0; j < pci_root_num; j++) {
163 info = &pci_root_info[j];
164 if (info->node == node && info->link == link)
165 break;
166 }
167 if (j == pci_root_num)
168 continue; /* not found */
169
170 info = &pci_root_info[j];
Yinghai Lu6e184f22008-03-06 01:15:31 -0800171 printk(KERN_DEBUG "node %d link %d: io port [%llx, %llx]\n",
Yinghai Lu97445c32010-02-10 01:20:10 -0800172 node, link, start, end);
Yinghai Lue8ee6f02008-04-13 01:41:58 -0700173
174 /* kernel only handle 16 bit only */
175 if (end > 0xffff)
176 end = 0xffff;
177 update_res(info, start, end, IORESOURCE_IO, 1);
Yinghai Lu27811d82010-02-10 01:20:07 -0800178 subtract_range(range, RANGE_NUM, start, end);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800179 }
180 /* add left over io port range to def node/link, [0, 0xffff] */
181 /* find the position */
182 for (j = 0; j < pci_root_num; j++) {
183 info = &pci_root_info[j];
184 if (info->node == def_node && info->link == def_link)
185 break;
186 }
187 if (j < pci_root_num) {
188 info = &pci_root_info[j];
189 for (i = 0; i < RANGE_NUM; i++) {
190 if (!range[i].end)
191 continue;
192
193 update_res(info, range[i].start, range[i].end,
194 IORESOURCE_IO, 1);
195 }
196 }
197
198 memset(range, 0, sizeof(range));
199 /* 0xfd00000000-0xffffffffff for HT */
Yinghai Lu9ad3f2c2010-02-10 01:20:11 -0800200 range[0].end = cap_resource((0xfdULL<<32) - 1);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800201
202 /* need to take out [0, TOM) for RAM*/
203 address = MSR_K8_TOP_MEM1;
204 rdmsrl(address, val);
Yinghai Lu8004dd92008-05-12 17:40:39 -0700205 end = (val & 0xffffff800000ULL);
Yinghai Lu97445c32010-02-10 01:20:10 -0800206 printk(KERN_INFO "TOM: %016llx aka %lldM\n", end, end>>20);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800207 if (end < (1ULL<<32))
Yinghai Lu27811d82010-02-10 01:20:07 -0800208 subtract_range(range, RANGE_NUM, 0, end - 1);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800209
Yinghai Lu6e184f22008-03-06 01:15:31 -0800210 /* get mmconfig */
211 get_pci_mmcfg_amd_fam10h_range();
212 /* need to take out mmconf range */
213 if (fam10h_mmconf_end) {
214 printk(KERN_DEBUG "Fam 10h mmconf [%llx, %llx]\n", fam10h_mmconf_start, fam10h_mmconf_end);
Yinghai Lu27811d82010-02-10 01:20:07 -0800215 subtract_range(range, RANGE_NUM, fam10h_mmconf_start, fam10h_mmconf_end);
Yinghai Lu6e184f22008-03-06 01:15:31 -0800216 }
217
Yinghai Lu30a18d62008-02-19 03:21:20 -0800218 /* mmio resource */
219 for (i = 0; i < 8; i++) {
220 reg = read_pci_config(bus, slot, 1, 0x80 + (i << 3));
221 if (!(reg & 3))
222 continue;
223
224 start = reg & 0xffffff00; /* 39:16 on 31:8*/
225 start <<= 8;
226 reg = read_pci_config(bus, slot, 1, 0x84 + (i << 3));
227 node = reg & 0x07;
228 link = (reg >> 4) & 0x03;
229 end = (reg & 0xffffff00);
230 end <<= 8;
231 end |= 0xffff;
232
233 /* find the position */
234 for (j = 0; j < pci_root_num; j++) {
235 info = &pci_root_info[j];
236 if (info->node == node && info->link == link)
237 break;
238 }
239 if (j == pci_root_num)
240 continue; /* not found */
241
242 info = &pci_root_info[j];
Yinghai Lu6e184f22008-03-06 01:15:31 -0800243
244 printk(KERN_DEBUG "node %d link %d: mmio [%llx, %llx]",
Yinghai Lu97445c32010-02-10 01:20:10 -0800245 node, link, start, end);
Yinghai Lu6e184f22008-03-06 01:15:31 -0800246 /*
247 * some sick allocation would have range overlap with fam10h
248 * mmconf range, so need to update start and end.
249 */
250 if (fam10h_mmconf_end) {
251 int changed = 0;
252 u64 endx = 0;
253 if (start >= fam10h_mmconf_start &&
254 start <= fam10h_mmconf_end) {
255 start = fam10h_mmconf_end + 1;
256 changed = 1;
257 }
258
259 if (end >= fam10h_mmconf_start &&
260 end <= fam10h_mmconf_end) {
261 end = fam10h_mmconf_start - 1;
262 changed = 1;
263 }
264
265 if (start < fam10h_mmconf_start &&
266 end > fam10h_mmconf_end) {
267 /* we got a hole */
268 endx = fam10h_mmconf_start - 1;
269 update_res(info, start, endx, IORESOURCE_MEM, 0);
Yinghai Lu27811d82010-02-10 01:20:07 -0800270 subtract_range(range, RANGE_NUM, start, endx);
Yinghai Lu97445c32010-02-10 01:20:10 -0800271 printk(KERN_CONT " ==> [%llx, %llx]", start, endx);
Yinghai Lu6e184f22008-03-06 01:15:31 -0800272 start = fam10h_mmconf_end + 1;
273 changed = 1;
274 }
275 if (changed) {
276 if (start <= end) {
Yinghai Lu97445c32010-02-10 01:20:10 -0800277 printk(KERN_CONT " %s [%llx, %llx]", endx ? "and" : "==>", start, end);
Yinghai Lu6e184f22008-03-06 01:15:31 -0800278 } else {
279 printk(KERN_CONT "%s\n", endx?"":" ==> none");
280 continue;
281 }
282 }
283 }
284
Yinghai Lu9ad3f2c2010-02-10 01:20:11 -0800285 update_res(info, cap_resource(start), cap_resource(end),
286 IORESOURCE_MEM, 1);
Yinghai Lu27811d82010-02-10 01:20:07 -0800287 subtract_range(range, RANGE_NUM, start, end);
Yinghai Lu6e184f22008-03-06 01:15:31 -0800288 printk(KERN_CONT "\n");
Yinghai Lu30a18d62008-02-19 03:21:20 -0800289 }
290
291 /* need to take out [4G, TOM2) for RAM*/
292 /* SYS_CFG */
293 address = MSR_K8_SYSCFG;
294 rdmsrl(address, val);
295 /* TOP_MEM2 is enabled? */
296 if (val & (1<<21)) {
297 /* TOP_MEM2 */
298 address = MSR_K8_TOP_MEM2;
299 rdmsrl(address, val);
Yinghai Lu8004dd92008-05-12 17:40:39 -0700300 end = (val & 0xffffff800000ULL);
Yinghai Lu97445c32010-02-10 01:20:10 -0800301 printk(KERN_INFO "TOM2: %016llx aka %lldM\n", end, end>>20);
Yinghai Lu27811d82010-02-10 01:20:07 -0800302 subtract_range(range, RANGE_NUM, 1ULL<<32, end - 1);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800303 }
304
305 /*
306 * add left over mmio range to def node/link ?
307 * that is tricky, just record range in from start_min to 4G
308 */
309 for (j = 0; j < pci_root_num; j++) {
310 info = &pci_root_info[j];
311 if (info->node == def_node && info->link == def_link)
312 break;
313 }
314 if (j < pci_root_num) {
315 info = &pci_root_info[j];
316
317 for (i = 0; i < RANGE_NUM; i++) {
318 if (!range[i].end)
319 continue;
320
Yinghai Lu9ad3f2c2010-02-10 01:20:11 -0800321 update_res(info, cap_resource(range[i].start),
322 cap_resource(range[i].end),
Yinghai Lu30a18d62008-02-19 03:21:20 -0800323 IORESOURCE_MEM, 1);
324 }
325 }
326
Yinghai Lu30a18d62008-02-19 03:21:20 -0800327 for (i = 0; i < pci_root_num; i++) {
328 int res_num;
329 int busnum;
330
331 info = &pci_root_info[i];
332 res_num = info->res_num;
333 busnum = info->bus_min;
Yinghai Lu99935a72009-10-04 21:54:24 -0700334 printk(KERN_DEBUG "bus: [%02x, %02x] on node %x link %x\n",
Yinghai Lu30a18d62008-02-19 03:21:20 -0800335 info->bus_min, info->bus_max, info->node, info->link);
336 for (j = 0; j < res_num; j++) {
337 res = &info->res[j];
Yinghai Lu284f9332010-02-10 01:20:12 -0800338 printk(KERN_DEBUG "bus: %02x index %x %pR\n",
339 busnum, j, res);
Yinghai Lu30a18d62008-02-19 03:21:20 -0800340 }
341 }
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344}
345
Robert Richter3a27dd12008-06-12 20:19:23 +0200346#define ENABLE_CF8_EXT_CFG (1ULL << 46)
347
Robert Richter91ede002008-08-22 20:23:38 +0200348static void enable_pci_io_ecs(void *unused)
Robert Richter3a27dd12008-06-12 20:19:23 +0200349{
350 u64 reg;
351 rdmsrl(MSR_AMD64_NB_CFG, reg);
352 if (!(reg & ENABLE_CF8_EXT_CFG)) {
353 reg |= ENABLE_CF8_EXT_CFG;
354 wrmsrl(MSR_AMD64_NB_CFG, reg);
355 }
356}
357
Robert Richter91ede002008-08-22 20:23:38 +0200358static int __cpuinit amd_cpu_notify(struct notifier_block *self,
359 unsigned long action, void *hcpu)
Robert Richter3a27dd12008-06-12 20:19:23 +0200360{
Robert Richter91ede002008-08-22 20:23:38 +0200361 int cpu = (long)hcpu;
Robert Richtered217632008-08-22 20:23:38 +0200362 switch (action) {
Robert Richter91ede002008-08-22 20:23:38 +0200363 case CPU_ONLINE:
364 case CPU_ONLINE_FROZEN:
365 smp_call_function_single(cpu, enable_pci_io_ecs, NULL, 0);
366 break;
367 default:
368 break;
369 }
370 return NOTIFY_OK;
371}
372
373static struct notifier_block __cpuinitdata amd_cpu_notifier = {
374 .notifier_call = amd_cpu_notify,
375};
376
377static int __init pci_io_ecs_init(void)
378{
379 int cpu;
380
Robert Richter3a27dd12008-06-12 20:19:23 +0200381 /* assume all cpus from fam10h have IO ECS */
382 if (boot_cpu_data.x86 < 0x10)
383 return 0;
Robert Richter91ede002008-08-22 20:23:38 +0200384
385 register_cpu_notifier(&amd_cpu_notifier);
386 for_each_online_cpu(cpu)
387 amd_cpu_notify(&amd_cpu_notifier, (unsigned long)CPU_ONLINE,
388 (void *)(long)cpu);
Robert Richter3a27dd12008-06-12 20:19:23 +0200389 pci_probe |= PCI_HAS_IO_ECS;
Robert Richter91ede002008-08-22 20:23:38 +0200390
Robert Richter3a27dd12008-06-12 20:19:23 +0200391 return 0;
392}
393
Robert Richter9b4e27b2008-08-22 20:23:37 +0200394static int __init amd_postcore_init(void)
395{
396 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
397 return 0;
398
399 early_fill_mp_bus_info();
Robert Richter91ede002008-08-22 20:23:38 +0200400 pci_io_ecs_init();
Robert Richter9b4e27b2008-08-22 20:23:37 +0200401
402 return 0;
403}
404
405postcore_initcall(amd_postcore_init);