Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * AMD K8 NUMA support. |
| 3 | * Discover the memory map and associated nodes. |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * This version reads it directly from the K8 northbridge. |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright 2002,2003 Andi Kleen, SuSE Labs. |
| 8 | */ |
| 9 | #include <linux/kernel.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/string.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/nodemask.h> |
| 14 | #include <asm/io.h> |
| 15 | #include <linux/pci_ids.h> |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 16 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/types.h> |
| 18 | #include <asm/mmzone.h> |
| 19 | #include <asm/proto.h> |
| 20 | #include <asm/e820.h> |
| 21 | #include <asm/pci-direct.h> |
| 22 | #include <asm/numa.h> |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 23 | #include <asm/mpspec.h> |
| 24 | #include <asm/apic.h> |
Thomas Gleixner | 0eafe23 | 2008-05-12 15:43:35 +0200 | [diff] [blame] | 25 | #include <asm/k8.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 27 | static struct bootnode __initdata nodes[8]; |
| 28 | static nodemask_t __initdata nodes_parsed = NODE_MASK_NONE; |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | static __init int find_northbridge(void) |
| 31 | { |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 32 | int num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 34 | for (num = 0; num < 32; num++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | u32 header; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 36 | |
| 37 | header = read_pci_config(0, num, 0, 0x00); |
Joachim Deguara | bb4a1d6 | 2008-01-30 13:34:12 +0100 | [diff] [blame] | 38 | if (header != (PCI_VENDOR_ID_AMD | (0x1100<<16)) && |
| 39 | header != (PCI_VENDOR_ID_AMD | (0x1200<<16)) && |
| 40 | header != (PCI_VENDOR_ID_AMD | (0x1300<<16))) |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 41 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 43 | header = read_pci_config(0, num, 1, 0x00); |
Joachim Deguara | bb4a1d6 | 2008-01-30 13:34:12 +0100 | [diff] [blame] | 44 | if (header != (PCI_VENDOR_ID_AMD | (0x1101<<16)) && |
| 45 | header != (PCI_VENDOR_ID_AMD | (0x1201<<16)) && |
| 46 | header != (PCI_VENDOR_ID_AMD | (0x1301<<16))) |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 47 | continue; |
| 48 | return num; |
| 49 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 51 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 54 | static __init void early_get_boot_cpu_id(void) |
| 55 | { |
| 56 | /* |
| 57 | * need to get boot_cpu_id so can use that to create apicid_to_node |
| 58 | * in k8_scan_nodes() |
| 59 | */ |
| 60 | /* |
| 61 | * Find possible boot-time SMP configuration: |
| 62 | */ |
Yinghai Lu | a4caa18 | 2008-06-19 12:15:01 -0700 | [diff] [blame] | 63 | #ifdef CONFIG_X86_MPPARSE |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 64 | early_find_smp_config(); |
Yinghai Lu | a4caa18 | 2008-06-19 12:15:01 -0700 | [diff] [blame] | 65 | #endif |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 66 | #ifdef CONFIG_ACPI |
| 67 | /* |
| 68 | * Read APIC information from ACPI tables. |
| 69 | */ |
| 70 | early_acpi_boot_init(); |
| 71 | #endif |
Yinghai Lu | a4caa18 | 2008-06-19 12:15:01 -0700 | [diff] [blame] | 72 | #ifdef CONFIG_X86_MPPARSE |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 73 | /* |
| 74 | * get boot-time SMP configuration: |
| 75 | */ |
| 76 | if (smp_found_config) |
| 77 | early_get_smp_config(); |
Yinghai Lu | a4caa18 | 2008-06-19 12:15:01 -0700 | [diff] [blame] | 78 | #endif |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 79 | early_init_lapic_mapping(); |
| 80 | } |
| 81 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 82 | int __init k8_get_nodes(struct bootnode *physnodes) |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 83 | { |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 84 | int i; |
| 85 | int ret = 0; |
| 86 | |
| 87 | for_each_node_mask(i, nodes_parsed) { |
| 88 | physnodes[ret].start = nodes[i].start; |
| 89 | physnodes[ret].end = nodes[i].end; |
| 90 | ret++; |
| 91 | } |
| 92 | return ret; |
| 93 | } |
| 94 | |
| 95 | int __init k8_numa_init(unsigned long start_pfn, unsigned long end_pfn) |
| 96 | { |
| 97 | unsigned long start = PFN_PHYS(start_pfn); |
| 98 | unsigned long end = PFN_PHYS(end_pfn); |
| 99 | unsigned numnodes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | unsigned long prevbase; |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 101 | int i, nb, found = 0; |
Thomas Gleixner | d34c089 | 2008-05-12 15:43:35 +0200 | [diff] [blame] | 102 | u32 nodeid, reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Andi Kleen | 0637a70 | 2006-09-26 10:52:41 +0200 | [diff] [blame] | 104 | if (!early_pci_allowed()) |
| 105 | return -1; |
| 106 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 107 | nb = find_northbridge(); |
| 108 | if (nb < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | return nb; |
| 110 | |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 111 | pr_info("Scanning NUMA topology in Northbridge %d\n", nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 113 | reg = read_pci_config(0, nb, 0, 0x60); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | numnodes = ((reg >> 4) & 0xF) + 1; |
Andi Kleen | 3bea9c9 | 2007-05-02 19:27:21 +0200 | [diff] [blame] | 115 | if (numnodes <= 1) |
| 116 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 118 | pr_info("Number of physical nodes %d\n", numnodes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | prevbase = 0; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 121 | for (i = 0; i < 8; i++) { |
| 122 | unsigned long base, limit; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | base = read_pci_config(0, nb, 1, 0x40 + i*8); |
| 125 | limit = read_pci_config(0, nb, 1, 0x44 + i*8); |
| 126 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 127 | nodeid = limit & 7; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 128 | if ((base & 3) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | if (i < numnodes) |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 130 | pr_info("Skipping disabled node %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | continue; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 132 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | if (nodeid >= numnodes) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 134 | pr_info("Ignoring excess node %d (%lx:%lx)\n", nodeid, |
| 135 | base, limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | continue; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 139 | if (!limit) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 140 | pr_info("Skipping node entry %d (base %lx)\n", |
| 141 | i, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | continue; |
| 143 | } |
| 144 | if ((base >> 8) & 3 || (limit >> 8) & 3) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 145 | pr_err("Node %d using interleaving mode %lx/%lx\n", |
| 146 | nodeid, (base >> 8) & 3, (limit >> 8) & 3); |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 147 | return -1; |
| 148 | } |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 149 | if (node_isset(nodeid, nodes_parsed)) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 150 | pr_info("Node %d already present, skipping\n", |
| 151 | nodeid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | continue; |
| 153 | } |
| 154 | |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 155 | limit >>= 16; |
| 156 | limit <<= 24; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | limit |= (1<<24)-1; |
Magnus Damm | ffd10a2 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 158 | limit++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 160 | if (limit > end) |
| 161 | limit = end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | if (limit <= base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | continue; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 164 | |
| 165 | base >>= 16; |
| 166 | base <<= 24; |
| 167 | |
| 168 | if (base < start) |
| 169 | base = start; |
| 170 | if (limit > end) |
| 171 | limit = end; |
| 172 | if (limit == base) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 173 | pr_err("Empty node %d\n", nodeid); |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 174 | continue; |
| 175 | } |
| 176 | if (limit < base) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 177 | pr_err("Node %d bogus settings %lx-%lx.\n", |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 178 | nodeid, base, limit); |
| 179 | continue; |
| 180 | } |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /* Could sort here, but pun for now. Should not happen anyroads. */ |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 183 | if (prevbase > base) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 184 | pr_err("Node map not sorted %lx,%lx\n", |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 185 | prevbase, base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | return -1; |
| 187 | } |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 188 | |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 189 | pr_info("Node %d MemBase %016lx Limit %016lx\n", |
| 190 | nodeid, base, limit); |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | found++; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 193 | |
| 194 | nodes[nodeid].start = base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | nodes[nodeid].end = limit; |
| 196 | |
| 197 | prevbase = base; |
| 198 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 199 | node_set(nodeid, nodes_parsed); |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 200 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | if (!found) |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 203 | return -1; |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 204 | return 0; |
| 205 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 207 | int __init k8_scan_nodes(void) |
| 208 | { |
| 209 | unsigned int bits; |
| 210 | unsigned int cores; |
| 211 | unsigned int apicid_base; |
| 212 | int i; |
| 213 | |
| 214 | BUG_ON(nodes_empty(nodes_parsed)); |
| 215 | node_possible_map = nodes_parsed; |
Suresh Siddha | 6ec6e0d | 2008-03-25 10:14:35 -0700 | [diff] [blame] | 216 | memnode_shift = compute_hash_shift(nodes, 8, NULL); |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 217 | if (memnode_shift < 0) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 218 | pr_err("No NUMA node hash function found. Contact maintainer\n"); |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 219 | return -1; |
| 220 | } |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 221 | pr_info("Using node hash shift of %d\n", memnode_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Yinghai Lu | 3f6e5a1 | 2008-01-30 13:30:39 +0100 | [diff] [blame] | 223 | /* use the coreid bits from early_identify_cpu */ |
| 224 | bits = boot_cpu_data.x86_coreid_bits; |
| 225 | cores = (1<<bits); |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 226 | apicid_base = 0; |
| 227 | /* need to get boot_cpu_id early for system with apicid lifting */ |
| 228 | early_get_boot_cpu_id(); |
| 229 | if (boot_cpu_physical_apicid > 0) { |
David Rientjes | 1af5ba5 | 2009-09-25 15:19:47 -0700 | [diff] [blame] | 230 | pr_info("BSP APIC ID: %02x\n", boot_cpu_physical_apicid); |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 231 | apicid_base = boot_cpu_physical_apicid; |
| 232 | } |
Yinghai Lu | 3f6e5a1 | 2008-01-30 13:30:39 +0100 | [diff] [blame] | 233 | |
David Rientjes | 8ee2deb | 2009-09-25 15:20:00 -0700 | [diff] [blame^] | 234 | for_each_node_mask(i, node_possible_map) { |
| 235 | int j; |
Yinghai Lu | 40bcc69 | 2009-01-05 18:39:01 -0800 | [diff] [blame] | 236 | |
| 237 | e820_register_active_regions(i, |
| 238 | nodes[i].start >> PAGE_SHIFT, |
| 239 | nodes[i].end >> PAGE_SHIFT); |
| 240 | for (j = apicid_base; j < cores + apicid_base; j++) |
| 241 | apicid_to_node[(i << bits) + j] = i; |
| 242 | setup_node_bootmem(i, nodes[i].start, nodes[i].end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | numa_init_array(); |
| 246 | return 0; |
Carlos R. Mafra | 3aa88cd | 2008-01-30 13:32:36 +0100 | [diff] [blame] | 247 | } |