| 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> | 
| Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 28 | #include <linux/memblock.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/mmzone.h> | 
|  | 30 | #include <linux/acpi.h> | 
|  | 31 | #include <linux/nodemask.h> | 
|  | 32 | #include <asm/srat.h> | 
|  | 33 | #include <asm/topology.h> | 
| keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 34 | #include <asm/smp.h> | 
| Yinghai Lu | 7b2a0a6 | 2008-06-03 19:35:04 -0700 | [diff] [blame] | 35 | #include <asm/e820.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 |  | 
|  | 37 | /* | 
|  | 38 | * proximity macros and definitions | 
|  | 39 | */ | 
|  | 40 | #define NODE_ARRAY_INDEX(x)	((x) / 8)	/* 8 bits/char */ | 
|  | 41 | #define NODE_ARRAY_OFFSET(x)	((x) % 8)	/* 8 bits/char */ | 
|  | 42 | #define BMAP_SET(bmap, bit)	((bmap)[NODE_ARRAY_INDEX(bit)] |= 1 << NODE_ARRAY_OFFSET(bit)) | 
|  | 43 | #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] | 44 | /* bitmap length; _PXM is at most 255 */ | 
|  | 45 | #define PXM_BITMAP_LEN (MAX_PXM_DOMAINS / 8) | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 46 | static u8 __initdata pxm_bitmap[PXM_BITMAP_LEN];	/* bitmap of proximity domains */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
| Christoph Lameter | b9b1578 | 2006-09-25 23:31:16 -0700 | [diff] [blame] | 48 | #define MAX_CHUNKS_PER_NODE	3 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define MAXCHUNKS		(MAX_CHUNKS_PER_NODE * MAX_NUMNODES) | 
|  | 50 | struct node_memory_chunk_s { | 
|  | 51 | unsigned long	start_pfn; | 
|  | 52 | unsigned long	end_pfn; | 
|  | 53 | u8	pxm;		// proximity domain of node | 
|  | 54 | u8	nid;		// which cnode contains this chunk? | 
|  | 55 | u8	bank;		// which mem bank on this node | 
|  | 56 | }; | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 57 | static struct node_memory_chunk_s __initdata node_memory_chunk[MAXCHUNKS]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 59 | static int __initdata num_memory_chunks; /* total number of memory chunks */ | 
| Tejun Heo | b78aa66 | 2011-01-23 14:37:28 +0100 | [diff] [blame] | 60 | static u8 __initdata apicid_to_pxm[MAX_LOCAL_APIC]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 |  | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 62 | int acpi_numa __initdata; | 
|  | 63 |  | 
|  | 64 | static __init void bad_srat(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 66 | printk(KERN_ERR "SRAT: SRAT not used.\n"); | 
|  | 67 | acpi_numa = -1; | 
|  | 68 | num_memory_chunks = 0; | 
|  | 69 | } | 
|  | 70 |  | 
|  | 71 | static __init inline int srat_disabled(void) | 
|  | 72 | { | 
|  | 73 | return numa_off || acpi_numa < 0; | 
|  | 74 | } | 
|  | 75 |  | 
|  | 76 | /* Identify CPU proximity domains */ | 
|  | 77 | void __init | 
|  | 78 | acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *cpu_affinity) | 
|  | 79 | { | 
|  | 80 | if (srat_disabled()) | 
|  | 81 | return; | 
|  | 82 | if (cpu_affinity->header.length != | 
|  | 83 | sizeof(struct acpi_srat_cpu_affinity)) { | 
|  | 84 | bad_srat(); | 
|  | 85 | return; | 
|  | 86 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 88 | if ((cpu_affinity->flags & ACPI_SRAT_CPU_ENABLED) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return;		/* empty entry */ | 
|  | 90 |  | 
|  | 91 | /* mark this node as "seen" in node bitmap */ | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 92 | BMAP_SET(pxm_bitmap, cpu_affinity->proximity_domain_lo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 |  | 
| Yinghai Lu | d3bd058 | 2010-12-16 19:09:58 -0800 | [diff] [blame] | 94 | /* don't need to check apic_id here, because it is always 8 bits */ | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 95 | apicid_to_pxm[cpu_affinity->apic_id] = cpu_affinity->proximity_domain_lo; | 
| keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 96 |  | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 97 | printk(KERN_DEBUG "CPU %02x in proximity domain %02x\n", | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 98 | cpu_affinity->apic_id, cpu_affinity->proximity_domain_lo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } | 
|  | 100 |  | 
|  | 101 | /* | 
|  | 102 | * Identify memory proximity domains and hot-remove capabilities. | 
|  | 103 | * Fill node memory chunk list structure. | 
|  | 104 | */ | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 105 | void __init | 
|  | 106 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *memory_affinity) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { | 
|  | 108 | unsigned long long paddr, size; | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 109 | unsigned long start_pfn, end_pfn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | u8 pxm; | 
|  | 111 | struct node_memory_chunk_s *p, *q, *pend; | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 112 |  | 
|  | 113 | if (srat_disabled()) | 
|  | 114 | return; | 
|  | 115 | if (memory_affinity->header.length != | 
|  | 116 | sizeof(struct acpi_srat_mem_affinity)) { | 
|  | 117 | bad_srat(); | 
|  | 118 | return; | 
|  | 119 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 |  | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 121 | if ((memory_affinity->flags & ACPI_SRAT_MEM_ENABLED) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return;		/* empty entry */ | 
|  | 123 |  | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 124 | pxm = memory_affinity->proximity_domain & 0xff; | 
|  | 125 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | /* mark this node as "seen" in node bitmap */ | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 127 | BMAP_SET(pxm_bitmap, pxm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 |  | 
|  | 129 | /* calculate info for memory chunk structure */ | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 130 | paddr = memory_affinity->base_address; | 
|  | 131 | size = memory_affinity->length; | 
|  | 132 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | start_pfn = paddr >> PAGE_SHIFT; | 
|  | 134 | end_pfn = (paddr + size) >> PAGE_SHIFT; | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 135 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 |  | 
|  | 137 | if (num_memory_chunks >= MAXCHUNKS) { | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 138 | printk(KERN_WARNING "Too many mem chunks in SRAT." | 
|  | 139 | " Ignoring %lld MBytes at %llx\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | size/(1024*1024), paddr); | 
|  | 141 | return; | 
|  | 142 | } | 
|  | 143 |  | 
|  | 144 | /* Insertion sort based on base address */ | 
|  | 145 | pend = &node_memory_chunk[num_memory_chunks]; | 
|  | 146 | for (p = &node_memory_chunk[0]; p < pend; p++) { | 
|  | 147 | if (start_pfn < p->start_pfn) | 
|  | 148 | break; | 
|  | 149 | } | 
|  | 150 | if (p < pend) { | 
|  | 151 | for (q = pend; q >= p; q--) | 
|  | 152 | *(q + 1) = *q; | 
|  | 153 | } | 
|  | 154 | p->start_pfn = start_pfn; | 
|  | 155 | p->end_pfn = end_pfn; | 
|  | 156 | p->pxm = pxm; | 
|  | 157 |  | 
|  | 158 | num_memory_chunks++; | 
|  | 159 |  | 
| Bob Moore | 19d0cfe | 2008-06-10 15:54:40 +0800 | [diff] [blame] | 160 | printk(KERN_DEBUG "Memory range %08lx to %08lx" | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 161 | " in proximity domain %02x %s\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | start_pfn, end_pfn, | 
| Alexey Starikovskiy | 0e56833 | 2007-02-02 21:37:53 -0500 | [diff] [blame] | 163 | pxm, | 
|  | 164 | ((memory_affinity->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) ? | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | "enabled and removable" : "enabled" ) ); | 
|  | 166 | } | 
|  | 167 |  | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 168 | /* Callback for SLIT parsing */ | 
|  | 169 | void __init acpi_numa_slit_init(struct acpi_table_slit *slit) | 
|  | 170 | { | 
|  | 171 | } | 
|  | 172 |  | 
|  | 173 | void acpi_numa_arch_fixup(void) | 
|  | 174 | { | 
|  | 175 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* | 
|  | 177 | * The SRAT table always lists ascending addresses, so can always | 
|  | 178 | * assume that the first "start" address that you see is the real | 
|  | 179 | * start of the node, and that the current "end" address is after | 
|  | 180 | * the previous one. | 
|  | 181 | */ | 
| Yinghai Lu | 858f774 | 2008-08-14 02:16:29 -0700 | [diff] [blame] | 182 | static __init int node_read_chunk(int nid, struct node_memory_chunk_s *memory_chunk) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { | 
|  | 184 | /* | 
|  | 185 | * Only add present memory as told by the e820. | 
|  | 186 | * There is no guarantee from the SRAT that the memory it | 
|  | 187 | * enumerates is present at boot time because it represents | 
|  | 188 | * *possible* memory hotplug areas the same as normal RAM. | 
|  | 189 | */ | 
|  | 190 | if (memory_chunk->start_pfn >= max_pfn) { | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 191 | printk(KERN_INFO "Ignoring SRAT pfns: %08lx - %08lx\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | memory_chunk->start_pfn, memory_chunk->end_pfn); | 
| Yinghai Lu | 858f774 | 2008-08-14 02:16:29 -0700 | [diff] [blame] | 193 | return -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } | 
|  | 195 | if (memory_chunk->nid != nid) | 
| Yinghai Lu | 858f774 | 2008-08-14 02:16:29 -0700 | [diff] [blame] | 196 | return -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 |  | 
|  | 198 | if (!node_has_online_mem(nid)) | 
|  | 199 | node_start_pfn[nid] = memory_chunk->start_pfn; | 
|  | 200 |  | 
|  | 201 | if (node_start_pfn[nid] > memory_chunk->start_pfn) | 
|  | 202 | node_start_pfn[nid] = memory_chunk->start_pfn; | 
|  | 203 |  | 
|  | 204 | if (node_end_pfn[nid] < memory_chunk->end_pfn) | 
|  | 205 | node_end_pfn[nid] = memory_chunk->end_pfn; | 
| Yinghai Lu | 858f774 | 2008-08-14 02:16:29 -0700 | [diff] [blame] | 206 |  | 
|  | 207 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } | 
|  | 209 |  | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 210 | int __init get_memcfg_from_srat(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | int i, j, nid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 |  | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 214 | if (srat_disabled()) | 
|  | 215 | goto out_fail; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 |  | 
| Tejun Heo | 765af22 | 2011-04-04 03:06:45 -0700 | [diff] [blame^] | 217 | if (acpi_numa_init() < 0) | 
|  | 218 | goto out_fail; | 
|  | 219 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | if (num_memory_chunks == 0) { | 
| Rafael J. Wysocki | 23b6c52 | 2009-09-05 01:07:45 +0200 | [diff] [blame] | 221 | printk(KERN_DEBUG | 
| Nikanth Karthikesan | e0e5ea3 | 2009-05-04 09:08:26 +0530 | [diff] [blame] | 222 | "could not find any ACPI SRAT memory areas.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | goto out_fail; | 
|  | 224 | } | 
|  | 225 |  | 
|  | 226 | /* Calculate total number of nodes in system from PXM bitmap and create | 
|  | 227 | * a set of sequential node IDs starting at zero.  (ACPI doesn't seem | 
|  | 228 | * to specify the range of _PXM values.) | 
|  | 229 | */ | 
|  | 230 | /* | 
|  | 231 | * MCD - we no longer HAVE to number nodes sequentially.  PXM domain | 
|  | 232 | * numbers could go as high as 256, and MAX_NUMNODES for i386 is typically | 
|  | 233 | * 32, so we will continue numbering them in this manner until MAX_NUMNODES | 
|  | 234 | * approaches MAX_PXM_DOMAINS for i386. | 
|  | 235 | */ | 
|  | 236 | nodes_clear(node_online_map); | 
|  | 237 | for (i = 0; i < MAX_PXM_DOMAINS; i++) { | 
|  | 238 | if (BMAP_TEST(pxm_bitmap, i)) { | 
| Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 239 | int nid = acpi_map_pxm_to_node(i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | node_set_online(nid); | 
|  | 241 | } | 
|  | 242 | } | 
|  | 243 | BUG_ON(num_online_nodes() == 0); | 
|  | 244 |  | 
|  | 245 | /* set cnode id in memory chunk structure */ | 
|  | 246 | for (i = 0; i < num_memory_chunks; i++) | 
| Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 247 | 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] | 248 |  | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 249 | printk(KERN_DEBUG "pxm bitmap: "); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | for (i = 0; i < sizeof(pxm_bitmap); i++) { | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 251 | printk(KERN_CONT "%02x ", pxm_bitmap[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | } | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 253 | printk(KERN_CONT "\n"); | 
|  | 254 | printk(KERN_DEBUG "Number of logical nodes in system = %d\n", | 
|  | 255 | num_online_nodes()); | 
|  | 256 | printk(KERN_DEBUG "Number of memory chunks in system = %d\n", | 
|  | 257 | num_memory_chunks); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
| Tejun Heo | b78aa66 | 2011-01-23 14:37:28 +0100 | [diff] [blame] | 259 | for (i = 0; i < MAX_LOCAL_APIC; i++) | 
| Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 260 | set_apicid_to_node(i, pxm_to_node(apicid_to_pxm[i])); | 
| keith mannthey | 3b08606 | 2006-09-29 01:58:46 -0700 | [diff] [blame] | 261 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | for (j = 0; j < num_memory_chunks; j++){ | 
|  | 263 | struct node_memory_chunk_s * chunk = &node_memory_chunk[j]; | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 264 | printk(KERN_DEBUG | 
|  | 265 | "chunk %d nid %d start_pfn %08lx end_pfn %08lx\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | j, chunk->nid, chunk->start_pfn, chunk->end_pfn); | 
| Yinghai Lu | 858f774 | 2008-08-14 02:16:29 -0700 | [diff] [blame] | 267 | if (node_read_chunk(chunk->nid, chunk)) | 
|  | 268 | continue; | 
|  | 269 |  | 
| Yinghai Lu | a9ce6bc | 2010-08-25 13:39:17 -0700 | [diff] [blame] | 270 | memblock_x86_register_active_regions(chunk->nid, chunk->start_pfn, | 
| Yinghai Lu | 7b2a0a6 | 2008-06-03 19:35:04 -0700 | [diff] [blame] | 271 | min(chunk->end_pfn, max_pfn)); | 
| Ingo Molnar | 2377494 | 2008-06-09 10:57:16 +0200 | [diff] [blame] | 272 | } | 
| Yinghai Lu | 3299625 | 2009-12-15 17:59:02 -0800 | [diff] [blame] | 273 | /* for out of order entries in SRAT */ | 
|  | 274 | sort_node_map(); | 
| Yinghai Lu | 1c6e550 | 2008-06-17 15:41:45 -0700 | [diff] [blame] | 275 |  | 
| Ingo Molnar | 2377494 | 2008-06-09 10:57:16 +0200 | [diff] [blame] | 276 | for_each_online_node(nid) { | 
|  | 277 | unsigned long start = node_start_pfn[nid]; | 
| Yinghai Lu | c3ff016 | 2008-06-06 18:54:26 -0700 | [diff] [blame] | 278 | unsigned long end = min(node_end_pfn[nid], max_pfn); | 
| Ingo Molnar | 2377494 | 2008-06-09 10:57:16 +0200 | [diff] [blame] | 279 |  | 
|  | 280 | memory_present(nid, start, end); | 
|  | 281 | node_remap_size[nid] = node_memmap_size_bytes(nid, start, end); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } | 
|  | 283 | return 1; | 
|  | 284 | out_fail: | 
| Rafael J. Wysocki | 23b6c52 | 2009-09-05 01:07:45 +0200 | [diff] [blame] | 285 | printk(KERN_DEBUG "failed to get NUMA memory information from SRAT" | 
| Yinghai Lu | c094345 | 2008-06-23 16:41:30 -0700 | [diff] [blame] | 286 | " table\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | return 0; | 
|  | 288 | } |