board-ape6evm.c 7.5 KB

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