blob: cdcb799e802f0e2e5bcdaeaf42e50107a18b0197 [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>
Kuninori Morimotoac7c4ea2012-10-29 01:15:43 -070039#include <linux/usb/ohci_pdriver.h>
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -070040#include <linux/pm_runtime.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090041#include <mach/hardware.h>
42#include <mach/r8a7779.h>
43#include <mach/common.h>
Rob Herring250a2722012-01-03 16:57:33 -060044#include <mach/irqs.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090045#include <asm/mach-types.h>
46#include <asm/mach/arch.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090047#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
Kuninori Morimotoac7c4ea2012-10-29 01:15:43 -0700258static struct usb_ohci_pdata ohcix_pdata = {
259 .power_on = usb_power_on,
260 .power_off = usb_power_off,
261 .power_suspend = usb_power_off,
262};
263
264static struct resource ohci0_resources[] = {
265 [0] = {
266 .start = 0xffe70400,
267 .end = 0xffe70800 - 1,
268 .flags = IORESOURCE_MEM,
269 },
270 [1] = {
271 .start = gic_spi(44),
272 .flags = IORESOURCE_IRQ,
273 },
274};
275
276static struct platform_device ohci0_device = {
277 .name = "ohci-platform",
278 .id = 0,
279 .dev = {
280 .dma_mask = &ohci0_device.dev.coherent_dma_mask,
281 .coherent_dma_mask = 0xffffffff,
282 .platform_data = &ohcix_pdata,
283 },
284 .num_resources = ARRAY_SIZE(ohci0_resources),
285 .resource = ohci0_resources,
286};
287
288static struct resource ohci1_resources[] = {
289 [0] = {
290 .start = 0xfff70400,
291 .end = 0xfff70800 - 1,
292 .flags = IORESOURCE_MEM,
293 },
294 [1] = {
295 .start = gic_spi(45),
296 .flags = IORESOURCE_IRQ,
297 },
298};
299
300static struct platform_device ohci1_device = {
301 .name = "ohci-platform",
302 .id = 1,
303 .dev = {
304 .dma_mask = &ohci1_device.dev.coherent_dma_mask,
305 .coherent_dma_mask = 0xffffffff,
306 .platform_data = &ohcix_pdata,
307 },
308 .num_resources = ARRAY_SIZE(ohci1_resources),
309 .resource = ohci1_resources,
310};
311
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700312static struct platform_device *marzen_late_devices[] __initdata = {
313 &ehci0_device,
314 &ehci1_device,
Kuninori Morimotoac7c4ea2012-10-29 01:15:43 -0700315 &ohci0_device,
316 &ohci1_device,
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700317};
318
319void __init marzen_init_late(void)
320{
321 /* get usb phy */
322 phy = usb_get_phy(USB_PHY_TYPE_USB2);
323
324 shmobile_init_late();
325 platform_add_devices(marzen_late_devices,
326 ARRAY_SIZE(marzen_late_devices));
327}
328
Magnus Dammf411fad2011-12-14 01:36:12 +0900329static void __init marzen_init(void)
330{
Phil Edworthy894cda12012-08-06 13:31:05 +0100331 regulator_register_always_on(0, "fixed-3.3V", fixed3v3_power_consumers,
332 ARRAY_SIZE(fixed3v3_power_consumers), 3300000);
Kuninori Morimoto90b85af2012-08-29 18:58:15 -0700333 regulator_register_fixed(1, dummy_supplies,
Phil Edworthy894cda12012-08-06 13:31:05 +0100334 ARRAY_SIZE(dummy_supplies));
Guennadi Liakhovetskib354e222012-06-27 00:32:32 +0200335
Magnus Damm19c43fc2011-12-14 01:36:22 +0900336 r8a7779_pinmux_init();
337
Magnus Damm14f691c2011-12-14 01:36:42 +0900338 /* SCIF2 (CN18: DEBUG0) */
339 gpio_request(GPIO_FN_TX2_C, NULL);
340 gpio_request(GPIO_FN_RX2_C, NULL);
341
342 /* SCIF4 (CN19: DEBUG1) */
343 gpio_request(GPIO_FN_TX4, NULL);
344 gpio_request(GPIO_FN_RX4, NULL);
345
Magnus Dammdb5eb992011-12-14 01:36:51 +0900346 /* LAN89218 */
347 gpio_request(GPIO_FN_EX_CS0, NULL); /* nCS */
348 gpio_request(GPIO_FN_IRQ1_B, NULL); /* IRQ + PME */
349
Phil Edworthy894cda12012-08-06 13:31:05 +0100350 /* SD0 (CN20) */
351 gpio_request(GPIO_FN_SD0_CLK, NULL);
352 gpio_request(GPIO_FN_SD0_CMD, NULL);
353 gpio_request(GPIO_FN_SD0_DAT0, NULL);
354 gpio_request(GPIO_FN_SD0_DAT1, NULL);
355 gpio_request(GPIO_FN_SD0_DAT2, NULL);
356 gpio_request(GPIO_FN_SD0_DAT3, NULL);
357 gpio_request(GPIO_FN_SD0_CD, NULL);
358 gpio_request(GPIO_FN_SD0_WP, NULL);
359
Kuninori Morimotob82573e2012-10-10 19:57:02 -0700360 /* HSPI 0 */
361 gpio_request(GPIO_FN_HSPI_CLK0, NULL);
362 gpio_request(GPIO_FN_HSPI_CS0, NULL);
363 gpio_request(GPIO_FN_HSPI_TX0, NULL);
364 gpio_request(GPIO_FN_HSPI_RX0, NULL);
365
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700366 /* USB (CN21) */
367 gpio_request(GPIO_FN_USB_OVC0, NULL);
368 gpio_request(GPIO_FN_USB_OVC1, NULL);
369 gpio_request(GPIO_FN_USB_OVC2, NULL);
370
371 /* USB (CN22) */
372 gpio_request(GPIO_FN_USB_PENC2, NULL);
373
Magnus Dammf411fad2011-12-14 01:36:12 +0900374 r8a7779_add_standard_devices();
375 platform_add_devices(marzen_devices, ARRAY_SIZE(marzen_devices));
376}
377
Magnus Dammf411fad2011-12-14 01:36:12 +0900378MACHINE_START(MARZEN, "marzen")
Marc Zyngiera62580e2011-09-08 13:15:22 +0100379 .smp = smp_ops(r8a7779_smp_ops),
Magnus Damm3e353b872012-02-29 21:37:43 +0900380 .map_io = r8a7779_map_io,
381 .init_early = r8a7779_add_early_devices,
Magnus Dammf411fad2011-12-14 01:36:12 +0900382 .nr_irqs = NR_IRQS_LEGACY,
383 .init_irq = r8a7779_init_irq,
Magnus Dammf411fad2011-12-14 01:36:12 +0900384 .init_machine = marzen_init,
Kuninori Morimoto94e1f7f2012-10-29 01:15:34 -0700385 .init_late = marzen_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700386 .init_time = r8a7779_earlytimer_init,
Magnus Dammf411fad2011-12-14 01:36:12 +0900387MACHINE_END