blob: ccf8b042908330d8e2b490599c98014a5d6bf525 [file] [log] [blame]
Magnus Damm78ded162013-03-29 17:00:02 +09001/*
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
Magnus Damm15351a7a2013-03-29 17:00:21 +090021#include <linux/gpio.h>
Magnus Damm78ded162013-03-29 17:00:02 +090022#include <linux/interrupt.h>
Magnus Damm78ded162013-03-29 17:00:02 +090023#include <linux/kernel.h>
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +020024#include <linux/mfd/tmio.h>
Guennadi Liakhovetski87116132013-07-10 10:13:08 +020025#include <linux/mmc/host.h>
26#include <linux/mmc/sh_mmcif.h>
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +020027#include <linux/mmc/sh_mobile_sdhi.h>
Magnus Damm2c560552013-03-29 17:00:12 +090028#include <linux/pinctrl/machine.h>
Magnus Damm78ded162013-03-29 17:00:02 +090029#include <linux/platform_device.h>
Magnus Damm15351a7a2013-03-29 17:00:21 +090030#include <linux/regulator/fixed.h>
31#include <linux/regulator/machine.h>
Kuninori Morimotob8568a02013-04-04 21:24:27 -070032#include <linux/sh_clk.h>
Magnus Damm15351a7a2013-03-29 17:00:21 +090033#include <linux/smsc911x.h>
Magnus Damm78ded162013-03-29 17:00:02 +090034#include <mach/common.h>
Magnus Damm15351a7a2013-03-29 17:00:21 +090035#include <mach/irqs.h>
Magnus Damm78ded162013-03-29 17:00:02 +090036#include <mach/r8a73a4.h>
37#include <asm/mach-types.h>
38#include <asm/mach/arch.h>
39
Magnus Damm15351a7a2013-03-29 17:00:21 +090040/* Dummy supplies, where voltage doesn't matter */
41static struct regulator_consumer_supply dummy_supplies[] = {
42 REGULATOR_SUPPLY("vddvario", "smsc911x"),
43 REGULATOR_SUPPLY("vdd33a", "smsc911x"),
44};
45
46/* SMSC LAN9220 */
47static const struct resource lan9220_res[] = {
48 DEFINE_RES_MEM(0x08000000, 0x1000),
49 {
50 .start = irq_pin(40), /* IRQ40 */
51 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
52 },
53};
54
55static const struct smsc911x_platform_config lan9220_data = {
56 .flags = SMSC911X_USE_32BIT,
57 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
58 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH,
59};
60
Guennadi Liakhovetski87116132013-07-10 10:13:08 +020061/*
62 * On APE6EVM power is supplied to MMCIF by a tps80032 regulator. For now we
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +020063 * model a VDD supply to MMCIF, using a fixed 3.3V regulator. Also use the
64 * static power supply for SDHI0 and SDHI1, whereas SDHI0's VccQ is also
65 * supplied by the same tps80032 regulator and thus can also be adjusted
66 * dynamically.
Guennadi Liakhovetski87116132013-07-10 10:13:08 +020067 */
68static struct regulator_consumer_supply fixed3v3_power_consumers[] =
69{
70 REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +020071 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
72 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
Guennadi Liakhovetski87116132013-07-10 10:13:08 +020073};
74
75/* MMCIF */
76static struct sh_mmcif_plat_data mmcif0_pdata = {
77 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
78};
79
80static struct resource mmcif0_resources[] = {
81 DEFINE_RES_MEM_NAMED(0xee200000, 0x100, "MMCIF0"),
82 DEFINE_RES_IRQ(gic_spi(169)),
83};
84
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +020085/* SDHI0 */
86static struct sh_mobile_sdhi_info sdhi0_pdata = {
87 .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_WRPROTECT_DISABLE,
88 .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ,
89};
90
91static struct resource sdhi0_resources[] = {
92 DEFINE_RES_MEM_NAMED(0xee100000, 0x100, "SDHI0"),
93 DEFINE_RES_IRQ(gic_spi(165)),
94};
95
96/* SDHI1 */
97static struct sh_mobile_sdhi_info sdhi1_pdata = {
98 .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_WRPROTECT_DISABLE,
99 .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
100 MMC_CAP_NEEDS_POLL,
101};
102
103static struct resource sdhi1_resources[] = {
104 DEFINE_RES_MEM_NAMED(0xee120000, 0x100, "SDHI1"),
105 DEFINE_RES_IRQ(gic_spi(166)),
106};
107
Magnus Damm2c560552013-03-29 17:00:12 +0900108static const struct pinctrl_map ape6evm_pinctrl_map[] = {
109 /* SCIFA0 console */
110 PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.0", "pfc-r8a73a4",
111 "scifa0_data", "scifa0"),
Magnus Damm15351a7a2013-03-29 17:00:21 +0900112 /* SMSC */
113 PIN_MAP_MUX_GROUP_DEFAULT("smsc911x", "pfc-r8a73a4",
114 "irqc_irq40", "irqc"),
Guennadi Liakhovetski87116132013-07-10 10:13:08 +0200115 /* MMCIF0 */
116 PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-r8a73a4",
117 "mmc0_data8", "mmc0"),
118 PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-r8a73a4",
119 "mmc0_ctrl", "mmc0"),
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +0200120 /* SDHI0: uSD: no WP */
121 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-r8a73a4",
122 "sdhi0_data4", "sdhi0"),
123 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-r8a73a4",
124 "sdhi0_ctrl", "sdhi0"),
125 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-r8a73a4",
126 "sdhi0_cd", "sdhi0"),
127 /* SDHI1 */
128 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.1", "pfc-r8a73a4",
129 "sdhi1_data4", "sdhi1"),
130 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.1", "pfc-r8a73a4",
131 "sdhi1_ctrl", "sdhi1"),
Magnus Damm2c560552013-03-29 17:00:12 +0900132};
133
Magnus Damm78ded162013-03-29 17:00:02 +0900134static void __init ape6evm_add_standard_devices(void)
135{
Kuninori Morimotob8568a02013-04-04 21:24:27 -0700136
137 struct clk *parent;
138 struct clk *mp;
139
Magnus Damm78ded162013-03-29 17:00:02 +0900140 r8a73a4_clock_init();
Kuninori Morimotob8568a02013-04-04 21:24:27 -0700141
142 /* MP clock parent = extal2 */
143 parent = clk_get(NULL, "extal2");
144 mp = clk_get(NULL, "mp");
145 BUG_ON(IS_ERR(parent) || IS_ERR(mp));
146
147 clk_set_parent(mp, parent);
148 clk_put(parent);
149 clk_put(mp);
150
Magnus Damm2c560552013-03-29 17:00:12 +0900151 pinctrl_register_mappings(ape6evm_pinctrl_map,
152 ARRAY_SIZE(ape6evm_pinctrl_map));
153 r8a73a4_pinmux_init();
Magnus Damm78ded162013-03-29 17:00:02 +0900154 r8a73a4_add_standard_devices();
Magnus Damm15351a7a2013-03-29 17:00:21 +0900155
156 /* LAN9220 ethernet */
157 gpio_request_one(270, GPIOF_OUT_INIT_HIGH, NULL); /* smsc9220 RESET */
158
159 regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
160
161 platform_device_register_resndata(&platform_bus, "smsc911x", -1,
162 lan9220_res, ARRAY_SIZE(lan9220_res),
163 &lan9220_data, sizeof(lan9220_data));
Guennadi Liakhovetski87116132013-07-10 10:13:08 +0200164 regulator_register_always_on(1, "fixed-3.3V", fixed3v3_power_consumers,
165 ARRAY_SIZE(fixed3v3_power_consumers), 3300000);
166 platform_device_register_resndata(&platform_bus, "sh_mmcif", 0,
167 mmcif0_resources, ARRAY_SIZE(mmcif0_resources),
168 &mmcif0_pdata, sizeof(mmcif0_pdata));
Guennadi Liakhovetskif79d68d2013-07-08 17:54:42 +0200169 platform_device_register_resndata(&platform_bus, "sh_mobile_sdhi", 0,
170 sdhi0_resources, ARRAY_SIZE(sdhi0_resources),
171 &sdhi0_pdata, sizeof(sdhi0_pdata));
172 platform_device_register_resndata(&platform_bus, "sh_mobile_sdhi", 1,
173 sdhi1_resources, ARRAY_SIZE(sdhi1_resources),
174 &sdhi1_pdata, sizeof(sdhi1_pdata));
Magnus Damm78ded162013-03-29 17:00:02 +0900175}
176
177static const char *ape6evm_boards_compat_dt[] __initdata = {
178 "renesas,ape6evm",
179 NULL,
180};
181
182DT_MACHINE_START(APE6EVM_DT, "ape6evm")
Magnus Dammb9a30ef2013-06-28 20:27:32 +0900183 .init_early = r8a73a4_init_delay,
Magnus Damm78ded162013-03-29 17:00:02 +0900184 .init_time = shmobile_timer_init,
185 .init_machine = ape6evm_add_standard_devices,
186 .dt_compat = ape6evm_boards_compat_dt,
187MACHINE_END