of_pdt.h 721 B

123456789101112131415161718192021222324
  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. #ifndef _LINUX_OF_PDT_H
  13. #define _LINUX_OF_PDT_H
  14. extern void *prom_early_alloc(unsigned long size);
  15. /* for building the device tree */
  16. extern void of_pdt_build_devicetree(phandle root_node);
  17. extern void (*prom_build_more)(struct device_node *dp,
  18. struct device_node ***nextp);
  19. #endif /* _LINUX_OF_PDT_H */