Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Some of the code in this file has been gleaned from the 64 bit |
| 3 | * discontigmem support code base. |
| 4 | * |
| 5 | * Copyright (C) 2002, IBM Corp. |
| 6 | * |
| 7 | * All rights reserved. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 17 | * NON INFRINGEMENT. See the GNU General Public License for more |
| 18 | * details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 23 | * |
| 24 | * Send feedback to Pat Gaughen <gone@us.ibm.com> |
| 25 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/mm.h> |
| 27 | #include <linux/bootmem.h> |
| 28 | #include <linux/mmzone.h> |
| 29 | #include <linux/acpi.h> |
| 30 | #include <linux/nodemask.h> |
| 31 | #include <asm/srat.h> |
| 32 | #include <asm/topology.h> |
keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 33 | #include <asm/smp.h> |
Yinghai Lu | 7b2a0a6 | 2008-06-03 19:35:04 -0700 | [diff] [blame^] | 34 | #include <asm/e820.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * proximity macros and definitions |
| 38 | */ |
| 39 | #define NODE_ARRAY_INDEX(x) ((x) / 8) /* 8 bits/char */ |
| 40 | #define NODE_ARRAY_OFFSET(x) ((x) % 8) /* 8 bits/char */ |
| 41 | #define BMAP_SET(bmap, bit) ((bmap)[NODE_ARRAY_INDEX(bit)] |= 1 << NODE_ARRAY_OFFSET(bit)) |
| 42 | #define BMAP_TEST(bmap, bit) ((bmap)[NODE_ARRAY_INDEX(bit)] & (1 << NODE_ARRAY_OFFSET(bit))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* bitmap length; _PXM is at most 255 */ |
| 44 | #define PXM_BITMAP_LEN (MAX_PXM_DOMAINS / 8) |
| 45 | static u8 pxm_bitmap[PXM_BITMAP_LEN]; /* bitmap of proximity domains */ |
| 46 | |
Christoph Lameter | b9b1578 | 2006-09-25 23:31:16 -0700 | [diff] [blame] | 47 | #define MAX_CHUNKS_PER_NODE 3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define MAXCHUNKS (MAX_CHUNKS_PER_NODE * MAX_NUMNODES) |
| 49 | struct node_memory_chunk_s { |
| 50 | unsigned long start_pfn; |
| 51 | unsigned long end_pfn; |
| 52 | u8 pxm; // proximity domain of node |
| 53 | u8 nid; // which cnode contains this chunk? |
| 54 | u8 bank; // which mem bank on this node |
| 55 | }; |
| 56 | static struct node_memory_chunk_s node_memory_chunk[MAXCHUNKS]; |
| 57 | |
| 58 | static int num_memory_chunks; /* total number of memory chunks */ |
keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 59 | static u8 __initdata apicid_to_pxm[MAX_APICID]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* Identify CPU proximity domains */ |
| 62 | static void __init parse_cpu_affinity_structure(char *p) |
| 63 | { |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 64 | struct acpi_srat_cpu_affinity *cpu_affinity = |
| 65 | (struct acpi_srat_cpu_affinity *) p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 67 | if ((cpu_affinity->flags & ACPI_SRAT_CPU_ENABLED) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return; /* empty entry */ |
| 69 | |
| 70 | /* mark this node as "seen" in node bitmap */ |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 71 | BMAP_SET(pxm_bitmap, cpu_affinity->proximity_domain_lo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 73 | apicid_to_pxm[cpu_affinity->apic_id] = cpu_affinity->proximity_domain_lo; |
keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | printk("CPU 0x%02X in proximity domain 0x%02X\n", |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 76 | cpu_affinity->apic_id, cpu_affinity->proximity_domain_lo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* |
| 80 | * Identify memory proximity domains and hot-remove capabilities. |
| 81 | * Fill node memory chunk list structure. |
| 82 | */ |
| 83 | static void __init parse_memory_affinity_structure (char *sratp) |
| 84 | { |
| 85 | unsigned long long paddr, size; |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 86 | unsigned long start_pfn, end_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | u8 pxm; |
| 88 | struct node_memory_chunk_s *p, *q, *pend; |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 89 | struct acpi_srat_mem_affinity *memory_affinity = |
| 90 | (struct acpi_srat_mem_affinity *) sratp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 92 | if ((memory_affinity->flags & ACPI_SRAT_MEM_ENABLED) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | return; /* empty entry */ |
| 94 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 95 | pxm = memory_affinity->proximity_domain & 0xff; |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | /* mark this node as "seen" in node bitmap */ |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 98 | BMAP_SET(pxm_bitmap, pxm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | /* calculate info for memory chunk structure */ |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 101 | paddr = memory_affinity->base_address; |
| 102 | size = memory_affinity->length; |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | start_pfn = paddr >> PAGE_SHIFT; |
| 105 | end_pfn = (paddr + size) >> PAGE_SHIFT; |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | if (num_memory_chunks >= MAXCHUNKS) { |
| 109 | printk("Too many mem chunks in SRAT. Ignoring %lld MBytes at %llx\n", |
| 110 | size/(1024*1024), paddr); |
| 111 | return; |
| 112 | } |
| 113 | |
| 114 | /* Insertion sort based on base address */ |
| 115 | pend = &node_memory_chunk[num_memory_chunks]; |
| 116 | for (p = &node_memory_chunk[0]; p < pend; p++) { |
| 117 | if (start_pfn < p->start_pfn) |
| 118 | break; |
| 119 | } |
| 120 | if (p < pend) { |
| 121 | for (q = pend; q >= p; q--) |
| 122 | *(q + 1) = *q; |
| 123 | } |
| 124 | p->start_pfn = start_pfn; |
| 125 | p->end_pfn = end_pfn; |
| 126 | p->pxm = pxm; |
| 127 | |
| 128 | num_memory_chunks++; |
| 129 | |
| 130 | printk("Memory range 0x%lX to 0x%lX (type 0x%X) in proximity domain 0x%02X %s\n", |
| 131 | start_pfn, end_pfn, |
| 132 | memory_affinity->memory_type, |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 133 | pxm, |
| 134 | ((memory_affinity->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | "enabled and removable" : "enabled" ) ); |
| 136 | } |
| 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | /* |
| 139 | * The SRAT table always lists ascending addresses, so can always |
| 140 | * assume that the first "start" address that you see is the real |
| 141 | * start of the node, and that the current "end" address is after |
| 142 | * the previous one. |
| 143 | */ |
| 144 | static __init void node_read_chunk(int nid, struct node_memory_chunk_s *memory_chunk) |
| 145 | { |
| 146 | /* |
| 147 | * Only add present memory as told by the e820. |
| 148 | * There is no guarantee from the SRAT that the memory it |
| 149 | * enumerates is present at boot time because it represents |
| 150 | * *possible* memory hotplug areas the same as normal RAM. |
| 151 | */ |
| 152 | if (memory_chunk->start_pfn >= max_pfn) { |
| 153 | printk (KERN_INFO "Ignoring SRAT pfns: 0x%08lx -> %08lx\n", |
| 154 | memory_chunk->start_pfn, memory_chunk->end_pfn); |
| 155 | return; |
| 156 | } |
| 157 | if (memory_chunk->nid != nid) |
| 158 | return; |
| 159 | |
| 160 | if (!node_has_online_mem(nid)) |
| 161 | node_start_pfn[nid] = memory_chunk->start_pfn; |
| 162 | |
| 163 | if (node_start_pfn[nid] > memory_chunk->start_pfn) |
| 164 | node_start_pfn[nid] = memory_chunk->start_pfn; |
| 165 | |
| 166 | if (node_end_pfn[nid] < memory_chunk->end_pfn) |
| 167 | node_end_pfn[nid] = memory_chunk->end_pfn; |
| 168 | } |
| 169 | |
| 170 | /* Parse the ACPI Static Resource Affinity Table */ |
| 171 | static int __init acpi20_parse_srat(struct acpi_table_srat *sratp) |
| 172 | { |
| 173 | u8 *start, *end, *p; |
| 174 | int i, j, nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | start = (u8 *)(&(sratp->reserved) + 1); /* skip header */ |
| 177 | p = start; |
| 178 | end = (u8 *)sratp + sratp->header.length; |
| 179 | |
| 180 | memset(pxm_bitmap, 0, sizeof(pxm_bitmap)); /* init proximity domain bitmap */ |
| 181 | memset(node_memory_chunk, 0, sizeof(node_memory_chunk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | num_memory_chunks = 0; |
| 184 | while (p < end) { |
| 185 | switch (*p) { |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 186 | case ACPI_SRAT_TYPE_CPU_AFFINITY: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | parse_cpu_affinity_structure(p); |
| 188 | break; |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 189 | case ACPI_SRAT_TYPE_MEMORY_AFFINITY: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | parse_memory_affinity_structure(p); |
| 191 | break; |
| 192 | default: |
| 193 | printk("ACPI 2.0 SRAT: unknown entry skipped: type=0x%02X, len=%d\n", p[0], p[1]); |
| 194 | break; |
| 195 | } |
| 196 | p += p[1]; |
| 197 | if (p[1] == 0) { |
| 198 | printk("acpi20_parse_srat: Entry length value is zero;" |
| 199 | " can't parse any further!\n"); |
| 200 | break; |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | if (num_memory_chunks == 0) { |
| 205 | printk("could not finy any ACPI SRAT memory areas.\n"); |
| 206 | goto out_fail; |
| 207 | } |
| 208 | |
| 209 | /* Calculate total number of nodes in system from PXM bitmap and create |
| 210 | * a set of sequential node IDs starting at zero. (ACPI doesn't seem |
| 211 | * to specify the range of _PXM values.) |
| 212 | */ |
| 213 | /* |
| 214 | * MCD - we no longer HAVE to number nodes sequentially. PXM domain |
| 215 | * numbers could go as high as 256, and MAX_NUMNODES for i386 is typically |
| 216 | * 32, so we will continue numbering them in this manner until MAX_NUMNODES |
| 217 | * approaches MAX_PXM_DOMAINS for i386. |
| 218 | */ |
| 219 | nodes_clear(node_online_map); |
| 220 | for (i = 0; i < MAX_PXM_DOMAINS; i++) { |
| 221 | if (BMAP_TEST(pxm_bitmap, i)) { |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 222 | int nid = acpi_map_pxm_to_node(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | node_set_online(nid); |
| 224 | } |
| 225 | } |
| 226 | BUG_ON(num_online_nodes() == 0); |
| 227 | |
| 228 | /* set cnode id in memory chunk structure */ |
| 229 | for (i = 0; i < num_memory_chunks; i++) |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 230 | node_memory_chunk[i].nid = pxm_to_node(node_memory_chunk[i].pxm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | printk("pxm bitmap: "); |
| 233 | for (i = 0; i < sizeof(pxm_bitmap); i++) { |
| 234 | printk("%02X ", pxm_bitmap[i]); |
| 235 | } |
| 236 | printk("\n"); |
| 237 | printk("Number of logical nodes in system = %d\n", num_online_nodes()); |
| 238 | printk("Number of memory chunks in system = %d\n", num_memory_chunks); |
| 239 | |
keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 240 | for (i = 0; i < MAX_APICID; i++) |
| 241 | apicid_2_node[i] = pxm_to_node(apicid_to_pxm[i]); |
| 242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | for (j = 0; j < num_memory_chunks; j++){ |
| 244 | struct node_memory_chunk_s * chunk = &node_memory_chunk[j]; |
| 245 | printk("chunk %d nid %d start_pfn %08lx end_pfn %08lx\n", |
| 246 | j, chunk->nid, chunk->start_pfn, chunk->end_pfn); |
| 247 | node_read_chunk(chunk->nid, chunk); |
Yinghai Lu | 7b2a0a6 | 2008-06-03 19:35:04 -0700 | [diff] [blame^] | 248 | e820_register_active_regions(chunk->nid, chunk->start_pfn, |
| 249 | min(chunk->end_pfn, max_pfn)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | for_each_online_node(nid) { |
| 253 | unsigned long start = node_start_pfn[nid]; |
| 254 | unsigned long end = node_end_pfn[nid]; |
| 255 | |
| 256 | memory_present(nid, start, end); |
| 257 | node_remap_size[nid] = node_memmap_size_bytes(nid, start, end); |
| 258 | } |
| 259 | return 1; |
| 260 | out_fail: |
| 261 | return 0; |
| 262 | } |
| 263 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 264 | struct acpi_static_rsdt { |
| 265 | struct acpi_table_rsdt table; |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 266 | u32 padding[32]; /* Allow for 32 more table entries */ |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 267 | }; |
| 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | int __init get_memcfg_from_srat(void) |
| 270 | { |
| 271 | struct acpi_table_header *header = NULL; |
| 272 | struct acpi_table_rsdp *rsdp = NULL; |
| 273 | struct acpi_table_rsdt *rsdt = NULL; |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 274 | acpi_native_uint rsdp_address = 0; |
| 275 | struct acpi_static_rsdt saved_rsdt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | int tables = 0; |
| 277 | int i = 0; |
| 278 | |
Len Brown | 239665a | 2007-11-23 20:08:02 -0500 | [diff] [blame] | 279 | rsdp_address = acpi_os_get_root_pointer(); |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 280 | if (!rsdp_address) { |
Magnus Damm | 5d35704 | 2005-10-30 14:59:48 -0800 | [diff] [blame] | 281 | printk("%s: System description tables not found\n", |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 282 | __func__); |
Magnus Damm | 5d35704 | 2005-10-30 14:59:48 -0800 | [diff] [blame] | 283 | goto out_err; |
| 284 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 286 | printk("%s: assigning address to rsdp\n", __func__); |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 287 | rsdp = (struct acpi_table_rsdp *)(u32)rsdp_address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | if (!rsdp) { |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 289 | printk("%s: Didn't find ACPI root!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | goto out_err; |
| 291 | } |
| 292 | |
| 293 | printk(KERN_INFO "%.8s v%d [%.6s]\n", rsdp->signature, rsdp->revision, |
| 294 | rsdp->oem_id); |
| 295 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 296 | if (strncmp(rsdp->signature, ACPI_SIG_RSDP,strlen(ACPI_SIG_RSDP))) { |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 297 | printk(KERN_WARNING "%s: RSDP table signature incorrect\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | goto out_err; |
| 299 | } |
| 300 | |
| 301 | rsdt = (struct acpi_table_rsdt *) |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 302 | early_ioremap(rsdp->rsdt_physical_address, sizeof(saved_rsdt)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
| 304 | if (!rsdt) { |
| 305 | printk(KERN_WARNING |
| 306 | "%s: ACPI: Invalid root system description tables (RSDT)\n", |
Harvey Harrison | 77bf90e | 2008-03-03 11:37:23 -0800 | [diff] [blame] | 307 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | goto out_err; |
| 309 | } |
| 310 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 311 | header = &rsdt->header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 313 | if (strncmp(header->signature, ACPI_SIG_RSDT, strlen(ACPI_SIG_RSDT))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | printk(KERN_WARNING "ACPI: RSDT signature incorrect\n"); |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 315 | early_iounmap(rsdt, sizeof(saved_rsdt)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | goto out_err; |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * The number of tables is computed by taking the |
| 321 | * size of all entries (header size minus total |
| 322 | * size of RSDT) divided by the size of each entry |
| 323 | * (4-byte table pointers). |
| 324 | */ |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 325 | tables = (header->length - sizeof(struct acpi_table_header)) / sizeof(u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
| 327 | if (!tables) |
| 328 | goto out_err; |
| 329 | |
| 330 | memcpy(&saved_rsdt, rsdt, sizeof(saved_rsdt)); |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 331 | early_iounmap(rsdt, sizeof(saved_rsdt)); |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 332 | if (saved_rsdt.table.header.length > sizeof(saved_rsdt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | printk(KERN_WARNING "ACPI: Too big length in RSDT: %d\n", |
Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 334 | saved_rsdt.table.header.length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | goto out_err; |
| 336 | } |
| 337 | |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 338 | printk("Begin SRAT table scan....%d\n", tables); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 340 | for (i = 0; i < tables; i++){ |
| 341 | int result; |
| 342 | u32 length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* Map in header, then map in full table length. */ |
| 344 | header = (struct acpi_table_header *) |
Huang, Ying | beacfaa | 2008-01-30 13:33:44 +0100 | [diff] [blame] | 345 | early_ioremap(saved_rsdt.table.table_offset_entry[i], sizeof(struct acpi_table_header)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | if (!header) |
| 347 | break; |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 348 | |
| 349 | printk(KERN_INFO "ACPI: %4.4s %08lX, %04X\n", |
| 350 | header->signature, |
| 351 | (unsigned long)saved_rsdt.table.table_offset_entry[i], |
| 352 | header->length); |
| 353 | |
| 354 | if (strncmp((char *) &header->signature, ACPI_SIG_SRAT, 4)) { |
| 355 | early_iounmap(header, sizeof(struct acpi_table_header)); |
| 356 | continue; |
| 357 | } |
| 358 | |
| 359 | length = header->length; |
| 360 | early_iounmap(header, sizeof(struct acpi_table_header)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | header = (struct acpi_table_header *) |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 362 | early_ioremap(saved_rsdt.table.table_offset_entry[i], length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | if (!header) |
| 364 | break; |
| 365 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | /* we've found the srat table. don't need to look at any more tables */ |
Yinghai Lu | 9a73aa8 | 2008-05-29 16:25:56 -0700 | [diff] [blame] | 367 | result = acpi20_parse_srat((struct acpi_table_srat *)header); |
| 368 | early_iounmap(header, length); |
| 369 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | } |
| 371 | out_err: |
Mel Gorman | 4cfee88 | 2006-09-27 01:49:51 -0700 | [diff] [blame] | 372 | remove_all_active_ranges(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | printk("failed to get NUMA memory information from SRAT table\n"); |
| 374 | return 0; |
| 375 | } |