static phandle __init olpc_dt_getsibling(phandle node) { const void *args[] = { (void *)node }; void *res[] = { &node }; if ((s32)node == -1) return 0; if (olpc_ofw("peer", args, res) || (s32)node == -1) return 0; return node; }
static int __init olpc_dt_interpret(const char *words) { int result; const void *args[] = { words }; void *res[] = { &result }; if (olpc_ofw("interpret", args, res)) { pr_err("olpc_dt: interpret failed!\n"); return -1; } return result; }
static void __init platform_detect(void) { size_t propsize; __be32 rev; const void *args[] = { NULL, "board-revision-int", &rev, (void *)4 }; void *res[] = { &propsize }; if (olpc_ofw("getprop", args, res) || propsize != 4) { printk(KERN_ERR "ofw: getprop call failed!\n"); rev = cpu_to_be32(0); } olpc_platform_info.boardrev = be32_to_cpu(rev); }
static int __init olpc_dt_pkg2path(phandle node, char *buf, const int buflen, int *len) { const void *args[] = { (void *)node, buf, (void *)buflen }; void *res[] = { len }; if ((s32)node == -1) return -1; if (olpc_ofw("package-to-path", args, res) || *len < 1) return -1; return 0; }
static phandle __init olpc_dt_getchild(phandle node) { const void *args[] = { (void *)node }; void *res[] = { &node }; if ((s32)node == -1) return 0; if (olpc_ofw("child", args, res) || (s32)node == -1) { pr_err("PROM: %s: fetching child failed!\n", __func__); return 0; } return node; }
static int __init olpc_dt_nextprop(phandle node, char *prev, char *buf) { const void *args[] = { (void *)node, prev, buf }; int success; void *res[] = { &success }; buf[0] = '\0'; if ((s32)node == -1) return -1; if (olpc_ofw("nextprop", args, res) || success != 1) return -1; return 0; }
static int __init olpc_dt_getproplen(phandle node, const char *prop) { const void *args[] = { (void *)node, prop }; int len; void *res[] = { &len }; if ((s32)node == -1) return -1; if (olpc_ofw("getproplen", args, res)) { pr_err("PROM: %s: getproplen failed!\n", __func__); return -1; } return len; }
static phandle __init olpc_dt_finddevice(const char *path) { phandle node; const void *args[] = { path }; void *res[] = { &node }; if (olpc_ofw("finddevice", args, res)) { pr_err("olpc_dt: finddevice failed!\n"); return 0; } if ((s32) node == -1) return 0; return node; }
static int __init olpc_dt_getproperty(phandle node, const char *prop, char *buf, int bufsize) { int plen; plen = olpc_dt_getproplen(node, prop); if (plen > bufsize || plen < 1) { return -1; } else { const void *args[] = { (void *)node, prop, buf, (void *)plen }; void *res[] = { &plen }; if (olpc_ofw("getprop", args, res)) { pr_err("PROM: %s: getprop failed!\n", __func__); return -1; } } return plen; }