board-ape6evm-reference.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <linux/gpio.h>
  21. #include <linux/kernel.h>
  22. #include <linux/of_platform.h>
  23. #include <linux/pinctrl/machine.h>
  24. #include <linux/sh_clk.h>
  25. #include <mach/common.h>
  26. #include <mach/r8a73a4.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/mach/arch.h>
  29. static const struct pinctrl_map ape6evm_pinctrl_map[] = {
  30. /* SCIFA0 console */
  31. PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.0", "pfc-r8a73a4",
  32. "scifa0_data", "scifa0"),
  33. };
  34. static void __init ape6evm_add_standard_devices(void)
  35. {
  36. struct clk *parent;
  37. struct clk *mp;
  38. r8a73a4_clock_init();
  39. /* MP clock parent = extal2 */
  40. parent = clk_get(NULL, "extal2");
  41. mp = clk_get(NULL, "mp");
  42. BUG_ON(IS_ERR(parent) || IS_ERR(mp));
  43. clk_set_parent(mp, parent);
  44. clk_put(parent);
  45. clk_put(mp);
  46. pinctrl_register_mappings(ape6evm_pinctrl_map,
  47. ARRAY_SIZE(ape6evm_pinctrl_map));
  48. r8a73a4_pinmux_init();
  49. r8a73a4_add_dt_devices();
  50. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  51. }
  52. static const char *ape6evm_boards_compat_dt[] __initdata = {
  53. "renesas,ape6evm-reference",
  54. NULL,
  55. };
  56. DT_MACHINE_START(APE6EVM_DT, "ape6evm")
  57. .init_early = r8a73a4_init_delay,
  58. .init_time = shmobile_timer_init,
  59. .init_machine = ape6evm_add_standard_devices,
  60. .dt_compat = ape6evm_boards_compat_dt,
  61. MACHINE_END