prom.c 671 B

123456789101112131415161718192021222324252627
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * OpenRISC prom.c
  4. *
  5. * Linux architectural port borrowing liberally from similar works of
  6. * others. All original copyrights apply as per the original source
  7. * declaration.
  8. *
  9. * Modifications for the OpenRISC architecture:
  10. * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
  11. *
  12. * Architecture specific procedures for creating, accessing and
  13. * interpreting the device tree.
  14. */
  15. #include <linux/init.h>
  16. #include <linux/types.h>
  17. #include <linux/memblock.h>
  18. #include <linux/of_fdt.h>
  19. #include <asm/page.h>
  20. void __init early_init_devtree(void *params)
  21. {
  22. early_init_dt_scan(params);
  23. memblock_allow_resize();
  24. }