blob: 0b704004258783d7cbae9170ad5c597a331f4667 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
2 * drivers/base/memory.c - basic Memory class support
3 *
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
13#include <linux/sysdev.h>
14#include <linux/module.h>
15#include <linux/init.h>
Dave Hansen3947be12005-10-29 18:16:54 -070016#include <linux/topology.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080017#include <linux/capability.h>
Dave Hansen3947be12005-10-29 18:16:54 -070018#include <linux/device.h>
19#include <linux/memory.h>
20#include <linux/kobject.h>
21#include <linux/memory_hotplug.h>
22#include <linux/mm.h>
Daniel Walkerda19cbc2008-02-04 23:35:47 -080023#include <linux/mutex.h>
Shaohua Li9f1b16a2008-10-18 20:27:12 -070024#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Shaohua Li9f1b16a2008-10-18 20:27:12 -070026
Dave Hansen3947be12005-10-29 18:16:54 -070027#include <asm/atomic.h>
28#include <asm/uaccess.h>
29
Nathan Fontenot2938ffb2010-10-19 12:45:24 -050030static DEFINE_MUTEX(mem_sysfs_mutex);
31
Dave Hansen3947be12005-10-29 18:16:54 -070032#define MEMORY_CLASS_NAME "memory"
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060033#define MIN_MEMORY_BLOCK_SIZE (1 << SECTION_SIZE_BITS)
34
35static int sections_per_block;
36
37static inline int base_memory_block_id(int section_nr)
38{
39 return section_nr / sections_per_block;
40}
Dave Hansen3947be12005-10-29 18:16:54 -070041
42static struct sysdev_class memory_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010043 .name = MEMORY_CLASS_NAME,
Dave Hansen3947be12005-10-29 18:16:54 -070044};
Dave Hansen3947be12005-10-29 18:16:54 -070045
Kay Sievers312c0042005-11-16 09:00:00 +010046static const char *memory_uevent_name(struct kset *kset, struct kobject *kobj)
Dave Hansen3947be12005-10-29 18:16:54 -070047{
48 return MEMORY_CLASS_NAME;
49}
50
Al Viro9ec0fd4e2007-10-14 06:53:45 +010051static int memory_uevent(struct kset *kset, struct kobject *obj, struct kobj_uevent_env *env)
Dave Hansen3947be12005-10-29 18:16:54 -070052{
53 int retval = 0;
54
55 return retval;
56}
57
Emese Revfy9cd43612009-12-31 14:52:51 +010058static const struct kset_uevent_ops memory_uevent_ops = {
Kay Sievers312c0042005-11-16 09:00:00 +010059 .name = memory_uevent_name,
60 .uevent = memory_uevent,
Dave Hansen3947be12005-10-29 18:16:54 -070061};
62
Alan Sterne041c682006-03-27 01:16:30 -080063static BLOCKING_NOTIFIER_HEAD(memory_chain);
Dave Hansen3947be12005-10-29 18:16:54 -070064
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080065int register_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070066{
Alan Sterne041c682006-03-27 01:16:30 -080067 return blocking_notifier_chain_register(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070068}
Hannes Hering3c82c302008-05-07 14:43:01 +020069EXPORT_SYMBOL(register_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070070
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080071void unregister_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070072{
Alan Sterne041c682006-03-27 01:16:30 -080073 blocking_notifier_chain_unregister(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070074}
Hannes Hering3c82c302008-05-07 14:43:01 +020075EXPORT_SYMBOL(unregister_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070076
Robert Jennings925cc712009-12-17 14:44:38 +000077static ATOMIC_NOTIFIER_HEAD(memory_isolate_chain);
78
79int register_memory_isolate_notifier(struct notifier_block *nb)
80{
81 return atomic_notifier_chain_register(&memory_isolate_chain, nb);
82}
83EXPORT_SYMBOL(register_memory_isolate_notifier);
84
85void unregister_memory_isolate_notifier(struct notifier_block *nb)
86{
87 atomic_notifier_chain_unregister(&memory_isolate_chain, nb);
88}
89EXPORT_SYMBOL(unregister_memory_isolate_notifier);
90
Dave Hansen3947be12005-10-29 18:16:54 -070091/*
92 * register_memory - Setup a sysfs device for a memory block
93 */
Badari Pulavarty00a41db2008-02-11 09:23:18 -080094static
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -060095int register_memory(struct memory_block *memory)
Dave Hansen3947be12005-10-29 18:16:54 -070096{
97 int error;
98
99 memory->sysdev.cls = &memory_sysdev_class;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600100 memory->sysdev.id = memory->phys_index / sections_per_block;
Dave Hansen3947be12005-10-29 18:16:54 -0700101
102 error = sysdev_register(&memory->sysdev);
Dave Hansen3947be12005-10-29 18:16:54 -0700103 return error;
104}
105
106static void
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600107unregister_memory(struct memory_block *memory)
Dave Hansen3947be12005-10-29 18:16:54 -0700108{
109 BUG_ON(memory->sysdev.cls != &memory_sysdev_class);
Dave Hansen3947be12005-10-29 18:16:54 -0700110
Badari Pulavarty00a41db2008-02-11 09:23:18 -0800111 /* drop the ref. we got in remove_memory_block() */
112 kobject_put(&memory->sysdev.kobj);
Dave Hansen3947be12005-10-29 18:16:54 -0700113 sysdev_unregister(&memory->sysdev);
Dave Hansen3947be12005-10-29 18:16:54 -0700114}
115
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600116unsigned long __weak memory_block_size_bytes(void)
117{
118 return MIN_MEMORY_BLOCK_SIZE;
119}
120
121static unsigned long get_memory_block_size(void)
122{
123 unsigned long block_sz;
124
125 block_sz = memory_block_size_bytes();
126
127 /* Validate blk_sz is a power of 2 and not less than section size */
128 if ((block_sz & (block_sz - 1)) || (block_sz < MIN_MEMORY_BLOCK_SIZE)) {
129 WARN_ON(1);
130 block_sz = MIN_MEMORY_BLOCK_SIZE;
131 }
132
133 return block_sz;
134}
135
Dave Hansen3947be12005-10-29 18:16:54 -0700136/*
137 * use this as the physical section index that this memsection
138 * uses.
139 */
140
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200141static ssize_t show_mem_phys_index(struct sys_device *dev,
142 struct sysdev_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700143{
144 struct memory_block *mem =
145 container_of(dev, struct memory_block, sysdev);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600146 return sprintf(buf, "%08lx\n", mem->phys_index / sections_per_block);
Dave Hansen3947be12005-10-29 18:16:54 -0700147}
148
149/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700150 * Show whether the section of memory is likely to be hot-removable
151 */
Stephen Rothwell1f07be12008-07-28 11:05:04 +1000152static ssize_t show_mem_removable(struct sys_device *dev,
153 struct sysdev_attribute *attr, char *buf)
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700154{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600155 unsigned long i, pfn;
156 int ret = 1;
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700157 struct memory_block *mem =
158 container_of(dev, struct memory_block, sysdev);
159
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600160 for (i = 0; i < sections_per_block; i++) {
161 pfn = section_nr_to_pfn(mem->phys_index + i);
162 ret &= is_mem_section_removable(pfn, PAGES_PER_SECTION);
163 }
164
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700165 return sprintf(buf, "%d\n", ret);
166}
167
168/*
Dave Hansen3947be12005-10-29 18:16:54 -0700169 * online, offline, going offline, etc.
170 */
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200171static ssize_t show_mem_state(struct sys_device *dev,
172 struct sysdev_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700173{
174 struct memory_block *mem =
175 container_of(dev, struct memory_block, sysdev);
176 ssize_t len = 0;
177
178 /*
179 * We can probably put these states in a nice little array
180 * so that they're not open-coded
181 */
182 switch (mem->state) {
183 case MEM_ONLINE:
184 len = sprintf(buf, "online\n");
185 break;
186 case MEM_OFFLINE:
187 len = sprintf(buf, "offline\n");
188 break;
189 case MEM_GOING_OFFLINE:
190 len = sprintf(buf, "going-offline\n");
191 break;
192 default:
193 len = sprintf(buf, "ERROR-UNKNOWN-%ld\n",
194 mem->state);
195 WARN_ON(1);
196 break;
197 }
198
199 return len;
200}
201
Yasunori Goto7b78d332007-10-21 16:41:36 -0700202int memory_notify(unsigned long val, void *v)
Dave Hansen3947be12005-10-29 18:16:54 -0700203{
Alan Sterne041c682006-03-27 01:16:30 -0800204 return blocking_notifier_call_chain(&memory_chain, val, v);
Dave Hansen3947be12005-10-29 18:16:54 -0700205}
206
Robert Jennings925cc712009-12-17 14:44:38 +0000207int memory_isolate_notify(unsigned long val, void *v)
208{
209 return atomic_notifier_call_chain(&memory_isolate_chain, val, v);
210}
211
Dave Hansen3947be12005-10-29 18:16:54 -0700212/*
213 * MEMORY_HOTPLUG depends on SPARSEMEM in mm/Kconfig, so it is
214 * OK to have direct references to sparsemem variables in here.
215 */
216static int
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600217memory_section_action(unsigned long phys_index, unsigned long action)
Dave Hansen3947be12005-10-29 18:16:54 -0700218{
219 int i;
Dave Hansen3947be12005-10-29 18:16:54 -0700220 unsigned long start_pfn, start_paddr;
221 struct page *first_page;
222 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700223
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600224 first_page = pfn_to_page(phys_index << PFN_SECTION_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700225
226 /*
227 * The probe routines leave the pages reserved, just
228 * as the bootmem code does. Make sure they're still
229 * that way.
230 */
231 if (action == MEM_ONLINE) {
232 for (i = 0; i < PAGES_PER_SECTION; i++) {
233 if (PageReserved(first_page+i))
234 continue;
235
236 printk(KERN_WARNING "section number %ld page number %d "
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600237 "not reserved, was it already online?\n",
238 phys_index, i);
Dave Hansen3947be12005-10-29 18:16:54 -0700239 return -EBUSY;
240 }
241 }
242
243 switch (action) {
244 case MEM_ONLINE:
245 start_pfn = page_to_pfn(first_page);
246 ret = online_pages(start_pfn, PAGES_PER_SECTION);
247 break;
248 case MEM_OFFLINE:
Dave Hansen3947be12005-10-29 18:16:54 -0700249 start_paddr = page_to_pfn(first_page) << PAGE_SHIFT;
250 ret = remove_memory(start_paddr,
251 PAGES_PER_SECTION << PAGE_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700252 break;
253 default:
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600254 WARN(1, KERN_WARNING "%s(%ld, %ld) unknown action: "
255 "%ld\n", __func__, phys_index, action, action);
Dave Hansen3947be12005-10-29 18:16:54 -0700256 ret = -EINVAL;
257 }
Dave Hansen3947be12005-10-29 18:16:54 -0700258
259 return ret;
260}
261
262static int memory_block_change_state(struct memory_block *mem,
263 unsigned long to_state, unsigned long from_state_req)
264{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600265 int i, ret = 0;
266
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800267 mutex_lock(&mem->state_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700268
269 if (mem->state != from_state_req) {
270 ret = -EINVAL;
271 goto out;
272 }
273
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600274 if (to_state == MEM_OFFLINE)
275 mem->state = MEM_GOING_OFFLINE;
276
277 for (i = 0; i < sections_per_block; i++) {
278 ret = memory_section_action(mem->phys_index + i, to_state);
279 if (ret)
280 break;
281 }
282
283 if (ret) {
284 for (i = 0; i < sections_per_block; i++)
285 memory_section_action(mem->phys_index + i,
286 from_state_req);
287
288 mem->state = from_state_req;
289 } else
Dave Hansen3947be12005-10-29 18:16:54 -0700290 mem->state = to_state;
291
292out:
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800293 mutex_unlock(&mem->state_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700294 return ret;
295}
296
297static ssize_t
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200298store_mem_state(struct sys_device *dev,
299 struct sysdev_attribute *attr, const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700300{
301 struct memory_block *mem;
Dave Hansen3947be12005-10-29 18:16:54 -0700302 int ret = -EINVAL;
303
304 mem = container_of(dev, struct memory_block, sysdev);
Dave Hansen3947be12005-10-29 18:16:54 -0700305
306 if (!strncmp(buf, "online", min((int)count, 6)))
307 ret = memory_block_change_state(mem, MEM_ONLINE, MEM_OFFLINE);
308 else if(!strncmp(buf, "offline", min((int)count, 7)))
309 ret = memory_block_change_state(mem, MEM_OFFLINE, MEM_ONLINE);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600310
Dave Hansen3947be12005-10-29 18:16:54 -0700311 if (ret)
312 return ret;
313 return count;
314}
315
316/*
317 * phys_device is a bad name for this. What I really want
318 * is a way to differentiate between memory ranges that
319 * are part of physical devices that constitute
320 * a complete removable unit or fru.
321 * i.e. do these ranges belong to the same physical device,
322 * s.t. if I offline all of these sections I can then
323 * remove the physical device?
324 */
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200325static ssize_t show_phys_device(struct sys_device *dev,
326 struct sysdev_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700327{
328 struct memory_block *mem =
329 container_of(dev, struct memory_block, sysdev);
330 return sprintf(buf, "%d\n", mem->phys_device);
331}
332
333static SYSDEV_ATTR(phys_index, 0444, show_mem_phys_index, NULL);
334static SYSDEV_ATTR(state, 0644, show_mem_state, store_mem_state);
335static SYSDEV_ATTR(phys_device, 0444, show_phys_device, NULL);
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700336static SYSDEV_ATTR(removable, 0444, show_mem_removable, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700337
338#define mem_create_simple_file(mem, attr_name) \
339 sysdev_create_file(&mem->sysdev, &attr_##attr_name)
340#define mem_remove_simple_file(mem, attr_name) \
341 sysdev_remove_file(&mem->sysdev, &attr_##attr_name)
342
343/*
344 * Block size attribute stuff
345 */
346static ssize_t
Andi Kleen8564a6c2010-01-05 12:48:06 +0100347print_block_size(struct sysdev_class *class, struct sysdev_class_attribute *attr,
348 char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700349{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600350 return sprintf(buf, "%lx\n", get_memory_block_size());
Dave Hansen3947be12005-10-29 18:16:54 -0700351}
352
Andi Kleen8564a6c2010-01-05 12:48:06 +0100353static SYSDEV_CLASS_ATTR(block_size_bytes, 0444, print_block_size, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700354
355static int block_size_init(void)
356{
Andrew Morton28ec24e2006-12-06 20:37:29 -0800357 return sysfs_create_file(&memory_sysdev_class.kset.kobj,
Andi Kleen8564a6c2010-01-05 12:48:06 +0100358 &attr_block_size_bytes.attr);
Dave Hansen3947be12005-10-29 18:16:54 -0700359}
360
361/*
362 * Some architectures will have custom drivers to do this, and
363 * will not need to do it from userspace. The fake hot-add code
364 * as well as ppc64 will do all of their discovery in userspace
365 * and will require this interface.
366 */
367#ifdef CONFIG_ARCH_MEMORY_PROBE
368static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100369memory_probe_store(struct class *class, struct class_attribute *attr,
370 const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700371{
372 u64 phys_addr;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700373 int nid;
Dave Hansen3947be12005-10-29 18:16:54 -0700374 int ret;
375
376 phys_addr = simple_strtoull(buf, NULL, 0);
377
Yasunori Gotobc02af92006-06-27 02:53:30 -0700378 nid = memory_add_physaddr_to_nid(phys_addr);
379 ret = add_memory(nid, phys_addr, PAGES_PER_SECTION << PAGE_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700380
381 if (ret)
382 count = ret;
383
384 return count;
385}
Greg Kroah-Hartmanbd796672010-01-19 13:08:16 -0800386static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store);
Dave Hansen3947be12005-10-29 18:16:54 -0700387
388static int memory_probe_init(void)
389{
Andrew Morton28ec24e2006-12-06 20:37:29 -0800390 return sysfs_create_file(&memory_sysdev_class.kset.kobj,
Greg Kroah-Hartmanbd796672010-01-19 13:08:16 -0800391 &class_attr_probe.attr);
Dave Hansen3947be12005-10-29 18:16:54 -0700392}
393#else
Andrew Morton28ec24e2006-12-06 20:37:29 -0800394static inline int memory_probe_init(void)
395{
396 return 0;
397}
Dave Hansen3947be12005-10-29 18:16:54 -0700398#endif
399
Andi Kleenfacb6012009-12-16 12:20:00 +0100400#ifdef CONFIG_MEMORY_FAILURE
401/*
402 * Support for offlining pages of memory
403 */
404
405/* Soft offline a page */
406static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100407store_soft_offline_page(struct class *class,
408 struct class_attribute *attr,
409 const char *buf, size_t count)
Andi Kleenfacb6012009-12-16 12:20:00 +0100410{
411 int ret;
412 u64 pfn;
413 if (!capable(CAP_SYS_ADMIN))
414 return -EPERM;
415 if (strict_strtoull(buf, 0, &pfn) < 0)
416 return -EINVAL;
417 pfn >>= PAGE_SHIFT;
418 if (!pfn_valid(pfn))
419 return -ENXIO;
420 ret = soft_offline_page(pfn_to_page(pfn), 0);
421 return ret == 0 ? count : ret;
422}
423
424/* Forcibly offline a page, including killing processes. */
425static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100426store_hard_offline_page(struct class *class,
427 struct class_attribute *attr,
428 const char *buf, size_t count)
Andi Kleenfacb6012009-12-16 12:20:00 +0100429{
430 int ret;
431 u64 pfn;
432 if (!capable(CAP_SYS_ADMIN))
433 return -EPERM;
434 if (strict_strtoull(buf, 0, &pfn) < 0)
435 return -EINVAL;
436 pfn >>= PAGE_SHIFT;
437 ret = __memory_failure(pfn, 0, 0);
438 return ret ? ret : count;
439}
440
Greg Kroah-Hartmanbd796672010-01-19 13:08:16 -0800441static CLASS_ATTR(soft_offline_page, 0644, NULL, store_soft_offline_page);
442static CLASS_ATTR(hard_offline_page, 0644, NULL, store_hard_offline_page);
Andi Kleenfacb6012009-12-16 12:20:00 +0100443
444static __init int memory_fail_init(void)
445{
446 int err;
447
448 err = sysfs_create_file(&memory_sysdev_class.kset.kobj,
Greg Kroah-Hartmanbd796672010-01-19 13:08:16 -0800449 &class_attr_soft_offline_page.attr);
Andi Kleenfacb6012009-12-16 12:20:00 +0100450 if (!err)
451 err = sysfs_create_file(&memory_sysdev_class.kset.kobj,
Greg Kroah-Hartmanbd796672010-01-19 13:08:16 -0800452 &class_attr_hard_offline_page.attr);
Andi Kleenfacb6012009-12-16 12:20:00 +0100453 return err;
454}
455#else
456static inline int memory_fail_init(void)
457{
458 return 0;
459}
460#endif
461
Dave Hansen3947be12005-10-29 18:16:54 -0700462/*
463 * Note that phys_device is optional. It is here to allow for
464 * differentiation between which *physical* devices each
465 * section belongs to...
466 */
Heiko Carstensbc32df02010-03-15 00:35:03 -0400467int __weak arch_get_memory_phys_device(unsigned long start_pfn)
468{
469 return 0;
470}
Dave Hansen3947be12005-10-29 18:16:54 -0700471
Robin Holt98383032010-09-29 14:00:55 -0500472struct memory_block *find_memory_block_hinted(struct mem_section *section,
473 struct memory_block *hint)
474{
475 struct kobject *kobj;
476 struct sys_device *sysdev;
477 struct memory_block *mem;
478 char name[sizeof(MEMORY_CLASS_NAME) + 9 + 1];
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600479 int block_id = base_memory_block_id(__section_nr(section));
Robin Holt98383032010-09-29 14:00:55 -0500480
481 kobj = hint ? &hint->sysdev.kobj : NULL;
482
483 /*
484 * This only works because we know that section == sysdev->id
485 * slightly redundant with sysdev_register()
486 */
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600487 sprintf(&name[0], "%s%d", MEMORY_CLASS_NAME, block_id);
Robin Holt98383032010-09-29 14:00:55 -0500488
489 kobj = kset_find_obj_hinted(&memory_sysdev_class.kset, name, kobj);
490 if (!kobj)
491 return NULL;
492
493 sysdev = container_of(kobj, struct sys_device, kobj);
494 mem = container_of(sysdev, struct memory_block, sysdev);
495
496 return mem;
497}
498
Dave Hansen3947be12005-10-29 18:16:54 -0700499/*
500 * For now, we have a linear search to go find the appropriate
501 * memory_block corresponding to a particular phys_index. If
502 * this gets to be a real problem, we can always use a radix
503 * tree or something here.
504 *
505 * This could be made generic for all sysdev classes.
506 */
Gary Hadec04fc582009-01-06 14:39:14 -0800507struct memory_block *find_memory_block(struct mem_section *section)
Dave Hansen3947be12005-10-29 18:16:54 -0700508{
Robin Holt98383032010-09-29 14:00:55 -0500509 return find_memory_block_hinted(section, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700510}
511
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600512static int init_memory_block(struct memory_block **memory,
513 struct mem_section *section, unsigned long state)
Nathan Fontenote4619c82010-10-19 12:44:20 -0500514{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600515 struct memory_block *mem;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500516 unsigned long start_pfn;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600517 int scn_nr;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500518 int ret = 0;
519
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600520 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500521 if (!mem)
522 return -ENOMEM;
523
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600524 scn_nr = __section_nr(section);
525 mem->phys_index = base_memory_block_id(scn_nr) * sections_per_block;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500526 mem->state = state;
Nathan Fontenot07681212010-10-19 12:46:19 -0500527 mem->section_count++;
Nathan Fontenote4619c82010-10-19 12:44:20 -0500528 mutex_init(&mem->state_mutex);
529 start_pfn = section_nr_to_pfn(mem->phys_index);
530 mem->phys_device = arch_get_memory_phys_device(start_pfn);
531
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600532 ret = register_memory(mem);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500533 if (!ret)
534 ret = mem_create_simple_file(mem, phys_index);
535 if (!ret)
536 ret = mem_create_simple_file(mem, state);
537 if (!ret)
538 ret = mem_create_simple_file(mem, phys_device);
539 if (!ret)
540 ret = mem_create_simple_file(mem, removable);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600541
542 *memory = mem;
543 return ret;
544}
545
546static int add_memory_section(int nid, struct mem_section *section,
547 unsigned long state, enum mem_add_context context)
548{
549 struct memory_block *mem;
550 int ret = 0;
551
552 mutex_lock(&mem_sysfs_mutex);
553
554 mem = find_memory_block(section);
555 if (mem) {
556 mem->section_count++;
557 kobject_put(&mem->sysdev.kobj);
558 } else
559 ret = init_memory_block(&mem, section, state);
560
Nathan Fontenote4619c82010-10-19 12:44:20 -0500561 if (!ret) {
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600562 if (context == HOTPLUG &&
563 mem->section_count == sections_per_block)
Nathan Fontenote4619c82010-10-19 12:44:20 -0500564 ret = register_mem_sect_under_node(mem, nid);
565 }
566
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500567 mutex_unlock(&mem_sysfs_mutex);
Nathan Fontenote4619c82010-10-19 12:44:20 -0500568 return ret;
569}
570
Dave Hansen3947be12005-10-29 18:16:54 -0700571int remove_memory_block(unsigned long node_id, struct mem_section *section,
572 int phys_device)
573{
574 struct memory_block *mem;
575
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500576 mutex_lock(&mem_sysfs_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700577 mem = find_memory_block(section);
Nathan Fontenot07681212010-10-19 12:46:19 -0500578
579 mem->section_count--;
580 if (mem->section_count == 0) {
581 unregister_mem_sect_under_nodes(mem);
582 mem_remove_simple_file(mem, phys_index);
583 mem_remove_simple_file(mem, state);
584 mem_remove_simple_file(mem, phys_device);
585 mem_remove_simple_file(mem, removable);
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600586 unregister_memory(mem);
587 kfree(mem);
588 } else
589 kobject_put(&mem->sysdev.kobj);
Dave Hansen3947be12005-10-29 18:16:54 -0700590
Nathan Fontenot2938ffb2010-10-19 12:45:24 -0500591 mutex_unlock(&mem_sysfs_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700592 return 0;
593}
594
595/*
596 * need an interface for the VM to add new memory regions,
597 * but without onlining it.
598 */
Gary Hadec04fc582009-01-06 14:39:14 -0800599int register_new_memory(int nid, struct mem_section *section)
Dave Hansen3947be12005-10-29 18:16:54 -0700600{
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600601 return add_memory_section(nid, section, MEM_OFFLINE, HOTPLUG);
Dave Hansen3947be12005-10-29 18:16:54 -0700602}
603
604int unregister_memory_section(struct mem_section *section)
605{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700606 if (!present_section(section))
Dave Hansen3947be12005-10-29 18:16:54 -0700607 return -EINVAL;
608
609 return remove_memory_block(0, section, 0);
610}
611
612/*
613 * Initialize the sysfs support for memory devices...
614 */
615int __init memory_dev_init(void)
616{
617 unsigned int i;
618 int ret;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800619 int err;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600620 unsigned long block_sz;
Dave Hansen3947be12005-10-29 18:16:54 -0700621
Kay Sievers312c0042005-11-16 09:00:00 +0100622 memory_sysdev_class.kset.uevent_ops = &memory_uevent_ops;
Dave Hansen3947be12005-10-29 18:16:54 -0700623 ret = sysdev_class_register(&memory_sysdev_class);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800624 if (ret)
625 goto out;
Dave Hansen3947be12005-10-29 18:16:54 -0700626
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600627 block_sz = get_memory_block_size();
628 sections_per_block = block_sz / MIN_MEMORY_BLOCK_SIZE;
629
Dave Hansen3947be12005-10-29 18:16:54 -0700630 /*
631 * Create entries for memory sections that were found
632 * during boot and have been initialized
633 */
634 for (i = 0; i < NR_MEM_SECTIONS; i++) {
Andy Whitcroft540557b2007-10-16 01:24:11 -0700635 if (!present_section_nr(i))
Dave Hansen3947be12005-10-29 18:16:54 -0700636 continue;
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600637 err = add_memory_section(0, __nr_to_section(i), MEM_ONLINE,
638 BOOT);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800639 if (!ret)
640 ret = err;
Dave Hansen3947be12005-10-29 18:16:54 -0700641 }
642
Andrew Morton28ec24e2006-12-06 20:37:29 -0800643 err = memory_probe_init();
644 if (!ret)
645 ret = err;
Andi Kleenfacb6012009-12-16 12:20:00 +0100646 err = memory_fail_init();
647 if (!ret)
648 ret = err;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800649 err = block_size_init();
650 if (!ret)
651 ret = err;
652out:
653 if (ret)
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800654 printk(KERN_ERR "%s() failed: %d\n", __func__, ret);
Dave Hansen3947be12005-10-29 18:16:54 -0700655 return ret;
656}