board-ape6evm.c 8.8 KB

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