blob: 8d2ae109a83aefd15fcccf0860c90b4a73a8ed40 [file] [log] [blame]
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +00001/*
2 * Renesas R0P7757LC0012RL Support.
3 *
4 * Copyright (C) 2009 - 2010 Renesas Solutions Corp.
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
11#include <linux/init.h>
12#include <linux/platform_device.h>
13#include <linux/gpio.h>
14#include <linux/irq.h>
15#include <linux/spi/spi.h>
16#include <linux/spi/flash.h>
17#include <linux/io.h>
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +000018#include <linux/mmc/host.h>
19#include <linux/mmc/sh_mmcif.h>
Yoshihiro Shimoda9a86cad2011-03-30 01:46:15 +000020#include <linux/mmc/sh_mobile_sdhi.h>
Nobuhiro Iwamatsu389cc102011-11-01 14:54:38 +090021#include <linux/sh_eth.h>
Shimoda, Yoshihiro7afb4e92012-01-05 14:08:12 +090022#include <linux/usb/renesas_usbhs.h>
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +000023#include <cpu/sh7757.h>
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +000024#include <asm/heartbeat.h>
25
26static struct resource heartbeat_resource = {
27 .start = 0xffec005c, /* PUDR */
28 .end = 0xffec005c,
29 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
30};
31
32static unsigned char heartbeat_bit_pos[] = { 0, 1, 2, 3 };
33
34static struct heartbeat_data heartbeat_data = {
35 .bit_pos = heartbeat_bit_pos,
36 .nr_bits = ARRAY_SIZE(heartbeat_bit_pos),
37 .flags = HEARTBEAT_INVERTED,
38};
39
40static struct platform_device heartbeat_device = {
41 .name = "heartbeat",
42 .id = -1,
43 .dev = {
44 .platform_data = &heartbeat_data,
45 },
46 .num_resources = 1,
47 .resource = &heartbeat_resource,
48};
49
50/* Fast Ethernet */
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +000051#define GBECONT 0xffc10100
52#define GBECONT_RMII1 BIT(17)
53#define GBECONT_RMII0 BIT(16)
Yoshihiro Shimoda19d7ca22011-11-18 16:32:34 +090054static void sh7757_eth_set_mdio_gate(void *addr)
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +000055{
Yoshihiro Shimoda19d7ca22011-11-18 16:32:34 +090056 if (((unsigned long)addr & 0x00000fff) < 0x0800)
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +000057 writel(readl(GBECONT) | GBECONT_RMII0, GBECONT);
58 else
59 writel(readl(GBECONT) | GBECONT_RMII1, GBECONT);
60}
61
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +000062static struct resource sh_eth0_resources[] = {
63 {
64 .start = 0xfef00000,
65 .end = 0xfef001ff,
66 .flags = IORESOURCE_MEM,
67 }, {
68 .start = 84,
69 .end = 84,
70 .flags = IORESOURCE_IRQ,
71 },
72};
73
74static struct sh_eth_plat_data sh7757_eth0_pdata = {
75 .phy = 1,
76 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +000077 .register_type = SH_ETH_REG_FAST_SH4,
78 .set_mdio_gate = sh7757_eth_set_mdio_gate,
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +000079};
80
81static struct platform_device sh7757_eth0_device = {
82 .name = "sh-eth",
83 .resource = sh_eth0_resources,
84 .id = 0,
85 .num_resources = ARRAY_SIZE(sh_eth0_resources),
86 .dev = {
87 .platform_data = &sh7757_eth0_pdata,
88 },
89};
90
91static struct resource sh_eth1_resources[] = {
92 {
93 .start = 0xfef00800,
94 .end = 0xfef009ff,
95 .flags = IORESOURCE_MEM,
96 }, {
97 .start = 84,
98 .end = 84,
99 .flags = IORESOURCE_IRQ,
100 },
101};
102
103static struct sh_eth_plat_data sh7757_eth1_pdata = {
104 .phy = 1,
105 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +0000106 .register_type = SH_ETH_REG_FAST_SH4,
107 .set_mdio_gate = sh7757_eth_set_mdio_gate,
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +0000108};
109
110static struct platform_device sh7757_eth1_device = {
111 .name = "sh-eth",
112 .resource = sh_eth1_resources,
113 .id = 1,
114 .num_resources = ARRAY_SIZE(sh_eth1_resources),
115 .dev = {
116 .platform_data = &sh7757_eth1_pdata,
117 },
118};
119
Yoshihiro Shimoda19d7ca22011-11-18 16:32:34 +0900120static void sh7757_eth_giga_set_mdio_gate(void *addr)
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +0000121{
Yoshihiro Shimoda19d7ca22011-11-18 16:32:34 +0900122 if (((unsigned long)addr & 0x00000fff) < 0x0800) {
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +0000123 gpio_set_value(GPIO_PTT4, 1);
124 writel(readl(GBECONT) & ~GBECONT_RMII0, GBECONT);
125 } else {
126 gpio_set_value(GPIO_PTT4, 0);
127 writel(readl(GBECONT) & ~GBECONT_RMII1, GBECONT);
128 }
129}
130
131static struct resource sh_eth_giga0_resources[] = {
132 {
133 .start = 0xfee00000,
134 .end = 0xfee007ff,
135 .flags = IORESOURCE_MEM,
136 }, {
137 /* TSU */
138 .start = 0xfee01800,
139 .end = 0xfee01fff,
140 .flags = IORESOURCE_MEM,
141 }, {
142 .start = 315,
143 .end = 315,
144 .flags = IORESOURCE_IRQ,
145 },
146};
147
148static struct sh_eth_plat_data sh7757_eth_giga0_pdata = {
149 .phy = 18,
150 .edmac_endian = EDMAC_LITTLE_ENDIAN,
151 .register_type = SH_ETH_REG_GIGABIT,
152 .set_mdio_gate = sh7757_eth_giga_set_mdio_gate,
153 .phy_interface = PHY_INTERFACE_MODE_RGMII_ID,
154};
155
156static struct platform_device sh7757_eth_giga0_device = {
157 .name = "sh-eth",
158 .resource = sh_eth_giga0_resources,
159 .id = 2,
160 .num_resources = ARRAY_SIZE(sh_eth_giga0_resources),
161 .dev = {
162 .platform_data = &sh7757_eth_giga0_pdata,
163 },
164};
165
166static struct resource sh_eth_giga1_resources[] = {
167 {
168 .start = 0xfee00800,
169 .end = 0xfee00fff,
170 .flags = IORESOURCE_MEM,
171 }, {
172 .start = 316,
173 .end = 316,
174 .flags = IORESOURCE_IRQ,
175 },
176};
177
178static struct sh_eth_plat_data sh7757_eth_giga1_pdata = {
179 .phy = 19,
180 .edmac_endian = EDMAC_LITTLE_ENDIAN,
181 .register_type = SH_ETH_REG_GIGABIT,
182 .set_mdio_gate = sh7757_eth_giga_set_mdio_gate,
183 .phy_interface = PHY_INTERFACE_MODE_RGMII_ID,
184};
185
186static struct platform_device sh7757_eth_giga1_device = {
187 .name = "sh-eth",
188 .resource = sh_eth_giga1_resources,
189 .id = 3,
190 .num_resources = ARRAY_SIZE(sh_eth_giga1_resources),
191 .dev = {
192 .platform_data = &sh7757_eth_giga1_pdata,
193 },
194};
195
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +0000196/* SH_MMCIF */
197static struct resource sh_mmcif_resources[] = {
198 [0] = {
199 .start = 0xffcb0000,
200 .end = 0xffcb00ff,
201 .flags = IORESOURCE_MEM,
202 },
203 [1] = {
204 .start = 211,
205 .flags = IORESOURCE_IRQ,
206 },
207 [2] = {
208 .start = 212,
209 .flags = IORESOURCE_IRQ,
210 },
211};
212
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +0000213static struct sh_mmcif_plat_data sh_mmcif_plat = {
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +0000214 .sup_pclk = 0x0f,
Shimoda, Yoshihiro78da1072012-01-17 17:49:38 +0900215 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA |
216 MMC_CAP_NONREMOVABLE,
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +0000217 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
Guennadi Liakhovetski482835c2012-01-18 10:24:17 +0100218 .slave_id_tx = SHDMA_SLAVE_MMCIF_TX,
219 .slave_id_rx = SHDMA_SLAVE_MMCIF_RX,
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +0000220};
221
222static struct platform_device sh_mmcif_device = {
223 .name = "sh_mmcif",
224 .id = 0,
225 .dev = {
226 .platform_data = &sh_mmcif_plat,
227 },
228 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
229 .resource = sh_mmcif_resources,
230};
231
232/* SDHI0 */
233static struct sh_mobile_sdhi_info sdhi_info = {
234 .dma_slave_tx = SHDMA_SLAVE_SDHI_TX,
235 .dma_slave_rx = SHDMA_SLAVE_SDHI_RX,
236 .tmio_caps = MMC_CAP_SD_HIGHSPEED,
237};
238
239static struct resource sdhi_resources[] = {
240 [0] = {
241 .start = 0xffe50000,
242 .end = 0xffe501ff,
243 .flags = IORESOURCE_MEM,
244 },
245 [1] = {
246 .start = 20,
247 .flags = IORESOURCE_IRQ,
248 },
249};
250
251static struct platform_device sdhi_device = {
252 .name = "sh_mobile_sdhi",
253 .num_resources = ARRAY_SIZE(sdhi_resources),
254 .resource = sdhi_resources,
255 .id = 0,
256 .dev = {
257 .platform_data = &sdhi_info,
258 },
259};
260
Shimoda, Yoshihiro7afb4e92012-01-05 14:08:12 +0900261static int usbhs0_get_id(struct platform_device *pdev)
262{
263 return USBHS_GADGET;
264}
265
266static struct renesas_usbhs_platform_info usb0_data = {
267 .platform_callback = {
268 .get_id = usbhs0_get_id,
269 },
270 .driver_param = {
271 .buswait_bwait = 5,
272 }
273};
274
275static struct resource usb0_resources[] = {
276 [0] = {
277 .start = 0xfe450000,
278 .end = 0xfe4501ff,
279 .flags = IORESOURCE_MEM,
280 },
281 [1] = {
282 .start = 50,
283 .end = 50,
284 .flags = IORESOURCE_IRQ,
285 },
286};
287
288static struct platform_device usb0_device = {
289 .name = "renesas_usbhs",
290 .id = 0,
291 .dev = {
292 .platform_data = &usb0_data,
293 },
294 .num_resources = ARRAY_SIZE(usb0_resources),
295 .resource = usb0_resources,
296};
297
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +0000298static struct platform_device *sh7757lcr_devices[] __initdata = {
299 &heartbeat_device,
300 &sh7757_eth0_device,
301 &sh7757_eth1_device,
Yoshihiro Shimoda984f6cf2011-03-08 08:00:00 +0000302 &sh7757_eth_giga0_device,
303 &sh7757_eth_giga1_device,
Yoshihiro Shimoda65f63ea2011-02-25 07:40:27 +0000304 &sh_mmcif_device,
305 &sdhi_device,
Shimoda, Yoshihiro7afb4e92012-01-05 14:08:12 +0900306 &usb0_device,
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +0000307};
308
Yoshihiro Shimodaceb7afe2011-02-25 07:39:32 +0000309static struct flash_platform_data spi_flash_data = {
310 .name = "m25p80",
311 .type = "m25px64",
312};
313
314static struct spi_board_info spi_board_info[] = {
315 {
316 .modalias = "m25p80",
317 .max_speed_hz = 25000000,
318 .bus_num = 0,
319 .chip_select = 1,
320 .platform_data = &spi_flash_data,
321 },
322};
323
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +0000324static int __init sh7757lcr_devices_setup(void)
325{
326 /* RGMII (PTA) */
327 gpio_request(GPIO_FN_ET0_MDC, NULL);
328 gpio_request(GPIO_FN_ET0_MDIO, NULL);
329 gpio_request(GPIO_FN_ET1_MDC, NULL);
330 gpio_request(GPIO_FN_ET1_MDIO, NULL);
331
332 /* ONFI (PTB, PTZ) */
333 gpio_request(GPIO_FN_ON_NRE, NULL);
334 gpio_request(GPIO_FN_ON_NWE, NULL);
335 gpio_request(GPIO_FN_ON_NWP, NULL);
336 gpio_request(GPIO_FN_ON_NCE0, NULL);
337 gpio_request(GPIO_FN_ON_R_B0, NULL);
338 gpio_request(GPIO_FN_ON_ALE, NULL);
339 gpio_request(GPIO_FN_ON_CLE, NULL);
340
341 gpio_request(GPIO_FN_ON_DQ7, NULL);
342 gpio_request(GPIO_FN_ON_DQ6, NULL);
343 gpio_request(GPIO_FN_ON_DQ5, NULL);
344 gpio_request(GPIO_FN_ON_DQ4, NULL);
345 gpio_request(GPIO_FN_ON_DQ3, NULL);
346 gpio_request(GPIO_FN_ON_DQ2, NULL);
347 gpio_request(GPIO_FN_ON_DQ1, NULL);
348 gpio_request(GPIO_FN_ON_DQ0, NULL);
349
350 /* IRQ8 to 0 (PTB, PTC) */
351 gpio_request(GPIO_FN_IRQ8, NULL);
352 gpio_request(GPIO_FN_IRQ7, NULL);
353 gpio_request(GPIO_FN_IRQ6, NULL);
354 gpio_request(GPIO_FN_IRQ5, NULL);
355 gpio_request(GPIO_FN_IRQ4, NULL);
356 gpio_request(GPIO_FN_IRQ3, NULL);
357 gpio_request(GPIO_FN_IRQ2, NULL);
358 gpio_request(GPIO_FN_IRQ1, NULL);
359 gpio_request(GPIO_FN_IRQ0, NULL);
360
361 /* SPI0 (PTD) */
362 gpio_request(GPIO_FN_SP0_MOSI, NULL);
363 gpio_request(GPIO_FN_SP0_MISO, NULL);
364 gpio_request(GPIO_FN_SP0_SCK, NULL);
365 gpio_request(GPIO_FN_SP0_SCK_FB, NULL);
366 gpio_request(GPIO_FN_SP0_SS0, NULL);
367 gpio_request(GPIO_FN_SP0_SS1, NULL);
368 gpio_request(GPIO_FN_SP0_SS2, NULL);
369 gpio_request(GPIO_FN_SP0_SS3, NULL);
370
371 /* RMII 0/1 (PTE, PTF) */
372 gpio_request(GPIO_FN_RMII0_CRS_DV, NULL);
373 gpio_request(GPIO_FN_RMII0_TXD1, NULL);
374 gpio_request(GPIO_FN_RMII0_TXD0, NULL);
375 gpio_request(GPIO_FN_RMII0_TXEN, NULL);
376 gpio_request(GPIO_FN_RMII0_REFCLK, NULL);
377 gpio_request(GPIO_FN_RMII0_RXD1, NULL);
378 gpio_request(GPIO_FN_RMII0_RXD0, NULL);
379 gpio_request(GPIO_FN_RMII0_RX_ER, NULL);
380 gpio_request(GPIO_FN_RMII1_CRS_DV, NULL);
381 gpio_request(GPIO_FN_RMII1_TXD1, NULL);
382 gpio_request(GPIO_FN_RMII1_TXD0, NULL);
383 gpio_request(GPIO_FN_RMII1_TXEN, NULL);
384 gpio_request(GPIO_FN_RMII1_REFCLK, NULL);
385 gpio_request(GPIO_FN_RMII1_RXD1, NULL);
386 gpio_request(GPIO_FN_RMII1_RXD0, NULL);
387 gpio_request(GPIO_FN_RMII1_RX_ER, NULL);
388
389 /* eMMC (PTG) */
390 gpio_request(GPIO_FN_MMCCLK, NULL);
391 gpio_request(GPIO_FN_MMCCMD, NULL);
392 gpio_request(GPIO_FN_MMCDAT7, NULL);
393 gpio_request(GPIO_FN_MMCDAT6, NULL);
394 gpio_request(GPIO_FN_MMCDAT5, NULL);
395 gpio_request(GPIO_FN_MMCDAT4, NULL);
396 gpio_request(GPIO_FN_MMCDAT3, NULL);
397 gpio_request(GPIO_FN_MMCDAT2, NULL);
398 gpio_request(GPIO_FN_MMCDAT1, NULL);
399 gpio_request(GPIO_FN_MMCDAT0, NULL);
400
401 /* LPC (PTG, PTH, PTQ, PTU) */
402 gpio_request(GPIO_FN_SERIRQ, NULL);
403 gpio_request(GPIO_FN_LPCPD, NULL);
404 gpio_request(GPIO_FN_LDRQ, NULL);
405 gpio_request(GPIO_FN_WP, NULL);
406 gpio_request(GPIO_FN_FMS0, NULL);
407 gpio_request(GPIO_FN_LAD3, NULL);
408 gpio_request(GPIO_FN_LAD2, NULL);
409 gpio_request(GPIO_FN_LAD1, NULL);
410 gpio_request(GPIO_FN_LAD0, NULL);
411 gpio_request(GPIO_FN_LFRAME, NULL);
412 gpio_request(GPIO_FN_LRESET, NULL);
413 gpio_request(GPIO_FN_LCLK, NULL);
414 gpio_request(GPIO_FN_LGPIO7, NULL);
415 gpio_request(GPIO_FN_LGPIO6, NULL);
416 gpio_request(GPIO_FN_LGPIO5, NULL);
417 gpio_request(GPIO_FN_LGPIO4, NULL);
418
419 /* SPI1 (PTH) */
420 gpio_request(GPIO_FN_SP1_MOSI, NULL);
421 gpio_request(GPIO_FN_SP1_MISO, NULL);
422 gpio_request(GPIO_FN_SP1_SCK, NULL);
423 gpio_request(GPIO_FN_SP1_SCK_FB, NULL);
424 gpio_request(GPIO_FN_SP1_SS0, NULL);
425 gpio_request(GPIO_FN_SP1_SS1, NULL);
426
427 /* SDHI (PTI) */
428 gpio_request(GPIO_FN_SD_WP, NULL);
429 gpio_request(GPIO_FN_SD_CD, NULL);
430 gpio_request(GPIO_FN_SD_CLK, NULL);
431 gpio_request(GPIO_FN_SD_CMD, NULL);
432 gpio_request(GPIO_FN_SD_D3, NULL);
433 gpio_request(GPIO_FN_SD_D2, NULL);
434 gpio_request(GPIO_FN_SD_D1, NULL);
435 gpio_request(GPIO_FN_SD_D0, NULL);
436
437 /* SCIF3/4 (PTJ, PTW) */
438 gpio_request(GPIO_FN_RTS3, NULL);
439 gpio_request(GPIO_FN_CTS3, NULL);
440 gpio_request(GPIO_FN_TXD3, NULL);
441 gpio_request(GPIO_FN_RXD3, NULL);
442 gpio_request(GPIO_FN_RTS4, NULL);
443 gpio_request(GPIO_FN_RXD4, NULL);
444 gpio_request(GPIO_FN_TXD4, NULL);
445 gpio_request(GPIO_FN_CTS4, NULL);
446
447 /* SERMUX (PTK, PTL, PTO, PTV) */
448 gpio_request(GPIO_FN_COM2_TXD, NULL);
449 gpio_request(GPIO_FN_COM2_RXD, NULL);
450 gpio_request(GPIO_FN_COM2_RTS, NULL);
451 gpio_request(GPIO_FN_COM2_CTS, NULL);
452 gpio_request(GPIO_FN_COM2_DTR, NULL);
453 gpio_request(GPIO_FN_COM2_DSR, NULL);
454 gpio_request(GPIO_FN_COM2_DCD, NULL);
455 gpio_request(GPIO_FN_COM2_RI, NULL);
456 gpio_request(GPIO_FN_RAC_RXD, NULL);
457 gpio_request(GPIO_FN_RAC_RTS, NULL);
458 gpio_request(GPIO_FN_RAC_CTS, NULL);
459 gpio_request(GPIO_FN_RAC_DTR, NULL);
460 gpio_request(GPIO_FN_RAC_DSR, NULL);
461 gpio_request(GPIO_FN_RAC_DCD, NULL);
462 gpio_request(GPIO_FN_RAC_TXD, NULL);
463 gpio_request(GPIO_FN_COM1_TXD, NULL);
464 gpio_request(GPIO_FN_COM1_RXD, NULL);
465 gpio_request(GPIO_FN_COM1_RTS, NULL);
466 gpio_request(GPIO_FN_COM1_CTS, NULL);
467
468 writeb(0x10, 0xfe470000); /* SMR0: SerMux mode 0 */
469
470 /* IIC (PTM, PTR, PTS) */
471 gpio_request(GPIO_FN_SDA7, NULL);
472 gpio_request(GPIO_FN_SCL7, NULL);
473 gpio_request(GPIO_FN_SDA6, NULL);
474 gpio_request(GPIO_FN_SCL6, NULL);
475 gpio_request(GPIO_FN_SDA5, NULL);
476 gpio_request(GPIO_FN_SCL5, NULL);
477 gpio_request(GPIO_FN_SDA4, NULL);
478 gpio_request(GPIO_FN_SCL4, NULL);
479 gpio_request(GPIO_FN_SDA3, NULL);
480 gpio_request(GPIO_FN_SCL3, NULL);
481 gpio_request(GPIO_FN_SDA2, NULL);
482 gpio_request(GPIO_FN_SCL2, NULL);
483 gpio_request(GPIO_FN_SDA1, NULL);
484 gpio_request(GPIO_FN_SCL1, NULL);
485 gpio_request(GPIO_FN_SDA0, NULL);
486 gpio_request(GPIO_FN_SCL0, NULL);
487
488 /* USB (PTN) */
489 gpio_request(GPIO_FN_VBUS_EN, NULL);
490 gpio_request(GPIO_FN_VBUS_OC, NULL);
491
492 /* SGPIO1/0 (PTN, PTO) */
493 gpio_request(GPIO_FN_SGPIO1_CLK, NULL);
494 gpio_request(GPIO_FN_SGPIO1_LOAD, NULL);
495 gpio_request(GPIO_FN_SGPIO1_DI, NULL);
496 gpio_request(GPIO_FN_SGPIO1_DO, NULL);
497 gpio_request(GPIO_FN_SGPIO0_CLK, NULL);
498 gpio_request(GPIO_FN_SGPIO0_LOAD, NULL);
499 gpio_request(GPIO_FN_SGPIO0_DI, NULL);
500 gpio_request(GPIO_FN_SGPIO0_DO, NULL);
501
502 /* WDT (PTN) */
503 gpio_request(GPIO_FN_SUB_CLKIN, NULL);
504
505 /* System (PTT) */
506 gpio_request(GPIO_FN_STATUS1, NULL);
507 gpio_request(GPIO_FN_STATUS0, NULL);
508
509 /* PWMX (PTT) */
510 gpio_request(GPIO_FN_PWMX1, NULL);
511 gpio_request(GPIO_FN_PWMX0, NULL);
512
513 /* R-SPI (PTV) */
514 gpio_request(GPIO_FN_R_SPI_MOSI, NULL);
515 gpio_request(GPIO_FN_R_SPI_MISO, NULL);
516 gpio_request(GPIO_FN_R_SPI_RSPCK, NULL);
517 gpio_request(GPIO_FN_R_SPI_SSL0, NULL);
518 gpio_request(GPIO_FN_R_SPI_SSL1, NULL);
519
520 /* EVC (PTV, PTW) */
521 gpio_request(GPIO_FN_EVENT7, NULL);
522 gpio_request(GPIO_FN_EVENT6, NULL);
523 gpio_request(GPIO_FN_EVENT5, NULL);
524 gpio_request(GPIO_FN_EVENT4, NULL);
525 gpio_request(GPIO_FN_EVENT3, NULL);
526 gpio_request(GPIO_FN_EVENT2, NULL);
527 gpio_request(GPIO_FN_EVENT1, NULL);
528 gpio_request(GPIO_FN_EVENT0, NULL);
529
530 /* LED for heartbeat */
531 gpio_request(GPIO_PTU3, NULL);
532 gpio_direction_output(GPIO_PTU3, 1);
533 gpio_request(GPIO_PTU2, NULL);
534 gpio_direction_output(GPIO_PTU2, 1);
535 gpio_request(GPIO_PTU1, NULL);
536 gpio_direction_output(GPIO_PTU1, 1);
537 gpio_request(GPIO_PTU0, NULL);
538 gpio_direction_output(GPIO_PTU0, 1);
539
540 /* control for MDIO of Gigabit Ethernet */
541 gpio_request(GPIO_PTT4, NULL);
542 gpio_direction_output(GPIO_PTT4, 1);
543
544 /* control for eMMC */
545 gpio_request(GPIO_PTT7, NULL); /* eMMC_RST# */
546 gpio_direction_output(GPIO_PTT7, 0);
547 gpio_request(GPIO_PTT6, NULL); /* eMMC_INDEX# */
548 gpio_direction_output(GPIO_PTT6, 0);
549 gpio_request(GPIO_PTT5, NULL); /* eMMC_PRST# */
550 gpio_direction_output(GPIO_PTT5, 1);
551
Yoshihiro Shimodaceb7afe2011-02-25 07:39:32 +0000552 /* register SPI device information */
553 spi_register_board_info(spi_board_info,
554 ARRAY_SIZE(spi_board_info));
555
Yoshihiro Shimoda36239c62010-07-06 04:32:16 +0000556 /* General platform */
557 return platform_add_devices(sh7757lcr_devices,
558 ARRAY_SIZE(sh7757lcr_devices));
559}
560arch_initcall(sh7757lcr_devices_setup);
561
562/* Initialize IRQ setting */
563void __init init_sh7757lcr_IRQ(void)
564{
565 plat_irq_setup_pins(IRQ_MODE_IRQ7654);
566 plat_irq_setup_pins(IRQ_MODE_IRQ3210);
567}
568
569/* Initialize the board */
570static void __init sh7757lcr_setup(char **cmdline_p)
571{
572 printk(KERN_INFO "Renesas R0P7757LC0012RL support.\n");
573}
574
575static int sh7757lcr_mode_pins(void)
576{
577 int value = 0;
578
579 /* These are the factory default settings of S3 (Low active).
580 * If you change these dip switches then you will need to
581 * adjust the values below as well.
582 */
583 value |= MODE_PIN0; /* Clock Mode: 1 */
584
585 return value;
586}
587
588/* The Machine Vector */
589static struct sh_machine_vector mv_sh7757lcr __initmv = {
590 .mv_name = "SH7757LCR",
591 .mv_setup = sh7757lcr_setup,
592 .mv_init_irq = init_sh7757lcr_IRQ,
593 .mv_mode_pins = sh7757lcr_mode_pins,
594};
595