xref: /linux/arch/powerpc/platforms/pseries/reconfig.c (revision c6bd5bcc4983f1a2d2f87a3769bf309482ee8c04)
1 /*
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 #include <linux/slab.h>
19 
20 #include <asm/prom.h>
21 #include <asm/machdep.h>
22 #include <asm/uaccess.h>
23 #include <asm/pSeries_reconfig.h>
24 #include <asm/mmu.h>
25 
26 
27 
28 /*
29  * Routines for "runtime" addition and removal of device tree nodes.
30  */
31 #ifdef CONFIG_PROC_DEVICETREE
32 /*
33  * Add a node to /proc/device-tree.
34  */
35 static void add_node_proc_entries(struct device_node *np)
36 {
37 	struct proc_dir_entry *ent;
38 
39 	ent = proc_mkdir(strrchr(np->full_name, '/') + 1, np->parent->pde);
40 	if (ent)
41 		proc_device_tree_add_node(np, ent);
42 }
43 
44 static void remove_node_proc_entries(struct device_node *np)
45 {
46 	struct property *pp = np->properties;
47 	struct device_node *parent = np->parent;
48 
49 	while (pp) {
50 		remove_proc_entry(pp->name, np->pde);
51 		pp = pp->next;
52 	}
53 	if (np->pde)
54 		remove_proc_entry(np->pde->name, parent->pde);
55 }
56 #else /* !CONFIG_PROC_DEVICETREE */
57 static void add_node_proc_entries(struct device_node *np)
58 {
59 	return;
60 }
61 
62 static void remove_node_proc_entries(struct device_node *np)
63 {
64 	return;
65 }
66 #endif /* CONFIG_PROC_DEVICETREE */
67 
68 /**
69  *	derive_parent - basically like dirname(1)
70  *	@path:  the full_name of a node to be added to the tree
71  *
72  *	Returns the node which should be the parent of the node
73  *	described by path.  E.g., for path = "/foo/bar", returns
74  *	the node with full_name = "/foo".
75  */
76 static struct device_node *derive_parent(const char *path)
77 {
78 	struct device_node *parent = NULL;
79 	char *parent_path = "/";
80 	size_t parent_path_len = strrchr(path, '/') - path + 1;
81 
82 	/* reject if path is "/" */
83 	if (!strcmp(path, "/"))
84 		return ERR_PTR(-EINVAL);
85 
86 	if (strrchr(path, '/') != path) {
87 		parent_path = kmalloc(parent_path_len, GFP_KERNEL);
88 		if (!parent_path)
89 			return ERR_PTR(-ENOMEM);
90 		strlcpy(parent_path, path, parent_path_len);
91 	}
92 	parent = of_find_node_by_path(parent_path);
93 	if (!parent)
94 		return ERR_PTR(-EINVAL);
95 	if (strcmp(parent_path, "/"))
96 		kfree(parent_path);
97 	return parent;
98 }
99 
100 static BLOCKING_NOTIFIER_HEAD(pSeries_reconfig_chain);
101 
102 int pSeries_reconfig_notifier_register(struct notifier_block *nb)
103 {
104 	return blocking_notifier_chain_register(&pSeries_reconfig_chain, nb);
105 }
106 EXPORT_SYMBOL_GPL(pSeries_reconfig_notifier_register);
107 
108 void pSeries_reconfig_notifier_unregister(struct notifier_block *nb)
109 {
110 	blocking_notifier_chain_unregister(&pSeries_reconfig_chain, nb);
111 }
112 EXPORT_SYMBOL_GPL(pSeries_reconfig_notifier_unregister);
113 
114 int pSeries_reconfig_notify(unsigned long action, void *p)
115 {
116 	int err = blocking_notifier_call_chain(&pSeries_reconfig_chain,
117 						action, p);
118 
119 	return notifier_to_errno(err);
120 }
121 
122 static int pSeries_reconfig_add_node(const char *path, struct property *proplist)
123 {
124 	struct device_node *np;
125 	int err = -ENOMEM;
126 
127 	np = kzalloc(sizeof(*np), GFP_KERNEL);
128 	if (!np)
129 		goto out_err;
130 
131 	np->full_name = kstrdup(path, GFP_KERNEL);
132 	if (!np->full_name)
133 		goto out_err;
134 
135 	np->properties = proplist;
136 	of_node_set_flag(np, OF_DYNAMIC);
137 	kref_init(&np->kref);
138 
139 	np->parent = derive_parent(path);
140 	if (IS_ERR(np->parent)) {
141 		err = PTR_ERR(np->parent);
142 		goto out_err;
143 	}
144 
145 	err = pSeries_reconfig_notify(PSERIES_RECONFIG_ADD, np);
146 	if (err) {
147 		printk(KERN_ERR "Failed to add device node %s\n", path);
148 		goto out_err;
149 	}
150 
151 	of_attach_node(np);
152 
153 	add_node_proc_entries(np);
154 
155 	of_node_put(np->parent);
156 
157 	return 0;
158 
159 out_err:
160 	if (np) {
161 		of_node_put(np->parent);
162 		kfree(np->full_name);
163 		kfree(np);
164 	}
165 	return err;
166 }
167 
168 static int pSeries_reconfig_remove_node(struct device_node *np)
169 {
170 	struct device_node *parent, *child;
171 
172 	parent = of_get_parent(np);
173 	if (!parent)
174 		return -EINVAL;
175 
176 	if ((child = of_get_next_child(np, NULL))) {
177 		of_node_put(child);
178 		of_node_put(parent);
179 		return -EBUSY;
180 	}
181 
182 	remove_node_proc_entries(np);
183 
184 	pSeries_reconfig_notify(PSERIES_RECONFIG_REMOVE, np);
185 	of_detach_node(np);
186 
187 	of_node_put(parent);
188 	of_node_put(np); /* Must decrement the refcount */
189 	return 0;
190 }
191 
192 /*
193  * /proc/powerpc/ofdt - yucky binary interface for adding and removing
194  * OF device nodes.  Should be deprecated as soon as we get an
195  * in-kernel wrapper for the RTAS ibm,configure-connector call.
196  */
197 
198 static void release_prop_list(const struct property *prop)
199 {
200 	struct property *next;
201 	for (; prop; prop = next) {
202 		next = prop->next;
203 		kfree(prop->name);
204 		kfree(prop->value);
205 		kfree(prop);
206 	}
207 
208 }
209 
210 /**
211  * parse_next_property - process the next property from raw input buffer
212  * @buf: input buffer, must be nul-terminated
213  * @end: end of the input buffer + 1, for validation
214  * @name: return value; set to property name in buf
215  * @length: return value; set to length of value
216  * @value: return value; set to the property value in buf
217  *
218  * Note that the caller must make copies of the name and value returned,
219  * this function does no allocation or copying of the data.  Return value
220  * is set to the next name in buf, or NULL on error.
221  */
222 static char * parse_next_property(char *buf, char *end, char **name, int *length,
223 				  unsigned char **value)
224 {
225 	char *tmp;
226 
227 	*name = buf;
228 
229 	tmp = strchr(buf, ' ');
230 	if (!tmp) {
231 		printk(KERN_ERR "property parse failed in %s at line %d\n",
232 		       __func__, __LINE__);
233 		return NULL;
234 	}
235 	*tmp = '\0';
236 
237 	if (++tmp >= end) {
238 		printk(KERN_ERR "property parse failed in %s at line %d\n",
239 		       __func__, __LINE__);
240 		return NULL;
241 	}
242 
243 	/* now we're on the length */
244 	*length = -1;
245 	*length = simple_strtoul(tmp, &tmp, 10);
246 	if (*length == -1) {
247 		printk(KERN_ERR "property parse failed in %s at line %d\n",
248 		       __func__, __LINE__);
249 		return NULL;
250 	}
251 	if (*tmp != ' ' || ++tmp >= end) {
252 		printk(KERN_ERR "property parse failed in %s at line %d\n",
253 		       __func__, __LINE__);
254 		return NULL;
255 	}
256 
257 	/* now we're on the value */
258 	*value = tmp;
259 	tmp += *length;
260 	if (tmp > end) {
261 		printk(KERN_ERR "property parse failed in %s at line %d\n",
262 		       __func__, __LINE__);
263 		return NULL;
264 	}
265 	else if (tmp < end && *tmp != ' ' && *tmp != '\0') {
266 		printk(KERN_ERR "property parse failed in %s at line %d\n",
267 		       __func__, __LINE__);
268 		return NULL;
269 	}
270 	tmp++;
271 
272 	/* and now we should be on the next name, or the end */
273 	return tmp;
274 }
275 
276 static struct property *new_property(const char *name, const int length,
277 				     const unsigned char *value, struct property *last)
278 {
279 	struct property *new = kzalloc(sizeof(*new), GFP_KERNEL);
280 
281 	if (!new)
282 		return NULL;
283 
284 	if (!(new->name = kstrdup(name, GFP_KERNEL)))
285 		goto cleanup;
286 	if (!(new->value = kmalloc(length + 1, GFP_KERNEL)))
287 		goto cleanup;
288 
289 	memcpy(new->value, value, length);
290 	*(((char *)new->value) + length) = 0;
291 	new->length = length;
292 	new->next = last;
293 	return new;
294 
295 cleanup:
296 	kfree(new->name);
297 	kfree(new->value);
298 	kfree(new);
299 	return NULL;
300 }
301 
302 static int do_add_node(char *buf, size_t bufsize)
303 {
304 	char *path, *end, *name;
305 	struct device_node *np;
306 	struct property *prop = NULL;
307 	unsigned char* value;
308 	int length, rv = 0;
309 
310 	end = buf + bufsize;
311 	path = buf;
312 	buf = strchr(buf, ' ');
313 	if (!buf)
314 		return -EINVAL;
315 	*buf = '\0';
316 	buf++;
317 
318 	if ((np = of_find_node_by_path(path))) {
319 		of_node_put(np);
320 		return -EINVAL;
321 	}
322 
323 	/* rv = build_prop_list(tmp, bufsize - (tmp - buf), &proplist); */
324 	while (buf < end &&
325 	       (buf = parse_next_property(buf, end, &name, &length, &value))) {
326 		struct property *last = prop;
327 
328 		prop = new_property(name, length, value, last);
329 		if (!prop) {
330 			rv = -ENOMEM;
331 			prop = last;
332 			goto out;
333 		}
334 	}
335 	if (!buf) {
336 		rv = -EINVAL;
337 		goto out;
338 	}
339 
340 	rv = pSeries_reconfig_add_node(path, prop);
341 
342 out:
343 	if (rv)
344 		release_prop_list(prop);
345 	return rv;
346 }
347 
348 static int do_remove_node(char *buf)
349 {
350 	struct device_node *node;
351 	int rv = -ENODEV;
352 
353 	if ((node = of_find_node_by_path(buf)))
354 		rv = pSeries_reconfig_remove_node(node);
355 
356 	of_node_put(node);
357 	return rv;
358 }
359 
360 static char *parse_node(char *buf, size_t bufsize, struct device_node **npp)
361 {
362 	char *handle_str;
363 	phandle handle;
364 	*npp = NULL;
365 
366 	handle_str = buf;
367 
368 	buf = strchr(buf, ' ');
369 	if (!buf)
370 		return NULL;
371 	*buf = '\0';
372 	buf++;
373 
374 	handle = simple_strtoul(handle_str, NULL, 0);
375 
376 	*npp = of_find_node_by_phandle(handle);
377 	return buf;
378 }
379 
380 static int do_add_property(char *buf, size_t bufsize)
381 {
382 	struct property *prop = NULL;
383 	struct device_node *np;
384 	unsigned char *value;
385 	char *name, *end;
386 	int length;
387 	end = buf + bufsize;
388 	buf = parse_node(buf, bufsize, &np);
389 
390 	if (!np)
391 		return -ENODEV;
392 
393 	if (parse_next_property(buf, end, &name, &length, &value) == NULL)
394 		return -EINVAL;
395 
396 	prop = new_property(name, length, value, NULL);
397 	if (!prop)
398 		return -ENOMEM;
399 
400 	prom_add_property(np, prop);
401 
402 	return 0;
403 }
404 
405 static int do_remove_property(char *buf, size_t bufsize)
406 {
407 	struct device_node *np;
408 	char *tmp;
409 	struct property *prop;
410 	buf = parse_node(buf, bufsize, &np);
411 
412 	if (!np)
413 		return -ENODEV;
414 
415 	tmp = strchr(buf,' ');
416 	if (tmp)
417 		*tmp = '\0';
418 
419 	if (strlen(buf) == 0)
420 		return -EINVAL;
421 
422 	prop = of_find_property(np, buf, NULL);
423 
424 	return prom_remove_property(np, prop);
425 }
426 
427 static int do_update_property(char *buf, size_t bufsize)
428 {
429 	struct device_node *np;
430 	struct pSeries_reconfig_prop_update upd_value;
431 	unsigned char *value;
432 	char *name, *end, *next_prop;
433 	int rc, length;
434 	struct property *newprop;
435 	buf = parse_node(buf, bufsize, &np);
436 	end = buf + bufsize;
437 
438 	if (!np)
439 		return -ENODEV;
440 
441 	next_prop = parse_next_property(buf, end, &name, &length, &value);
442 	if (!next_prop)
443 		return -EINVAL;
444 
445 	if (!strlen(name))
446 		return -ENODEV;
447 
448 	newprop = new_property(name, length, value, NULL);
449 	if (!newprop)
450 		return -ENOMEM;
451 
452 	if (!strcmp(name, "slb-size") || !strcmp(name, "ibm,slb-size"))
453 		slb_set_size(*(int *)value);
454 
455 	upd_value.node = np;
456 	upd_value.property = newprop;
457 	pSeries_reconfig_notify(PSERIES_UPDATE_PROPERTY, &upd_value);
458 
459 	rc = prom_update_property(np, newprop);
460 	if (rc)
461 		return rc;
462 
463 	/* For memory under the ibm,dynamic-reconfiguration-memory node
464 	 * of the device tree, adding and removing memory is just an update
465 	 * to the ibm,dynamic-memory property instead of adding/removing a
466 	 * memory node in the device tree.  For these cases we still need to
467 	 * involve the notifier chain.
468 	 */
469 	if (!strcmp(name, "ibm,dynamic-memory")) {
470 		int action;
471 
472 		next_prop = parse_next_property(next_prop, end, &name,
473 						&length, &value);
474 		if (!next_prop)
475 			return -EINVAL;
476 
477 		if (!strcmp(name, "add"))
478 			action = PSERIES_DRCONF_MEM_ADD;
479 		else
480 			action = PSERIES_DRCONF_MEM_REMOVE;
481 
482 		rc = pSeries_reconfig_notify(action, value);
483 		if (rc) {
484 			prom_update_property(np, newprop);
485 			return rc;
486 		}
487 	}
488 
489 	return 0;
490 }
491 
492 /**
493  * ofdt_write - perform operations on the Open Firmware device tree
494  *
495  * @file: not used
496  * @buf: command and arguments
497  * @count: size of the command buffer
498  * @off: not used
499  *
500  * Operations supported at this time are addition and removal of
501  * whole nodes along with their properties.  Operations on individual
502  * properties are not implemented (yet).
503  */
504 static ssize_t ofdt_write(struct file *file, const char __user *buf, size_t count,
505 			  loff_t *off)
506 {
507 	int rv = 0;
508 	char *kbuf;
509 	char *tmp;
510 
511 	if (!(kbuf = kmalloc(count + 1, GFP_KERNEL))) {
512 		rv = -ENOMEM;
513 		goto out;
514 	}
515 	if (copy_from_user(kbuf, buf, count)) {
516 		rv = -EFAULT;
517 		goto out;
518 	}
519 
520 	kbuf[count] = '\0';
521 
522 	tmp = strchr(kbuf, ' ');
523 	if (!tmp) {
524 		rv = -EINVAL;
525 		goto out;
526 	}
527 	*tmp = '\0';
528 	tmp++;
529 
530 	if (!strcmp(kbuf, "add_node"))
531 		rv = do_add_node(tmp, count - (tmp - kbuf));
532 	else if (!strcmp(kbuf, "remove_node"))
533 		rv = do_remove_node(tmp);
534 	else if (!strcmp(kbuf, "add_property"))
535 		rv = do_add_property(tmp, count - (tmp - kbuf));
536 	else if (!strcmp(kbuf, "remove_property"))
537 		rv = do_remove_property(tmp, count - (tmp - kbuf));
538 	else if (!strcmp(kbuf, "update_property"))
539 		rv = do_update_property(tmp, count - (tmp - kbuf));
540 	else
541 		rv = -EINVAL;
542 out:
543 	kfree(kbuf);
544 	return rv ? rv : count;
545 }
546 
547 static const struct file_operations ofdt_fops = {
548 	.write = ofdt_write,
549 	.llseek = noop_llseek,
550 };
551 
552 /* create /proc/powerpc/ofdt write-only by root */
553 static int proc_ppc64_create_ofdt(void)
554 {
555 	struct proc_dir_entry *ent;
556 
557 	if (!machine_is(pseries))
558 		return 0;
559 
560 	ent = proc_create("powerpc/ofdt", S_IWUSR, NULL, &ofdt_fops);
561 	if (ent)
562 		ent->size = 0;
563 
564 	return 0;
565 }
566 __initcall(proc_ppc64_create_ofdt);
567