xref: /linux/drivers/base/swnode.c (revision 08979f160eb96120354cbc6a815e8296f52cdc0d)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Software nodes for the firmware node framework.
4  *
5  * Copyright (C) 2018, Intel Corporation
6  * Author: Heikki Krogerus <heikki.krogerus@linux.intel.com>
7  */
8 
9 #include <linux/device.h>
10 #include <linux/kernel.h>
11 #include <linux/property.h>
12 #include <linux/slab.h>
13 
14 struct swnode {
15 	int id;
16 	struct kobject kobj;
17 	struct fwnode_handle fwnode;
18 	const struct software_node *node;
19 
20 	/* hierarchy */
21 	struct ida child_ids;
22 	struct list_head entry;
23 	struct list_head children;
24 	struct swnode *parent;
25 
26 	unsigned int allocated:1;
27 };
28 
29 static DEFINE_IDA(swnode_root_ids);
30 static struct kset *swnode_kset;
31 
32 #define kobj_to_swnode(_kobj_) container_of(_kobj_, struct swnode, kobj)
33 
34 static const struct fwnode_operations software_node_ops;
35 
36 bool is_software_node(const struct fwnode_handle *fwnode)
37 {
38 	return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &software_node_ops;
39 }
40 EXPORT_SYMBOL_GPL(is_software_node);
41 
42 #define to_swnode(__fwnode)						\
43 	({								\
44 		typeof(__fwnode) __to_swnode_fwnode = __fwnode;		\
45 									\
46 		is_software_node(__to_swnode_fwnode) ?			\
47 			container_of(__to_swnode_fwnode,		\
48 				     struct swnode, fwnode) : NULL;	\
49 	})
50 
51 static struct swnode *
52 software_node_to_swnode(const struct software_node *node)
53 {
54 	struct swnode *swnode = NULL;
55 	struct kobject *k;
56 
57 	if (!node)
58 		return NULL;
59 
60 	spin_lock(&swnode_kset->list_lock);
61 
62 	list_for_each_entry(k, &swnode_kset->list, entry) {
63 		swnode = kobj_to_swnode(k);
64 		if (swnode->node == node)
65 			break;
66 		swnode = NULL;
67 	}
68 
69 	spin_unlock(&swnode_kset->list_lock);
70 
71 	return swnode;
72 }
73 
74 const struct software_node *to_software_node(const struct fwnode_handle *fwnode)
75 {
76 	const struct swnode *swnode = to_swnode(fwnode);
77 
78 	return swnode ? swnode->node : NULL;
79 }
80 EXPORT_SYMBOL_GPL(to_software_node);
81 
82 struct fwnode_handle *software_node_fwnode(const struct software_node *node)
83 {
84 	struct swnode *swnode = software_node_to_swnode(node);
85 
86 	return swnode ? &swnode->fwnode : NULL;
87 }
88 EXPORT_SYMBOL_GPL(software_node_fwnode);
89 
90 /* -------------------------------------------------------------------------- */
91 /* property_entry processing */
92 
93 static const struct property_entry *
94 property_entry_get(const struct property_entry *prop, const char *name)
95 {
96 	if (!prop)
97 		return NULL;
98 
99 	for (; prop->name; prop++)
100 		if (!strcmp(name, prop->name))
101 			return prop;
102 
103 	return NULL;
104 }
105 
106 static const void *property_get_pointer(const struct property_entry *prop)
107 {
108 	if (!prop->length)
109 		return NULL;
110 
111 	return prop->is_inline ? &prop->value : prop->pointer;
112 }
113 
114 static const void *property_entry_find(const struct property_entry *props,
115 				       const char *propname, size_t length)
116 {
117 	const struct property_entry *prop;
118 	const void *pointer;
119 
120 	prop = property_entry_get(props, propname);
121 	if (!prop)
122 		return ERR_PTR(-EINVAL);
123 	pointer = property_get_pointer(prop);
124 	if (!pointer)
125 		return ERR_PTR(-ENODATA);
126 	if (length > prop->length)
127 		return ERR_PTR(-EOVERFLOW);
128 	return pointer;
129 }
130 
131 static int
132 property_entry_count_elems_of_size(const struct property_entry *props,
133 				   const char *propname, size_t length)
134 {
135 	const struct property_entry *prop;
136 
137 	prop = property_entry_get(props, propname);
138 	if (!prop)
139 		return -EINVAL;
140 
141 	return prop->length / length;
142 }
143 
144 static int property_entry_read_int_array(const struct property_entry *props,
145 					 const char *name,
146 					 unsigned int elem_size, void *val,
147 					 size_t nval)
148 {
149 	const void *pointer;
150 	size_t length;
151 
152 	if (!val)
153 		return property_entry_count_elems_of_size(props, name,
154 							  elem_size);
155 
156 	if (!is_power_of_2(elem_size) || elem_size > sizeof(u64))
157 		return -ENXIO;
158 
159 	length = nval * elem_size;
160 
161 	pointer = property_entry_find(props, name, length);
162 	if (IS_ERR(pointer))
163 		return PTR_ERR(pointer);
164 
165 	memcpy(val, pointer, length);
166 	return 0;
167 }
168 
169 static int property_entry_read_string_array(const struct property_entry *props,
170 					    const char *propname,
171 					    const char **strings, size_t nval)
172 {
173 	const void *pointer;
174 	size_t length;
175 	int array_len;
176 
177 	/* Find out the array length. */
178 	array_len = property_entry_count_elems_of_size(props, propname,
179 						       sizeof(const char *));
180 	if (array_len < 0)
181 		return array_len;
182 
183 	/* Return how many there are if strings is NULL. */
184 	if (!strings)
185 		return array_len;
186 
187 	array_len = min_t(size_t, nval, array_len);
188 	length = array_len * sizeof(*strings);
189 
190 	pointer = property_entry_find(props, propname, length);
191 	if (IS_ERR(pointer))
192 		return PTR_ERR(pointer);
193 
194 	memcpy(strings, pointer, length);
195 
196 	return array_len;
197 }
198 
199 static void property_entry_free_data(const struct property_entry *p)
200 {
201 	const char * const *src_str;
202 	size_t i, nval;
203 
204 	if (p->type == DEV_PROP_STRING) {
205 		src_str = property_get_pointer(p);
206 		nval = p->length / sizeof(*src_str);
207 		for (i = 0; i < nval; i++)
208 			kfree(src_str[i]);
209 	}
210 
211 	if (!p->is_inline)
212 		kfree(p->pointer);
213 
214 	kfree(p->name);
215 }
216 
217 static bool property_copy_string_array(const char **dst_ptr,
218 				       const char * const *src_ptr,
219 				       size_t nval)
220 {
221 	int i;
222 
223 	for (i = 0; i < nval; i++) {
224 		dst_ptr[i] = kstrdup(src_ptr[i], GFP_KERNEL);
225 		if (!dst_ptr[i] && src_ptr[i]) {
226 			while (--i >= 0)
227 				kfree(dst_ptr[i]);
228 			return false;
229 		}
230 	}
231 
232 	return true;
233 }
234 
235 static int property_entry_copy_data(struct property_entry *dst,
236 				    const struct property_entry *src)
237 {
238 	const void *pointer = property_get_pointer(src);
239 	void *dst_ptr;
240 	size_t nval;
241 
242 	/*
243 	 * Properties with no data should not be marked as stored
244 	 * out of line.
245 	 */
246 	if (!src->is_inline && !src->length)
247 		return -ENODATA;
248 
249 	/*
250 	 * Reference properties are never stored inline as
251 	 * they are too big.
252 	 */
253 	if (src->type == DEV_PROP_REF && src->is_inline)
254 		return -EINVAL;
255 
256 	if (src->length <= sizeof(dst->value)) {
257 		dst_ptr = &dst->value;
258 		dst->is_inline = true;
259 	} else {
260 		dst_ptr = kmalloc(src->length, GFP_KERNEL);
261 		if (!dst_ptr)
262 			return -ENOMEM;
263 		dst->pointer = dst_ptr;
264 	}
265 
266 	if (src->type == DEV_PROP_STRING) {
267 		nval = src->length / sizeof(const char *);
268 		if (!property_copy_string_array(dst_ptr, pointer, nval)) {
269 			if (!dst->is_inline)
270 				kfree(dst->pointer);
271 			return -ENOMEM;
272 		}
273 	} else {
274 		memcpy(dst_ptr, pointer, src->length);
275 	}
276 
277 	dst->length = src->length;
278 	dst->type = src->type;
279 	dst->name = kstrdup(src->name, GFP_KERNEL);
280 	if (!dst->name) {
281 		property_entry_free_data(dst);
282 		return -ENOMEM;
283 	}
284 
285 	return 0;
286 }
287 
288 /**
289  * property_entries_dup - duplicate array of properties
290  * @properties: array of properties to copy
291  *
292  * This function creates a deep copy of the given NULL-terminated array
293  * of property entries.
294  */
295 struct property_entry *
296 property_entries_dup(const struct property_entry *properties)
297 {
298 	struct property_entry *p;
299 	int i, n = 0;
300 	int ret;
301 
302 	if (!properties)
303 		return NULL;
304 
305 	while (properties[n].name)
306 		n++;
307 
308 	p = kcalloc(n + 1, sizeof(*p), GFP_KERNEL);
309 	if (!p)
310 		return ERR_PTR(-ENOMEM);
311 
312 	for (i = 0; i < n; i++) {
313 		ret = property_entry_copy_data(&p[i], &properties[i]);
314 		if (ret) {
315 			while (--i >= 0)
316 				property_entry_free_data(&p[i]);
317 			kfree(p);
318 			return ERR_PTR(ret);
319 		}
320 	}
321 
322 	return p;
323 }
324 EXPORT_SYMBOL_GPL(property_entries_dup);
325 
326 /**
327  * property_entries_free - free previously allocated array of properties
328  * @properties: array of properties to destroy
329  *
330  * This function frees given NULL-terminated array of property entries,
331  * along with their data.
332  */
333 void property_entries_free(const struct property_entry *properties)
334 {
335 	const struct property_entry *p;
336 
337 	if (!properties)
338 		return;
339 
340 	for (p = properties; p->name; p++)
341 		property_entry_free_data(p);
342 
343 	kfree(properties);
344 }
345 EXPORT_SYMBOL_GPL(property_entries_free);
346 
347 /* -------------------------------------------------------------------------- */
348 /* fwnode operations */
349 
350 static struct fwnode_handle *software_node_get(struct fwnode_handle *fwnode)
351 {
352 	struct swnode *swnode = to_swnode(fwnode);
353 
354 	kobject_get(&swnode->kobj);
355 
356 	return &swnode->fwnode;
357 }
358 
359 static void software_node_put(struct fwnode_handle *fwnode)
360 {
361 	struct swnode *swnode = to_swnode(fwnode);
362 
363 	kobject_put(&swnode->kobj);
364 }
365 
366 static bool software_node_property_present(const struct fwnode_handle *fwnode,
367 					   const char *propname)
368 {
369 	struct swnode *swnode = to_swnode(fwnode);
370 
371 	return !!property_entry_get(swnode->node->properties, propname);
372 }
373 
374 static int software_node_read_int_array(const struct fwnode_handle *fwnode,
375 					const char *propname,
376 					unsigned int elem_size, void *val,
377 					size_t nval)
378 {
379 	struct swnode *swnode = to_swnode(fwnode);
380 
381 	return property_entry_read_int_array(swnode->node->properties, propname,
382 					     elem_size, val, nval);
383 }
384 
385 static int software_node_read_string_array(const struct fwnode_handle *fwnode,
386 					   const char *propname,
387 					   const char **val, size_t nval)
388 {
389 	struct swnode *swnode = to_swnode(fwnode);
390 
391 	return property_entry_read_string_array(swnode->node->properties,
392 						propname, val, nval);
393 }
394 
395 static const char *
396 software_node_get_name(const struct fwnode_handle *fwnode)
397 {
398 	const struct swnode *swnode = to_swnode(fwnode);
399 
400 	if (!swnode)
401 		return "(null)";
402 
403 	return kobject_name(&swnode->kobj);
404 }
405 
406 static const char *
407 software_node_get_name_prefix(const struct fwnode_handle *fwnode)
408 {
409 	struct fwnode_handle *parent;
410 	const char *prefix;
411 
412 	parent = fwnode_get_parent(fwnode);
413 	if (!parent)
414 		return "";
415 
416 	/* Figure out the prefix from the parents. */
417 	while (is_software_node(parent))
418 		parent = fwnode_get_next_parent(parent);
419 
420 	prefix = fwnode_get_name_prefix(parent);
421 	fwnode_handle_put(parent);
422 
423 	/* Guess something if prefix was NULL. */
424 	return prefix ?: "/";
425 }
426 
427 static struct fwnode_handle *
428 software_node_get_parent(const struct fwnode_handle *fwnode)
429 {
430 	struct swnode *swnode = to_swnode(fwnode);
431 
432 	if (!swnode || !swnode->parent)
433 		return NULL;
434 
435 	return fwnode_handle_get(&swnode->parent->fwnode);
436 }
437 
438 static struct fwnode_handle *
439 software_node_get_next_child(const struct fwnode_handle *fwnode,
440 			     struct fwnode_handle *child)
441 {
442 	struct swnode *p = to_swnode(fwnode);
443 	struct swnode *c = to_swnode(child);
444 
445 	if (!p || list_empty(&p->children) ||
446 	    (c && list_is_last(&c->entry, &p->children))) {
447 		fwnode_handle_put(child);
448 		return NULL;
449 	}
450 
451 	if (c)
452 		c = list_next_entry(c, entry);
453 	else
454 		c = list_first_entry(&p->children, struct swnode, entry);
455 
456 	fwnode_handle_put(child);
457 	return fwnode_handle_get(&c->fwnode);
458 }
459 
460 static struct fwnode_handle *
461 software_node_get_named_child_node(const struct fwnode_handle *fwnode,
462 				   const char *childname)
463 {
464 	struct swnode *swnode = to_swnode(fwnode);
465 	struct swnode *child;
466 
467 	if (!swnode || list_empty(&swnode->children))
468 		return NULL;
469 
470 	list_for_each_entry(child, &swnode->children, entry) {
471 		if (!strcmp(childname, kobject_name(&child->kobj))) {
472 			kobject_get(&child->kobj);
473 			return &child->fwnode;
474 		}
475 	}
476 	return NULL;
477 }
478 
479 static int
480 software_node_get_reference_args(const struct fwnode_handle *fwnode,
481 				 const char *propname, const char *nargs_prop,
482 				 unsigned int nargs, unsigned int index,
483 				 struct fwnode_reference_args *args)
484 {
485 	struct swnode *swnode = to_swnode(fwnode);
486 	const struct software_node_ref_args *ref_array;
487 	const struct software_node_ref_args *ref;
488 	const struct property_entry *prop;
489 	struct fwnode_handle *refnode;
490 	u32 nargs_prop_val;
491 	int error;
492 	int i;
493 
494 	if (!swnode)
495 		return -ENOENT;
496 
497 	prop = property_entry_get(swnode->node->properties, propname);
498 	if (!prop)
499 		return -ENOENT;
500 
501 	if (prop->type != DEV_PROP_REF)
502 		return -EINVAL;
503 
504 	/*
505 	 * We expect that references are never stored inline, even
506 	 * single ones, as they are too big.
507 	 */
508 	if (prop->is_inline)
509 		return -EINVAL;
510 
511 	if (index * sizeof(*ref) >= prop->length)
512 		return -ENOENT;
513 
514 	ref_array = prop->pointer;
515 	ref = &ref_array[index];
516 
517 	refnode = software_node_fwnode(ref->node);
518 	if (!refnode)
519 		return -ENOENT;
520 
521 	if (nargs_prop) {
522 		error = property_entry_read_int_array(swnode->node->properties,
523 						      nargs_prop, sizeof(u32),
524 						      &nargs_prop_val, 1);
525 		if (error)
526 			return error;
527 
528 		nargs = nargs_prop_val;
529 	}
530 
531 	if (nargs > NR_FWNODE_REFERENCE_ARGS)
532 		return -EINVAL;
533 
534 	args->fwnode = software_node_get(refnode);
535 	args->nargs = nargs;
536 
537 	for (i = 0; i < nargs; i++)
538 		args->args[i] = ref->args[i];
539 
540 	return 0;
541 }
542 
543 static struct fwnode_handle *
544 swnode_graph_find_next_port(const struct fwnode_handle *parent,
545 			    struct fwnode_handle *port)
546 {
547 	struct fwnode_handle *old = port;
548 
549 	while ((port = software_node_get_next_child(parent, old))) {
550 		/*
551 		 * fwnode ports have naming style "port@", so we search for any
552 		 * children that follow that convention.
553 		 */
554 		if (!strncmp(to_swnode(port)->node->name, "port@",
555 			     strlen("port@")))
556 			return port;
557 		old = port;
558 	}
559 
560 	return NULL;
561 }
562 
563 static struct fwnode_handle *
564 software_node_graph_get_next_endpoint(const struct fwnode_handle *fwnode,
565 				      struct fwnode_handle *endpoint)
566 {
567 	struct swnode *swnode = to_swnode(fwnode);
568 	struct fwnode_handle *parent;
569 	struct fwnode_handle *port;
570 
571 	if (!swnode)
572 		return NULL;
573 
574 	if (endpoint) {
575 		port = software_node_get_parent(endpoint);
576 		parent = software_node_get_parent(port);
577 	} else {
578 		parent = software_node_get_named_child_node(fwnode, "ports");
579 		if (!parent)
580 			parent = software_node_get(&swnode->fwnode);
581 
582 		port = swnode_graph_find_next_port(parent, NULL);
583 	}
584 
585 	for (; port; port = swnode_graph_find_next_port(parent, port)) {
586 		endpoint = software_node_get_next_child(port, endpoint);
587 		if (endpoint) {
588 			fwnode_handle_put(port);
589 			break;
590 		}
591 	}
592 
593 	fwnode_handle_put(parent);
594 
595 	return endpoint;
596 }
597 
598 static struct fwnode_handle *
599 software_node_graph_get_remote_endpoint(const struct fwnode_handle *fwnode)
600 {
601 	struct swnode *swnode = to_swnode(fwnode);
602 	const struct software_node_ref_args *ref;
603 	const struct property_entry *prop;
604 
605 	if (!swnode)
606 		return NULL;
607 
608 	prop = property_entry_get(swnode->node->properties, "remote-endpoint");
609 	if (!prop || prop->type != DEV_PROP_REF || prop->is_inline)
610 		return NULL;
611 
612 	ref = prop->pointer;
613 
614 	return software_node_get(software_node_fwnode(ref[0].node));
615 }
616 
617 static struct fwnode_handle *
618 software_node_graph_get_port_parent(struct fwnode_handle *fwnode)
619 {
620 	struct swnode *swnode = to_swnode(fwnode);
621 
622 	swnode = swnode->parent;
623 	if (swnode && !strcmp(swnode->node->name, "ports"))
624 		swnode = swnode->parent;
625 
626 	return swnode ? software_node_get(&swnode->fwnode) : NULL;
627 }
628 
629 static int
630 software_node_graph_parse_endpoint(const struct fwnode_handle *fwnode,
631 				   struct fwnode_endpoint *endpoint)
632 {
633 	struct swnode *swnode = to_swnode(fwnode);
634 	const char *parent_name = swnode->parent->node->name;
635 	int ret;
636 
637 	if (strlen("port@") >= strlen(parent_name) ||
638 	    strncmp(parent_name, "port@", strlen("port@")))
639 		return -EINVAL;
640 
641 	/* Ports have naming style "port@n", we need to select the n */
642 	ret = kstrtou32(parent_name + strlen("port@"), 10, &endpoint->port);
643 	if (ret)
644 		return ret;
645 
646 	endpoint->id = swnode->id;
647 	endpoint->local_fwnode = fwnode;
648 
649 	return 0;
650 }
651 
652 static const struct fwnode_operations software_node_ops = {
653 	.get = software_node_get,
654 	.put = software_node_put,
655 	.property_present = software_node_property_present,
656 	.property_read_int_array = software_node_read_int_array,
657 	.property_read_string_array = software_node_read_string_array,
658 	.get_name = software_node_get_name,
659 	.get_name_prefix = software_node_get_name_prefix,
660 	.get_parent = software_node_get_parent,
661 	.get_next_child_node = software_node_get_next_child,
662 	.get_named_child_node = software_node_get_named_child_node,
663 	.get_reference_args = software_node_get_reference_args,
664 	.graph_get_next_endpoint = software_node_graph_get_next_endpoint,
665 	.graph_get_remote_endpoint = software_node_graph_get_remote_endpoint,
666 	.graph_get_port_parent = software_node_graph_get_port_parent,
667 	.graph_parse_endpoint = software_node_graph_parse_endpoint,
668 };
669 
670 /* -------------------------------------------------------------------------- */
671 
672 /**
673  * software_node_find_by_name - Find software node by name
674  * @parent: Parent of the software node
675  * @name: Name of the software node
676  *
677  * The function will find a node that is child of @parent and that is named
678  * @name. If no node is found, the function returns NULL.
679  *
680  * NOTE: you will need to drop the reference with fwnode_handle_put() after use.
681  */
682 const struct software_node *
683 software_node_find_by_name(const struct software_node *parent, const char *name)
684 {
685 	struct swnode *swnode = NULL;
686 	struct kobject *k;
687 
688 	if (!name)
689 		return NULL;
690 
691 	spin_lock(&swnode_kset->list_lock);
692 
693 	list_for_each_entry(k, &swnode_kset->list, entry) {
694 		swnode = kobj_to_swnode(k);
695 		if (parent == swnode->node->parent && swnode->node->name &&
696 		    !strcmp(name, swnode->node->name)) {
697 			kobject_get(&swnode->kobj);
698 			break;
699 		}
700 		swnode = NULL;
701 	}
702 
703 	spin_unlock(&swnode_kset->list_lock);
704 
705 	return swnode ? swnode->node : NULL;
706 }
707 EXPORT_SYMBOL_GPL(software_node_find_by_name);
708 
709 static int
710 software_node_register_properties(struct software_node *node,
711 				  const struct property_entry *properties)
712 {
713 	struct property_entry *props;
714 
715 	props = property_entries_dup(properties);
716 	if (IS_ERR(props))
717 		return PTR_ERR(props);
718 
719 	node->properties = props;
720 
721 	return 0;
722 }
723 
724 static void software_node_release(struct kobject *kobj)
725 {
726 	struct swnode *swnode = kobj_to_swnode(kobj);
727 
728 	if (swnode->parent) {
729 		ida_simple_remove(&swnode->parent->child_ids, swnode->id);
730 		list_del(&swnode->entry);
731 	} else {
732 		ida_simple_remove(&swnode_root_ids, swnode->id);
733 	}
734 
735 	if (swnode->allocated) {
736 		property_entries_free(swnode->node->properties);
737 		kfree(swnode->node);
738 	}
739 	ida_destroy(&swnode->child_ids);
740 	kfree(swnode);
741 }
742 
743 static struct kobj_type software_node_type = {
744 	.release = software_node_release,
745 	.sysfs_ops = &kobj_sysfs_ops,
746 };
747 
748 static struct fwnode_handle *
749 swnode_register(const struct software_node *node, struct swnode *parent,
750 		unsigned int allocated)
751 {
752 	struct swnode *swnode;
753 	int ret;
754 
755 	swnode = kzalloc(sizeof(*swnode), GFP_KERNEL);
756 	if (!swnode) {
757 		ret = -ENOMEM;
758 		goto out_err;
759 	}
760 
761 	ret = ida_simple_get(parent ? &parent->child_ids : &swnode_root_ids,
762 			     0, 0, GFP_KERNEL);
763 	if (ret < 0) {
764 		kfree(swnode);
765 		goto out_err;
766 	}
767 
768 	swnode->id = ret;
769 	swnode->node = node;
770 	swnode->parent = parent;
771 	swnode->allocated = allocated;
772 	swnode->kobj.kset = swnode_kset;
773 	fwnode_init(&swnode->fwnode, &software_node_ops);
774 
775 	ida_init(&swnode->child_ids);
776 	INIT_LIST_HEAD(&swnode->entry);
777 	INIT_LIST_HEAD(&swnode->children);
778 
779 	if (node->name)
780 		ret = kobject_init_and_add(&swnode->kobj, &software_node_type,
781 					   parent ? &parent->kobj : NULL,
782 					   "%s", node->name);
783 	else
784 		ret = kobject_init_and_add(&swnode->kobj, &software_node_type,
785 					   parent ? &parent->kobj : NULL,
786 					   "node%d", swnode->id);
787 	if (ret) {
788 		kobject_put(&swnode->kobj);
789 		return ERR_PTR(ret);
790 	}
791 
792 	if (parent)
793 		list_add_tail(&swnode->entry, &parent->children);
794 
795 	kobject_uevent(&swnode->kobj, KOBJ_ADD);
796 	return &swnode->fwnode;
797 
798 out_err:
799 	if (allocated)
800 		property_entries_free(node->properties);
801 	return ERR_PTR(ret);
802 }
803 
804 /**
805  * software_node_register_nodes - Register an array of software nodes
806  * @nodes: Zero terminated array of software nodes to be registered
807  *
808  * Register multiple software nodes at once. If any node in the array
809  * has its .parent pointer set (which can only be to another software_node),
810  * then its parent **must** have been registered before it is; either outside
811  * of this function or by ordering the array such that parent comes before
812  * child.
813  */
814 int software_node_register_nodes(const struct software_node *nodes)
815 {
816 	int ret;
817 	int i;
818 
819 	for (i = 0; nodes[i].name; i++) {
820 		const struct software_node *parent = nodes[i].parent;
821 
822 		if (parent && !software_node_to_swnode(parent)) {
823 			ret = -EINVAL;
824 			goto err_unregister_nodes;
825 		}
826 
827 		ret = software_node_register(&nodes[i]);
828 		if (ret)
829 			goto err_unregister_nodes;
830 	}
831 
832 	return 0;
833 
834 err_unregister_nodes:
835 	software_node_unregister_nodes(nodes);
836 	return ret;
837 }
838 EXPORT_SYMBOL_GPL(software_node_register_nodes);
839 
840 /**
841  * software_node_unregister_nodes - Unregister an array of software nodes
842  * @nodes: Zero terminated array of software nodes to be unregistered
843  *
844  * Unregister multiple software nodes at once. If parent pointers are set up
845  * in any of the software nodes then the array **must** be ordered such that
846  * parents come before their children.
847  *
848  * NOTE: If you are uncertain whether the array is ordered such that
849  * parents will be unregistered before their children, it is wiser to
850  * remove the nodes individually, in the correct order (child before
851  * parent).
852  */
853 void software_node_unregister_nodes(const struct software_node *nodes)
854 {
855 	unsigned int i = 0;
856 
857 	while (nodes[i].name)
858 		i++;
859 
860 	while (i--)
861 		software_node_unregister(&nodes[i]);
862 }
863 EXPORT_SYMBOL_GPL(software_node_unregister_nodes);
864 
865 /**
866  * software_node_register_node_group - Register a group of software nodes
867  * @node_group: NULL terminated array of software node pointers to be registered
868  *
869  * Register multiple software nodes at once.
870  */
871 int software_node_register_node_group(const struct software_node **node_group)
872 {
873 	unsigned int i;
874 	int ret;
875 
876 	if (!node_group)
877 		return 0;
878 
879 	for (i = 0; node_group[i]; i++) {
880 		ret = software_node_register(node_group[i]);
881 		if (ret) {
882 			software_node_unregister_node_group(node_group);
883 			return ret;
884 		}
885 	}
886 
887 	return 0;
888 }
889 EXPORT_SYMBOL_GPL(software_node_register_node_group);
890 
891 /**
892  * software_node_unregister_node_group - Unregister a group of software nodes
893  * @node_group: NULL terminated array of software node pointers to be unregistered
894  *
895  * Unregister multiple software nodes at once. The array will be unwound in
896  * reverse order (i.e. last entry first) and thus if any members of the array are
897  * children of another member then the children must appear later in the list such
898  * that they are unregistered first.
899  */
900 void software_node_unregister_node_group(
901 		const struct software_node **node_group)
902 {
903 	unsigned int i = 0;
904 
905 	if (!node_group)
906 		return;
907 
908 	while (node_group[i])
909 		i++;
910 
911 	while (i--)
912 		software_node_unregister(node_group[i]);
913 }
914 EXPORT_SYMBOL_GPL(software_node_unregister_node_group);
915 
916 /**
917  * software_node_register - Register static software node
918  * @node: The software node to be registered
919  */
920 int software_node_register(const struct software_node *node)
921 {
922 	struct swnode *parent = software_node_to_swnode(node->parent);
923 
924 	if (software_node_to_swnode(node))
925 		return -EEXIST;
926 
927 	return PTR_ERR_OR_ZERO(swnode_register(node, parent, 0));
928 }
929 EXPORT_SYMBOL_GPL(software_node_register);
930 
931 /**
932  * software_node_unregister - Unregister static software node
933  * @node: The software node to be unregistered
934  */
935 void software_node_unregister(const struct software_node *node)
936 {
937 	struct swnode *swnode;
938 
939 	swnode = software_node_to_swnode(node);
940 	if (swnode)
941 		fwnode_remove_software_node(&swnode->fwnode);
942 }
943 EXPORT_SYMBOL_GPL(software_node_unregister);
944 
945 struct fwnode_handle *
946 fwnode_create_software_node(const struct property_entry *properties,
947 			    const struct fwnode_handle *parent)
948 {
949 	struct software_node *node;
950 	struct swnode *p = NULL;
951 	int ret;
952 
953 	if (parent) {
954 		if (IS_ERR(parent))
955 			return ERR_CAST(parent);
956 		if (!is_software_node(parent))
957 			return ERR_PTR(-EINVAL);
958 		p = to_swnode(parent);
959 	}
960 
961 	node = kzalloc(sizeof(*node), GFP_KERNEL);
962 	if (!node)
963 		return ERR_PTR(-ENOMEM);
964 
965 	ret = software_node_register_properties(node, properties);
966 	if (ret) {
967 		kfree(node);
968 		return ERR_PTR(ret);
969 	}
970 
971 	node->parent = p ? p->node : NULL;
972 
973 	return swnode_register(node, p, 1);
974 }
975 EXPORT_SYMBOL_GPL(fwnode_create_software_node);
976 
977 void fwnode_remove_software_node(struct fwnode_handle *fwnode)
978 {
979 	struct swnode *swnode = to_swnode(fwnode);
980 
981 	if (!swnode)
982 		return;
983 
984 	kobject_put(&swnode->kobj);
985 }
986 EXPORT_SYMBOL_GPL(fwnode_remove_software_node);
987 
988 int software_node_notify(struct device *dev, unsigned long action)
989 {
990 	struct fwnode_handle *fwnode = dev_fwnode(dev);
991 	struct swnode *swnode;
992 	int ret;
993 
994 	if (!fwnode)
995 		return 0;
996 
997 	if (!is_software_node(fwnode))
998 		fwnode = fwnode->secondary;
999 	if (!is_software_node(fwnode))
1000 		return 0;
1001 
1002 	swnode = to_swnode(fwnode);
1003 
1004 	switch (action) {
1005 	case KOBJ_ADD:
1006 		ret = sysfs_create_link(&dev->kobj, &swnode->kobj,
1007 					"software_node");
1008 		if (ret)
1009 			break;
1010 
1011 		ret = sysfs_create_link(&swnode->kobj, &dev->kobj,
1012 					dev_name(dev));
1013 		if (ret) {
1014 			sysfs_remove_link(&dev->kobj, "software_node");
1015 			break;
1016 		}
1017 		kobject_get(&swnode->kobj);
1018 		break;
1019 	case KOBJ_REMOVE:
1020 		sysfs_remove_link(&swnode->kobj, dev_name(dev));
1021 		sysfs_remove_link(&dev->kobj, "software_node");
1022 		kobject_put(&swnode->kobj);
1023 		break;
1024 	default:
1025 		break;
1026 	}
1027 
1028 	return 0;
1029 }
1030 
1031 static int __init software_node_init(void)
1032 {
1033 	swnode_kset = kset_create_and_add("software_nodes", NULL, kernel_kobj);
1034 	if (!swnode_kset)
1035 		return -ENOMEM;
1036 	return 0;
1037 }
1038 postcore_initcall(software_node_init);
1039 
1040 static void __exit software_node_exit(void)
1041 {
1042 	ida_destroy(&swnode_root_ids);
1043 	kset_unregister(swnode_kset);
1044 }
1045 __exitcall(software_node_exit);
1046