aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2010-02-01 23:34:15 -0500
committerGrant Likely <grant.likely@secretlab.ca>2010-02-09 10:34:10 -0500
commit04b954a673dd02f585a2769c4945a43880faa989 (patch)
treea786421a31b92b9496bcf8937ce4e4ee592c8955 /drivers/of
parent087f79c48c090a2c0cd9ee45231d63290d2036d2 (diff)
of/flattree: Make the kernel accept ePAPR style phandle information
Currently when processing flattened device trees, the kernel expects the phandle in a property called "linux,phandle". The ePAPR spec - not being Linux specific - instead requires phandles to be encoded in a property named simply "phandle". This patch makes the kernel accept either form when unflattening the device tree. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/fdt.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
index 18d282fefe58..b51f797d9d9d 100644
--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -310,10 +310,19 @@ unsigned long __init unflatten_dt_node(unsigned long mem,
310 pp = unflatten_dt_alloc(&mem, sizeof(struct property), 310 pp = unflatten_dt_alloc(&mem, sizeof(struct property),
311 __alignof__(struct property)); 311 __alignof__(struct property));
312 if (allnextpp) { 312 if (allnextpp) {
313 if (strcmp(pname, "linux,phandle") == 0) { 313 /* We accept flattened tree phandles either in
314 * ePAPR-style "phandle" properties, or the
315 * legacy "linux,phandle" properties. If both
316 * appear and have different values, things
317 * will get weird. Don't do that. */
318 if ((strcmp(pname, "phandle") == 0) ||
319 (strcmp(pname, "linux,phandle") == 0)) {
314 if (np->phandle == 0) 320 if (np->phandle == 0)
315 np->phandle = *((u32 *)*p); 321 np->phandle = *((u32 *)*p);
316 } 322 }
323 /* And we process the "ibm,phandle" property
324 * used in pSeries dynamic device tree
325 * stuff */
317 if (strcmp(pname, "ibm,phandle") == 0) 326 if (strcmp(pname, "ibm,phandle") == 0)
318 np->phandle = *((u32 *)*p); 327 np->phandle = *((u32 *)*p);
319 pp->name = pname; 328 pp->name = pname;