devtree.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * Based on reduced version of METAG
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/init.h>
  11. #include <linux/reboot.h>
  12. #include <linux/memblock.h>
  13. #include <linux/of.h>
  14. #include <linux/of_fdt.h>
  15. #include <asm/clk.h>
  16. #include <asm/mach_desc.h>
  17. static const void * __init arch_get_next_mach(const char *const **match)
  18. {
  19. static const struct machine_desc *mdesc = __arch_info_begin;
  20. const struct machine_desc *m = mdesc;
  21. if (m >= __arch_info_end)
  22. return NULL;
  23. mdesc++;
  24. *match = m->dt_compat;
  25. return m;
  26. }
  27. /**
  28. * setup_machine_fdt - Machine setup when an dtb was passed to the kernel
  29. * @dt: virtual address pointer to dt blob
  30. *
  31. * If a dtb was passed to the kernel, then use it to choose the correct
  32. * machine_desc and to setup the system.
  33. */
  34. const struct machine_desc * __init setup_machine_fdt(void *dt)
  35. {
  36. const struct machine_desc *mdesc;
  37. unsigned long dt_root;
  38. void *clk;
  39. unsigned long len;
  40. if (!early_init_dt_scan(dt))
  41. return NULL;
  42. mdesc = of_flat_dt_match_machine(NULL, arch_get_next_mach);
  43. if (!mdesc)
  44. machine_halt();
  45. dt_root = of_get_flat_dt_root();
  46. clk = of_get_flat_dt_prop(dt_root, "clock-frequency", &len);
  47. if (clk)
  48. arc_set_core_freq(of_read_ulong(clk, len/4));
  49. return mdesc;
  50. }