b1ecfb850b5a9978a43bb63cb19df99de09a7e75
[linux-2.6-block.git] / arch / powerpc / mm / numa.c
1 /*
2  * pSeries NUMA support
3  *
4  * Copyright (C) 2002 Anton Blanchard <anton@au.ibm.com>, IBM
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11 #define pr_fmt(fmt) "numa: " fmt
12
13 #include <linux/threads.h>
14 #include <linux/memblock.h>
15 #include <linux/init.h>
16 #include <linux/mm.h>
17 #include <linux/mmzone.h>
18 #include <linux/export.h>
19 #include <linux/nodemask.h>
20 #include <linux/cpu.h>
21 #include <linux/notifier.h>
22 #include <linux/of.h>
23 #include <linux/pfn.h>
24 #include <linux/cpuset.h>
25 #include <linux/node.h>
26 #include <linux/stop_machine.h>
27 #include <linux/proc_fs.h>
28 #include <linux/seq_file.h>
29 #include <linux/uaccess.h>
30 #include <linux/slab.h>
31 #include <asm/cputhreads.h>
32 #include <asm/sparsemem.h>
33 #include <asm/prom.h>
34 #include <asm/smp.h>
35 #include <asm/topology.h>
36 #include <asm/firmware.h>
37 #include <asm/paca.h>
38 #include <asm/hvcall.h>
39 #include <asm/setup.h>
40 #include <asm/vdso.h>
41 #include <asm/drmem.h>
42
43 static int numa_enabled = 1;
44
45 static char *cmdline __initdata;
46
47 static int numa_debug;
48 #define dbg(args...) if (numa_debug) { printk(KERN_INFO args); }
49
50 int numa_cpu_lookup_table[NR_CPUS];
51 cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
52 struct pglist_data *node_data[MAX_NUMNODES];
53
54 EXPORT_SYMBOL(numa_cpu_lookup_table);
55 EXPORT_SYMBOL(node_to_cpumask_map);
56 EXPORT_SYMBOL(node_data);
57
58 static int min_common_depth;
59 static int n_mem_addr_cells, n_mem_size_cells;
60 static int form1_affinity;
61
62 #define MAX_DISTANCE_REF_POINTS 4
63 static int distance_ref_points_depth;
64 static const __be32 *distance_ref_points;
65 static int distance_lookup_table[MAX_NUMNODES][MAX_DISTANCE_REF_POINTS];
66
67 /*
68  * Allocate node_to_cpumask_map based on number of available nodes
69  * Requires node_possible_map to be valid.
70  *
71  * Note: cpumask_of_node() is not valid until after this is done.
72  */
73 static void __init setup_node_to_cpumask_map(void)
74 {
75         unsigned int node;
76
77         /* setup nr_node_ids if not done yet */
78         if (nr_node_ids == MAX_NUMNODES)
79                 setup_nr_node_ids();
80
81         /* allocate the map */
82         for_each_node(node)
83                 alloc_bootmem_cpumask_var(&node_to_cpumask_map[node]);
84
85         /* cpumask_of_node() will now work */
86         dbg("Node to cpumask map for %u nodes\n", nr_node_ids);
87 }
88
89 static int __init fake_numa_create_new_node(unsigned long end_pfn,
90                                                 unsigned int *nid)
91 {
92         unsigned long long mem;
93         char *p = cmdline;
94         static unsigned int fake_nid;
95         static unsigned long long curr_boundary;
96
97         /*
98          * Modify node id, iff we started creating NUMA nodes
99          * We want to continue from where we left of the last time
100          */
101         if (fake_nid)
102                 *nid = fake_nid;
103         /*
104          * In case there are no more arguments to parse, the
105          * node_id should be the same as the last fake node id
106          * (we've handled this above).
107          */
108         if (!p)
109                 return 0;
110
111         mem = memparse(p, &p);
112         if (!mem)
113                 return 0;
114
115         if (mem < curr_boundary)
116                 return 0;
117
118         curr_boundary = mem;
119
120         if ((end_pfn << PAGE_SHIFT) > mem) {
121                 /*
122                  * Skip commas and spaces
123                  */
124                 while (*p == ',' || *p == ' ' || *p == '\t')
125                         p++;
126
127                 cmdline = p;
128                 fake_nid++;
129                 *nid = fake_nid;
130                 dbg("created new fake_node with id %d\n", fake_nid);
131                 return 1;
132         }
133         return 0;
134 }
135
136 static void reset_numa_cpu_lookup_table(void)
137 {
138         unsigned int cpu;
139
140         for_each_possible_cpu(cpu)
141                 numa_cpu_lookup_table[cpu] = -1;
142 }
143
144 static void map_cpu_to_node(int cpu, int node)
145 {
146         update_numa_cpu_lookup_table(cpu, node);
147
148         dbg("adding cpu %d to node %d\n", cpu, node);
149
150         if (!(cpumask_test_cpu(cpu, node_to_cpumask_map[node])))
151                 cpumask_set_cpu(cpu, node_to_cpumask_map[node]);
152 }
153
154 #if defined(CONFIG_HOTPLUG_CPU) || defined(CONFIG_PPC_SPLPAR)
155 static void unmap_cpu_from_node(unsigned long cpu)
156 {
157         int node = numa_cpu_lookup_table[cpu];
158
159         dbg("removing cpu %lu from node %d\n", cpu, node);
160
161         if (cpumask_test_cpu(cpu, node_to_cpumask_map[node])) {
162                 cpumask_clear_cpu(cpu, node_to_cpumask_map[node]);
163         } else {
164                 printk(KERN_ERR "WARNING: cpu %lu not found in node %d\n",
165                        cpu, node);
166         }
167 }
168 #endif /* CONFIG_HOTPLUG_CPU || CONFIG_PPC_SPLPAR */
169
170 int cpu_distance(__be32 *cpu1_assoc, __be32 *cpu2_assoc)
171 {
172         int dist = 0;
173
174         int i, index;
175
176         for (i = 0; i < distance_ref_points_depth; i++) {
177                 index = be32_to_cpu(distance_ref_points[i]);
178                 if (cpu1_assoc[index] == cpu2_assoc[index])
179                         break;
180                 dist++;
181         }
182
183         return dist;
184 }
185
186 /* must hold reference to node during call */
187 static const __be32 *of_get_associativity(struct device_node *dev)
188 {
189         return of_get_property(dev, "ibm,associativity", NULL);
190 }
191
192 int __node_distance(int a, int b)
193 {
194         int i;
195         int distance = LOCAL_DISTANCE;
196
197         if (!form1_affinity)
198                 return ((a == b) ? LOCAL_DISTANCE : REMOTE_DISTANCE);
199
200         for (i = 0; i < distance_ref_points_depth; i++) {
201                 if (distance_lookup_table[a][i] == distance_lookup_table[b][i])
202                         break;
203
204                 /* Double the distance for each NUMA level */
205                 distance *= 2;
206         }
207
208         return distance;
209 }
210 EXPORT_SYMBOL(__node_distance);
211
212 static void initialize_distance_lookup_table(int nid,
213                 const __be32 *associativity)
214 {
215         int i;
216
217         if (!form1_affinity)
218                 return;
219
220         for (i = 0; i < distance_ref_points_depth; i++) {
221                 const __be32 *entry;
222
223                 entry = &associativity[be32_to_cpu(distance_ref_points[i]) - 1];
224                 distance_lookup_table[nid][i] = of_read_number(entry, 1);
225         }
226 }
227
228 /* Returns nid in the range [0..MAX_NUMNODES-1], or -1 if no useful numa
229  * info is found.
230  */
231 static int associativity_to_nid(const __be32 *associativity)
232 {
233         int nid = NUMA_NO_NODE;
234
235         if (min_common_depth == -1)
236                 goto out;
237
238         if (of_read_number(associativity, 1) >= min_common_depth)
239                 nid = of_read_number(&associativity[min_common_depth], 1);
240
241         /* POWER4 LPAR uses 0xffff as invalid node */
242         if (nid == 0xffff || nid >= MAX_NUMNODES)
243                 nid = NUMA_NO_NODE;
244
245         if (nid > 0 &&
246                 of_read_number(associativity, 1) >= distance_ref_points_depth) {
247                 /*
248                  * Skip the length field and send start of associativity array
249                  */
250                 initialize_distance_lookup_table(nid, associativity + 1);
251         }
252
253 out:
254         return nid;
255 }
256
257 /* Returns the nid associated with the given device tree node,
258  * or -1 if not found.
259  */
260 static int of_node_to_nid_single(struct device_node *device)
261 {
262         int nid = NUMA_NO_NODE;
263         const __be32 *tmp;
264
265         tmp = of_get_associativity(device);
266         if (tmp)
267                 nid = associativity_to_nid(tmp);
268         return nid;
269 }
270
271 /* Walk the device tree upwards, looking for an associativity id */
272 int of_node_to_nid(struct device_node *device)
273 {
274         int nid = NUMA_NO_NODE;
275
276         of_node_get(device);
277         while (device) {
278                 nid = of_node_to_nid_single(device);
279                 if (nid != -1)
280                         break;
281
282                 device = of_get_next_parent(device);
283         }
284         of_node_put(device);
285
286         return nid;
287 }
288 EXPORT_SYMBOL(of_node_to_nid);
289
290 static int __init find_min_common_depth(void)
291 {
292         int depth;
293         struct device_node *root;
294
295         if (firmware_has_feature(FW_FEATURE_OPAL))
296                 root = of_find_node_by_path("/ibm,opal");
297         else
298                 root = of_find_node_by_path("/rtas");
299         if (!root)
300                 root = of_find_node_by_path("/");
301
302         /*
303          * This property is a set of 32-bit integers, each representing
304          * an index into the ibm,associativity nodes.
305          *
306          * With form 0 affinity the first integer is for an SMP configuration
307          * (should be all 0's) and the second is for a normal NUMA
308          * configuration. We have only one level of NUMA.
309          *
310          * With form 1 affinity the first integer is the most significant
311          * NUMA boundary and the following are progressively less significant
312          * boundaries. There can be more than one level of NUMA.
313          */
314         distance_ref_points = of_get_property(root,
315                                         "ibm,associativity-reference-points",
316                                         &distance_ref_points_depth);
317
318         if (!distance_ref_points) {
319                 dbg("NUMA: ibm,associativity-reference-points not found.\n");
320                 goto err;
321         }
322
323         distance_ref_points_depth /= sizeof(int);
324
325         if (firmware_has_feature(FW_FEATURE_OPAL) ||
326             firmware_has_feature(FW_FEATURE_TYPE1_AFFINITY)) {
327                 dbg("Using form 1 affinity\n");
328                 form1_affinity = 1;
329         }
330
331         if (form1_affinity) {
332                 depth = of_read_number(distance_ref_points, 1);
333         } else {
334                 if (distance_ref_points_depth < 2) {
335                         printk(KERN_WARNING "NUMA: "
336                                 "short ibm,associativity-reference-points\n");
337                         goto err;
338                 }
339
340                 depth = of_read_number(&distance_ref_points[1], 1);
341         }
342
343         /*
344          * Warn and cap if the hardware supports more than
345          * MAX_DISTANCE_REF_POINTS domains.
346          */
347         if (distance_ref_points_depth > MAX_DISTANCE_REF_POINTS) {
348                 printk(KERN_WARNING "NUMA: distance array capped at "
349                         "%d entries\n", MAX_DISTANCE_REF_POINTS);
350                 distance_ref_points_depth = MAX_DISTANCE_REF_POINTS;
351         }
352
353         of_node_put(root);
354         return depth;
355
356 err:
357         of_node_put(root);
358         return -1;
359 }
360
361 static void __init get_n_mem_cells(int *n_addr_cells, int *n_size_cells)
362 {
363         struct device_node *memory = NULL;
364
365         memory = of_find_node_by_type(memory, "memory");
366         if (!memory)
367                 panic("numa.c: No memory nodes found!");
368
369         *n_addr_cells = of_n_addr_cells(memory);
370         *n_size_cells = of_n_size_cells(memory);
371         of_node_put(memory);
372 }
373
374 static unsigned long read_n_cells(int n, const __be32 **buf)
375 {
376         unsigned long result = 0;
377
378         while (n--) {
379                 result = (result << 32) | of_read_number(*buf, 1);
380                 (*buf)++;
381         }
382         return result;
383 }
384
385 struct assoc_arrays {
386         u32     n_arrays;
387         u32     array_sz;
388         const __be32 *arrays;
389 };
390
391 /*
392  * Retrieve and validate the list of associativity arrays for drconf
393  * memory from the ibm,associativity-lookup-arrays property of the
394  * device tree..
395  *
396  * The layout of the ibm,associativity-lookup-arrays property is a number N
397  * indicating the number of associativity arrays, followed by a number M
398  * indicating the size of each associativity array, followed by a list
399  * of N associativity arrays.
400  */
401 static int of_get_assoc_arrays(struct assoc_arrays *aa)
402 {
403         struct device_node *memory;
404         const __be32 *prop;
405         u32 len;
406
407         memory = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory");
408         if (!memory)
409                 return -1;
410
411         prop = of_get_property(memory, "ibm,associativity-lookup-arrays", &len);
412         if (!prop || len < 2 * sizeof(unsigned int)) {
413                 of_node_put(memory);
414                 return -1;
415         }
416
417         aa->n_arrays = of_read_number(prop++, 1);
418         aa->array_sz = of_read_number(prop++, 1);
419
420         of_node_put(memory);
421
422         /* Now that we know the number of arrays and size of each array,
423          * revalidate the size of the property read in.
424          */
425         if (len < (aa->n_arrays * aa->array_sz + 2) * sizeof(unsigned int))
426                 return -1;
427
428         aa->arrays = prop;
429         return 0;
430 }
431
432 /*
433  * This is like of_node_to_nid_single() for memory represented in the
434  * ibm,dynamic-reconfiguration-memory node.
435  */
436 static int of_drconf_to_nid_single(struct drmem_lmb *lmb)
437 {
438         struct assoc_arrays aa = { .arrays = NULL };
439         int default_nid = NUMA_NO_NODE;
440         int nid = default_nid;
441         int rc, index;
442
443         if (min_common_depth < 0)
444                 return default_nid;
445
446         rc = of_get_assoc_arrays(&aa);
447         if (rc)
448                 return default_nid;
449
450         if (min_common_depth <= aa.array_sz &&
451             !(lmb->flags & DRCONF_MEM_AI_INVALID) && lmb->aa_index < aa.n_arrays) {
452                 index = lmb->aa_index * aa.array_sz + min_common_depth - 1;
453                 nid = of_read_number(&aa.arrays[index], 1);
454
455                 if (nid == 0xffff || nid >= MAX_NUMNODES)
456                         nid = default_nid;
457
458                 if (nid > 0) {
459                         index = lmb->aa_index * aa.array_sz;
460                         initialize_distance_lookup_table(nid,
461                                                         &aa.arrays[index]);
462                 }
463         }
464
465         return nid;
466 }
467
468 /*
469  * Figure out to which domain a cpu belongs and stick it there.
470  * Return the id of the domain used.
471  */
472 static int numa_setup_cpu(unsigned long lcpu)
473 {
474         int nid = NUMA_NO_NODE;
475         struct device_node *cpu;
476
477         /*
478          * If a valid cpu-to-node mapping is already available, use it
479          * directly instead of querying the firmware, since it represents
480          * the most recent mapping notified to us by the platform (eg: VPHN).
481          */
482         if ((nid = numa_cpu_lookup_table[lcpu]) >= 0) {
483                 map_cpu_to_node(lcpu, nid);
484                 return nid;
485         }
486
487         cpu = of_get_cpu_node(lcpu, NULL);
488
489         if (!cpu) {
490                 WARN_ON(1);
491                 if (cpu_present(lcpu))
492                         goto out_present;
493                 else
494                         goto out;
495         }
496
497         nid = of_node_to_nid_single(cpu);
498
499 out_present:
500         if (nid < 0 || !node_possible(nid))
501                 nid = first_online_node;
502
503         map_cpu_to_node(lcpu, nid);
504         of_node_put(cpu);
505 out:
506         return nid;
507 }
508
509 static void verify_cpu_node_mapping(int cpu, int node)
510 {
511         int base, sibling, i;
512
513         /* Verify that all the threads in the core belong to the same node */
514         base = cpu_first_thread_sibling(cpu);
515
516         for (i = 0; i < threads_per_core; i++) {
517                 sibling = base + i;
518
519                 if (sibling == cpu || cpu_is_offline(sibling))
520                         continue;
521
522                 if (cpu_to_node(sibling) != node) {
523                         WARN(1, "CPU thread siblings %d and %d don't belong"
524                                 " to the same node!\n", cpu, sibling);
525                         break;
526                 }
527         }
528 }
529
530 /* Must run before sched domains notifier. */
531 static int ppc_numa_cpu_prepare(unsigned int cpu)
532 {
533         int nid;
534
535         nid = numa_setup_cpu(cpu);
536         verify_cpu_node_mapping(cpu, nid);
537         return 0;
538 }
539
540 static int ppc_numa_cpu_dead(unsigned int cpu)
541 {
542 #ifdef CONFIG_HOTPLUG_CPU
543         unmap_cpu_from_node(cpu);
544 #endif
545         return 0;
546 }
547
548 /*
549  * Check and possibly modify a memory region to enforce the memory limit.
550  *
551  * Returns the size the region should have to enforce the memory limit.
552  * This will either be the original value of size, a truncated value,
553  * or zero. If the returned value of size is 0 the region should be
554  * discarded as it lies wholly above the memory limit.
555  */
556 static unsigned long __init numa_enforce_memory_limit(unsigned long start,
557                                                       unsigned long size)
558 {
559         /*
560          * We use memblock_end_of_DRAM() in here instead of memory_limit because
561          * we've already adjusted it for the limit and it takes care of
562          * having memory holes below the limit.  Also, in the case of
563          * iommu_is_off, memory_limit is not set but is implicitly enforced.
564          */
565
566         if (start + size <= memblock_end_of_DRAM())
567                 return size;
568
569         if (start >= memblock_end_of_DRAM())
570                 return 0;
571
572         return memblock_end_of_DRAM() - start;
573 }
574
575 /*
576  * Reads the counter for a given entry in
577  * linux,drconf-usable-memory property
578  */
579 static inline int __init read_usm_ranges(const __be32 **usm)
580 {
581         /*
582          * For each lmb in ibm,dynamic-memory a corresponding
583          * entry in linux,drconf-usable-memory property contains
584          * a counter followed by that many (base, size) duple.
585          * read the counter from linux,drconf-usable-memory
586          */
587         return read_n_cells(n_mem_size_cells, usm);
588 }
589
590 /*
591  * Extract NUMA information from the ibm,dynamic-reconfiguration-memory
592  * node.  This assumes n_mem_{addr,size}_cells have been set.
593  */
594 static void __init numa_setup_drmem_lmb(struct drmem_lmb *lmb,
595                                         const __be32 **usm)
596 {
597         unsigned int ranges, is_kexec_kdump = 0;
598         unsigned long base, size, sz;
599         int nid;
600
601         /*
602          * Skip this block if the reserved bit is set in flags (0x80)
603          * or if the block is not assigned to this partition (0x8)
604          */
605         if ((lmb->flags & DRCONF_MEM_RESERVED)
606             || !(lmb->flags & DRCONF_MEM_ASSIGNED))
607                 return;
608
609         if (*usm)
610                 is_kexec_kdump = 1;
611
612         base = lmb->base_addr;
613         size = drmem_lmb_size();
614         ranges = 1;
615
616         if (is_kexec_kdump) {
617                 ranges = read_usm_ranges(usm);
618                 if (!ranges) /* there are no (base, size) duple */
619                         return;
620         }
621
622         do {
623                 if (is_kexec_kdump) {
624                         base = read_n_cells(n_mem_addr_cells, usm);
625                         size = read_n_cells(n_mem_size_cells, usm);
626                 }
627
628                 nid = of_drconf_to_nid_single(lmb);
629                 fake_numa_create_new_node(((base + size) >> PAGE_SHIFT),
630                                           &nid);
631                 node_set_online(nid);
632                 sz = numa_enforce_memory_limit(base, size);
633                 if (sz)
634                         memblock_set_node(base, sz, &memblock.memory, nid);
635         } while (--ranges);
636 }
637
638 static int __init parse_numa_properties(void)
639 {
640         struct device_node *memory;
641         int default_nid = 0;
642         unsigned long i;
643
644         if (numa_enabled == 0) {
645                 printk(KERN_WARNING "NUMA disabled by user\n");
646                 return -1;
647         }
648
649         min_common_depth = find_min_common_depth();
650
651         if (min_common_depth < 0)
652                 return min_common_depth;
653
654         dbg("NUMA associativity depth for CPU/Memory: %d\n", min_common_depth);
655
656         /*
657          * Even though we connect cpus to numa domains later in SMP
658          * init, we need to know the node ids now. This is because
659          * each node to be onlined must have NODE_DATA etc backing it.
660          */
661         for_each_present_cpu(i) {
662                 struct device_node *cpu;
663                 int nid;
664
665                 cpu = of_get_cpu_node(i, NULL);
666                 BUG_ON(!cpu);
667                 nid = of_node_to_nid_single(cpu);
668                 of_node_put(cpu);
669
670                 /*
671                  * Don't fall back to default_nid yet -- we will plug
672                  * cpus into nodes once the memory scan has discovered
673                  * the topology.
674                  */
675                 if (nid < 0)
676                         continue;
677                 node_set_online(nid);
678         }
679
680         get_n_mem_cells(&n_mem_addr_cells, &n_mem_size_cells);
681
682         for_each_node_by_type(memory, "memory") {
683                 unsigned long start;
684                 unsigned long size;
685                 int nid;
686                 int ranges;
687                 const __be32 *memcell_buf;
688                 unsigned int len;
689
690                 memcell_buf = of_get_property(memory,
691                         "linux,usable-memory", &len);
692                 if (!memcell_buf || len <= 0)
693                         memcell_buf = of_get_property(memory, "reg", &len);
694                 if (!memcell_buf || len <= 0)
695                         continue;
696
697                 /* ranges in cell */
698                 ranges = (len >> 2) / (n_mem_addr_cells + n_mem_size_cells);
699 new_range:
700                 /* these are order-sensitive, and modify the buffer pointer */
701                 start = read_n_cells(n_mem_addr_cells, &memcell_buf);
702                 size = read_n_cells(n_mem_size_cells, &memcell_buf);
703
704                 /*
705                  * Assumption: either all memory nodes or none will
706                  * have associativity properties.  If none, then
707                  * everything goes to default_nid.
708                  */
709                 nid = of_node_to_nid_single(memory);
710                 if (nid < 0)
711                         nid = default_nid;
712
713                 fake_numa_create_new_node(((start + size) >> PAGE_SHIFT), &nid);
714                 node_set_online(nid);
715
716                 size = numa_enforce_memory_limit(start, size);
717                 if (size)
718                         memblock_set_node(start, size, &memblock.memory, nid);
719
720                 if (--ranges)
721                         goto new_range;
722         }
723
724         /*
725          * Now do the same thing for each MEMBLOCK listed in the
726          * ibm,dynamic-memory property in the
727          * ibm,dynamic-reconfiguration-memory node.
728          */
729         memory = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory");
730         if (memory) {
731                 walk_drmem_lmbs(memory, numa_setup_drmem_lmb);
732                 of_node_put(memory);
733         }
734
735         return 0;
736 }
737
738 static void __init setup_nonnuma(void)
739 {
740         unsigned long top_of_ram = memblock_end_of_DRAM();
741         unsigned long total_ram = memblock_phys_mem_size();
742         unsigned long start_pfn, end_pfn;
743         unsigned int nid = 0;
744         struct memblock_region *reg;
745
746         printk(KERN_DEBUG "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
747                top_of_ram, total_ram);
748         printk(KERN_DEBUG "Memory hole size: %ldMB\n",
749                (top_of_ram - total_ram) >> 20);
750
751         for_each_memblock(memory, reg) {
752                 start_pfn = memblock_region_memory_base_pfn(reg);
753                 end_pfn = memblock_region_memory_end_pfn(reg);
754
755                 fake_numa_create_new_node(end_pfn, &nid);
756                 memblock_set_node(PFN_PHYS(start_pfn),
757                                   PFN_PHYS(end_pfn - start_pfn),
758                                   &memblock.memory, nid);
759                 node_set_online(nid);
760         }
761 }
762
763 void __init dump_numa_cpu_topology(void)
764 {
765         unsigned int node;
766         unsigned int cpu, count;
767
768         if (min_common_depth == -1 || !numa_enabled)
769                 return;
770
771         for_each_online_node(node) {
772                 pr_info("Node %d CPUs:", node);
773
774                 count = 0;
775                 /*
776                  * If we used a CPU iterator here we would miss printing
777                  * the holes in the cpumap.
778                  */
779                 for (cpu = 0; cpu < nr_cpu_ids; cpu++) {
780                         if (cpumask_test_cpu(cpu,
781                                         node_to_cpumask_map[node])) {
782                                 if (count == 0)
783                                         pr_cont(" %u", cpu);
784                                 ++count;
785                         } else {
786                                 if (count > 1)
787                                         pr_cont("-%u", cpu - 1);
788                                 count = 0;
789                         }
790                 }
791
792                 if (count > 1)
793                         pr_cont("-%u", nr_cpu_ids - 1);
794                 pr_cont("\n");
795         }
796 }
797
798 /* Initialize NODE_DATA for a node on the local memory */
799 static void __init setup_node_data(int nid, u64 start_pfn, u64 end_pfn)
800 {
801         u64 spanned_pages = end_pfn - start_pfn;
802         const size_t nd_size = roundup(sizeof(pg_data_t), SMP_CACHE_BYTES);
803         u64 nd_pa;
804         void *nd;
805         int tnid;
806
807         nd_pa = memblock_phys_alloc_try_nid(nd_size, SMP_CACHE_BYTES, nid);
808         if (!nd_pa)
809                 panic("Cannot allocate %zu bytes for node %d data\n",
810                       nd_size, nid);
811
812         nd = __va(nd_pa);
813
814         /* report and initialize */
815         pr_info("  NODE_DATA [mem %#010Lx-%#010Lx]\n",
816                 nd_pa, nd_pa + nd_size - 1);
817         tnid = early_pfn_to_nid(nd_pa >> PAGE_SHIFT);
818         if (tnid != nid)
819                 pr_info("    NODE_DATA(%d) on node %d\n", nid, tnid);
820
821         node_data[nid] = nd;
822         memset(NODE_DATA(nid), 0, sizeof(pg_data_t));
823         NODE_DATA(nid)->node_id = nid;
824         NODE_DATA(nid)->node_start_pfn = start_pfn;
825         NODE_DATA(nid)->node_spanned_pages = spanned_pages;
826 }
827
828 static void __init find_possible_nodes(void)
829 {
830         struct device_node *rtas;
831         u32 numnodes, i;
832
833         if (min_common_depth <= 0)
834                 return;
835
836         rtas = of_find_node_by_path("/rtas");
837         if (!rtas)
838                 return;
839
840         if (of_property_read_u32_index(rtas,
841                                 "ibm,max-associativity-domains",
842                                 min_common_depth, &numnodes))
843                 goto out;
844
845         for (i = 0; i < numnodes; i++) {
846                 if (!node_possible(i))
847                         node_set(i, node_possible_map);
848         }
849
850 out:
851         of_node_put(rtas);
852 }
853
854 void __init mem_topology_setup(void)
855 {
856         int cpu;
857
858         if (parse_numa_properties())
859                 setup_nonnuma();
860
861         /*
862          * Modify the set of possible NUMA nodes to reflect information
863          * available about the set of online nodes, and the set of nodes
864          * that we expect to make use of for this platform's affinity
865          * calculations.
866          */
867         nodes_and(node_possible_map, node_possible_map, node_online_map);
868
869         find_possible_nodes();
870
871         setup_node_to_cpumask_map();
872
873         reset_numa_cpu_lookup_table();
874
875         for_each_present_cpu(cpu)
876                 numa_setup_cpu(cpu);
877 }
878
879 void __init initmem_init(void)
880 {
881         int nid;
882
883         max_low_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
884         max_pfn = max_low_pfn;
885
886         memblock_dump_all();
887
888         for_each_online_node(nid) {
889                 unsigned long start_pfn, end_pfn;
890
891                 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
892                 setup_node_data(nid, start_pfn, end_pfn);
893                 sparse_memory_present_with_active_regions(nid);
894         }
895
896         sparse_init();
897
898         /*
899          * We need the numa_cpu_lookup_table to be accurate for all CPUs,
900          * even before we online them, so that we can use cpu_to_{node,mem}
901          * early in boot, cf. smp_prepare_cpus().
902          * _nocalls() + manual invocation is used because cpuhp is not yet
903          * initialized for the boot CPU.
904          */
905         cpuhp_setup_state_nocalls(CPUHP_POWER_NUMA_PREPARE, "powerpc/numa:prepare",
906                                   ppc_numa_cpu_prepare, ppc_numa_cpu_dead);
907 }
908
909 static int __init early_numa(char *p)
910 {
911         if (!p)
912                 return 0;
913
914         if (strstr(p, "off"))
915                 numa_enabled = 0;
916
917         if (strstr(p, "debug"))
918                 numa_debug = 1;
919
920         p = strstr(p, "fake=");
921         if (p)
922                 cmdline = p + strlen("fake=");
923
924         return 0;
925 }
926 early_param("numa", early_numa);
927
928 /*
929  * The platform can inform us through one of several mechanisms
930  * (post-migration device tree updates, PRRN or VPHN) that the NUMA
931  * assignment of a resource has changed. This controls whether we act
932  * on that. Disabled by default.
933  */
934 static bool topology_updates_enabled;
935
936 static int __init early_topology_updates(char *p)
937 {
938         if (!p)
939                 return 0;
940
941         if (!strcmp(p, "on")) {
942                 pr_warn("Caution: enabling topology updates\n");
943                 topology_updates_enabled = true;
944         }
945
946         return 0;
947 }
948 early_param("topology_updates", early_topology_updates);
949
950 #ifdef CONFIG_MEMORY_HOTPLUG
951 /*
952  * Find the node associated with a hot added memory section for
953  * memory represented in the device tree by the property
954  * ibm,dynamic-reconfiguration-memory/ibm,dynamic-memory.
955  */
956 static int hot_add_drconf_scn_to_nid(unsigned long scn_addr)
957 {
958         struct drmem_lmb *lmb;
959         unsigned long lmb_size;
960         int nid = NUMA_NO_NODE;
961
962         lmb_size = drmem_lmb_size();
963
964         for_each_drmem_lmb(lmb) {
965                 /* skip this block if it is reserved or not assigned to
966                  * this partition */
967                 if ((lmb->flags & DRCONF_MEM_RESERVED)
968                     || !(lmb->flags & DRCONF_MEM_ASSIGNED))
969                         continue;
970
971                 if ((scn_addr < lmb->base_addr)
972                     || (scn_addr >= (lmb->base_addr + lmb_size)))
973                         continue;
974
975                 nid = of_drconf_to_nid_single(lmb);
976                 break;
977         }
978
979         return nid;
980 }
981
982 /*
983  * Find the node associated with a hot added memory section for memory
984  * represented in the device tree as a node (i.e. memory@XXXX) for
985  * each memblock.
986  */
987 static int hot_add_node_scn_to_nid(unsigned long scn_addr)
988 {
989         struct device_node *memory;
990         int nid = NUMA_NO_NODE;
991
992         for_each_node_by_type(memory, "memory") {
993                 unsigned long start, size;
994                 int ranges;
995                 const __be32 *memcell_buf;
996                 unsigned int len;
997
998                 memcell_buf = of_get_property(memory, "reg", &len);
999                 if (!memcell_buf || len <= 0)
1000                         continue;
1001
1002                 /* ranges in cell */
1003                 ranges = (len >> 2) / (n_mem_addr_cells + n_mem_size_cells);
1004
1005                 while (ranges--) {
1006                         start = read_n_cells(n_mem_addr_cells, &memcell_buf);
1007                         size = read_n_cells(n_mem_size_cells, &memcell_buf);
1008
1009                         if ((scn_addr < start) || (scn_addr >= (start + size)))
1010                                 continue;
1011
1012                         nid = of_node_to_nid_single(memory);
1013                         break;
1014                 }
1015
1016                 if (nid >= 0)
1017                         break;
1018         }
1019
1020         of_node_put(memory);
1021
1022         return nid;
1023 }
1024
1025 /*
1026  * Find the node associated with a hot added memory section.  Section
1027  * corresponds to a SPARSEMEM section, not an MEMBLOCK.  It is assumed that
1028  * sections are fully contained within a single MEMBLOCK.
1029  */
1030 int hot_add_scn_to_nid(unsigned long scn_addr)
1031 {
1032         struct device_node *memory = NULL;
1033         int nid;
1034
1035         if (!numa_enabled || (min_common_depth < 0))
1036                 return first_online_node;
1037
1038         memory = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory");
1039         if (memory) {
1040                 nid = hot_add_drconf_scn_to_nid(scn_addr);
1041                 of_node_put(memory);
1042         } else {
1043                 nid = hot_add_node_scn_to_nid(scn_addr);
1044         }
1045
1046         if (nid < 0 || !node_possible(nid))
1047                 nid = first_online_node;
1048
1049         return nid;
1050 }
1051
1052 static u64 hot_add_drconf_memory_max(void)
1053 {
1054         struct device_node *memory = NULL;
1055         struct device_node *dn = NULL;
1056         const __be64 *lrdr = NULL;
1057
1058         dn = of_find_node_by_path("/rtas");
1059         if (dn) {
1060                 lrdr = of_get_property(dn, "ibm,lrdr-capacity", NULL);
1061                 of_node_put(dn);
1062                 if (lrdr)
1063                         return be64_to_cpup(lrdr);
1064         }
1065
1066         memory = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory");
1067         if (memory) {
1068                 of_node_put(memory);
1069                 return drmem_lmb_memory_max();
1070         }
1071         return 0;
1072 }
1073
1074 /*
1075  * memory_hotplug_max - return max address of memory that may be added
1076  *
1077  * This is currently only used on systems that support drconfig memory
1078  * hotplug.
1079  */
1080 u64 memory_hotplug_max(void)
1081 {
1082         return max(hot_add_drconf_memory_max(), memblock_end_of_DRAM());
1083 }
1084 #endif /* CONFIG_MEMORY_HOTPLUG */
1085
1086 /* Virtual Processor Home Node (VPHN) support */
1087 #ifdef CONFIG_PPC_SPLPAR
1088 struct topology_update_data {
1089         struct topology_update_data *next;
1090         unsigned int cpu;
1091         int old_nid;
1092         int new_nid;
1093 };
1094
1095 #define TOPOLOGY_DEF_TIMER_SECS 60
1096
1097 static u8 vphn_cpu_change_counts[NR_CPUS][MAX_DISTANCE_REF_POINTS];
1098 static cpumask_t cpu_associativity_changes_mask;
1099 static int vphn_enabled;
1100 static int prrn_enabled;
1101 static void reset_topology_timer(void);
1102 static int topology_timer_secs = 1;
1103 static int topology_inited;
1104
1105 /*
1106  * Change polling interval for associativity changes.
1107  */
1108 int timed_topology_update(int nsecs)
1109 {
1110         if (vphn_enabled) {
1111                 if (nsecs > 0)
1112                         topology_timer_secs = nsecs;
1113                 else
1114                         topology_timer_secs = TOPOLOGY_DEF_TIMER_SECS;
1115
1116                 reset_topology_timer();
1117         }
1118
1119         return 0;
1120 }
1121
1122 /*
1123  * Store the current values of the associativity change counters in the
1124  * hypervisor.
1125  */
1126 static void setup_cpu_associativity_change_counters(void)
1127 {
1128         int cpu;
1129
1130         /* The VPHN feature supports a maximum of 8 reference points */
1131         BUILD_BUG_ON(MAX_DISTANCE_REF_POINTS > 8);
1132
1133         for_each_possible_cpu(cpu) {
1134                 int i;
1135                 u8 *counts = vphn_cpu_change_counts[cpu];
1136                 volatile u8 *hypervisor_counts = lppaca_of(cpu).vphn_assoc_counts;
1137
1138                 for (i = 0; i < distance_ref_points_depth; i++)
1139                         counts[i] = hypervisor_counts[i];
1140         }
1141 }
1142
1143 /*
1144  * The hypervisor maintains a set of 8 associativity change counters in
1145  * the VPA of each cpu that correspond to the associativity levels in the
1146  * ibm,associativity-reference-points property. When an associativity
1147  * level changes, the corresponding counter is incremented.
1148  *
1149  * Set a bit in cpu_associativity_changes_mask for each cpu whose home
1150  * node associativity levels have changed.
1151  *
1152  * Returns the number of cpus with unhandled associativity changes.
1153  */
1154 static int update_cpu_associativity_changes_mask(void)
1155 {
1156         int cpu;
1157         cpumask_t *changes = &cpu_associativity_changes_mask;
1158
1159         for_each_possible_cpu(cpu) {
1160                 int i, changed = 0;
1161                 u8 *counts = vphn_cpu_change_counts[cpu];
1162                 volatile u8 *hypervisor_counts = lppaca_of(cpu).vphn_assoc_counts;
1163
1164                 for (i = 0; i < distance_ref_points_depth; i++) {
1165                         if (hypervisor_counts[i] != counts[i]) {
1166                                 counts[i] = hypervisor_counts[i];
1167                                 changed = 1;
1168                         }
1169                 }
1170                 if (changed) {
1171                         cpumask_or(changes, changes, cpu_sibling_mask(cpu));
1172                         cpu = cpu_last_thread_sibling(cpu);
1173                 }
1174         }
1175
1176         return cpumask_weight(changes);
1177 }
1178
1179 /*
1180  * Retrieve the new associativity information for a virtual processor's
1181  * home node.
1182  */
1183 static long vphn_get_associativity(unsigned long cpu,
1184                                         __be32 *associativity)
1185 {
1186         long rc;
1187
1188         rc = hcall_vphn(get_hard_smp_processor_id(cpu),
1189                                 VPHN_FLAG_VCPU, associativity);
1190
1191         switch (rc) {
1192         case H_FUNCTION:
1193                 printk_once(KERN_INFO
1194                         "VPHN is not supported. Disabling polling...\n");
1195                 stop_topology_update();
1196                 break;
1197         case H_HARDWARE:
1198                 printk(KERN_ERR
1199                         "hcall_vphn() experienced a hardware fault "
1200                         "preventing VPHN. Disabling polling...\n");
1201                 stop_topology_update();
1202                 break;
1203         case H_SUCCESS:
1204                 dbg("VPHN hcall succeeded. Reset polling...\n");
1205                 timed_topology_update(0);
1206                 break;
1207         }
1208
1209         return rc;
1210 }
1211
1212 int find_and_online_cpu_nid(int cpu)
1213 {
1214         __be32 associativity[VPHN_ASSOC_BUFSIZE] = {0};
1215         int new_nid;
1216
1217         /* Use associativity from first thread for all siblings */
1218         if (vphn_get_associativity(cpu, associativity))
1219                 return cpu_to_node(cpu);
1220
1221         new_nid = associativity_to_nid(associativity);
1222         if (new_nid < 0 || !node_possible(new_nid))
1223                 new_nid = first_online_node;
1224
1225         if (NODE_DATA(new_nid) == NULL) {
1226 #ifdef CONFIG_MEMORY_HOTPLUG
1227                 /*
1228                  * Need to ensure that NODE_DATA is initialized for a node from
1229                  * available memory (see memblock_alloc_try_nid). If unable to
1230                  * init the node, then default to nearest node that has memory
1231                  * installed. Skip onlining a node if the subsystems are not
1232                  * yet initialized.
1233                  */
1234                 if (!topology_inited || try_online_node(new_nid))
1235                         new_nid = first_online_node;
1236 #else
1237                 /*
1238                  * Default to using the nearest node that has memory installed.
1239                  * Otherwise, it would be necessary to patch the kernel MM code
1240                  * to deal with more memoryless-node error conditions.
1241                  */
1242                 new_nid = first_online_node;
1243 #endif
1244         }
1245
1246         pr_debug("%s:%d cpu %d nid %d\n", __FUNCTION__, __LINE__,
1247                 cpu, new_nid);
1248         return new_nid;
1249 }
1250
1251 /*
1252  * Update the CPU maps and sysfs entries for a single CPU when its NUMA
1253  * characteristics change. This function doesn't perform any locking and is
1254  * only safe to call from stop_machine().
1255  */
1256 static int update_cpu_topology(void *data)
1257 {
1258         struct topology_update_data *update;
1259         unsigned long cpu;
1260
1261         if (!data)
1262                 return -EINVAL;
1263
1264         cpu = smp_processor_id();
1265
1266         for (update = data; update; update = update->next) {
1267                 int new_nid = update->new_nid;
1268                 if (cpu != update->cpu)
1269                         continue;
1270
1271                 unmap_cpu_from_node(cpu);
1272                 map_cpu_to_node(cpu, new_nid);
1273                 set_cpu_numa_node(cpu, new_nid);
1274                 set_cpu_numa_mem(cpu, local_memory_node(new_nid));
1275                 vdso_getcpu_init();
1276         }
1277
1278         return 0;
1279 }
1280
1281 static int update_lookup_table(void *data)
1282 {
1283         struct topology_update_data *update;
1284
1285         if (!data)
1286                 return -EINVAL;
1287
1288         /*
1289          * Upon topology update, the numa-cpu lookup table needs to be updated
1290          * for all threads in the core, including offline CPUs, to ensure that
1291          * future hotplug operations respect the cpu-to-node associativity
1292          * properly.
1293          */
1294         for (update = data; update; update = update->next) {
1295                 int nid, base, j;
1296
1297                 nid = update->new_nid;
1298                 base = cpu_first_thread_sibling(update->cpu);
1299
1300                 for (j = 0; j < threads_per_core; j++) {
1301                         update_numa_cpu_lookup_table(base + j, nid);
1302                 }
1303         }
1304
1305         return 0;
1306 }
1307
1308 /*
1309  * Update the node maps and sysfs entries for each cpu whose home node
1310  * has changed. Returns 1 when the topology has changed, and 0 otherwise.
1311  *
1312  * cpus_locked says whether we already hold cpu_hotplug_lock.
1313  */
1314 int numa_update_cpu_topology(bool cpus_locked)
1315 {
1316         unsigned int cpu, sibling, changed = 0;
1317         struct topology_update_data *updates, *ud;
1318         cpumask_t updated_cpus;
1319         struct device *dev;
1320         int weight, new_nid, i = 0;
1321
1322         if (!prrn_enabled && !vphn_enabled && topology_inited)
1323                 return 0;
1324
1325         weight = cpumask_weight(&cpu_associativity_changes_mask);
1326         if (!weight)
1327                 return 0;
1328
1329         updates = kcalloc(weight, sizeof(*updates), GFP_KERNEL);
1330         if (!updates)
1331                 return 0;
1332
1333         cpumask_clear(&updated_cpus);
1334
1335         for_each_cpu(cpu, &cpu_associativity_changes_mask) {
1336                 /*
1337                  * If siblings aren't flagged for changes, updates list
1338                  * will be too short. Skip on this update and set for next
1339                  * update.
1340                  */
1341                 if (!cpumask_subset(cpu_sibling_mask(cpu),
1342                                         &cpu_associativity_changes_mask)) {
1343                         pr_info("Sibling bits not set for associativity "
1344                                         "change, cpu%d\n", cpu);
1345                         cpumask_or(&cpu_associativity_changes_mask,
1346                                         &cpu_associativity_changes_mask,
1347                                         cpu_sibling_mask(cpu));
1348                         cpu = cpu_last_thread_sibling(cpu);
1349                         continue;
1350                 }
1351
1352                 new_nid = find_and_online_cpu_nid(cpu);
1353
1354                 if (new_nid == numa_cpu_lookup_table[cpu]) {
1355                         cpumask_andnot(&cpu_associativity_changes_mask,
1356                                         &cpu_associativity_changes_mask,
1357                                         cpu_sibling_mask(cpu));
1358                         dbg("Assoc chg gives same node %d for cpu%d\n",
1359                                         new_nid, cpu);
1360                         cpu = cpu_last_thread_sibling(cpu);
1361                         continue;
1362                 }
1363
1364                 for_each_cpu(sibling, cpu_sibling_mask(cpu)) {
1365                         ud = &updates[i++];
1366                         ud->next = &updates[i];
1367                         ud->cpu = sibling;
1368                         ud->new_nid = new_nid;
1369                         ud->old_nid = numa_cpu_lookup_table[sibling];
1370                         cpumask_set_cpu(sibling, &updated_cpus);
1371                 }
1372                 cpu = cpu_last_thread_sibling(cpu);
1373         }
1374
1375         /*
1376          * Prevent processing of 'updates' from overflowing array
1377          * where last entry filled in a 'next' pointer.
1378          */
1379         if (i)
1380                 updates[i-1].next = NULL;
1381
1382         pr_debug("Topology update for the following CPUs:\n");
1383         if (cpumask_weight(&updated_cpus)) {
1384                 for (ud = &updates[0]; ud; ud = ud->next) {
1385                         pr_debug("cpu %d moving from node %d "
1386                                           "to %d\n", ud->cpu,
1387                                           ud->old_nid, ud->new_nid);
1388                 }
1389         }
1390
1391         /*
1392          * In cases where we have nothing to update (because the updates list
1393          * is too short or because the new topology is same as the old one),
1394          * skip invoking update_cpu_topology() via stop-machine(). This is
1395          * necessary (and not just a fast-path optimization) since stop-machine
1396          * can end up electing a random CPU to run update_cpu_topology(), and
1397          * thus trick us into setting up incorrect cpu-node mappings (since
1398          * 'updates' is kzalloc()'ed).
1399          *
1400          * And for the similar reason, we will skip all the following updating.
1401          */
1402         if (!cpumask_weight(&updated_cpus))
1403                 goto out;
1404
1405         if (cpus_locked)
1406                 stop_machine_cpuslocked(update_cpu_topology, &updates[0],
1407                                         &updated_cpus);
1408         else
1409                 stop_machine(update_cpu_topology, &updates[0], &updated_cpus);
1410
1411         /*
1412          * Update the numa-cpu lookup table with the new mappings, even for
1413          * offline CPUs. It is best to perform this update from the stop-
1414          * machine context.
1415          */
1416         if (cpus_locked)
1417                 stop_machine_cpuslocked(update_lookup_table, &updates[0],
1418                                         cpumask_of(raw_smp_processor_id()));
1419         else
1420                 stop_machine(update_lookup_table, &updates[0],
1421                              cpumask_of(raw_smp_processor_id()));
1422
1423         for (ud = &updates[0]; ud; ud = ud->next) {
1424                 unregister_cpu_under_node(ud->cpu, ud->old_nid);
1425                 register_cpu_under_node(ud->cpu, ud->new_nid);
1426
1427                 dev = get_cpu_device(ud->cpu);
1428                 if (dev)
1429                         kobject_uevent(&dev->kobj, KOBJ_CHANGE);
1430                 cpumask_clear_cpu(ud->cpu, &cpu_associativity_changes_mask);
1431                 changed = 1;
1432         }
1433
1434 out:
1435         kfree(updates);
1436         return changed;
1437 }
1438
1439 int arch_update_cpu_topology(void)
1440 {
1441         return numa_update_cpu_topology(true);
1442 }
1443
1444 static void topology_work_fn(struct work_struct *work)
1445 {
1446         rebuild_sched_domains();
1447 }
1448 static DECLARE_WORK(topology_work, topology_work_fn);
1449
1450 static void topology_schedule_update(void)
1451 {
1452         schedule_work(&topology_work);
1453 }
1454
1455 static void topology_timer_fn(struct timer_list *unused)
1456 {
1457         if (prrn_enabled && cpumask_weight(&cpu_associativity_changes_mask))
1458                 topology_schedule_update();
1459         else if (vphn_enabled) {
1460                 if (update_cpu_associativity_changes_mask() > 0)
1461                         topology_schedule_update();
1462                 reset_topology_timer();
1463         }
1464 }
1465 static struct timer_list topology_timer;
1466
1467 static void reset_topology_timer(void)
1468 {
1469         if (vphn_enabled)
1470                 mod_timer(&topology_timer, jiffies + topology_timer_secs * HZ);
1471 }
1472
1473 #ifdef CONFIG_SMP
1474
1475 static int dt_update_callback(struct notifier_block *nb,
1476                                 unsigned long action, void *data)
1477 {
1478         struct of_reconfig_data *update = data;
1479         int rc = NOTIFY_DONE;
1480
1481         switch (action) {
1482         case OF_RECONFIG_UPDATE_PROPERTY:
1483                 if (of_node_is_type(update->dn, "cpu") &&
1484                     !of_prop_cmp(update->prop->name, "ibm,associativity")) {
1485                         u32 core_id;
1486                         of_property_read_u32(update->dn, "reg", &core_id);
1487                         rc = dlpar_cpu_readd(core_id);
1488                         rc = NOTIFY_OK;
1489                 }
1490                 break;
1491         }
1492
1493         return rc;
1494 }
1495
1496 static struct notifier_block dt_update_nb = {
1497         .notifier_call = dt_update_callback,
1498 };
1499
1500 #endif
1501
1502 /*
1503  * Start polling for associativity changes.
1504  */
1505 int start_topology_update(void)
1506 {
1507         int rc = 0;
1508
1509         if (!topology_updates_enabled)
1510                 return 0;
1511
1512         if (firmware_has_feature(FW_FEATURE_PRRN)) {
1513                 if (!prrn_enabled) {
1514                         prrn_enabled = 1;
1515 #ifdef CONFIG_SMP
1516                         rc = of_reconfig_notifier_register(&dt_update_nb);
1517 #endif
1518                 }
1519         }
1520         if (firmware_has_feature(FW_FEATURE_VPHN) &&
1521                    lppaca_shared_proc(get_lppaca())) {
1522                 if (!vphn_enabled) {
1523                         vphn_enabled = 1;
1524                         setup_cpu_associativity_change_counters();
1525                         timer_setup(&topology_timer, topology_timer_fn,
1526                                     TIMER_DEFERRABLE);
1527                         reset_topology_timer();
1528                 }
1529         }
1530
1531         pr_info("Starting topology update%s%s\n",
1532                 (prrn_enabled ? " prrn_enabled" : ""),
1533                 (vphn_enabled ? " vphn_enabled" : ""));
1534
1535         return rc;
1536 }
1537
1538 /*
1539  * Disable polling for VPHN associativity changes.
1540  */
1541 int stop_topology_update(void)
1542 {
1543         int rc = 0;
1544
1545         if (!topology_updates_enabled)
1546                 return 0;
1547
1548         if (prrn_enabled) {
1549                 prrn_enabled = 0;
1550 #ifdef CONFIG_SMP
1551                 rc = of_reconfig_notifier_unregister(&dt_update_nb);
1552 #endif
1553         }
1554         if (vphn_enabled) {
1555                 vphn_enabled = 0;
1556                 rc = del_timer_sync(&topology_timer);
1557         }
1558
1559         pr_info("Stopping topology update\n");
1560
1561         return rc;
1562 }
1563
1564 int prrn_is_enabled(void)
1565 {
1566         return prrn_enabled;
1567 }
1568
1569 void __init shared_proc_topology_init(void)
1570 {
1571         if (lppaca_shared_proc(get_lppaca())) {
1572                 bitmap_fill(cpumask_bits(&cpu_associativity_changes_mask),
1573                             nr_cpumask_bits);
1574                 numa_update_cpu_topology(false);
1575         }
1576 }
1577
1578 static int topology_read(struct seq_file *file, void *v)
1579 {
1580         if (vphn_enabled || prrn_enabled)
1581                 seq_puts(file, "on\n");
1582         else
1583                 seq_puts(file, "off\n");
1584
1585         return 0;
1586 }
1587
1588 static int topology_open(struct inode *inode, struct file *file)
1589 {
1590         return single_open(file, topology_read, NULL);
1591 }
1592
1593 static ssize_t topology_write(struct file *file, const char __user *buf,
1594                               size_t count, loff_t *off)
1595 {
1596         char kbuf[4]; /* "on" or "off" plus null. */
1597         int read_len;
1598
1599         read_len = count < 3 ? count : 3;
1600         if (copy_from_user(kbuf, buf, read_len))
1601                 return -EINVAL;
1602
1603         kbuf[read_len] = '\0';
1604
1605         if (!strncmp(kbuf, "on", 2)) {
1606                 topology_updates_enabled = true;
1607                 start_topology_update();
1608         } else if (!strncmp(kbuf, "off", 3)) {
1609                 stop_topology_update();
1610                 topology_updates_enabled = false;
1611         } else
1612                 return -EINVAL;
1613
1614         return count;
1615 }
1616
1617 static const struct file_operations topology_ops = {
1618         .read = seq_read,
1619         .write = topology_write,
1620         .open = topology_open,
1621         .release = single_release
1622 };
1623
1624 static int topology_update_init(void)
1625 {
1626         start_topology_update();
1627
1628         if (vphn_enabled)
1629                 topology_schedule_update();
1630
1631         if (!proc_create("powerpc/topology_updates", 0644, NULL, &topology_ops))
1632                 return -ENOMEM;
1633
1634         topology_inited = 1;
1635         return 0;
1636 }
1637 device_initcall(topology_update_init);
1638 #endif /* CONFIG_PPC_SPLPAR */