board-ape6evm-reference.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * APE6EVM board support
  3. *
  4. * Copyright (C) 2013 Renesas Solutions Corp.
  5. * Copyright (C) 2013 Magnus Damm
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/gpio.h>
  17. #include <linux/kernel.h>
  18. #include <linux/of_platform.h>
  19. #include <linux/pinctrl/machine.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/sh_clk.h>
  22. #include <asm/mach-types.h>
  23. #include <asm/mach/arch.h>
  24. #include "common.h"
  25. #include "r8a73a4.h"
  26. static void __init ape6evm_add_standard_devices(void)
  27. {
  28. struct clk *parent;
  29. struct clk *mp;
  30. r8a73a4_clock_init();
  31. /* MP clock parent = extal2 */
  32. parent = clk_get(NULL, "extal2");
  33. mp = clk_get(NULL, "mp");
  34. BUG_ON(IS_ERR(parent) || IS_ERR(mp));
  35. clk_set_parent(mp, parent);
  36. clk_put(parent);
  37. clk_put(mp);
  38. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  39. }
  40. static const char *ape6evm_boards_compat_dt[] __initdata = {
  41. "renesas,ape6evm-reference",
  42. NULL,
  43. };
  44. DT_MACHINE_START(APE6EVM_DT, "ape6evm")
  45. .init_early = shmobile_init_delay,
  46. .init_machine = ape6evm_add_standard_devices,
  47. .init_late = shmobile_init_late,
  48. .dt_compat = ape6evm_boards_compat_dt,
  49. MACHINE_END