board-kzm9g-reference.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * KZM-A9-GT board support - Reference Device Tree Implementation
  3. *
  4. * Copyright (C) 2012 Horms Solutions Ltd.
  5. *
  6. * Based on board-kzm9g.c
  7. * Copyright (C) 2012 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; version 2 of the License.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include <linux/delay.h>
  23. #include <linux/gpio.h>
  24. #include <linux/io.h>
  25. #include <linux/irq.h>
  26. #include <linux/irqchip.h>
  27. #include <linux/input.h>
  28. #include <linux/of_platform.h>
  29. #include <linux/pinctrl/machine.h>
  30. #include <linux/pinctrl/pinconf-generic.h>
  31. #include <mach/sh73a0.h>
  32. #include <mach/common.h>
  33. #include <asm/hardware/cache-l2x0.h>
  34. #include <asm/mach-types.h>
  35. #include <asm/mach/arch.h>
  36. static unsigned long pin_pullup_conf[] = {
  37. PIN_CONF_PACKED(PIN_CONFIG_BIAS_PULL_UP, 0),
  38. };
  39. static const struct pinctrl_map kzm_pinctrl_map[] = {
  40. PIN_MAP_MUX_GROUP_DEFAULT("e6826000.i2c", "pfc-sh73a0",
  41. "i2c3_1", "i2c3"),
  42. /* MMCIF */
  43. PIN_MAP_MUX_GROUP_DEFAULT("e6bd0000.mmcif", "pfc-sh73a0",
  44. "mmc0_data8_0", "mmc0"),
  45. PIN_MAP_MUX_GROUP_DEFAULT("e6bd0000.mmcif", "pfc-sh73a0",
  46. "mmc0_ctrl_0", "mmc0"),
  47. PIN_MAP_CONFIGS_PIN_DEFAULT("e6bd0000.mmcif", "pfc-sh73a0",
  48. "PORT279", pin_pullup_conf),
  49. PIN_MAP_CONFIGS_GROUP_DEFAULT("e6bd0000.mmcif", "pfc-sh73a0",
  50. "mmc0_data8_0", pin_pullup_conf),
  51. /* SCIFA4 */
  52. PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.4", "pfc-sh73a0",
  53. "scifa4_data", "scifa4"),
  54. PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.4", "pfc-sh73a0",
  55. "scifa4_ctrl", "scifa4"),
  56. /* SDHI0 */
  57. PIN_MAP_MUX_GROUP_DEFAULT("ee100000.sdhi", "pfc-sh73a0",
  58. "sdhi0_data4", "sdhi0"),
  59. PIN_MAP_MUX_GROUP_DEFAULT("ee100000.sdhi", "pfc-sh73a0",
  60. "sdhi0_ctrl", "sdhi0"),
  61. PIN_MAP_MUX_GROUP_DEFAULT("ee100000.sdhi", "pfc-sh73a0",
  62. "sdhi0_cd", "sdhi0"),
  63. PIN_MAP_MUX_GROUP_DEFAULT("ee100000.sdhi", "pfc-sh73a0",
  64. "sdhi0_wp", "sdhi0"),
  65. /* SDHI2 */
  66. PIN_MAP_MUX_GROUP_DEFAULT("ee140000.sdhi", "pfc-sh73a0",
  67. "sdhi2_data4", "sdhi2"),
  68. PIN_MAP_MUX_GROUP_DEFAULT("ee140000.sdhi", "pfc-sh73a0",
  69. "sdhi2_ctrl", "sdhi2"),
  70. };
  71. static void __init kzm_init(void)
  72. {
  73. sh73a0_add_standard_devices_dt();
  74. pinctrl_register_mappings(kzm_pinctrl_map, ARRAY_SIZE(kzm_pinctrl_map));
  75. sh73a0_pinmux_init();
  76. /* enable SD */
  77. gpio_request_one(15, GPIOF_OUT_INIT_HIGH, NULL); /* power */
  78. gpio_request_one(14, GPIOF_OUT_INIT_HIGH, NULL); /* power */
  79. #ifdef CONFIG_CACHE_L2X0
  80. /* Early BRESP enable, Shared attribute override enable, 64K*8way */
  81. l2x0_init(IOMEM(0xf0100000), 0x40460000, 0x82000fff);
  82. #endif
  83. }
  84. static const char *kzm9g_boards_compat_dt[] __initdata = {
  85. "renesas,kzm9g-reference",
  86. NULL,
  87. };
  88. DT_MACHINE_START(KZM9G_DT, "kzm9g-reference")
  89. .smp = smp_ops(sh73a0_smp_ops),
  90. .map_io = sh73a0_map_io,
  91. .init_early = sh73a0_init_delay,
  92. .nr_irqs = NR_IRQS_LEGACY,
  93. .init_irq = irqchip_init,
  94. .init_machine = kzm_init,
  95. .init_time = shmobile_timer_init,
  96. .dt_compat = kzm9g_boards_compat_dt,
  97. MACHINE_END