blob: b6f1b137d427e68de2ea6c4e95dfa63a30e80760 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pSeries_reconfig.c - support for dynamic reconfiguration (including PCI
3 * Hotplug and Dynamic Logical Partitioning on RPA platforms).
4 *
5 * Copyright (C) 2005 Nathan Lynch
6 * Copyright (C) 2005 IBM Corporation
7 *
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version
11 * 2 as published by the Free Software Foundation.
12 */
13
14#include <linux/kernel.h>
15#include <linux/kref.h>
16#include <linux/notifier.h>
17#include <linux/proc_fs.h>
18
19#include <asm/prom.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110020#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/uaccess.h>
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110022#include <asm/pSeries_reconfig.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24
25
26/*
27 * Routines for "runtime" addition and removal of device tree nodes.
28 */
29#ifdef CONFIG_PROC_DEVICETREE
30/*
31 * Add a node to /proc/device-tree.
32 */
33static void add_node_proc_entries(struct device_node *np)
34{
35 struct proc_dir_entry *ent;
36
37 ent = proc_mkdir(strrchr(np->full_name, '/') + 1, np->parent->pde);
38 if (ent)
39 proc_device_tree_add_node(np, ent);
40}
41
42static void remove_node_proc_entries(struct device_node *np)
43{
44 struct property *pp = np->properties;
45 struct device_node *parent = np->parent;
46
47 while (pp) {
48 remove_proc_entry(pp->name, np->pde);
49 pp = pp->next;
50 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if (np->pde)
52 remove_proc_entry(np->pde->name, parent->pde);
53}
54#else /* !CONFIG_PROC_DEVICETREE */
55static void add_node_proc_entries(struct device_node *np)
56{
57 return;
58}
59
60static void remove_node_proc_entries(struct device_node *np)
61{
62 return;
63}
64#endif /* CONFIG_PROC_DEVICETREE */
65
66/**
67 * derive_parent - basically like dirname(1)
68 * @path: the full_name of a node to be added to the tree
69 *
70 * Returns the node which should be the parent of the node
71 * described by path. E.g., for path = "/foo/bar", returns
72 * the node with full_name = "/foo".
73 */
74static struct device_node *derive_parent(const char *path)
75{
76 struct device_node *parent = NULL;
77 char *parent_path = "/";
78 size_t parent_path_len = strrchr(path, '/') - path + 1;
79
80 /* reject if path is "/" */
81 if (!strcmp(path, "/"))
82 return ERR_PTR(-EINVAL);
83
84 if (strrchr(path, '/') != path) {
85 parent_path = kmalloc(parent_path_len, GFP_KERNEL);
86 if (!parent_path)
87 return ERR_PTR(-ENOMEM);
88 strlcpy(parent_path, path, parent_path_len);
89 }
90 parent = of_find_node_by_path(parent_path);
91 if (!parent)
92 return ERR_PTR(-EINVAL);
93 if (strcmp(parent_path, "/"))
94 kfree(parent_path);
95 return parent;
96}
97
Alan Sterne041c682006-03-27 01:16:30 -080098static BLOCKING_NOTIFIER_HEAD(pSeries_reconfig_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100int pSeries_reconfig_notifier_register(struct notifier_block *nb)
101{
Alan Sterne041c682006-03-27 01:16:30 -0800102 return blocking_notifier_chain_register(&pSeries_reconfig_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105void pSeries_reconfig_notifier_unregister(struct notifier_block *nb)
106{
Alan Sterne041c682006-03-27 01:16:30 -0800107 blocking_notifier_chain_unregister(&pSeries_reconfig_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110static int pSeries_reconfig_add_node(const char *path, struct property *proplist)
111{
112 struct device_node *np;
113 int err = -ENOMEM;
114
Pekka Enberg874ca6c2005-09-06 15:18:32 -0700115 np = kzalloc(sizeof(*np), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (!np)
117 goto out_err;
118
119 np->full_name = kmalloc(strlen(path) + 1, GFP_KERNEL);
120 if (!np->full_name)
121 goto out_err;
122
123 strcpy(np->full_name, path);
124
125 np->properties = proplist;
Michael Ellermand3b814b2007-06-19 16:07:58 +1000126 of_node_set_flag(np, OF_DYNAMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 kref_init(&np->kref);
128
129 np->parent = derive_parent(path);
130 if (IS_ERR(np->parent)) {
131 err = PTR_ERR(np->parent);
132 goto out_err;
133 }
134
Alan Sterne041c682006-03-27 01:16:30 -0800135 err = blocking_notifier_call_chain(&pSeries_reconfig_chain,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 PSERIES_RECONFIG_ADD, np);
137 if (err == NOTIFY_BAD) {
138 printk(KERN_ERR "Failed to add device node %s\n", path);
139 err = -ENOMEM; /* For now, safe to assume kmalloc failure */
140 goto out_err;
141 }
142
143 of_attach_node(np);
144
145 add_node_proc_entries(np);
146
147 of_node_put(np->parent);
148
149 return 0;
150
151out_err:
152 if (np) {
153 of_node_put(np->parent);
154 kfree(np->full_name);
155 kfree(np);
156 }
157 return err;
158}
159
160static int pSeries_reconfig_remove_node(struct device_node *np)
161{
162 struct device_node *parent, *child;
163
164 parent = of_get_parent(np);
165 if (!parent)
166 return -EINVAL;
167
168 if ((child = of_get_next_child(np, NULL))) {
169 of_node_put(child);
Julia Lawall842decb2008-02-04 23:34:58 -0800170 of_node_put(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -EBUSY;
172 }
173
174 remove_node_proc_entries(np);
175
Alan Sterne041c682006-03-27 01:16:30 -0800176 blocking_notifier_call_chain(&pSeries_reconfig_chain,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 PSERIES_RECONFIG_REMOVE, np);
178 of_detach_node(np);
179
180 of_node_put(parent);
181 of_node_put(np); /* Must decrement the refcount */
182 return 0;
183}
184
185/*
186 * /proc/ppc64/ofdt - yucky binary interface for adding and removing
187 * OF device nodes. Should be deprecated as soon as we get an
188 * in-kernel wrapper for the RTAS ibm,configure-connector call.
189 */
190
191static void release_prop_list(const struct property *prop)
192{
193 struct property *next;
194 for (; prop; prop = next) {
195 next = prop->next;
196 kfree(prop->name);
197 kfree(prop->value);
198 kfree(prop);
199 }
200
201}
202
203/**
204 * parse_next_property - process the next property from raw input buffer
205 * @buf: input buffer, must be nul-terminated
206 * @end: end of the input buffer + 1, for validation
207 * @name: return value; set to property name in buf
208 * @length: return value; set to length of value
209 * @value: return value; set to the property value in buf
210 *
211 * Note that the caller must make copies of the name and value returned,
212 * this function does no allocation or copying of the data. Return value
213 * is set to the next name in buf, or NULL on error.
214 */
215static char * parse_next_property(char *buf, char *end, char **name, int *length,
216 unsigned char **value)
217{
218 char *tmp;
219
220 *name = buf;
221
222 tmp = strchr(buf, ' ');
223 if (!tmp) {
224 printk(KERN_ERR "property parse failed in %s at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100225 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return NULL;
227 }
228 *tmp = '\0';
229
230 if (++tmp >= end) {
231 printk(KERN_ERR "property parse failed in %s at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100232 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return NULL;
234 }
235
236 /* now we're on the length */
237 *length = -1;
238 *length = simple_strtoul(tmp, &tmp, 10);
239 if (*length == -1) {
240 printk(KERN_ERR "property parse failed in %s at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100241 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return NULL;
243 }
244 if (*tmp != ' ' || ++tmp >= end) {
245 printk(KERN_ERR "property parse failed in %s at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100246 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return NULL;
248 }
249
250 /* now we're on the value */
251 *value = tmp;
252 tmp += *length;
253 if (tmp > end) {
254 printk(KERN_ERR "property parse failed in %s at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100255 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return NULL;
257 }
258 else if (tmp < end && *tmp != ' ' && *tmp != '\0') {
259 printk(KERN_ERR "property parse failed in %s at line %d\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100260 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return NULL;
262 }
263 tmp++;
264
265 /* and now we should be on the next name, or the end */
266 return tmp;
267}
268
269static struct property *new_property(const char *name, const int length,
270 const unsigned char *value, struct property *last)
271{
Yan Burmanf8485352006-12-02 13:26:57 +0200272 struct property *new = kzalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 if (!new)
275 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if (!(new->name = kmalloc(strlen(name) + 1, GFP_KERNEL)))
278 goto cleanup;
279 if (!(new->value = kmalloc(length + 1, GFP_KERNEL)))
280 goto cleanup;
281
282 strcpy(new->name, name);
283 memcpy(new->value, value, length);
284 *(((char *)new->value) + length) = 0;
285 new->length = length;
286 new->next = last;
287 return new;
288
289cleanup:
Jesper Juhlb2325fe2005-11-07 01:01:35 -0800290 kfree(new->name);
291 kfree(new->value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 kfree(new);
293 return NULL;
294}
295
296static int do_add_node(char *buf, size_t bufsize)
297{
298 char *path, *end, *name;
299 struct device_node *np;
300 struct property *prop = NULL;
301 unsigned char* value;
302 int length, rv = 0;
303
304 end = buf + bufsize;
305 path = buf;
306 buf = strchr(buf, ' ');
307 if (!buf)
308 return -EINVAL;
309 *buf = '\0';
310 buf++;
311
312 if ((np = of_find_node_by_path(path))) {
313 of_node_put(np);
314 return -EINVAL;
315 }
316
317 /* rv = build_prop_list(tmp, bufsize - (tmp - buf), &proplist); */
318 while (buf < end &&
319 (buf = parse_next_property(buf, end, &name, &length, &value))) {
320 struct property *last = prop;
321
322 prop = new_property(name, length, value, last);
323 if (!prop) {
324 rv = -ENOMEM;
325 prop = last;
326 goto out;
327 }
328 }
329 if (!buf) {
330 rv = -EINVAL;
331 goto out;
332 }
333
334 rv = pSeries_reconfig_add_node(path, prop);
335
336out:
337 if (rv)
338 release_prop_list(prop);
339 return rv;
340}
341
342static int do_remove_node(char *buf)
343{
344 struct device_node *node;
345 int rv = -ENODEV;
346
347 if ((node = of_find_node_by_path(buf)))
348 rv = pSeries_reconfig_remove_node(node);
349
350 of_node_put(node);
351 return rv;
352}
353
Dave C Boutcher610d9152006-01-12 16:10:22 -0600354static char *parse_node(char *buf, size_t bufsize, struct device_node **npp)
355{
356 char *handle_str;
357 phandle handle;
358 *npp = NULL;
359
360 handle_str = buf;
361
362 buf = strchr(buf, ' ');
363 if (!buf)
364 return NULL;
365 *buf = '\0';
366 buf++;
367
Nathan Fontenot4b6e8052008-07-03 13:19:24 +1000368 handle = simple_strtoul(handle_str, NULL, 0);
Dave C Boutcher610d9152006-01-12 16:10:22 -0600369
370 *npp = of_find_node_by_phandle(handle);
371 return buf;
372}
373
374static int do_add_property(char *buf, size_t bufsize)
375{
376 struct property *prop = NULL;
377 struct device_node *np;
378 unsigned char *value;
379 char *name, *end;
380 int length;
381 end = buf + bufsize;
382 buf = parse_node(buf, bufsize, &np);
383
384 if (!np)
385 return -ENODEV;
386
387 if (parse_next_property(buf, end, &name, &length, &value) == NULL)
388 return -EINVAL;
389
390 prop = new_property(name, length, value, NULL);
391 if (!prop)
392 return -ENOMEM;
393
394 prom_add_property(np, prop);
395
396 return 0;
397}
398
399static int do_remove_property(char *buf, size_t bufsize)
400{
401 struct device_node *np;
402 char *tmp;
403 struct property *prop;
404 buf = parse_node(buf, bufsize, &np);
405
406 if (!np)
407 return -ENODEV;
408
409 tmp = strchr(buf,' ');
410 if (tmp)
411 *tmp = '\0';
412
413 if (strlen(buf) == 0)
414 return -EINVAL;
415
416 prop = of_find_property(np, buf, NULL);
417
418 return prom_remove_property(np, prop);
419}
420
421static int do_update_property(char *buf, size_t bufsize)
422{
423 struct device_node *np;
424 unsigned char *value;
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000425 char *name, *end, *next_prop;
426 int rc, length;
Dave C Boutcher610d9152006-01-12 16:10:22 -0600427 struct property *newprop, *oldprop;
428 buf = parse_node(buf, bufsize, &np);
429 end = buf + bufsize;
430
431 if (!np)
432 return -ENODEV;
433
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000434 next_prop = parse_next_property(buf, end, &name, &length, &value);
435 if (!next_prop)
Dave C Boutcher610d9152006-01-12 16:10:22 -0600436 return -EINVAL;
437
438 newprop = new_property(name, length, value, NULL);
439 if (!newprop)
440 return -ENOMEM;
441
442 oldprop = of_find_property(np, name,NULL);
443 if (!oldprop)
444 return -ENODEV;
445
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000446 rc = prom_update_property(np, newprop, oldprop);
447 if (rc)
448 return rc;
449
450 /* For memory under the ibm,dynamic-reconfiguration-memory node
451 * of the device tree, adding and removing memory is just an update
452 * to the ibm,dynamic-memory property instead of adding/removing a
453 * memory node in the device tree. For these cases we still need to
454 * involve the notifier chain.
455 */
456 if (!strcmp(name, "ibm,dynamic-memory")) {
457 int action;
458
459 next_prop = parse_next_property(next_prop, end, &name,
460 &length, &value);
461 if (!next_prop)
462 return -EINVAL;
463
464 if (!strcmp(name, "add"))
465 action = PSERIES_DRCONF_MEM_ADD;
466 else
467 action = PSERIES_DRCONF_MEM_REMOVE;
468
Nathan Fontenot525c4112008-08-26 05:33:34 +1000469 rc = blocking_notifier_call_chain(&pSeries_reconfig_chain,
470 action, value);
Nathan Fontenotc5785f92009-03-09 00:00:00 +0000471 if (rc == NOTIFY_BAD) {
472 rc = prom_update_property(np, oldprop, newprop);
473 return -ENOMEM;
474 }
Nathan Fontenot3c3f67e2008-07-03 13:22:39 +1000475 }
476
Nathan Fontenotc5785f92009-03-09 00:00:00 +0000477 return 0;
Dave C Boutcher610d9152006-01-12 16:10:22 -0600478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/**
481 * ofdt_write - perform operations on the Open Firmware device tree
482 *
483 * @file: not used
484 * @buf: command and arguments
485 * @count: size of the command buffer
486 * @off: not used
487 *
488 * Operations supported at this time are addition and removal of
489 * whole nodes along with their properties. Operations on individual
490 * properties are not implemented (yet).
491 */
492static ssize_t ofdt_write(struct file *file, const char __user *buf, size_t count,
493 loff_t *off)
494{
495 int rv = 0;
496 char *kbuf;
497 char *tmp;
498
499 if (!(kbuf = kmalloc(count + 1, GFP_KERNEL))) {
500 rv = -ENOMEM;
501 goto out;
502 }
503 if (copy_from_user(kbuf, buf, count)) {
504 rv = -EFAULT;
505 goto out;
506 }
507
508 kbuf[count] = '\0';
509
510 tmp = strchr(kbuf, ' ');
511 if (!tmp) {
512 rv = -EINVAL;
513 goto out;
514 }
515 *tmp = '\0';
516 tmp++;
517
518 if (!strcmp(kbuf, "add_node"))
519 rv = do_add_node(tmp, count - (tmp - kbuf));
520 else if (!strcmp(kbuf, "remove_node"))
521 rv = do_remove_node(tmp);
Dave C Boutcher610d9152006-01-12 16:10:22 -0600522 else if (!strcmp(kbuf, "add_property"))
523 rv = do_add_property(tmp, count - (tmp - kbuf));
524 else if (!strcmp(kbuf, "remove_property"))
525 rv = do_remove_property(tmp, count - (tmp - kbuf));
526 else if (!strcmp(kbuf, "update_property"))
527 rv = do_update_property(tmp, count - (tmp - kbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 else
529 rv = -EINVAL;
530out:
531 kfree(kbuf);
532 return rv ? rv : count;
533}
534
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800535static const struct file_operations ofdt_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 .write = ofdt_write
537};
538
539/* create /proc/ppc64/ofdt write-only by root */
540static int proc_ppc64_create_ofdt(void)
541{
542 struct proc_dir_entry *ent;
543
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100544 if (!machine_is(pseries))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return 0;
546
Denis V. Lunev66747132008-04-29 01:02:26 -0700547 ent = proc_create("ppc64/ofdt", S_IWUSR, NULL, &ofdt_fops);
548 if (ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 ent->size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 return 0;
552}
553__initcall(proc_ppc64_create_ofdt);