board-ape6evm.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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/gpio_keys.h>
  18. #include <linux/input.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/kernel.h>
  21. #include <linux/mfd/tmio.h>
  22. #include <linux/mmc/host.h>
  23. #include <linux/mmc/sh_mmcif.h>
  24. #include <linux/mmc/sh_mobile_sdhi.h>
  25. #include <linux/pinctrl/machine.h>
  26. #include <linux/platform_device.h>
  27. #include <linux/regulator/fixed.h>
  28. #include <linux/regulator/machine.h>
  29. #include <linux/sh_clk.h>
  30. #include <linux/smsc911x.h>
  31. #include <asm/mach-types.h>
  32. #include <asm/mach/arch.h>
  33. #include "common.h"
  34. #include "irqs.h"
  35. #include "r8a73a4.h"
  36. /* LEDS */
  37. static struct gpio_led ape6evm_leds[] = {
  38. {
  39. .name = "gnss-en",
  40. .gpio = 28,
  41. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  42. }, {
  43. .name = "nfc-nrst",
  44. .gpio = 126,
  45. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  46. }, {
  47. .name = "gnss-nrst",
  48. .gpio = 132,
  49. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  50. }, {
  51. .name = "bt-wakeup",
  52. .gpio = 232,
  53. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  54. }, {
  55. .name = "strobe",
  56. .gpio = 250,
  57. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  58. }, {
  59. .name = "bbresetout",
  60. .gpio = 288,
  61. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  62. },
  63. };
  64. static __initdata struct gpio_led_platform_data ape6evm_leds_pdata = {
  65. .leds = ape6evm_leds,
  66. .num_leds = ARRAY_SIZE(ape6evm_leds),
  67. };
  68. /* GPIO KEY */
  69. #define GPIO_KEY(c, g, d, ...) \
  70. { .code = c, .gpio = g, .desc = d, .active_low = 1 }
  71. static struct gpio_keys_button gpio_buttons[] = {
  72. GPIO_KEY(KEY_0, 324, "S16"),
  73. GPIO_KEY(KEY_MENU, 325, "S17"),
  74. GPIO_KEY(KEY_HOME, 326, "S18"),
  75. GPIO_KEY(KEY_BACK, 327, "S19"),
  76. GPIO_KEY(KEY_VOLUMEUP, 328, "S20"),
  77. GPIO_KEY(KEY_VOLUMEDOWN, 329, "S21"),
  78. };
  79. static struct gpio_keys_platform_data ape6evm_keys_pdata __initdata = {
  80. .buttons = gpio_buttons,
  81. .nbuttons = ARRAY_SIZE(gpio_buttons),
  82. };
  83. /* Dummy supplies, where voltage doesn't matter */
  84. static struct regulator_consumer_supply dummy_supplies[] = {
  85. REGULATOR_SUPPLY("vddvario", "smsc911x"),
  86. REGULATOR_SUPPLY("vdd33a", "smsc911x"),
  87. };
  88. /* SMSC LAN9220 */
  89. static const struct resource lan9220_res[] __initconst = {
  90. DEFINE_RES_MEM(0x08000000, 0x1000),
  91. {
  92. .start = irq_pin(40), /* IRQ40 */
  93. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
  94. },
  95. };
  96. static const struct smsc911x_platform_config lan9220_data __initconst = {
  97. .flags = SMSC911X_USE_32BIT,
  98. .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
  99. .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH,
  100. };
  101. /*
  102. * MMC0 power supplies:
  103. * Both Vcc and VccQ to eMMC on APE6EVM are supplied by a tps80032 voltage
  104. * regulator. Until support for it is added to this file we simulate the
  105. * Vcc supply by a fixed always-on regulator
  106. */
  107. static struct regulator_consumer_supply vcc_mmc0_consumers[] =
  108. {
  109. REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
  110. };
  111. /*
  112. * SDHI0 power supplies:
  113. * Vcc to SDHI0 on APE6EVM is supplied by a GPIO-switchable regulator. VccQ is
  114. * provided by the same tps80032 regulator as both MMC0 voltages - see comment
  115. * above
  116. */
  117. static struct regulator_consumer_supply vcc_sdhi0_consumers[] =
  118. {
  119. REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
  120. };
  121. static struct regulator_init_data vcc_sdhi0_init_data = {
  122. .constraints = {
  123. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  124. },
  125. .num_consumer_supplies = ARRAY_SIZE(vcc_sdhi0_consumers),
  126. .consumer_supplies = vcc_sdhi0_consumers,
  127. };
  128. static const struct fixed_voltage_config vcc_sdhi0_info __initconst = {
  129. .supply_name = "SDHI0 Vcc",
  130. .microvolts = 3300000,
  131. .gpio = 76,
  132. .enable_high = 1,
  133. .init_data = &vcc_sdhi0_init_data,
  134. };
  135. /*
  136. * SDHI1 power supplies:
  137. * Vcc and VccQ to SDHI1 on APE6EVM are both fixed at 3.3V
  138. */
  139. static struct regulator_consumer_supply vcc_sdhi1_consumers[] =
  140. {
  141. REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
  142. };
  143. /* MMCIF */
  144. static const struct sh_mmcif_plat_data mmcif0_pdata __initconst = {
  145. .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
  146. .slave_id_tx = SHDMA_SLAVE_MMCIF0_TX,
  147. .slave_id_rx = SHDMA_SLAVE_MMCIF0_RX,
  148. .ccs_unsupported = true,
  149. };
  150. static const struct resource mmcif0_resources[] __initconst = {
  151. DEFINE_RES_MEM(0xee200000, 0x100),
  152. DEFINE_RES_IRQ(gic_spi(169)),
  153. };
  154. /* SDHI0 */
  155. static const struct sh_mobile_sdhi_info sdhi0_pdata __initconst = {
  156. .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_WRPROTECT_DISABLE,
  157. .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ,
  158. };
  159. static const struct resource sdhi0_resources[] __initconst = {
  160. DEFINE_RES_MEM(0xee100000, 0x100),
  161. DEFINE_RES_IRQ(gic_spi(165)),
  162. };
  163. /* SDHI1 */
  164. static const struct sh_mobile_sdhi_info sdhi1_pdata __initconst = {
  165. .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_WRPROTECT_DISABLE,
  166. .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
  167. MMC_CAP_NEEDS_POLL,
  168. };
  169. static const struct resource sdhi1_resources[] __initconst = {
  170. DEFINE_RES_MEM(0xee120000, 0x100),
  171. DEFINE_RES_IRQ(gic_spi(166)),
  172. };
  173. static const struct pinctrl_map ape6evm_pinctrl_map[] __initconst = {
  174. /* SCIFA0 console */
  175. PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.0", "pfc-r8a73a4",
  176. "scifa0_data", "scifa0"),
  177. /* SMSC */
  178. PIN_MAP_MUX_GROUP_DEFAULT("smsc911x", "pfc-r8a73a4",
  179. "irqc_irq40", "irqc"),
  180. /* MMCIF0 */
  181. PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-r8a73a4",
  182. "mmc0_data8", "mmc0"),
  183. PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-r8a73a4",
  184. "mmc0_ctrl", "mmc0"),
  185. /* SDHI0: uSD: no WP */
  186. PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-r8a73a4",
  187. "sdhi0_data4", "sdhi0"),
  188. PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-r8a73a4",
  189. "sdhi0_ctrl", "sdhi0"),
  190. PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-r8a73a4",
  191. "sdhi0_cd", "sdhi0"),
  192. /* SDHI1 */
  193. PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.1", "pfc-r8a73a4",
  194. "sdhi1_data4", "sdhi1"),
  195. PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.1", "pfc-r8a73a4",
  196. "sdhi1_ctrl", "sdhi1"),
  197. };
  198. static void __init ape6evm_add_standard_devices(void)
  199. {
  200. struct clk *parent;
  201. struct clk *mp;
  202. r8a73a4_clock_init();
  203. /* MP clock parent = extal2 */
  204. parent = clk_get(NULL, "extal2");
  205. mp = clk_get(NULL, "mp");
  206. BUG_ON(IS_ERR(parent) || IS_ERR(mp));
  207. clk_set_parent(mp, parent);
  208. clk_put(parent);
  209. clk_put(mp);
  210. pinctrl_register_mappings(ape6evm_pinctrl_map,
  211. ARRAY_SIZE(ape6evm_pinctrl_map));
  212. r8a73a4_pinmux_init();
  213. r8a73a4_add_standard_devices();
  214. /* LAN9220 ethernet */
  215. gpio_request_one(270, GPIOF_OUT_INIT_HIGH, NULL); /* smsc9220 RESET */
  216. regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
  217. platform_device_register_resndata(NULL, "smsc911x", -1,
  218. lan9220_res, ARRAY_SIZE(lan9220_res),
  219. &lan9220_data, sizeof(lan9220_data));
  220. regulator_register_always_on(1, "MMC0 Vcc", vcc_mmc0_consumers,
  221. ARRAY_SIZE(vcc_mmc0_consumers), 2800000);
  222. platform_device_register_resndata(NULL, "sh_mmcif", 0,
  223. mmcif0_resources, ARRAY_SIZE(mmcif0_resources),
  224. &mmcif0_pdata, sizeof(mmcif0_pdata));
  225. platform_device_register_data(NULL, "reg-fixed-voltage", 2,
  226. &vcc_sdhi0_info, sizeof(vcc_sdhi0_info));
  227. platform_device_register_resndata(NULL, "sh_mobile_sdhi", 0,
  228. sdhi0_resources, ARRAY_SIZE(sdhi0_resources),
  229. &sdhi0_pdata, sizeof(sdhi0_pdata));
  230. regulator_register_always_on(3, "SDHI1 Vcc", vcc_sdhi1_consumers,
  231. ARRAY_SIZE(vcc_sdhi1_consumers), 3300000);
  232. platform_device_register_resndata(NULL, "sh_mobile_sdhi", 1,
  233. sdhi1_resources, ARRAY_SIZE(sdhi1_resources),
  234. &sdhi1_pdata, sizeof(sdhi1_pdata));
  235. platform_device_register_data(NULL, "gpio-keys", -1,
  236. &ape6evm_keys_pdata,
  237. sizeof(ape6evm_keys_pdata));
  238. platform_device_register_data(NULL, "leds-gpio", -1,
  239. &ape6evm_leds_pdata,
  240. sizeof(ape6evm_leds_pdata));
  241. }
  242. static const char *ape6evm_boards_compat_dt[] __initdata = {
  243. "renesas,ape6evm",
  244. NULL,
  245. };
  246. DT_MACHINE_START(APE6EVM_DT, "ape6evm")
  247. .init_early = shmobile_init_delay,
  248. .init_machine = ape6evm_add_standard_devices,
  249. .init_late = shmobile_init_late,
  250. .dt_compat = ape6evm_boards_compat_dt,
  251. MACHINE_END