diff options
author | Andres Salomon | 2010-11-17 07:09:52 +0100 |
---|---|---|
committer | H. Peter Anvin | 2010-12-16 02:11:30 +0100 |
commit | c10d1e260f7cb6766dc76b4e36ed8f4be53f195a (patch) | |
tree | bcbeb1e08d65cd24a4c471d0fe8345ada28a076e /arch/x86/platform/olpc/olpc_ofw.c | |
parent | x86, of: Define irq functions to allow drivers/of/* to build on x86 (diff) | |
download | kernel-qcow2-linux-c10d1e260f7cb6766dc76b4e36ed8f4be53f195a.tar.gz kernel-qcow2-linux-c10d1e260f7cb6766dc76b4e36ed8f4be53f195a.tar.xz kernel-qcow2-linux-c10d1e260f7cb6766dc76b4e36ed8f4be53f195a.zip |
x86, olpc: Add OLPC device-tree support
Make use of PROC_DEVICETREE to export the tree, and sparc's PROMTREE code to
call into OLPC's Open Firmware to build the tree.
v5: fix buglet with root node check (introduced in v4)
v4: address some minor style issues pointed out by Grant, and explicitly cast
negative phandle checks to s32.
v3: rename olpc_prom to olpc_dt
- rework Kconfig entries
- drop devtree build hook from proc, instead adding a call to x86's
paging_init (similarly to how sparc64 does it)
- switch allocation from using slab to alloc_bootmem. this allows
the DT to be built earlier during boot (during setup_arch); the
downside is that there are some 1200 bootmem reservations that are
done during boot. Not ideal..
- add a helper olpc_ofw_is_installed function to test for the
existence and successful detection of OLPC's OFW.
Signed-off-by: Andres Salomon <dilinger@queued.net>
LKML-Reference: <20101116220952.26526a80@queued.net>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/platform/olpc/olpc_ofw.c')
-rw-r--r-- | arch/x86/platform/olpc/olpc_ofw.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/platform/olpc/olpc_ofw.c b/arch/x86/platform/olpc/olpc_ofw.c index 787320464379..e7604f62870d 100644 --- a/arch/x86/platform/olpc/olpc_ofw.c +++ b/arch/x86/platform/olpc/olpc_ofw.c @@ -110,3 +110,8 @@ void __init olpc_ofw_detect(void) (unsigned long)olpc_ofw_cif, (-start) >> 20); reserve_top_address(-start); } + +bool __init olpc_ofw_is_installed(void) +{ + return olpc_ofw_cif != NULL; +} |