blob: c0a8774e45d05ffa8d927e22cd0ae1a61eaf180b [file] [log] [blame]
Andres Salomon3cfc5352010-10-10 21:42:33 -06001/*
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
16extern void *prom_early_alloc(unsigned long size);
17
18/* for building the device tree */
19extern void of_pdt_build_devicetree(phandle root_node);
20
21extern void (*prom_build_more)(struct device_node *dp,
22 struct device_node ***nextp);
23
24#endif /* _LINUX_OF_PDT_H */