Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame^] | 1 | /* |
| 2 | * Definitions for building a device tree by calling into the |
| 3 | * Open Firmware PROM. |
| 4 | * |
| 5 | * Copyright (C) 2010 Andres Salomon <dilinger@queued.net> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #ifndef _LINUX_OF_PDT_H |
| 14 | #define _LINUX_OF_PDT_H |
| 15 | |
| 16 | extern void *prom_early_alloc(unsigned long size); |
| 17 | |
| 18 | /* for building the device tree */ |
| 19 | extern void of_pdt_build_devicetree(phandle root_node); |
| 20 | |
| 21 | extern void (*prom_build_more)(struct device_node *dp, |
| 22 | struct device_node ***nextp); |
| 23 | |
| 24 | #endif /* _LINUX_OF_PDT_H */ |