board-ape6evm.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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/interrupt.h>
  22. #include <linux/kernel.h>
  23. #include <linux/mmc/host.h>
  24. #include <linux/mmc/sh_mmcif.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 <mach/common.h>
  32. #include <mach/irqs.h>
  33. #include <mach/r8a73a4.h>
  34. #include <asm/mach-types.h>
  35. #include <asm/mach/arch.h>
  36. /* Dummy supplies, where voltage doesn't matter */
  37. static struct regulator_consumer_supply dummy_supplies[] = {
  38. REGULATOR_SUPPLY("vddvario", "smsc911x"),
  39. REGULATOR_SUPPLY("vdd33a", "smsc911x"),
  40. };
  41. /* SMSC LAN9220 */
  42. static const struct resource lan9220_res[] = {
  43. DEFINE_RES_MEM(0x08000000, 0x1000),
  44. {
  45. .start = irq_pin(40), /* IRQ40 */
  46. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
  47. },
  48. };
  49. static const struct smsc911x_platform_config lan9220_data = {
  50. .flags = SMSC911X_USE_32BIT,
  51. .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
  52. .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH,
  53. };
  54. /*
  55. * On APE6EVM power is supplied to MMCIF by a tps80032 regulator. For now we
  56. * model a VDD supply to MMCIF, using a fixed 3.3V regulator.
  57. */
  58. static struct regulator_consumer_supply fixed3v3_power_consumers[] =
  59. {
  60. REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
  61. };
  62. /* MMCIF */
  63. static struct sh_mmcif_plat_data mmcif0_pdata = {
  64. .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
  65. };
  66. static struct resource mmcif0_resources[] = {
  67. DEFINE_RES_MEM_NAMED(0xee200000, 0x100, "MMCIF0"),
  68. DEFINE_RES_IRQ(gic_spi(169)),
  69. };
  70. static const struct pinctrl_map ape6evm_pinctrl_map[] = {
  71. /* SCIFA0 console */
  72. PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.0", "pfc-r8a73a4",
  73. "scifa0_data", "scifa0"),
  74. /* SMSC */
  75. PIN_MAP_MUX_GROUP_DEFAULT("smsc911x", "pfc-r8a73a4",
  76. "irqc_irq40", "irqc"),
  77. /* MMCIF0 */
  78. PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-r8a73a4",
  79. "mmc0_data8", "mmc0"),
  80. PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-r8a73a4",
  81. "mmc0_ctrl", "mmc0"),
  82. };
  83. static void __init ape6evm_add_standard_devices(void)
  84. {
  85. struct clk *parent;
  86. struct clk *mp;
  87. r8a73a4_clock_init();
  88. /* MP clock parent = extal2 */
  89. parent = clk_get(NULL, "extal2");
  90. mp = clk_get(NULL, "mp");
  91. BUG_ON(IS_ERR(parent) || IS_ERR(mp));
  92. clk_set_parent(mp, parent);
  93. clk_put(parent);
  94. clk_put(mp);
  95. pinctrl_register_mappings(ape6evm_pinctrl_map,
  96. ARRAY_SIZE(ape6evm_pinctrl_map));
  97. r8a73a4_pinmux_init();
  98. r8a73a4_add_standard_devices();
  99. /* LAN9220 ethernet */
  100. gpio_request_one(270, GPIOF_OUT_INIT_HIGH, NULL); /* smsc9220 RESET */
  101. regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
  102. platform_device_register_resndata(&platform_bus, "smsc911x", -1,
  103. lan9220_res, ARRAY_SIZE(lan9220_res),
  104. &lan9220_data, sizeof(lan9220_data));
  105. regulator_register_always_on(1, "fixed-3.3V", fixed3v3_power_consumers,
  106. ARRAY_SIZE(fixed3v3_power_consumers), 3300000);
  107. platform_device_register_resndata(&platform_bus, "sh_mmcif", 0,
  108. mmcif0_resources, ARRAY_SIZE(mmcif0_resources),
  109. &mmcif0_pdata, sizeof(mmcif0_pdata));
  110. }
  111. static const char *ape6evm_boards_compat_dt[] __initdata = {
  112. "renesas,ape6evm",
  113. NULL,
  114. };
  115. DT_MACHINE_START(APE6EVM_DT, "ape6evm")
  116. .init_early = r8a73a4_init_delay,
  117. .init_time = shmobile_timer_init,
  118. .init_machine = ape6evm_add_standard_devices,
  119. .dt_compat = ape6evm_boards_compat_dt,
  120. MACHINE_END