1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* prom_common.c: OF device tree support common code.
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
10 * Adapted for sparc by David S. Miller davem@davemloft.net
13 #include <linux/kernel.h>
14 #include <linux/export.h>
15 #include <linux/errno.h>
16 #include <linux/mutex.h>
17 #include <linux/slab.h>
19 #include <linux/of_pdt.h>
21 #include <asm/oplib.h>
25 struct device_node
*of_console_device
;
26 EXPORT_SYMBOL(of_console_device
);
28 char *of_console_path
;
29 EXPORT_SYMBOL(of_console_path
);
31 char *of_console_options
;
32 EXPORT_SYMBOL(of_console_options
);
34 int of_getintprop_default(struct device_node
*np
, const char *name
, int def
)
36 struct property
*prop
;
39 prop
= of_find_property(np
, name
, &len
);
40 if (!prop
|| len
!= 4)
43 return *(int *) prop
->value
;
45 EXPORT_SYMBOL(of_getintprop_default
);
47 DEFINE_MUTEX(of_set_property_mutex
);
48 EXPORT_SYMBOL(of_set_property_mutex
);
50 int of_set_property(struct device_node
*dp
, const char *name
, void *val
, int len
)
52 struct property
**prevp
;
57 new_val
= kmemdup(val
, len
, GFP_KERNEL
);
63 mutex_lock(&of_set_property_mutex
);
64 raw_spin_lock_irqsave(&devtree_lock
, flags
);
65 prevp
= &dp
->properties
;
67 struct property
*prop
= *prevp
;
69 if (!strcasecmp(prop
->name
, name
)) {
70 void *old_val
= prop
->value
;
73 ret
= prom_setprop(dp
->phandle
, name
, val
, len
);
77 prop
->value
= new_val
;
80 if (OF_IS_DYNAMIC(prop
))
83 OF_MARK_DYNAMIC(prop
);
89 prevp
= &(*prevp
)->next
;
91 raw_spin_unlock_irqrestore(&devtree_lock
, flags
);
92 mutex_unlock(&of_set_property_mutex
);
94 /* XXX Upate procfs if necessary... */
98 EXPORT_SYMBOL(of_set_property
);
100 int of_find_in_proplist(const char *list
, const char *match
, int len
)
105 if (!strcmp(list
, match
))
107 l
= strlen(list
) + 1;
113 EXPORT_SYMBOL(of_find_in_proplist
);
116 * SPARC32 and SPARC64's prom_nextprop() do things differently
117 * here, despite sharing the same interface. SPARC32 doesn't fill in 'buf',
118 * returning NULL on an error. SPARC64 fills in 'buf', but sets it to an
119 * empty string upon error.
121 static int __init
handle_nextprop_quirks(char *buf
, const char *name
)
123 if (!name
|| strlen(name
) == 0)
126 #ifdef CONFIG_SPARC32
132 static int __init
prom_common_nextprop(phandle node
, char *prev
, char *buf
)
137 name
= prom_nextprop(node
, prev
, buf
);
138 return handle_nextprop_quirks(buf
, name
);
141 unsigned int prom_early_allocated __initdata
;
143 static struct of_pdt_ops prom_sparc_ops __initdata
= {
144 .nextprop
= prom_common_nextprop
,
145 .getproplen
= prom_getproplen
,
146 .getproperty
= prom_getproperty
,
147 .getchild
= prom_getchild
,
148 .getsibling
= prom_getsibling
,
151 void __init
prom_build_devicetree(void)
153 of_pdt_build_devicetree(prom_root_node
, &prom_sparc_ops
);
156 pr_info("PROM: Built device tree with %u bytes of memory.\n",
157 prom_early_allocated
);