blob: 18a8138ef99f7f6137e2faf5b0b3cffaccbb4064 [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>
Badari Pulavarty98d5c212008-04-18 13:33:52 -070013#include <linux/lmb.h>
Badari Pulavarty57b53922008-04-18 13:33:50 -070014#include <asm/firmware.h>
15#include <asm/machdep.h>
16#include <asm/pSeries_reconfig.h>
17
18static int pseries_remove_memory(struct device_node *np)
19{
20 const char *type;
Badari Pulavarty57b53922008-04-18 13:33:50 -070021 const unsigned int *regs;
Nathan Fontenot92ecd172008-07-03 13:20:58 +100022 unsigned long base;
23 unsigned int lmb_size;
Badari Pulavarty57b53922008-04-18 13:33:50 -070024 u64 start_pfn, start;
25 struct zone *zone;
26 int ret = -EINVAL;
27
28 /*
29 * Check to see if we are actually removing memory
30 */
31 type = of_get_property(np, "device_type", NULL);
32 if (type == NULL || strcmp(type, "memory") != 0)
33 return 0;
34
35 /*
Nathan Fontenot92ecd172008-07-03 13:20:58 +100036 * Find the bae address and size of the lmb
Badari Pulavarty57b53922008-04-18 13:33:50 -070037 */
Badari Pulavarty57b53922008-04-18 13:33:50 -070038 regs = of_get_property(np, "reg", NULL);
39 if (!regs)
40 return ret;
41
Nathan Fontenot92ecd172008-07-03 13:20:58 +100042 base = *(unsigned long *)regs;
43 lmb_size = regs[3];
44
45 start_pfn = base >> PFN_SECTION_SHIFT;
Badari Pulavarty57b53922008-04-18 13:33:50 -070046 zone = page_zone(pfn_to_page(start_pfn));
47
48 /*
49 * Remove section mappings and sysfs entries for the
50 * section of the memory we are removing.
51 *
52 * NOTE: Ideally, this should be done in generic code like
53 * remove_memory(). But remove_memory() gets called by writing
54 * to sysfs "state" file and we can't remove sysfs entries
55 * while writing to it. So we have to defer it to here.
56 */
Nathan Fontenot92ecd172008-07-03 13:20:58 +100057 ret = __remove_pages(zone, start_pfn, lmb_size >> PAGE_SHIFT);
Badari Pulavarty57b53922008-04-18 13:33:50 -070058 if (ret)
59 return ret;
60
61 /*
Badari Pulavarty98d5c212008-04-18 13:33:52 -070062 * Update memory regions for memory remove
63 */
Nathan Fontenot92ecd172008-07-03 13:20:58 +100064 lmb_remove(base, lmb_size);
Badari Pulavarty98d5c212008-04-18 13:33:52 -070065
66 /*
Badari Pulavarty57b53922008-04-18 13:33:50 -070067 * Remove htab bolted mappings for this section of memory
68 */
Nathan Fontenot92ecd172008-07-03 13:20:58 +100069 start = (unsigned long)__va(base);
70 ret = remove_section_mapping(start, start + lmb_size);
Badari Pulavarty57b53922008-04-18 13:33:50 -070071 return ret;
72}
73
Badari Pulavarty98d5c212008-04-18 13:33:52 -070074static int pseries_add_memory(struct device_node *np)
75{
76 const char *type;
Badari Pulavarty98d5c212008-04-18 13:33:52 -070077 const unsigned int *regs;
Nathan Fontenot92ecd172008-07-03 13:20:58 +100078 unsigned long base;
79 unsigned int lmb_size;
Badari Pulavarty98d5c212008-04-18 13:33:52 -070080 u64 start_pfn;
81 int ret = -EINVAL;
82
83 /*
84 * Check to see if we are actually adding memory
85 */
86 type = of_get_property(np, "device_type", NULL);
87 if (type == NULL || strcmp(type, "memory") != 0)
88 return 0;
89
90 /*
Nathan Fontenot92ecd172008-07-03 13:20:58 +100091 * Find the base and size of the lmb
Badari Pulavarty98d5c212008-04-18 13:33:52 -070092 */
Badari Pulavarty98d5c212008-04-18 13:33:52 -070093 regs = of_get_property(np, "reg", NULL);
94 if (!regs)
95 return ret;
96
Nathan Fontenot92ecd172008-07-03 13:20:58 +100097 base = *(unsigned long *)regs;
98 lmb_size = regs[3];
Badari Pulavarty98d5c212008-04-18 13:33:52 -070099
100 /*
101 * Update memory region to represent the memory add
102 */
Nathan Fontenot92ecd172008-07-03 13:20:58 +1000103 lmb_add(base, lmb_size);
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700104 return 0;
105}
106
Badari Pulavarty57b53922008-04-18 13:33:50 -0700107static int pseries_memory_notifier(struct notifier_block *nb,
108 unsigned long action, void *node)
109{
110 int err = NOTIFY_OK;
111
112 switch (action) {
113 case PSERIES_RECONFIG_ADD:
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700114 if (pseries_add_memory(node))
115 err = NOTIFY_BAD;
Badari Pulavarty57b53922008-04-18 13:33:50 -0700116 break;
117 case PSERIES_RECONFIG_REMOVE:
118 if (pseries_remove_memory(node))
119 err = NOTIFY_BAD;
120 break;
121 default:
122 err = NOTIFY_DONE;
123 break;
124 }
125 return err;
126}
127
128static struct notifier_block pseries_mem_nb = {
129 .notifier_call = pseries_memory_notifier,
130};
131
132static int __init pseries_memory_hotplug_init(void)
133{
134 if (firmware_has_feature(FW_FEATURE_LPAR))
135 pSeries_reconfig_notifier_register(&pseries_mem_nb);
136
137 return 0;
138}
139machine_device_initcall(pseries, pseries_memory_hotplug_init);