blob: 707b3bdaee8aa235cf9070ba76d108fd39ab8b65 [file] [log] [blame]
Magnus Dammf411fad2011-12-14 01:36:12 +09001/*
2 * marzen board support
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 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
21#include <linux/kernel.h>
22#include <linux/init.h>
23#include <linux/interrupt.h>
24#include <linux/irq.h>
25#include <linux/platform_device.h>
26#include <linux/delay.h>
27#include <linux/io.h>
Magnus Damm14f691c2011-12-14 01:36:42 +090028#include <linux/gpio.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090029#include <linux/dma-mapping.h>
Guennadi Liakhovetskib354e222012-06-27 00:32:32 +020030#include <linux/regulator/fixed.h>
31#include <linux/regulator/machine.h>
Magnus Dammdb5eb992011-12-14 01:36:51 +090032#include <linux/smsc911x.h>
Kuninori Morimotob82573e2012-10-10 19:57:02 -070033#include <linux/spi/spi.h>
34#include <linux/spi/sh_hspi.h>
Phil Edworthy894cda12012-08-06 13:31:05 +010035#include <linux/mmc/sh_mobile_sdhi.h>
36#include <linux/mfd/tmio.h>
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -070037#include <linux/usb/otg.h>
38#include <linux/usb/ehci_pdriver.h>
39#include <linux/pm_runtime.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090040#include <mach/hardware.h>
41#include <mach/r8a7779.h>
42#include <mach/common.h>
Rob Herring250a2722012-01-03 16:57:33 -060043#include <mach/irqs.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090044#include <asm/mach-types.h>
45#include <asm/mach/arch.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090046#include <asm/hardware/gic.h>
47#include <asm/traps.h>
48
Phil Edworthy894cda12012-08-06 13:31:05 +010049/* Fixed 3.3V regulator to be used by SDHI0 */
50static struct regulator_consumer_supply fixed3v3_power_consumers[] = {
51 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
52 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
53};
54
Guennadi Liakhovetskib354e222012-06-27 00:32:32 +020055/* Dummy supplies, where voltage doesn't matter */
56static struct regulator_consumer_supply dummy_supplies[] = {
57 REGULATOR_SUPPLY("vddvario", "smsc911x"),
58 REGULATOR_SUPPLY("vdd33a", "smsc911x"),
59};
60
Magnus Dammdb5eb992011-12-14 01:36:51 +090061/* SMSC LAN89218 */
62static struct resource smsc911x_resources[] = {
63 [0] = {
64 .start = 0x18000000, /* ExCS0 */
65 .end = 0x180000ff, /* A1->A7 */
66 .flags = IORESOURCE_MEM,
67 },
68 [1] = {
69 .start = gic_spi(28), /* IRQ 1 */
70 .flags = IORESOURCE_IRQ,
71 },
72};
73
74static struct smsc911x_platform_config smsc911x_platdata = {
75 .flags = SMSC911X_USE_32BIT, /* 32-bit SW on 16-bit HW bus */
76 .phy_interface = PHY_INTERFACE_MODE_MII,
77 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
78 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
79};
80
81static struct platform_device eth_device = {
82 .name = "smsc911x",
Kuninori Morimoto497dcf62012-08-29 18:58:01 -070083 .id = -1,
Magnus Dammdb5eb992011-12-14 01:36:51 +090084 .dev = {
85 .platform_data = &smsc911x_platdata,
86 },
87 .resource = smsc911x_resources,
88 .num_resources = ARRAY_SIZE(smsc911x_resources),
89};
90
Phil Edworthy894cda12012-08-06 13:31:05 +010091static struct resource sdhi0_resources[] = {
92 [0] = {
93 .name = "sdhi0",
94 .start = 0xffe4c000,
95 .end = 0xffe4c0ff,
96 .flags = IORESOURCE_MEM,
97 },
98 [1] = {
99 .start = gic_spi(104),
100 .flags = IORESOURCE_IRQ,
101 },
102};
103
104static struct sh_mobile_sdhi_info sdhi0_platform_data = {
105 .tmio_flags = TMIO_MMC_WRPROTECT_DISABLE | TMIO_MMC_HAS_IDLE_WAIT,
106 .tmio_caps = MMC_CAP_SD_HIGHSPEED,
107};
108
109static struct platform_device sdhi0_device = {
110 .name = "sh_mobile_sdhi",
111 .num_resources = ARRAY_SIZE(sdhi0_resources),
112 .resource = sdhi0_resources,
113 .id = 0,
114 .dev = {
115 .platform_data = &sdhi0_platform_data,
116 }
117};
118
Kuninori Morimotoeb8ca942012-08-27 19:00:15 -0700119/* Thermal */
120static struct resource thermal_resources[] = {
121 [0] = {
122 .start = 0xFFC48000,
123 .end = 0xFFC48038 - 1,
124 .flags = IORESOURCE_MEM,
125 },
126};
127
128static struct platform_device thermal_device = {
129 .name = "rcar_thermal",
130 .resource = thermal_resources,
131 .num_resources = ARRAY_SIZE(thermal_resources),
132};
133
Kuninori Morimotob82573e2012-10-10 19:57:02 -0700134/* HSPI */
135static struct resource hspi_resources[] = {
136 [0] = {
137 .start = 0xFFFC7000,
138 .end = 0xFFFC7018 - 1,
139 .flags = IORESOURCE_MEM,
140 },
141};
142
143static struct platform_device hspi_device = {
144 .name = "sh-hspi",
145 .id = 0,
146 .resource = hspi_resources,
147 .num_resources = ARRAY_SIZE(hspi_resources),
148};
149
Kuninori Morimotob5ce6352012-10-29 01:15:25 -0700150/* USB PHY */
151static struct resource usb_phy_resources[] = {
152 [0] = {
153 .start = 0xffe70000,
154 .end = 0xffe70900 - 1,
155 .flags = IORESOURCE_MEM,
156 },
157 [1] = {
158 .start = 0xfff70000,
159 .end = 0xfff70900 - 1,
160 .flags = IORESOURCE_MEM,
161 },
162};
163
164static struct platform_device usb_phy_device = {
165 .name = "rcar_usb_phy",
166 .resource = usb_phy_resources,
167 .num_resources = ARRAY_SIZE(usb_phy_resources),
168};
169
Magnus Dammf411fad2011-12-14 01:36:12 +0900170static struct platform_device *marzen_devices[] __initdata = {
Magnus Dammdb5eb992011-12-14 01:36:51 +0900171 &eth_device,
Phil Edworthy894cda12012-08-06 13:31:05 +0100172 &sdhi0_device,
Kuninori Morimotoeb8ca942012-08-27 19:00:15 -0700173 &thermal_device,
Kuninori Morimotob82573e2012-10-10 19:57:02 -0700174 &hspi_device,
Kuninori Morimotob5ce6352012-10-29 01:15:25 -0700175 &usb_phy_device,
Magnus Dammf411fad2011-12-14 01:36:12 +0900176};
177
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700178/* USB */
179static struct usb_phy *phy;
180static int usb_power_on(struct platform_device *pdev)
181{
182 if (!phy)
183 return -EIO;
184
185 pm_runtime_enable(&pdev->dev);
186 pm_runtime_get_sync(&pdev->dev);
187
188 usb_phy_init(phy);
189
190 return 0;
191}
192
193static void usb_power_off(struct platform_device *pdev)
194{
195 if (!phy)
196 return;
197
198 usb_phy_shutdown(phy);
199
200 pm_runtime_put_sync(&pdev->dev);
201 pm_runtime_disable(&pdev->dev);
202}
203
204static struct usb_ehci_pdata ehcix_pdata = {
205 .power_on = usb_power_on,
206 .power_off = usb_power_off,
207 .power_suspend = usb_power_off,
208};
209
210static struct resource ehci0_resources[] = {
211 [0] = {
212 .start = 0xffe70000,
213 .end = 0xffe70400 - 1,
214 .flags = IORESOURCE_MEM,
215 },
216 [1] = {
217 .start = gic_spi(44),
218 .flags = IORESOURCE_IRQ,
219 },
220};
221
222static struct platform_device ehci0_device = {
223 .name = "ehci-platform",
224 .id = 0,
225 .dev = {
226 .dma_mask = &ehci0_device.dev.coherent_dma_mask,
227 .coherent_dma_mask = 0xffffffff,
228 .platform_data = &ehcix_pdata,
229 },
230 .num_resources = ARRAY_SIZE(ehci0_resources),
231 .resource = ehci0_resources,
232};
233
234static struct resource ehci1_resources[] = {
235 [0] = {
236 .start = 0xfff70000,
237 .end = 0xfff70400 - 1,
238 .flags = IORESOURCE_MEM,
239 },
240 [1] = {
241 .start = gic_spi(45),
242 .flags = IORESOURCE_IRQ,
243 },
244};
245
246static struct platform_device ehci1_device = {
247 .name = "ehci-platform",
248 .id = 1,
249 .dev = {
250 .dma_mask = &ehci1_device.dev.coherent_dma_mask,
251 .coherent_dma_mask = 0xffffffff,
252 .platform_data = &ehcix_pdata,
253 },
254 .num_resources = ARRAY_SIZE(ehci1_resources),
255 .resource = ehci1_resources,
256};
257
258static struct platform_device *marzen_late_devices[] __initdata = {
259 &ehci0_device,
260 &ehci1_device,
261};
262
263void __init marzen_init_late(void)
264{
265 /* get usb phy */
266 phy = usb_get_phy(USB_PHY_TYPE_USB2);
267
268 shmobile_init_late();
269 platform_add_devices(marzen_late_devices,
270 ARRAY_SIZE(marzen_late_devices));
271}
272
Magnus Dammf411fad2011-12-14 01:36:12 +0900273static void __init marzen_init(void)
274{
Phil Edworthy894cda12012-08-06 13:31:05 +0100275 regulator_register_always_on(0, "fixed-3.3V", fixed3v3_power_consumers,
276 ARRAY_SIZE(fixed3v3_power_consumers), 3300000);
Kuninori Morimoto90b85af2012-08-29 18:58:15 -0700277 regulator_register_fixed(1, dummy_supplies,
Phil Edworthy894cda12012-08-06 13:31:05 +0100278 ARRAY_SIZE(dummy_supplies));
Guennadi Liakhovetskib354e222012-06-27 00:32:32 +0200279
Magnus Damm19c43fc2011-12-14 01:36:22 +0900280 r8a7779_pinmux_init();
281
Magnus Damm14f691c2011-12-14 01:36:42 +0900282 /* SCIF2 (CN18: DEBUG0) */
283 gpio_request(GPIO_FN_TX2_C, NULL);
284 gpio_request(GPIO_FN_RX2_C, NULL);
285
286 /* SCIF4 (CN19: DEBUG1) */
287 gpio_request(GPIO_FN_TX4, NULL);
288 gpio_request(GPIO_FN_RX4, NULL);
289
Magnus Dammdb5eb992011-12-14 01:36:51 +0900290 /* LAN89218 */
291 gpio_request(GPIO_FN_EX_CS0, NULL); /* nCS */
292 gpio_request(GPIO_FN_IRQ1_B, NULL); /* IRQ + PME */
293
Phil Edworthy894cda12012-08-06 13:31:05 +0100294 /* SD0 (CN20) */
295 gpio_request(GPIO_FN_SD0_CLK, NULL);
296 gpio_request(GPIO_FN_SD0_CMD, NULL);
297 gpio_request(GPIO_FN_SD0_DAT0, NULL);
298 gpio_request(GPIO_FN_SD0_DAT1, NULL);
299 gpio_request(GPIO_FN_SD0_DAT2, NULL);
300 gpio_request(GPIO_FN_SD0_DAT3, NULL);
301 gpio_request(GPIO_FN_SD0_CD, NULL);
302 gpio_request(GPIO_FN_SD0_WP, NULL);
303
Kuninori Morimotob82573e2012-10-10 19:57:02 -0700304 /* HSPI 0 */
305 gpio_request(GPIO_FN_HSPI_CLK0, NULL);
306 gpio_request(GPIO_FN_HSPI_CS0, NULL);
307 gpio_request(GPIO_FN_HSPI_TX0, NULL);
308 gpio_request(GPIO_FN_HSPI_RX0, NULL);
309
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700310 /* USB (CN21) */
311 gpio_request(GPIO_FN_USB_OVC0, NULL);
312 gpio_request(GPIO_FN_USB_OVC1, NULL);
313 gpio_request(GPIO_FN_USB_OVC2, NULL);
314
315 /* USB (CN22) */
316 gpio_request(GPIO_FN_USB_PENC2, NULL);
317
Magnus Dammf411fad2011-12-14 01:36:12 +0900318 r8a7779_add_standard_devices();
319 platform_add_devices(marzen_devices, ARRAY_SIZE(marzen_devices));
320}
321
Magnus Dammf411fad2011-12-14 01:36:12 +0900322MACHINE_START(MARZEN, "marzen")
Marc Zyngiera62580e2011-09-08 13:15:22 +0100323 .smp = smp_ops(r8a7779_smp_ops),
Magnus Damm3e353b872012-02-29 21:37:43 +0900324 .map_io = r8a7779_map_io,
325 .init_early = r8a7779_add_early_devices,
Magnus Dammf411fad2011-12-14 01:36:12 +0900326 .nr_irqs = NR_IRQS_LEGACY,
327 .init_irq = r8a7779_init_irq,
Paul Mundt77761b62012-01-10 13:33:23 +0900328 .handle_irq = gic_handle_irq,
Magnus Dammf411fad2011-12-14 01:36:12 +0900329 .init_machine = marzen_init,
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700330 .init_late = marzen_init_late,
Magnus Dammdf27a2d2012-03-06 17:37:01 +0900331 .timer = &shmobile_timer,
Magnus Dammf411fad2011-12-14 01:36:12 +0900332MACHINE_END