blob: 1eaefd661d36561d028118e46b90887b164631b9 [file] [log] [blame]
Badari Pulavarty57b53922008-04-18 13:33:50 -07001/*
2 * pseries Memory Hotplug infrastructure.
3 *
4 * Copyright (C) 2008 Badari Pulavarty, IBM Corporation
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
12#include <linux/of.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100013#include <linux/memblock.h>
Benjamin Herrenschmidtb4a26be2010-04-06 15:03:40 +000014#include <linux/vmalloc.h>
Badari Pulavarty57b53922008-04-18 13:33:50 -070015#include <asm/firmware.h>
16#include <asm/machdep.h>
17#include <asm/pSeries_reconfig.h>
Michael Neuling0b2f8282009-02-08 14:49:39 +000018#include <asm/sparsemem.h>
Badari Pulavarty57b53922008-04-18 13:33:50 -070019
Nathan Fontenotc540ada2011-01-20 10:45:20 -060020static unsigned long get_memblock_size(void)
21{
22 struct device_node *np;
23 unsigned int memblock_size = 0;
24
25 np = of_find_node_by_path("/ibm,dynamic-reconfiguration-memory");
26 if (np) {
27 const unsigned long *size;
28
29 size = of_get_property(np, "ibm,lmb-size", NULL);
30 memblock_size = size ? *size : 0;
31
32 of_node_put(np);
33 } else {
34 unsigned int memzero_size = 0;
35 const unsigned int *regs;
36
37 np = of_find_node_by_path("/memory@0");
38 if (np) {
39 regs = of_get_property(np, "reg", NULL);
40 memzero_size = regs ? regs[3] : 0;
41 of_node_put(np);
42 }
43
44 if (memzero_size) {
45 /* We now know the size of memory@0, use this to find
46 * the first memoryblock and get its size.
47 */
48 char buf[64];
49
50 sprintf(buf, "/memory@%x", memzero_size);
51 np = of_find_node_by_path(buf);
52 if (np) {
53 regs = of_get_property(np, "reg", NULL);
54 memblock_size = regs ? regs[3] : 0;
55 of_node_put(np);
56 }
57 }
58 }
59
60 return memblock_size;
61}
62
63unsigned long memory_block_size_bytes(void)
64{
65 return get_memblock_size();
66}
67
Yinghai Lu95f72d12010-07-12 14:36:09 +100068static int pseries_remove_memblock(unsigned long base, unsigned int memblock_size)
Badari Pulavarty57b53922008-04-18 13:33:50 -070069{
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +100070 unsigned long start, start_pfn;
Badari Pulavarty57b53922008-04-18 13:33:50 -070071 struct zone *zone;
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +100072 int ret;
Nathan Fontenot92ecd172008-07-03 13:20:58 +100073
Nathan Fontenot9fd3f882008-10-01 09:44:02 +000074 start_pfn = base >> PAGE_SHIFT;
Nathan Fontenot04badfd2008-10-13 08:42:00 +000075
76 if (!pfn_valid(start_pfn)) {
Yinghai Lu95f72d12010-07-12 14:36:09 +100077 memblock_remove(base, memblock_size);
Nathan Fontenot04badfd2008-10-13 08:42:00 +000078 return 0;
79 }
80
Badari Pulavarty57b53922008-04-18 13:33:50 -070081 zone = page_zone(pfn_to_page(start_pfn));
82
83 /*
84 * Remove section mappings and sysfs entries for the
85 * section of the memory we are removing.
86 *
87 * NOTE: Ideally, this should be done in generic code like
88 * remove_memory(). But remove_memory() gets called by writing
89 * to sysfs "state" file and we can't remove sysfs entries
90 * while writing to it. So we have to defer it to here.
91 */
Yinghai Lu95f72d12010-07-12 14:36:09 +100092 ret = __remove_pages(zone, start_pfn, memblock_size >> PAGE_SHIFT);
Badari Pulavarty57b53922008-04-18 13:33:50 -070093 if (ret)
94 return ret;
95
96 /*
Badari Pulavarty98d5c212008-04-18 13:33:52 -070097 * Update memory regions for memory remove
98 */
Yinghai Lu95f72d12010-07-12 14:36:09 +100099 memblock_remove(base, memblock_size);
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700100
101 /*
Badari Pulavarty57b53922008-04-18 13:33:50 -0700102 * Remove htab bolted mappings for this section of memory
103 */
Nathan Fontenot92ecd172008-07-03 13:20:58 +1000104 start = (unsigned long)__va(base);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000105 ret = remove_section_mapping(start, start + memblock_size);
Benjamin Herrenschmidtb4a26be2010-04-06 15:03:40 +0000106
107 /* Ensure all vmalloc mappings are flushed in case they also
108 * hit that section of memory
109 */
110 vm_unmap_aliases();
111
Badari Pulavarty57b53922008-04-18 13:33:50 -0700112 return ret;
113}
114
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000115static int pseries_remove_memory(struct device_node *np)
116{
117 const char *type;
118 const unsigned int *regs;
119 unsigned long base;
Benjamin Herrenschmidt3fdfd992010-07-23 10:35:52 +1000120 unsigned int lmb_size;
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000121 int ret = -EINVAL;
122
123 /*
124 * Check to see if we are actually removing memory
125 */
126 type = of_get_property(np, "device_type", NULL);
127 if (type == NULL || strcmp(type, "memory") != 0)
128 return 0;
129
130 /*
Yinghai Lu95f72d12010-07-12 14:36:09 +1000131 * Find the bae address and size of the memblock
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000132 */
133 regs = of_get_property(np, "reg", NULL);
134 if (!regs)
135 return ret;
136
137 base = *(unsigned long *)regs;
Benjamin Herrenschmidt3fdfd992010-07-23 10:35:52 +1000138 lmb_size = regs[3];
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000139
Benjamin Herrenschmidt3fdfd992010-07-23 10:35:52 +1000140 ret = pseries_remove_memblock(base, lmb_size);
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000141 return ret;
142}
143
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700144static int pseries_add_memory(struct device_node *np)
145{
146 const char *type;
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700147 const unsigned int *regs;
Nathan Fontenot92ecd172008-07-03 13:20:58 +1000148 unsigned long base;
Benjamin Herrenschmidt3fdfd992010-07-23 10:35:52 +1000149 unsigned int lmb_size;
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700150 int ret = -EINVAL;
151
152 /*
153 * Check to see if we are actually adding memory
154 */
155 type = of_get_property(np, "device_type", NULL);
156 if (type == NULL || strcmp(type, "memory") != 0)
157 return 0;
158
159 /*
Yinghai Lu95f72d12010-07-12 14:36:09 +1000160 * Find the base and size of the memblock
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700161 */
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700162 regs = of_get_property(np, "reg", NULL);
163 if (!regs)
164 return ret;
165
Nathan Fontenot92ecd172008-07-03 13:20:58 +1000166 base = *(unsigned long *)regs;
Benjamin Herrenschmidt3fdfd992010-07-23 10:35:52 +1000167 lmb_size = regs[3];
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700168
169 /*
170 * Update memory region to represent the memory add
171 */
Benjamin Herrenschmidt3fdfd992010-07-23 10:35:52 +1000172 ret = memblock_add(base, lmb_size);
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000173 return (ret < 0) ? -EINVAL : 0;
174}
175
176static int pseries_drconf_memory(unsigned long *base, unsigned int action)
177{
Nathan Fontenotc540ada2011-01-20 10:45:20 -0600178 unsigned long memblock_size;
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000179 int rc;
180
Nathan Fontenotc540ada2011-01-20 10:45:20 -0600181 memblock_size = get_memblock_size();
182 if (!memblock_size)
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000183 return -EINVAL;
184
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000185 if (action == PSERIES_DRCONF_MEM_ADD) {
Nathan Fontenotc540ada2011-01-20 10:45:20 -0600186 rc = memblock_add(*base, memblock_size);
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000187 rc = (rc < 0) ? -EINVAL : 0;
188 } else if (action == PSERIES_DRCONF_MEM_REMOVE) {
Nathan Fontenotc540ada2011-01-20 10:45:20 -0600189 rc = pseries_remove_memblock(*base, memblock_size);
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000190 } else {
191 rc = -EINVAL;
192 }
193
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000194 return rc;
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700195}
196
Badari Pulavarty57b53922008-04-18 13:33:50 -0700197static int pseries_memory_notifier(struct notifier_block *nb,
198 unsigned long action, void *node)
199{
Akinobu Mitade2780a2011-06-21 03:35:56 +0000200 int err = 0;
Badari Pulavarty57b53922008-04-18 13:33:50 -0700201
202 switch (action) {
203 case PSERIES_RECONFIG_ADD:
Akinobu Mitade2780a2011-06-21 03:35:56 +0000204 err = pseries_add_memory(node);
Badari Pulavarty57b53922008-04-18 13:33:50 -0700205 break;
206 case PSERIES_RECONFIG_REMOVE:
Akinobu Mitade2780a2011-06-21 03:35:56 +0000207 err = pseries_remove_memory(node);
Badari Pulavarty57b53922008-04-18 13:33:50 -0700208 break;
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000209 case PSERIES_DRCONF_MEM_ADD:
210 case PSERIES_DRCONF_MEM_REMOVE:
Akinobu Mitade2780a2011-06-21 03:35:56 +0000211 err = pseries_drconf_memory(node, action);
Badari Pulavarty57b53922008-04-18 13:33:50 -0700212 break;
213 }
Akinobu Mitade2780a2011-06-21 03:35:56 +0000214 return notifier_from_errno(err);
Badari Pulavarty57b53922008-04-18 13:33:50 -0700215}
216
217static struct notifier_block pseries_mem_nb = {
218 .notifier_call = pseries_memory_notifier,
219};
220
221static int __init pseries_memory_hotplug_init(void)
222{
223 if (firmware_has_feature(FW_FEATURE_LPAR))
224 pSeries_reconfig_notifier_register(&pseries_mem_nb);
225
226 return 0;
227}
228machine_device_initcall(pseries, pseries_memory_hotplug_init);