blob: 86abbff912ecc0687e1b4ac93701af8cfcded1b5 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
Kay Sievers10fbcf42011-12-21 14:48:43 -08002 * Memory subsystem support
Dave Hansen3947be12005-10-29 18:16:54 -07003 *
4 * Written by Matt Tolentino <matthew.e.tolentino@intel.com>
5 * Dave Hansen <haveblue@us.ibm.com>
6 *
7 * This file provides the necessary infrastructure to represent
8 * a SPARSEMEM-memory-model system's physical memory in /sysfs.
9 * All arch-independent code that assumes MEMORY_HOTPLUG requires
10 * SPARSEMEM should be contained here, or in mm/memory_hotplug.c.
11 */
12
Dave Hansen3947be12005-10-29 18:16:54 -070013#include <linux/module.h>
14#include <linux/init.h>
Dave Hansen3947be12005-10-29 18:16:54 -070015#include <linux/topology.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080016#include <linux/capability.h>
Dave Hansen3947be12005-10-29 18:16:54 -070017#include <linux/device.h>
18#include <linux/memory.h>
19#include <linux/kobject.h>
20#include <linux/memory_hotplug.h>
21#include <linux/mm.h>
Daniel Walkerda19cbc2008-02-04 23:35:47 -080022#include <linux/mutex.h>
Shaohua Li9f1b16a2008-10-18 20:27:12 -070023#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Shaohua Li9f1b16a2008-10-18 20:27:12 -070025
Arun Sharma600634972011-07-26 16:09:06 -070026#include <linux/atomic.h>
Dave Hansen3947be12005-10-29 18:16:54 -070027#include <asm/uaccess.h>
28
Nathan Fontenot2938ffb2010-10-19 12:45:24 -050029static DEFINE_MUTEX(mem_sysfs_mutex);
30
Dave Hansen3947be12005-10-29 18:16:54 -070031#define MEMORY_CLASS_NAME "memory"
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060032
33static int sections_per_block;
34
35static inline int base_memory_block_id(int section_nr)
36{
37 return section_nr / sections_per_block;
38}
Dave Hansen3947be12005-10-29 18:16:54 -070039
Kay Sievers10fbcf42011-12-21 14:48:43 -080040static struct bus_type memory_subsys = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010041 .name = MEMORY_CLASS_NAME,
Kay Sievers10fbcf42011-12-21 14:48:43 -080042 .dev_name = MEMORY_CLASS_NAME,
Dave Hansen3947be12005-10-29 18:16:54 -070043};
44
Alan Sterne041c682006-03-27 01:16:30 -080045static BLOCKING_NOTIFIER_HEAD(memory_chain);
Dave Hansen3947be12005-10-29 18:16:54 -070046
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080047int register_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070048{
Alan Sterne041c682006-03-27 01:16:30 -080049 return blocking_notifier_chain_register(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070050}
Hannes Hering3c82c302008-05-07 14:43:01 +020051EXPORT_SYMBOL(register_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070052
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080053void unregister_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070054{
Alan Sterne041c682006-03-27 01:16:30 -080055 blocking_notifier_chain_unregister(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070056}
Hannes Hering3c82c302008-05-07 14:43:01 +020057EXPORT_SYMBOL(unregister_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070058
Robert Jennings925cc712009-12-17 14:44:38 +000059static ATOMIC_NOTIFIER_HEAD(memory_isolate_chain);
60
61int register_memory_isolate_notifier(struct notifier_block *nb)
62{
63 return atomic_notifier_chain_register(&memory_isolate_chain, nb);
64}
65EXPORT_SYMBOL(register_memory_isolate_notifier);
66
67void unregister_memory_isolate_notifier(struct notifier_block *nb)
68{
69 atomic_notifier_chain_unregister(&memory_isolate_chain, nb);
70}
71EXPORT_SYMBOL(unregister_memory_isolate_notifier);
72
Yasuaki Ishimatsufa7194e2012-12-11 16:00:44 -080073static void memory_block_release(struct device *dev)
74{
75 struct memory_block *mem = container_of(dev, struct memory_block, dev);
76
77 kfree(mem);
78}
79
Dave Hansen3947be12005-10-29 18:16:54 -070080/*
81 * register_memory - Setup a sysfs device for a memory block
82 */
Badari Pulavarty00a41db2008-02-11 09:23:18 -080083static
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060084int register_memory(struct memory_block *memory)
Dave Hansen3947be12005-10-29 18:16:54 -070085{
86 int error;
87
Kay Sievers10fbcf42011-12-21 14:48:43 -080088 memory->dev.bus = &memory_subsys;
89 memory->dev.id = memory->start_section_nr / sections_per_block;
Yasuaki Ishimatsufa7194e2012-12-11 16:00:44 -080090 memory->dev.release = memory_block_release;
Dave Hansen3947be12005-10-29 18:16:54 -070091
Kay Sievers10fbcf42011-12-21 14:48:43 -080092 error = device_register(&memory->dev);
Dave Hansen3947be12005-10-29 18:16:54 -070093 return error;
94}
95
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060096unsigned long __weak memory_block_size_bytes(void)
97{
98 return MIN_MEMORY_BLOCK_SIZE;
99}
100
101static unsigned long get_memory_block_size(void)
102{
103 unsigned long block_sz;
104
105 block_sz = memory_block_size_bytes();
106
107 /* Validate blk_sz is a power of 2 and not less than section size */
108 if ((block_sz & (block_sz - 1)) || (block_sz < MIN_MEMORY_BLOCK_SIZE)) {
109 WARN_ON(1);
110 block_sz = MIN_MEMORY_BLOCK_SIZE;
111 }
112
113 return block_sz;
114}
115
Dave Hansen3947be12005-10-29 18:16:54 -0700116/*
117 * use this as the physical section index that this memsection
118 * uses.
119 */
120
Kay Sievers10fbcf42011-12-21 14:48:43 -0800121static ssize_t show_mem_start_phys_index(struct device *dev,
122 struct device_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700123{
124 struct memory_block *mem =
Kay Sievers10fbcf42011-12-21 14:48:43 -0800125 container_of(dev, struct memory_block, dev);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600126 unsigned long phys_index;
127
128 phys_index = mem->start_section_nr / sections_per_block;
129 return sprintf(buf, "%08lx\n", phys_index);
130}
131
Kay Sievers10fbcf42011-12-21 14:48:43 -0800132static ssize_t show_mem_end_phys_index(struct device *dev,
133 struct device_attribute *attr, char *buf)
Nathan Fontenotd3360162011-01-20 10:44:29 -0600134{
135 struct memory_block *mem =
Kay Sievers10fbcf42011-12-21 14:48:43 -0800136 container_of(dev, struct memory_block, dev);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600137 unsigned long phys_index;
138
139 phys_index = mem->end_section_nr / sections_per_block;
140 return sprintf(buf, "%08lx\n", phys_index);
Dave Hansen3947be12005-10-29 18:16:54 -0700141}
142
143/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700144 * Show whether the section of memory is likely to be hot-removable
145 */
Kay Sievers10fbcf42011-12-21 14:48:43 -0800146static ssize_t show_mem_removable(struct device *dev,
147 struct device_attribute *attr, char *buf)
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700148{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600149 unsigned long i, pfn;
150 int ret = 1;
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700151 struct memory_block *mem =
Kay Sievers10fbcf42011-12-21 14:48:43 -0800152 container_of(dev, struct memory_block, dev);
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700153
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600154 for (i = 0; i < sections_per_block; i++) {
Russ Andersonea35d7d2013-08-28 16:35:18 -0700155 if (!present_section_nr(mem->start_section_nr + i))
156 continue;
Nathan Fontenotd3360162011-01-20 10:44:29 -0600157 pfn = section_nr_to_pfn(mem->start_section_nr + i);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600158 ret &= is_mem_section_removable(pfn, PAGES_PER_SECTION);
159 }
160
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700161 return sprintf(buf, "%d\n", ret);
162}
163
164/*
Dave Hansen3947be12005-10-29 18:16:54 -0700165 * online, offline, going offline, etc.
166 */
Kay Sievers10fbcf42011-12-21 14:48:43 -0800167static ssize_t show_mem_state(struct device *dev,
168 struct device_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700169{
170 struct memory_block *mem =
Kay Sievers10fbcf42011-12-21 14:48:43 -0800171 container_of(dev, struct memory_block, dev);
Dave Hansen3947be12005-10-29 18:16:54 -0700172 ssize_t len = 0;
173
174 /*
175 * We can probably put these states in a nice little array
176 * so that they're not open-coded
177 */
178 switch (mem->state) {
179 case MEM_ONLINE:
180 len = sprintf(buf, "online\n");
181 break;
182 case MEM_OFFLINE:
183 len = sprintf(buf, "offline\n");
184 break;
185 case MEM_GOING_OFFLINE:
186 len = sprintf(buf, "going-offline\n");
187 break;
188 default:
189 len = sprintf(buf, "ERROR-UNKNOWN-%ld\n",
190 mem->state);
191 WARN_ON(1);
192 break;
193 }
194
195 return len;
196}
197
Yasunori Goto7b78d332007-10-21 16:41:36 -0700198int memory_notify(unsigned long val, void *v)
Dave Hansen3947be12005-10-29 18:16:54 -0700199{
Alan Sterne041c682006-03-27 01:16:30 -0800200 return blocking_notifier_call_chain(&memory_chain, val, v);
Dave Hansen3947be12005-10-29 18:16:54 -0700201}
202
Robert Jennings925cc712009-12-17 14:44:38 +0000203int memory_isolate_notify(unsigned long val, void *v)
204{
205 return atomic_notifier_call_chain(&memory_isolate_chain, val, v);
206}
207
Dave Hansen3947be12005-10-29 18:16:54 -0700208/*
Mel Gorman2bbcb8782011-10-17 16:38:20 +0200209 * The probe routines leave the pages reserved, just as the bootmem code does.
210 * Make sure they're still that way.
211 */
Tang Chen6056d612013-04-29 15:08:40 -0700212static bool pages_correctly_reserved(unsigned long start_pfn)
Mel Gorman2bbcb8782011-10-17 16:38:20 +0200213{
214 int i, j;
215 struct page *page;
216 unsigned long pfn = start_pfn;
217
218 /*
219 * memmap between sections is not contiguous except with
220 * SPARSEMEM_VMEMMAP. We lookup the page once per section
221 * and assume memmap is contiguous within each section
222 */
223 for (i = 0; i < sections_per_block; i++, pfn += PAGES_PER_SECTION) {
224 if (WARN_ON_ONCE(!pfn_valid(pfn)))
225 return false;
226 page = pfn_to_page(pfn);
227
228 for (j = 0; j < PAGES_PER_SECTION; j++) {
229 if (PageReserved(page + j))
230 continue;
231
232 printk(KERN_WARNING "section number %ld page number %d "
233 "not reserved, was it already online?\n",
234 pfn_to_section_nr(pfn), j);
235
236 return false;
237 }
238 }
239
240 return true;
241}
242
243/*
Dave Hansen3947be12005-10-29 18:16:54 -0700244 * MEMORY_HOTPLUG depends on SPARSEMEM in mm/Kconfig, so it is
245 * OK to have direct references to sparsemem variables in here.
246 */
247static int
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800248memory_block_action(unsigned long phys_index, unsigned long action, int online_type)
Dave Hansen3947be12005-10-29 18:16:54 -0700249{
Wen Congyanga16cee12012-10-08 16:33:58 -0700250 unsigned long start_pfn;
Anton Blanchard5409d2c2011-05-11 17:25:14 +1000251 unsigned long nr_pages = PAGES_PER_SECTION * sections_per_block;
Greg Kroah-Hartmande0ed362011-10-18 14:00:57 -0700252 struct page *first_page;
Dave Hansen3947be12005-10-29 18:16:54 -0700253 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700254
Greg Kroah-Hartmande0ed362011-10-18 14:00:57 -0700255 first_page = pfn_to_page(phys_index << PFN_SECTION_SHIFT);
Wen Congyanga16cee12012-10-08 16:33:58 -0700256 start_pfn = page_to_pfn(first_page);
Greg Kroah-Hartmande0ed362011-10-18 14:00:57 -0700257
Dave Hansen3947be12005-10-29 18:16:54 -0700258 switch (action) {
259 case MEM_ONLINE:
Tang Chen6056d612013-04-29 15:08:40 -0700260 if (!pages_correctly_reserved(start_pfn))
Mel Gorman2bbcb8782011-10-17 16:38:20 +0200261 return -EBUSY;
262
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800263 ret = online_pages(start_pfn, nr_pages, online_type);
Dave Hansen3947be12005-10-29 18:16:54 -0700264 break;
265 case MEM_OFFLINE:
Wen Congyanga16cee12012-10-08 16:33:58 -0700266 ret = offline_pages(start_pfn, nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700267 break;
268 default:
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600269 WARN(1, KERN_WARNING "%s(%ld, %ld) unknown action: "
270 "%ld\n", __func__, phys_index, action, action);
Dave Hansen3947be12005-10-29 18:16:54 -0700271 ret = -EINVAL;
272 }
Dave Hansen3947be12005-10-29 18:16:54 -0700273
274 return ret;
275}
276
Wen Congyange90bdb72012-10-08 16:34:01 -0700277static int __memory_block_change_state(struct memory_block *mem,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800278 unsigned long to_state, unsigned long from_state_req,
279 int online_type)
Dave Hansen3947be12005-10-29 18:16:54 -0700280{
Greg Kroah-Hartmande0ed362011-10-18 14:00:57 -0700281 int ret = 0;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600282
Dave Hansen3947be12005-10-29 18:16:54 -0700283 if (mem->state != from_state_req) {
284 ret = -EINVAL;
285 goto out;
286 }
287
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600288 if (to_state == MEM_OFFLINE)
289 mem->state = MEM_GOING_OFFLINE;
290
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800291 ret = memory_block_action(mem->start_section_nr, to_state, online_type);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600292
Michael Holzheuf5138e42012-01-12 17:20:23 -0800293 if (ret) {
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600294 mem->state = from_state_req;
Michael Holzheuf5138e42012-01-12 17:20:23 -0800295 goto out;
296 }
Dave Hansen3947be12005-10-29 18:16:54 -0700297
Michael Holzheuf5138e42012-01-12 17:20:23 -0800298 mem->state = to_state;
299 switch (mem->state) {
300 case MEM_OFFLINE:
301 kobject_uevent(&mem->dev.kobj, KOBJ_OFFLINE);
302 break;
303 case MEM_ONLINE:
304 kobject_uevent(&mem->dev.kobj, KOBJ_ONLINE);
305 break;
306 default:
307 break;
308 }
Dave Hansen3947be12005-10-29 18:16:54 -0700309out:
Dave Hansen3947be12005-10-29 18:16:54 -0700310 return ret;
311}
312
Wen Congyange90bdb72012-10-08 16:34:01 -0700313static int memory_block_change_state(struct memory_block *mem,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800314 unsigned long to_state, unsigned long from_state_req,
315 int online_type)
Wen Congyange90bdb72012-10-08 16:34:01 -0700316{
317 int ret;
318
319 mutex_lock(&mem->state_mutex);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800320 ret = __memory_block_change_state(mem, to_state, from_state_req,
321 online_type);
Wen Congyange90bdb72012-10-08 16:34:01 -0700322 mutex_unlock(&mem->state_mutex);
323
324 return ret;
325}
Dave Hansen3947be12005-10-29 18:16:54 -0700326static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800327store_mem_state(struct device *dev,
328 struct device_attribute *attr, const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700329{
330 struct memory_block *mem;
Dave Hansen3947be12005-10-29 18:16:54 -0700331 int ret = -EINVAL;
332
Kay Sievers10fbcf42011-12-21 14:48:43 -0800333 mem = container_of(dev, struct memory_block, dev);
Dave Hansen3947be12005-10-29 18:16:54 -0700334
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800335 if (!strncmp(buf, "online_kernel", min_t(int, count, 13)))
336 ret = memory_block_change_state(mem, MEM_ONLINE,
337 MEM_OFFLINE, ONLINE_KERNEL);
338 else if (!strncmp(buf, "online_movable", min_t(int, count, 14)))
339 ret = memory_block_change_state(mem, MEM_ONLINE,
340 MEM_OFFLINE, ONLINE_MOVABLE);
341 else if (!strncmp(buf, "online", min_t(int, count, 6)))
342 ret = memory_block_change_state(mem, MEM_ONLINE,
343 MEM_OFFLINE, ONLINE_KEEP);
344 else if(!strncmp(buf, "offline", min_t(int, count, 7)))
345 ret = memory_block_change_state(mem, MEM_OFFLINE,
346 MEM_ONLINE, -1);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600347
Dave Hansen3947be12005-10-29 18:16:54 -0700348 if (ret)
349 return ret;
350 return count;
351}
352
353/*
354 * phys_device is a bad name for this. What I really want
355 * is a way to differentiate between memory ranges that
356 * are part of physical devices that constitute
357 * a complete removable unit or fru.
358 * i.e. do these ranges belong to the same physical device,
359 * s.t. if I offline all of these sections I can then
360 * remove the physical device?
361 */
Kay Sievers10fbcf42011-12-21 14:48:43 -0800362static ssize_t show_phys_device(struct device *dev,
363 struct device_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700364{
365 struct memory_block *mem =
Kay Sievers10fbcf42011-12-21 14:48:43 -0800366 container_of(dev, struct memory_block, dev);
Dave Hansen3947be12005-10-29 18:16:54 -0700367 return sprintf(buf, "%d\n", mem->phys_device);
368}
369
Kay Sievers10fbcf42011-12-21 14:48:43 -0800370static DEVICE_ATTR(phys_index, 0444, show_mem_start_phys_index, NULL);
371static DEVICE_ATTR(end_phys_index, 0444, show_mem_end_phys_index, NULL);
372static DEVICE_ATTR(state, 0644, show_mem_state, store_mem_state);
373static DEVICE_ATTR(phys_device, 0444, show_phys_device, NULL);
374static DEVICE_ATTR(removable, 0444, show_mem_removable, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700375
376#define mem_create_simple_file(mem, attr_name) \
Kay Sievers10fbcf42011-12-21 14:48:43 -0800377 device_create_file(&mem->dev, &dev_attr_##attr_name)
Dave Hansen3947be12005-10-29 18:16:54 -0700378#define mem_remove_simple_file(mem, attr_name) \
Kay Sievers10fbcf42011-12-21 14:48:43 -0800379 device_remove_file(&mem->dev, &dev_attr_##attr_name)
Dave Hansen3947be12005-10-29 18:16:54 -0700380
381/*
382 * Block size attribute stuff
383 */
384static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800385print_block_size(struct device *dev, struct device_attribute *attr,
Andi Kleen8564a6c2010-01-05 12:48:06 +0100386 char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700387{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600388 return sprintf(buf, "%lx\n", get_memory_block_size());
Dave Hansen3947be12005-10-29 18:16:54 -0700389}
390
Kay Sievers10fbcf42011-12-21 14:48:43 -0800391static DEVICE_ATTR(block_size_bytes, 0444, print_block_size, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700392
393static int block_size_init(void)
394{
Kay Sievers10fbcf42011-12-21 14:48:43 -0800395 return device_create_file(memory_subsys.dev_root,
396 &dev_attr_block_size_bytes);
Dave Hansen3947be12005-10-29 18:16:54 -0700397}
398
399/*
400 * Some architectures will have custom drivers to do this, and
401 * will not need to do it from userspace. The fake hot-add code
402 * as well as ppc64 will do all of their discovery in userspace
403 * and will require this interface.
404 */
405#ifdef CONFIG_ARCH_MEMORY_PROBE
406static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800407memory_probe_store(struct device *dev, struct device_attribute *attr,
Andi Kleen28812fe2010-01-05 12:48:07 +0100408 const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700409{
410 u64 phys_addr;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700411 int nid;
Nathan Fontenot6add7cd2011-01-31 10:55:23 -0600412 int i, ret;
Anton Blanchard61b94fe2011-09-15 06:26:15 +1000413 unsigned long pages_per_block = PAGES_PER_SECTION * sections_per_block;
Dave Hansen3947be12005-10-29 18:16:54 -0700414
415 phys_addr = simple_strtoull(buf, NULL, 0);
416
Anton Blanchard61b94fe2011-09-15 06:26:15 +1000417 if (phys_addr & ((pages_per_block << PAGE_SHIFT) - 1))
418 return -EINVAL;
419
Nathan Fontenot6add7cd2011-01-31 10:55:23 -0600420 for (i = 0; i < sections_per_block; i++) {
421 nid = memory_add_physaddr_to_nid(phys_addr);
422 ret = add_memory(nid, phys_addr,
423 PAGES_PER_SECTION << PAGE_SHIFT);
424 if (ret)
Nikanth Karthikesan9f0af692011-03-24 11:46:18 +0530425 goto out;
Nathan Fontenot6add7cd2011-01-31 10:55:23 -0600426
427 phys_addr += MIN_MEMORY_BLOCK_SIZE;
428 }
Dave Hansen3947be12005-10-29 18:16:54 -0700429
Nikanth Karthikesan9f0af692011-03-24 11:46:18 +0530430 ret = count;
431out:
432 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700433}
Kay Sievers10fbcf42011-12-21 14:48:43 -0800434static DEVICE_ATTR(probe, S_IWUSR, NULL, memory_probe_store);
Dave Hansen3947be12005-10-29 18:16:54 -0700435
436static int memory_probe_init(void)
437{
Kay Sievers10fbcf42011-12-21 14:48:43 -0800438 return device_create_file(memory_subsys.dev_root, &dev_attr_probe);
Dave Hansen3947be12005-10-29 18:16:54 -0700439}
440#else
Andrew Morton28ec24e2006-12-06 20:37:29 -0800441static inline int memory_probe_init(void)
442{
443 return 0;
444}
Dave Hansen3947be12005-10-29 18:16:54 -0700445#endif
446
Andi Kleenfacb6012009-12-16 12:20:00 +0100447#ifdef CONFIG_MEMORY_FAILURE
448/*
449 * Support for offlining pages of memory
450 */
451
452/* Soft offline a page */
453static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800454store_soft_offline_page(struct device *dev,
455 struct device_attribute *attr,
Andi Kleen28812fe2010-01-05 12:48:07 +0100456 const char *buf, size_t count)
Andi Kleenfacb6012009-12-16 12:20:00 +0100457{
458 int ret;
459 u64 pfn;
460 if (!capable(CAP_SYS_ADMIN))
461 return -EPERM;
462 if (strict_strtoull(buf, 0, &pfn) < 0)
463 return -EINVAL;
464 pfn >>= PAGE_SHIFT;
465 if (!pfn_valid(pfn))
466 return -ENXIO;
467 ret = soft_offline_page(pfn_to_page(pfn), 0);
468 return ret == 0 ? count : ret;
469}
470
471/* Forcibly offline a page, including killing processes. */
472static ssize_t
Kay Sievers10fbcf42011-12-21 14:48:43 -0800473store_hard_offline_page(struct device *dev,
474 struct device_attribute *attr,
Andi Kleen28812fe2010-01-05 12:48:07 +0100475 const char *buf, size_t count)
Andi Kleenfacb6012009-12-16 12:20:00 +0100476{
477 int ret;
478 u64 pfn;
479 if (!capable(CAP_SYS_ADMIN))
480 return -EPERM;
481 if (strict_strtoull(buf, 0, &pfn) < 0)
482 return -EINVAL;
483 pfn >>= PAGE_SHIFT;
Tony Luckcd42f4a2011-12-15 10:48:12 -0800484 ret = memory_failure(pfn, 0, 0);
Andi Kleenfacb6012009-12-16 12:20:00 +0100485 return ret ? ret : count;
486}
487
Felipe Balbi74fef7a2013-02-18 21:09:03 +0200488static DEVICE_ATTR(soft_offline_page, S_IWUSR, NULL, store_soft_offline_page);
489static DEVICE_ATTR(hard_offline_page, S_IWUSR, NULL, store_hard_offline_page);
Andi Kleenfacb6012009-12-16 12:20:00 +0100490
491static __init int memory_fail_init(void)
492{
493 int err;
494
Kay Sievers10fbcf42011-12-21 14:48:43 -0800495 err = device_create_file(memory_subsys.dev_root,
496 &dev_attr_soft_offline_page);
Andi Kleenfacb6012009-12-16 12:20:00 +0100497 if (!err)
Kay Sievers10fbcf42011-12-21 14:48:43 -0800498 err = device_create_file(memory_subsys.dev_root,
499 &dev_attr_hard_offline_page);
Andi Kleenfacb6012009-12-16 12:20:00 +0100500 return err;
501}
502#else
503static inline int memory_fail_init(void)
504{
505 return 0;
506}
507#endif
508
Dave Hansen3947be12005-10-29 18:16:54 -0700509/*
510 * Note that phys_device is optional. It is here to allow for
511 * differentiation between which *physical* devices each
512 * section belongs to...
513 */
Heiko Carstensbc32df02010-03-15 00:35:03 -0400514int __weak arch_get_memory_phys_device(unsigned long start_pfn)
515{
516 return 0;
517}
Dave Hansen3947be12005-10-29 18:16:54 -0700518
Kay Sievers10fbcf42011-12-21 14:48:43 -0800519/*
520 * A reference for the returned object is held and the reference for the
521 * hinted object is released.
522 */
Robin Holt98383032010-09-29 14:00:55 -0500523struct memory_block *find_memory_block_hinted(struct mem_section *section,
524 struct memory_block *hint)
525{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600526 int block_id = base_memory_block_id(__section_nr(section));
Kay Sievers10fbcf42011-12-21 14:48:43 -0800527 struct device *hintdev = hint ? &hint->dev : NULL;
528 struct device *dev;
Robin Holt98383032010-09-29 14:00:55 -0500529
Kay Sievers10fbcf42011-12-21 14:48:43 -0800530 dev = subsys_find_device_by_id(&memory_subsys, block_id, hintdev);
531 if (hint)
532 put_device(&hint->dev);
533 if (!dev)
Robin Holt98383032010-09-29 14:00:55 -0500534 return NULL;
Kay Sievers10fbcf42011-12-21 14:48:43 -0800535 return container_of(dev, struct memory_block, dev);
Robin Holt98383032010-09-29 14:00:55 -0500536}
537
Dave Hansen3947be12005-10-29 18:16:54 -0700538/*
539 * For now, we have a linear search to go find the appropriate
540 * memory_block corresponding to a particular phys_index. If
541 * this gets to be a real problem, we can always use a radix
542 * tree or something here.
543 *
Kay Sievers10fbcf42011-12-21 14:48:43 -0800544 * This could be made generic for all device subsystems.
Dave Hansen3947be12005-10-29 18:16:54 -0700545 */
Gary Hadec04fc582009-01-06 14:39:14 -0800546struct memory_block *find_memory_block(struct mem_section *section)
Dave Hansen3947be12005-10-29 18:16:54 -0700547{
Robin Holt98383032010-09-29 14:00:55 -0500548 return find_memory_block_hinted(section, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700549}
550
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600551static int init_memory_block(struct memory_block **memory,
552 struct mem_section *section, unsigned long state)
Nathan Fontenote4619c82010-10-19 12:44:20 -0500553{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600554 struct memory_block *mem;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500555 unsigned long start_pfn;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600556 int scn_nr;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500557 int ret = 0;
558
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600559 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500560 if (!mem)
561 return -ENOMEM;
562
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600563 scn_nr = __section_nr(section);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600564 mem->start_section_nr =
565 base_memory_block_id(scn_nr) * sections_per_block;
566 mem->end_section_nr = mem->start_section_nr + sections_per_block - 1;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500567 mem->state = state;
Nathan Fontenot07681212010-10-19 12:46:19 -0500568 mem->section_count++;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500569 mutex_init(&mem->state_mutex);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600570 start_pfn = section_nr_to_pfn(mem->start_section_nr);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500571 mem->phys_device = arch_get_memory_phys_device(start_pfn);
572
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600573 ret = register_memory(mem);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500574 if (!ret)
575 ret = mem_create_simple_file(mem, phys_index);
576 if (!ret)
Nathan Fontenotd3360162011-01-20 10:44:29 -0600577 ret = mem_create_simple_file(mem, end_phys_index);
578 if (!ret)
Nathan Fontenote4619c82010-10-19 12:44:20 -0500579 ret = mem_create_simple_file(mem, state);
580 if (!ret)
581 ret = mem_create_simple_file(mem, phys_device);
582 if (!ret)
583 ret = mem_create_simple_file(mem, removable);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600584
585 *memory = mem;
586 return ret;
587}
588
589static int add_memory_section(int nid, struct mem_section *section,
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800590 struct memory_block **mem_p,
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600591 unsigned long state, enum mem_add_context context)
592{
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800593 struct memory_block *mem = NULL;
594 int scn_nr = __section_nr(section);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600595 int ret = 0;
596
597 mutex_lock(&mem_sysfs_mutex);
598
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800599 if (context == BOOT) {
600 /* same memory block ? */
601 if (mem_p && *mem_p)
602 if (scn_nr >= (*mem_p)->start_section_nr &&
603 scn_nr <= (*mem_p)->end_section_nr) {
604 mem = *mem_p;
605 kobject_get(&mem->dev.kobj);
606 }
607 } else
608 mem = find_memory_block(section);
609
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600610 if (mem) {
611 mem->section_count++;
Kay Sievers10fbcf42011-12-21 14:48:43 -0800612 kobject_put(&mem->dev.kobj);
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800613 } else {
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600614 ret = init_memory_block(&mem, section, state);
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800615 /* store memory_block pointer for next loop */
616 if (!ret && context == BOOT)
617 if (mem_p)
618 *mem_p = mem;
619 }
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600620
Nathan Fontenote4619c82010-10-19 12:44:20 -0500621 if (!ret) {
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600622 if (context == HOTPLUG &&
623 mem->section_count == sections_per_block)
Nathan Fontenote4619c82010-10-19 12:44:20 -0500624 ret = register_mem_sect_under_node(mem, nid);
625 }
626
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500627 mutex_unlock(&mem_sysfs_mutex);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500628 return ret;
629}
630
David Rientjes4edd7ce2013-04-29 15:08:22 -0700631/*
632 * need an interface for the VM to add new memory regions,
633 * but without onlining it.
634 */
635int register_new_memory(int nid, struct mem_section *section)
636{
637 return add_memory_section(nid, section, NULL, MEM_OFFLINE, HOTPLUG);
638}
639
640#ifdef CONFIG_MEMORY_HOTREMOVE
641static void
642unregister_memory(struct memory_block *memory)
643{
644 BUG_ON(memory->dev.bus != &memory_subsys);
645
646 /* drop the ref. we got in remove_memory_block() */
647 kobject_put(&memory->dev.kobj);
648 device_unregister(&memory->dev);
649}
650
651static int remove_memory_block(unsigned long node_id,
652 struct mem_section *section, int phys_device)
Dave Hansen3947be12005-10-29 18:16:54 -0700653{
654 struct memory_block *mem;
655
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500656 mutex_lock(&mem_sysfs_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700657 mem = find_memory_block(section);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600658 unregister_mem_sect_under_nodes(mem, __section_nr(section));
Nathan Fontenot07681212010-10-19 12:46:19 -0500659
660 mem->section_count--;
661 if (mem->section_count == 0) {
Nathan Fontenot07681212010-10-19 12:46:19 -0500662 mem_remove_simple_file(mem, phys_index);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600663 mem_remove_simple_file(mem, end_phys_index);
Nathan Fontenot07681212010-10-19 12:46:19 -0500664 mem_remove_simple_file(mem, state);
665 mem_remove_simple_file(mem, phys_device);
666 mem_remove_simple_file(mem, removable);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600667 unregister_memory(mem);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600668 } else
Kay Sievers10fbcf42011-12-21 14:48:43 -0800669 kobject_put(&mem->dev.kobj);
Dave Hansen3947be12005-10-29 18:16:54 -0700670
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500671 mutex_unlock(&mem_sysfs_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700672 return 0;
673}
674
Dave Hansen3947be12005-10-29 18:16:54 -0700675int unregister_memory_section(struct mem_section *section)
676{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700677 if (!present_section(section))
Dave Hansen3947be12005-10-29 18:16:54 -0700678 return -EINVAL;
679
680 return remove_memory_block(0, section, 0);
681}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700682#endif /* CONFIG_MEMORY_HOTREMOVE */
Dave Hansen3947be12005-10-29 18:16:54 -0700683
684/*
Wen Congyange90bdb72012-10-08 16:34:01 -0700685 * offline one memory block. If the memory block has been offlined, do nothing.
686 */
687int offline_memory_block(struct memory_block *mem)
688{
689 int ret = 0;
690
691 mutex_lock(&mem->state_mutex);
692 if (mem->state != MEM_OFFLINE)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800693 ret = __memory_block_change_state(mem, MEM_OFFLINE, MEM_ONLINE, -1);
Wen Congyange90bdb72012-10-08 16:34:01 -0700694 mutex_unlock(&mem->state_mutex);
695
696 return ret;
697}
698
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -0800699/* return true if the memory block is offlined, otherwise, return false */
700bool is_memblock_offlined(struct memory_block *mem)
701{
702 return mem->state == MEM_OFFLINE;
703}
704
Wen Congyange90bdb72012-10-08 16:34:01 -0700705/*
Dave Hansen3947be12005-10-29 18:16:54 -0700706 * Initialize the sysfs support for memory devices...
707 */
708int __init memory_dev_init(void)
709{
710 unsigned int i;
711 int ret;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800712 int err;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600713 unsigned long block_sz;
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800714 struct memory_block *mem = NULL;
Dave Hansen3947be12005-10-29 18:16:54 -0700715
Kay Sievers10fbcf42011-12-21 14:48:43 -0800716 ret = subsys_system_register(&memory_subsys, NULL);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800717 if (ret)
718 goto out;
Dave Hansen3947be12005-10-29 18:16:54 -0700719
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600720 block_sz = get_memory_block_size();
721 sections_per_block = block_sz / MIN_MEMORY_BLOCK_SIZE;
722
Dave Hansen3947be12005-10-29 18:16:54 -0700723 /*
724 * Create entries for memory sections that were found
725 * during boot and have been initialized
726 */
727 for (i = 0; i < NR_MEM_SECTIONS; i++) {
Andy Whitcroft540557b2007-10-16 01:24:11 -0700728 if (!present_section_nr(i))
Dave Hansen3947be12005-10-29 18:16:54 -0700729 continue;
Yinghai Lu321bf4e2012-01-30 13:57:12 -0800730 /* don't need to reuse memory_block if only one per block */
731 err = add_memory_section(0, __nr_to_section(i),
732 (sections_per_block == 1) ? NULL : &mem,
733 MEM_ONLINE,
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600734 BOOT);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800735 if (!ret)
736 ret = err;
Dave Hansen3947be12005-10-29 18:16:54 -0700737 }
738
Andrew Morton28ec24e2006-12-06 20:37:29 -0800739 err = memory_probe_init();
740 if (!ret)
741 ret = err;
Andi Kleenfacb6012009-12-16 12:20:00 +0100742 err = memory_fail_init();
743 if (!ret)
744 ret = err;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800745 err = block_size_init();
746 if (!ret)
747 ret = err;
748out:
749 if (ret)
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800750 printk(KERN_ERR "%s() failed: %d\n", __func__, ret);
Dave Hansen3947be12005-10-29 18:16:54 -0700751 return ret;
752}