blob: 92ddce4b34563faab3c53ac7629140dd05f089f9 [file] [log] [blame]
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001/*
2 * Copyright (C) 2009 Renesas Solutions Corp.
3 *
4 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
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/device.h>
13#include <linux/platform_device.h>
Yusuke Goda1238c682010-04-27 10:15:32 +000014#include <linux/mmc/host.h>
15#include <linux/mmc/sh_mmcif.h>
Guennadi Liakhovetski960b9e72011-03-09 11:29:48 +010016#include <linux/mmc/sh_mobile_sdhi.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000017#include <linux/mtd/physmap.h>
18#include <linux/gpio.h>
19#include <linux/interrupt.h>
Kuninori Morimoto35a35402009-08-26 11:04:26 +000020#include <linux/io.h>
21#include <linux/delay.h>
Kuninori Morimoto907050a2009-08-26 11:04:31 +000022#include <linux/usb/r8a66597.h>
Kuninori Morimotofb2e7392011-06-15 06:08:18 +000023#include <linux/usb/renesas_usbhs.h>
Kuninori Morimoto4907d572009-09-10 01:39:58 +000024#include <linux/i2c.h>
Kuninori Morimoto8810e052009-09-28 08:21:41 +000025#include <linux/i2c/tsc2007.h>
Magnus Damm1ce4da72009-12-07 14:05:45 +000026#include <linux/spi/spi.h>
27#include <linux/spi/sh_msiof.h>
28#include <linux/spi/mmc_spi.h>
Kuninori Morimotoe9103e72009-09-14 11:23:00 +000029#include <linux/input.h>
Magnus Dammfc1d0032009-11-27 07:32:24 +000030#include <linux/input/sh_keysc.h>
Yoshihiro Shimodacf8e56b2011-09-28 16:49:14 +090031#include <linux/sh_eth.h>
Kuninori Morimotofa3ba512009-08-26 11:04:34 +000032#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +000033#include <sound/sh_fsi.h>
Kuninori Morimoto2153ad32009-08-26 11:04:36 +000034#include <media/sh_mobile_ceu.h>
Kuninori Morimoto207efd02009-12-15 05:37:16 +000035#include <media/tw9910.h>
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +000036#include <media/mt9t112.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000037#include <asm/heartbeat.h>
Kuninori Morimotoa9918012009-09-14 11:23:16 +000038#include <asm/clock.h>
Magnus Dammeb0cd9e2009-10-30 04:23:59 +000039#include <asm/suspend.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000040#include <cpu/sh7724.h>
41
42/*
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000043 * Address Interface BusWidth
44 *-----------------------------------------
45 * 0x0000_0000 uboot 16bit
46 * 0x0004_0000 Linux romImage 16bit
47 * 0x0014_0000 MTD for Linux 16bit
48 * 0x0400_0000 Internal I/O 16/32bit
49 * 0x0800_0000 DRAM 32bit
50 * 0x1800_0000 MFI 16bit
Kuninori Morimoto4138b742009-08-19 12:08:33 +000051 */
52
Kuninori Morimoto9c472c42009-10-02 07:52:20 +000053/* SWITCH
54 *------------------------------
55 * DS2[1] = FlashROM write protect ON : write protect
56 * OFF : No write protect
57 * DS2[2] = RMII / TS, SCIF ON : RMII
58 * OFF : TS, SCIF3
59 * DS2[3] = Camera / Video ON : Camera
60 * OFF : NTSC/PAL (IN)
61 * DS2[5] = NTSC_OUT Clock ON : On board OSC
62 * OFF : SH7724 DV_CLK
63 * DS2[6-7] = MMC / SD ON-OFF : SD
64 * OFF-ON : MMC
65 */
66
Kuninori Morimoto4138b742009-08-19 12:08:33 +000067/* Heartbeat */
68static unsigned char led_pos[] = { 0, 1, 2, 3 };
Paul Mundta09d2832010-01-15 12:24:34 +090069
Kuninori Morimoto4138b742009-08-19 12:08:33 +000070static struct heartbeat_data heartbeat_data = {
Kuninori Morimoto4138b742009-08-19 12:08:33 +000071 .nr_bits = 4,
72 .bit_pos = led_pos,
73};
74
Paul Mundta09d2832010-01-15 12:24:34 +090075static struct resource heartbeat_resource = {
76 .start = 0xA405012C, /* PTG */
77 .end = 0xA405012E - 1,
78 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000079};
80
81static struct platform_device heartbeat_device = {
82 .name = "heartbeat",
83 .id = -1,
84 .dev = {
85 .platform_data = &heartbeat_data,
86 },
Paul Mundta09d2832010-01-15 12:24:34 +090087 .num_resources = 1,
88 .resource = &heartbeat_resource,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000089};
90
91/* MTD */
92static struct mtd_partition nor_flash_partitions[] = {
93 {
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000094 .name = "boot loader",
Kuninori Morimoto4138b742009-08-19 12:08:33 +000095 .offset = 0,
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000096 .size = (5 * 1024 * 1024),
Kuninori Morimotod5ce0102009-09-30 00:50:30 +000097 .mask_flags = MTD_WRITEABLE, /* force read-only */
Kuninori Morimoto4138b742009-08-19 12:08:33 +000098 }, {
Kuninori Morimoto4138b742009-08-19 12:08:33 +000099 .name = "free-area",
100 .offset = MTDPART_OFS_APPEND,
101 .size = MTDPART_SIZ_FULL,
102 },
103};
104
105static struct physmap_flash_data nor_flash_data = {
106 .width = 2,
107 .parts = nor_flash_partitions,
108 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
109};
110
111static struct resource nor_flash_resources[] = {
112 [0] = {
113 .name = "NOR Flash",
114 .start = 0x00000000,
115 .end = 0x03ffffff,
116 .flags = IORESOURCE_MEM,
117 }
118};
119
120static struct platform_device nor_flash_device = {
121 .name = "physmap-flash",
122 .resource = nor_flash_resources,
123 .num_resources = ARRAY_SIZE(nor_flash_resources),
124 .dev = {
125 .platform_data = &nor_flash_data,
126 },
127};
128
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000129/* SH Eth */
130#define SH_ETH_ADDR (0xA4600000)
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000131static struct resource sh_eth_resources[] = {
132 [0] = {
133 .start = SH_ETH_ADDR,
134 .end = SH_ETH_ADDR + 0x1FC,
135 .flags = IORESOURCE_MEM,
136 },
137 [1] = {
138 .start = 91,
139 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
140 },
141};
142
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000143static struct sh_eth_plat_data sh_eth_plat = {
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000144 .phy = 0x1f, /* SMSC LAN8700 */
145 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +0000146 .register_type = SH_ETH_REG_FAST_SH4,
147 .phy_interface = PHY_INTERFACE_MODE_MII,
Kuninori Morimotoacf3cc22009-09-24 06:28:27 +0000148 .ether_link_active_low = 1
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000149};
150
151static struct platform_device sh_eth_device = {
152 .name = "sh-eth",
153 .id = 0,
154 .dev = {
155 .platform_data = &sh_eth_plat,
156 },
157 .num_resources = ARRAY_SIZE(sh_eth_resources),
158 .resource = sh_eth_resources,
Magnus Damm40e42312009-10-26 10:41:58 +0000159 .archdata = {
160 .hwblk_id = HWBLK_ETHER,
161 },
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000162};
163
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000164/* USB0 host */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000165static void usb0_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000166{
167 gpio_set_value(GPIO_PTB4, power);
168}
169
170static struct r8a66597_platdata usb0_host_data = {
171 .on_chip = 1,
172 .port_power = usb0_port_power,
173};
174
175static struct resource usb0_host_resources[] = {
176 [0] = {
177 .start = 0xa4d80000,
178 .end = 0xa4d80124 - 1,
179 .flags = IORESOURCE_MEM,
180 },
181 [1] = {
182 .start = 65,
183 .end = 65,
184 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
185 },
186};
187
188static struct platform_device usb0_host_device = {
189 .name = "r8a66597_hcd",
190 .id = 0,
191 .dev = {
192 .dma_mask = NULL, /* not use dma */
193 .coherent_dma_mask = 0xffffffff,
194 .platform_data = &usb0_host_data,
195 },
196 .num_resources = ARRAY_SIZE(usb0_host_resources),
197 .resource = usb0_host_resources,
198};
199
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000200/* USB1 host/function */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000201static void usb1_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000202{
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000203 gpio_set_value(GPIO_PTB5, power);
204}
205
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000206static struct r8a66597_platdata usb1_common_data = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000207 .on_chip = 1,
208 .port_power = usb1_port_power,
209};
210
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000211static struct resource usb1_common_resources[] = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000212 [0] = {
213 .start = 0xa4d90000,
214 .end = 0xa4d90124 - 1,
215 .flags = IORESOURCE_MEM,
216 },
217 [1] = {
218 .start = 66,
219 .end = 66,
220 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
221 },
222};
223
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000224static struct platform_device usb1_common_device = {
225 /* .name will be added in arch_setup */
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000226 .id = 1,
227 .dev = {
228 .dma_mask = NULL, /* not use dma */
229 .coherent_dma_mask = 0xffffffff,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000230 .platform_data = &usb1_common_data,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000231 },
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000232 .num_resources = ARRAY_SIZE(usb1_common_resources),
233 .resource = usb1_common_resources,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000234};
235
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000236/*
237 * USBHS
238 */
239static int usbhs_get_id(struct platform_device *pdev)
240{
241 return gpio_get_value(GPIO_PTB3);
242}
243
244static struct renesas_usbhs_platform_info usbhs_info = {
245 .platform_callback = {
246 .get_id = usbhs_get_id,
247 },
248 .driver_param = {
249 .buswait_bwait = 4,
250 .detection_delay = 5,
Kuninori Morimoto9f0fa792011-06-15 06:08:32 +0000251 .d0_tx_id = SHDMA_SLAVE_USB1D0_TX,
252 .d0_rx_id = SHDMA_SLAVE_USB1D0_RX,
253 .d1_tx_id = SHDMA_SLAVE_USB1D1_TX,
254 .d1_rx_id = SHDMA_SLAVE_USB1D1_RX,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000255 },
256};
257
258static struct resource usbhs_resources[] = {
259 [0] = {
260 .start = 0xa4d90000,
261 .end = 0xa4d90124 - 1,
262 .flags = IORESOURCE_MEM,
263 },
264 [1] = {
265 .start = 66,
266 .end = 66,
267 .flags = IORESOURCE_IRQ,
268 },
269};
270
271static struct platform_device usbhs_device = {
272 .name = "renesas_usbhs",
273 .id = 1,
274 .dev = {
275 .dma_mask = NULL, /* not use dma */
276 .coherent_dma_mask = 0xffffffff,
277 .platform_data = &usbhs_info,
278 },
279 .num_resources = ARRAY_SIZE(usbhs_resources),
280 .resource = usbhs_resources,
281 .archdata = {
282 .hwblk_id = HWBLK_USB1,
283 },
284};
285
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000286/* LCDC */
Jesper Juhle04008e2011-07-09 23:16:22 +0200287static const struct fb_videomode ecovec_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000288 {
289 .name = "Panel",
290 .xres = 800,
291 .yres = 480,
292 .left_margin = 220,
293 .right_margin = 110,
294 .hsync_len = 70,
295 .upper_margin = 20,
296 .lower_margin = 5,
297 .vsync_len = 5,
298 .sync = 0, /* hsync and vsync are active low */
299 },
300};
301
Jesper Juhle04008e2011-07-09 23:16:22 +0200302static const struct fb_videomode ecovec_dvi_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000303 {
304 .name = "DVI",
305 .xres = 1280,
306 .yres = 720,
307 .left_margin = 220,
308 .right_margin = 110,
309 .hsync_len = 40,
310 .upper_margin = 20,
311 .lower_margin = 5,
312 .vsync_len = 5,
313 .sync = 0, /* hsync and vsync are active low */
314 },
315};
316
Alexandre Courbot0839d682011-02-16 03:49:02 +0000317static int ecovec24_set_brightness(void *board_data, int brightness)
318{
319 gpio_set_value(GPIO_PTR1, brightness);
320
321 return 0;
322}
323
324static int ecovec24_get_brightness(void *board_data)
325{
326 return gpio_get_value(GPIO_PTR1);
327}
328
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000329static struct sh_mobile_lcdc_info lcdc_info = {
330 .ch[0] = {
331 .interface_type = RGB18,
332 .chan = LCDC_CHAN_MAINLCD,
333 .bpp = 16,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000334 .lcd_size_cfg = { /* 7.0 inch */
335 .width = 152,
336 .height = 91,
337 },
338 .board_cfg = {
Alexandre Courbot0839d682011-02-16 03:49:02 +0000339 .set_brightness = ecovec24_set_brightness,
340 .get_brightness = ecovec24_get_brightness,
341 },
342 .bl_info = {
343 .name = "sh_mobile_lcdc_bl",
344 .max_brightness = 1,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000345 },
346 }
347};
348
349static struct resource lcdc_resources[] = {
350 [0] = {
351 .name = "LCDC",
352 .start = 0xfe940000,
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000353 .end = 0xfe942fff,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000354 .flags = IORESOURCE_MEM,
355 },
356 [1] = {
357 .start = 106,
358 .flags = IORESOURCE_IRQ,
359 },
360};
361
362static struct platform_device lcdc_device = {
363 .name = "sh_mobile_lcdc_fb",
364 .num_resources = ARRAY_SIZE(lcdc_resources),
365 .resource = lcdc_resources,
366 .dev = {
367 .platform_data = &lcdc_info,
368 },
369 .archdata = {
370 .hwblk_id = HWBLK_LCDC,
371 },
372};
373
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000374/* CEU0 */
375static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
376 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
377};
378
379static struct resource ceu0_resources[] = {
380 [0] = {
381 .name = "CEU0",
382 .start = 0xfe910000,
383 .end = 0xfe91009f,
384 .flags = IORESOURCE_MEM,
385 },
386 [1] = {
387 .start = 52,
388 .flags = IORESOURCE_IRQ,
389 },
390 [2] = {
391 /* place holder for contiguous memory */
392 },
393};
394
395static struct platform_device ceu0_device = {
396 .name = "sh_mobile_ceu",
397 .id = 0, /* "ceu0" clock */
398 .num_resources = ARRAY_SIZE(ceu0_resources),
399 .resource = ceu0_resources,
400 .dev = {
401 .platform_data = &sh_mobile_ceu0_info,
402 },
403 .archdata = {
404 .hwblk_id = HWBLK_CEU0,
405 },
406};
407
408/* CEU1 */
409static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
410 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
411};
412
413static struct resource ceu1_resources[] = {
414 [0] = {
415 .name = "CEU1",
416 .start = 0xfe914000,
417 .end = 0xfe91409f,
418 .flags = IORESOURCE_MEM,
419 },
420 [1] = {
421 .start = 63,
422 .flags = IORESOURCE_IRQ,
423 },
424 [2] = {
425 /* place holder for contiguous memory */
426 },
427};
428
429static struct platform_device ceu1_device = {
430 .name = "sh_mobile_ceu",
431 .id = 1, /* "ceu1" clock */
432 .num_resources = ARRAY_SIZE(ceu1_resources),
433 .resource = ceu1_resources,
434 .dev = {
435 .platform_data = &sh_mobile_ceu1_info,
436 },
437 .archdata = {
438 .hwblk_id = HWBLK_CEU1,
439 },
440};
441
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000442/* I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000443static struct i2c_board_info i2c0_devices[] = {
444 {
445 I2C_BOARD_INFO("da7210", 0x1a),
446 },
447};
448
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000449static struct i2c_board_info i2c1_devices[] = {
450 {
451 I2C_BOARD_INFO("r2025sd", 0x32),
452 },
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900453 {
454 I2C_BOARD_INFO("lis3lv02d", 0x1c),
455 .irq = 33,
456 }
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000457};
458
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000459/* KEYSC */
460static struct sh_keysc_info keysc_info = {
461 .mode = SH_KEYSC_MODE_1,
462 .scan_timing = 3,
463 .delay = 50,
464 .kycr2_delay = 100,
465 .keycodes = { KEY_1, 0, 0, 0, 0,
466 KEY_2, 0, 0, 0, 0,
467 KEY_3, 0, 0, 0, 0,
468 KEY_4, 0, 0, 0, 0,
469 KEY_5, 0, 0, 0, 0,
470 KEY_6, 0, 0, 0, 0, },
471};
472
473static struct resource keysc_resources[] = {
474 [0] = {
475 .name = "KEYSC",
476 .start = 0x044b0000,
477 .end = 0x044b000f,
478 .flags = IORESOURCE_MEM,
479 },
480 [1] = {
481 .start = 79,
482 .flags = IORESOURCE_IRQ,
483 },
484};
485
486static struct platform_device keysc_device = {
487 .name = "sh_keysc",
488 .id = 0, /* keysc0 clock */
489 .num_resources = ARRAY_SIZE(keysc_resources),
490 .resource = keysc_resources,
491 .dev = {
492 .platform_data = &keysc_info,
493 },
494 .archdata = {
495 .hwblk_id = HWBLK_KEYSC,
496 },
497};
498
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000499/* TouchScreen */
500#define IRQ0 32
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900501static int ts_get_pendown_state(void)
502{
503 int val = 0;
504 gpio_free(GPIO_FN_INTC_IRQ0);
505 gpio_request(GPIO_PTZ0, NULL);
506 gpio_direction_input(GPIO_PTZ0);
507
508 val = gpio_get_value(GPIO_PTZ0);
509
510 gpio_free(GPIO_PTZ0);
511 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
512
513 return val ? 0 : 1;
514}
515
516static int ts_init(void)
517{
518 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
519 return 0;
520}
521
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000522static struct tsc2007_platform_data tsc2007_info = {
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000523 .model = 2007,
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900524 .x_plate_ohms = 180,
525 .get_pendown_state = ts_get_pendown_state,
526 .init_platform_hw = ts_init,
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000527};
528
529static struct i2c_board_info ts_i2c_clients = {
530 I2C_BOARD_INFO("tsc2007", 0x48),
531 .type = "tsc2007",
532 .platform_data = &tsc2007_info,
533 .irq = IRQ0,
534};
535
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200536#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000537/* SDHI0 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000538static void sdhi0_set_pwr(struct platform_device *pdev, int state)
539{
540 gpio_set_value(GPIO_PTB6, state);
541}
542
543static struct sh_mobile_sdhi_info sdhi0_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000544 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
545 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
546 .set_pwr = sdhi0_set_pwr,
Arnd Hannemanne8a50ae2010-12-29 15:50:28 +0000547 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD,
Magnus Damm98779ad2009-11-27 04:36:58 +0000548};
549
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000550static struct resource sdhi0_resources[] = {
551 [0] = {
552 .name = "SDHI0",
553 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100554 .end = 0x04ce00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000555 .flags = IORESOURCE_MEM,
556 },
557 [1] = {
Magnus Damm3844ead2010-02-09 06:50:04 +0000558 .start = 100,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000559 .flags = IORESOURCE_IRQ,
560 },
561};
562
563static struct platform_device sdhi0_device = {
564 .name = "sh_mobile_sdhi",
565 .num_resources = ARRAY_SIZE(sdhi0_resources),
566 .resource = sdhi0_resources,
567 .id = 0,
Magnus Damm98779ad2009-11-27 04:36:58 +0000568 .dev = {
569 .platform_data = &sdhi0_info,
570 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000571 .archdata = {
572 .hwblk_id = HWBLK_SDHI0,
573 },
574};
575
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200576#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000577/* SDHI1 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000578static void sdhi1_set_pwr(struct platform_device *pdev, int state)
579{
580 gpio_set_value(GPIO_PTB7, state);
581}
582
583static struct sh_mobile_sdhi_info sdhi1_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000584 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
585 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Arnd Hannemanne8a50ae2010-12-29 15:50:28 +0000586 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD,
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000587 .set_pwr = sdhi1_set_pwr,
Magnus Damm98779ad2009-11-27 04:36:58 +0000588};
589
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000590static struct resource sdhi1_resources[] = {
591 [0] = {
592 .name = "SDHI1",
593 .start = 0x04cf0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100594 .end = 0x04cf00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000595 .flags = IORESOURCE_MEM,
596 },
597 [1] = {
Magnus Damm3844ead2010-02-09 06:50:04 +0000598 .start = 23,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000599 .flags = IORESOURCE_IRQ,
600 },
601};
602
603static struct platform_device sdhi1_device = {
604 .name = "sh_mobile_sdhi",
605 .num_resources = ARRAY_SIZE(sdhi1_resources),
606 .resource = sdhi1_resources,
607 .id = 1,
Magnus Damm98779ad2009-11-27 04:36:58 +0000608 .dev = {
609 .platform_data = &sdhi1_info,
610 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000611 .archdata = {
612 .hwblk_id = HWBLK_SDHI1,
613 },
614};
Yusuke Goda1238c682010-04-27 10:15:32 +0000615#endif /* CONFIG_MMC_SH_MMCIF */
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000616
Magnus Damm1ce4da72009-12-07 14:05:45 +0000617#else
618
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000619/* MMC SPI */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000620static int mmc_spi_get_ro(struct device *dev)
621{
622 return gpio_get_value(GPIO_PTY6);
623}
624
625static int mmc_spi_get_cd(struct device *dev)
626{
627 return !gpio_get_value(GPIO_PTY7);
628}
629
630static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
631{
632 gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
633}
634
635static struct mmc_spi_platform_data mmc_spi_info = {
636 .get_ro = mmc_spi_get_ro,
637 .get_cd = mmc_spi_get_cd,
638 .caps = MMC_CAP_NEEDS_POLL,
639 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
640 .setpower = mmc_spi_setpower,
641};
642
643static struct spi_board_info spi_bus[] = {
644 {
645 .modalias = "mmc_spi",
646 .platform_data = &mmc_spi_info,
647 .max_speed_hz = 5000000,
648 .mode = SPI_MODE_0,
649 .controller_data = (void *) GPIO_PTM4,
650 },
651};
652
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000653/* MSIOF0 */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000654static struct sh_msiof_spi_info msiof0_data = {
655 .num_chipselect = 1,
656};
657
658static struct resource msiof0_resources[] = {
659 [0] = {
660 .name = "MSIOF0",
661 .start = 0xa4c40000,
662 .end = 0xa4c40063,
663 .flags = IORESOURCE_MEM,
664 },
665 [1] = {
666 .start = 84,
667 .flags = IORESOURCE_IRQ,
668 },
669};
670
671static struct platform_device msiof0_device = {
672 .name = "spi_sh_msiof",
673 .id = 0, /* MSIOF0 */
674 .dev = {
675 .platform_data = &msiof0_data,
676 },
677 .num_resources = ARRAY_SIZE(msiof0_resources),
678 .resource = msiof0_resources,
679 .archdata = {
680 .hwblk_id = HWBLK_MSIOF0,
681 },
682};
683
684#endif
685
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000686/* I2C Video/Camera */
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000687static struct i2c_board_info i2c_camera[] = {
688 {
689 I2C_BOARD_INFO("tw9910", 0x45),
690 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000691 {
692 /* 1st camera */
693 I2C_BOARD_INFO("mt9t112", 0x3c),
694 },
695 {
696 /* 2nd camera */
697 I2C_BOARD_INFO("mt9t112", 0x3c),
698 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000699};
700
701/* tw9910 */
702static int tw9910_power(struct device *dev, int mode)
703{
704 int val = mode ? 0 : 1;
705
706 gpio_set_value(GPIO_PTU2, val);
707 if (mode)
708 mdelay(100);
709
710 return 0;
711}
712
713static struct tw9910_video_info tw9910_info = {
714 .buswidth = SOCAM_DATAWIDTH_8,
715 .mpout = TW9910_MPO_FIELD,
716};
717
718static struct soc_camera_link tw9910_link = {
719 .i2c_adapter_id = 0,
720 .bus_id = 1,
721 .power = tw9910_power,
722 .board_info = &i2c_camera[0],
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000723 .priv = &tw9910_info,
724};
725
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000726/* mt9t112 */
727static int mt9t112_power1(struct device *dev, int mode)
728{
729 gpio_set_value(GPIO_PTA3, mode);
730 if (mode)
731 mdelay(100);
732
733 return 0;
734}
735
736static struct mt9t112_camera_info mt9t112_info1 = {
737 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
738 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
739};
740
741static struct soc_camera_link mt9t112_link1 = {
742 .i2c_adapter_id = 0,
743 .power = mt9t112_power1,
744 .bus_id = 0,
745 .board_info = &i2c_camera[1],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000746 .priv = &mt9t112_info1,
747};
748
749static int mt9t112_power2(struct device *dev, int mode)
750{
751 gpio_set_value(GPIO_PTA4, mode);
752 if (mode)
753 mdelay(100);
754
755 return 0;
756}
757
758static struct mt9t112_camera_info mt9t112_info2 = {
759 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
760 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
761};
762
763static struct soc_camera_link mt9t112_link2 = {
764 .i2c_adapter_id = 1,
765 .power = mt9t112_power2,
766 .bus_id = 1,
767 .board_info = &i2c_camera[2],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000768 .priv = &mt9t112_info2,
769};
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000770
771static struct platform_device camera_devices[] = {
772 {
773 .name = "soc-camera-pdrv",
774 .id = 0,
775 .dev = {
776 .platform_data = &tw9910_link,
777 },
778 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000779 {
780 .name = "soc-camera-pdrv",
781 .id = 1,
782 .dev = {
783 .platform_data = &mt9t112_link1,
784 },
785 },
786 {
787 .name = "soc-camera-pdrv",
788 .id = 2,
789 .dev = {
790 .platform_data = &mt9t112_link2,
791 },
792 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000793};
794
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000795/* FSI */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000796static struct sh_fsi_platform_info fsi_info = {
Kuninori Morimotof17c13c2011-01-24 10:43:19 +0900797 .portb_flags = SH_FSI_BRS_INV,
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000798};
799
800static struct resource fsi_resources[] = {
801 [0] = {
802 .name = "FSI",
803 .start = 0xFE3C0000,
804 .end = 0xFE3C021d,
805 .flags = IORESOURCE_MEM,
806 },
807 [1] = {
808 .start = 108,
809 .flags = IORESOURCE_IRQ,
810 },
811};
812
813static struct platform_device fsi_device = {
814 .name = "sh_fsi",
815 .id = 0,
816 .num_resources = ARRAY_SIZE(fsi_resources),
817 .resource = fsi_resources,
818 .dev = {
819 .platform_data = &fsi_info,
820 },
821 .archdata = {
822 .hwblk_id = HWBLK_SPU, /* FSI needs SPU hwblk */
823 },
824};
825
Kuninori Morimoto26365712010-02-24 00:32:28 +0000826/* IrDA */
827static struct resource irda_resources[] = {
828 [0] = {
829 .name = "IrDA",
830 .start = 0xA45D0000,
831 .end = 0xA45D0049,
832 .flags = IORESOURCE_MEM,
833 },
834 [1] = {
835 .start = 20,
836 .flags = IORESOURCE_IRQ,
837 },
838};
839
840static struct platform_device irda_device = {
841 .name = "sh_sir",
842 .num_resources = ARRAY_SIZE(irda_resources),
843 .resource = irda_resources,
844};
845
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000846#include <media/ak881x.h>
847#include <media/sh_vou.h>
848
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000849static struct ak881x_pdata ak881x_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000850 .flags = AK881X_IF_MODE_SLAVE,
851};
852
853static struct i2c_board_info ak8813 = {
854 I2C_BOARD_INFO("ak8813", 0x20),
855 .platform_data = &ak881x_pdata,
856};
857
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000858static struct sh_vou_pdata sh_vou_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000859 .bus_fmt = SH_VOU_BUS_8BIT,
860 .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
861 .board_info = &ak8813,
862 .i2c_adap = 0,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000863};
864
865static struct resource sh_vou_resources[] = {
866 [0] = {
867 .start = 0xfe960000,
868 .end = 0xfe962043,
869 .flags = IORESOURCE_MEM,
870 },
871 [1] = {
872 .start = 55,
873 .flags = IORESOURCE_IRQ,
874 },
875};
876
877static struct platform_device vou_device = {
878 .name = "sh-vou",
879 .id = -1,
880 .num_resources = ARRAY_SIZE(sh_vou_resources),
881 .resource = sh_vou_resources,
882 .dev = {
883 .platform_data = &sh_vou_pdata,
884 },
885 .archdata = {
886 .hwblk_id = HWBLK_VOU,
887 },
888};
889
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200890#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000891/* SH_MMCIF */
892static void mmcif_set_pwr(struct platform_device *pdev, int state)
893{
894 gpio_set_value(GPIO_PTB7, state);
895}
896
897static void mmcif_down_pwr(struct platform_device *pdev)
898{
899 gpio_set_value(GPIO_PTB7, 0);
900}
901
902static struct resource sh_mmcif_resources[] = {
903 [0] = {
904 .name = "SH_MMCIF",
905 .start = 0xA4CA0000,
906 .end = 0xA4CA00FF,
907 .flags = IORESOURCE_MEM,
908 },
909 [1] = {
910 /* MMC2I */
911 .start = 29,
912 .flags = IORESOURCE_IRQ,
913 },
914 [2] = {
915 /* MMC3I */
916 .start = 30,
917 .flags = IORESOURCE_IRQ,
918 },
919};
920
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000921static struct sh_mmcif_plat_data sh_mmcif_plat = {
Yusuke Goda1238c682010-04-27 10:15:32 +0000922 .set_pwr = mmcif_set_pwr,
923 .down_pwr = mmcif_down_pwr,
924 .sup_pclk = 0, /* SH7724: Max Pclk/2 */
925 .caps = MMC_CAP_4_BIT_DATA |
926 MMC_CAP_8_BIT_DATA |
927 MMC_CAP_NEEDS_POLL,
928 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
929};
930
931static struct platform_device sh_mmcif_device = {
932 .name = "sh_mmcif",
933 .id = 0,
934 .dev = {
935 .platform_data = &sh_mmcif_plat,
936 },
937 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
938 .resource = sh_mmcif_resources,
Guennadi Liakhovetski52b96c22011-04-15 18:30:55 +0000939 .archdata = {
940 .hwblk_id = HWBLK_MMC,
941 },
Yusuke Goda1238c682010-04-27 10:15:32 +0000942};
943#endif
944
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000945static struct platform_device *ecovec_devices[] __initdata = {
946 &heartbeat_device,
947 &nor_flash_device,
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000948 &sh_eth_device,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000949 &usb0_host_device,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000950 &usb1_common_device,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000951 &usbhs_device,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000952 &lcdc_device,
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000953 &ceu0_device,
954 &ceu1_device,
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000955 &keysc_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200956#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000957 &sdhi0_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200958#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000959 &sdhi1_device,
Yusuke Goda1238c682010-04-27 10:15:32 +0000960#endif
Magnus Damm1ce4da72009-12-07 14:05:45 +0000961#else
962 &msiof0_device,
963#endif
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000964 &camera_devices[0],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000965 &camera_devices[1],
966 &camera_devices[2],
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000967 &fsi_device,
Kuninori Morimoto26365712010-02-24 00:32:28 +0000968 &irda_device,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000969 &vou_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200970#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000971 &sh_mmcif_device,
972#endif
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000973};
974
Magnus Damm6b3b5572010-02-25 11:10:54 +0000975#ifdef CONFIG_I2C
Kuninori Morimoto4907d572009-09-10 01:39:58 +0000976#define EEPROM_ADDR 0x50
977static u8 mac_read(struct i2c_adapter *a, u8 command)
978{
979 struct i2c_msg msg[2];
980 u8 buf;
981 int ret;
982
983 msg[0].addr = EEPROM_ADDR;
984 msg[0].flags = 0;
985 msg[0].len = 1;
986 msg[0].buf = &command;
987
988 msg[1].addr = EEPROM_ADDR;
989 msg[1].flags = I2C_M_RD;
990 msg[1].len = 1;
991 msg[1].buf = &buf;
992
993 ret = i2c_transfer(a, msg, 2);
994 if (ret < 0) {
995 printk(KERN_ERR "error %d\n", ret);
996 buf = 0xff;
997 }
998
999 return buf;
1000}
1001
Magnus Damm376abbb2009-10-26 10:44:37 +00001002static void __init sh_eth_init(struct sh_eth_plat_data *pd)
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001003{
1004 struct i2c_adapter *a = i2c_get_adapter(1);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001005 int i;
1006
1007 if (!a) {
1008 pr_err("can not get I2C 1\n");
1009 return;
1010 }
1011
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001012 /* read MAC address from EEPROM */
Magnus Damm376abbb2009-10-26 10:44:37 +00001013 for (i = 0; i < sizeof(pd->mac_addr); i++) {
1014 pd->mac_addr[i] = mac_read(a, 0x10 + i);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001015 msleep(10);
1016 }
Kuninori Morimotob230eb32010-03-16 02:01:33 +00001017
1018 i2c_put_adapter(a);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001019}
Magnus Damm6b3b5572010-02-25 11:10:54 +00001020#else
1021static void __init sh_eth_init(struct sh_eth_plat_data *pd)
1022{
1023 pr_err("unable to read sh_eth MAC address\n");
1024}
1025#endif
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001026
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001027#define PORT_HIZA 0xA4050158
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001028#define IODRIVEA 0xA405018A
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001029
1030extern char ecovec24_sdram_enter_start;
1031extern char ecovec24_sdram_enter_end;
1032extern char ecovec24_sdram_leave_start;
1033extern char ecovec24_sdram_leave_end;
1034
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001035static int __init arch_setup(void)
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001036{
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001037 struct clk *clk;
1038
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001039 /* register board specific self-refresh code */
Magnus Damm2839bd62010-02-25 11:07:52 +00001040 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
1041 SUSP_SH_RSTANDBY,
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001042 &ecovec24_sdram_enter_start,
1043 &ecovec24_sdram_enter_end,
1044 &ecovec24_sdram_leave_start,
1045 &ecovec24_sdram_leave_end);
1046
Magnus Dammf78bab32009-10-07 09:00:06 +00001047 /* enable STATUS0, STATUS2 and PDSTATUS */
1048 gpio_request(GPIO_FN_STATUS0, NULL);
1049 gpio_request(GPIO_FN_STATUS2, NULL);
1050 gpio_request(GPIO_FN_PDSTATUS, NULL);
1051
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001052 /* enable SCIFA0 */
1053 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
1054 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001055
1056 /* enable debug LED */
1057 gpio_request(GPIO_PTG0, NULL);
1058 gpio_request(GPIO_PTG1, NULL);
1059 gpio_request(GPIO_PTG2, NULL);
1060 gpio_request(GPIO_PTG3, NULL);
Kuninori Morimotob7056bc2009-08-26 11:04:22 +00001061 gpio_direction_output(GPIO_PTG0, 0);
1062 gpio_direction_output(GPIO_PTG1, 0);
1063 gpio_direction_output(GPIO_PTG2, 0);
1064 gpio_direction_output(GPIO_PTG3, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001065 __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001066
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001067 /* enable SH-Eth */
1068 gpio_request(GPIO_PTA1, NULL);
1069 gpio_direction_output(GPIO_PTA1, 1);
1070 mdelay(20);
1071
1072 gpio_request(GPIO_FN_RMII_RXD0, NULL);
1073 gpio_request(GPIO_FN_RMII_RXD1, NULL);
1074 gpio_request(GPIO_FN_RMII_TXD0, NULL);
1075 gpio_request(GPIO_FN_RMII_TXD1, NULL);
1076 gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
1077 gpio_request(GPIO_FN_RMII_TX_EN, NULL);
1078 gpio_request(GPIO_FN_RMII_RX_ER, NULL);
1079 gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
1080 gpio_request(GPIO_FN_MDIO, NULL);
1081 gpio_request(GPIO_FN_MDC, NULL);
1082 gpio_request(GPIO_FN_LNKSTA, NULL);
1083
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001084 /* enable USB */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001085 __raw_writew(0x0000, 0xA4D80000);
1086 __raw_writew(0x0000, 0xA4D90000);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001087 gpio_request(GPIO_PTB3, NULL);
1088 gpio_request(GPIO_PTB4, NULL);
1089 gpio_request(GPIO_PTB5, NULL);
1090 gpio_direction_input(GPIO_PTB3);
1091 gpio_direction_output(GPIO_PTB4, 0);
1092 gpio_direction_output(GPIO_PTB5, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001093 __raw_writew(0x0600, 0xa40501d4);
1094 __raw_writew(0x0600, 0xa4050192);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001095
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001096 if (gpio_get_value(GPIO_PTB3)) {
1097 printk(KERN_INFO "USB1 function is selected\n");
1098 usb1_common_device.name = "r8a66597_udc";
1099 } else {
1100 printk(KERN_INFO "USB1 host is selected\n");
1101 usb1_common_device.name = "r8a66597_hcd";
1102 }
1103
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001104 /* enable LCDC */
1105 gpio_request(GPIO_FN_LCDD23, NULL);
1106 gpio_request(GPIO_FN_LCDD22, NULL);
1107 gpio_request(GPIO_FN_LCDD21, NULL);
1108 gpio_request(GPIO_FN_LCDD20, NULL);
1109 gpio_request(GPIO_FN_LCDD19, NULL);
1110 gpio_request(GPIO_FN_LCDD18, NULL);
1111 gpio_request(GPIO_FN_LCDD17, NULL);
1112 gpio_request(GPIO_FN_LCDD16, NULL);
1113 gpio_request(GPIO_FN_LCDD15, NULL);
1114 gpio_request(GPIO_FN_LCDD14, NULL);
1115 gpio_request(GPIO_FN_LCDD13, NULL);
1116 gpio_request(GPIO_FN_LCDD12, NULL);
1117 gpio_request(GPIO_FN_LCDD11, NULL);
1118 gpio_request(GPIO_FN_LCDD10, NULL);
1119 gpio_request(GPIO_FN_LCDD9, NULL);
1120 gpio_request(GPIO_FN_LCDD8, NULL);
1121 gpio_request(GPIO_FN_LCDD7, NULL);
1122 gpio_request(GPIO_FN_LCDD6, NULL);
1123 gpio_request(GPIO_FN_LCDD5, NULL);
1124 gpio_request(GPIO_FN_LCDD4, NULL);
1125 gpio_request(GPIO_FN_LCDD3, NULL);
1126 gpio_request(GPIO_FN_LCDD2, NULL);
1127 gpio_request(GPIO_FN_LCDD1, NULL);
1128 gpio_request(GPIO_FN_LCDD0, NULL);
1129 gpio_request(GPIO_FN_LCDDISP, NULL);
1130 gpio_request(GPIO_FN_LCDHSYN, NULL);
1131 gpio_request(GPIO_FN_LCDDCK, NULL);
1132 gpio_request(GPIO_FN_LCDVSYN, NULL);
1133 gpio_request(GPIO_FN_LCDDON, NULL);
1134 gpio_request(GPIO_FN_LCDLCLK, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001135 __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001136
1137 gpio_request(GPIO_PTE6, NULL);
1138 gpio_request(GPIO_PTU1, NULL);
1139 gpio_request(GPIO_PTR1, NULL);
1140 gpio_request(GPIO_PTA2, NULL);
1141 gpio_direction_input(GPIO_PTE6);
1142 gpio_direction_output(GPIO_PTU1, 0);
1143 gpio_direction_output(GPIO_PTR1, 0);
1144 gpio_direction_output(GPIO_PTA2, 0);
1145
Kuninori Morimoto82b33222009-12-02 09:35:42 +00001146 /* I/O buffer drive ability is high */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001147 __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001148
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001149 if (gpio_get_value(GPIO_PTE6)) {
1150 /* DVI */
1151 lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001152 lcdc_info.ch[0].clock_divider = 1;
1153 lcdc_info.ch[0].lcd_cfg = ecovec_dvi_modes;
1154 lcdc_info.ch[0].num_cfg = ARRAY_SIZE(ecovec_dvi_modes);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001155
1156 gpio_set_value(GPIO_PTA2, 1);
1157 gpio_set_value(GPIO_PTU1, 1);
1158 } else {
1159 /* Panel */
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001160 lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001161 lcdc_info.ch[0].clock_divider = 2;
1162 lcdc_info.ch[0].lcd_cfg = ecovec_lcd_modes;
1163 lcdc_info.ch[0].num_cfg = ARRAY_SIZE(ecovec_lcd_modes);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001164
1165 gpio_set_value(GPIO_PTR1, 1);
1166
1167 /* FIXME
1168 *
1169 * LCDDON control is needed for Panel,
1170 * but current sh_mobile_lcdc driver doesn't control it.
1171 * It is temporary correspondence
1172 */
1173 gpio_request(GPIO_PTF4, NULL);
1174 gpio_direction_output(GPIO_PTF4, 1);
Kuninori Morimoto8810e052009-09-28 08:21:41 +00001175
1176 /* enable TouchScreen */
1177 i2c_register_board_info(0, &ts_i2c_clients, 1);
Thomas Gleixnerfcb89182011-03-24 16:31:17 +01001178 irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001179 }
1180
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001181 /* enable CEU0 */
1182 gpio_request(GPIO_FN_VIO0_D15, NULL);
1183 gpio_request(GPIO_FN_VIO0_D14, NULL);
1184 gpio_request(GPIO_FN_VIO0_D13, NULL);
1185 gpio_request(GPIO_FN_VIO0_D12, NULL);
1186 gpio_request(GPIO_FN_VIO0_D11, NULL);
1187 gpio_request(GPIO_FN_VIO0_D10, NULL);
1188 gpio_request(GPIO_FN_VIO0_D9, NULL);
1189 gpio_request(GPIO_FN_VIO0_D8, NULL);
1190 gpio_request(GPIO_FN_VIO0_D7, NULL);
1191 gpio_request(GPIO_FN_VIO0_D6, NULL);
1192 gpio_request(GPIO_FN_VIO0_D5, NULL);
1193 gpio_request(GPIO_FN_VIO0_D4, NULL);
1194 gpio_request(GPIO_FN_VIO0_D3, NULL);
1195 gpio_request(GPIO_FN_VIO0_D2, NULL);
1196 gpio_request(GPIO_FN_VIO0_D1, NULL);
1197 gpio_request(GPIO_FN_VIO0_D0, NULL);
1198 gpio_request(GPIO_FN_VIO0_VD, NULL);
1199 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1200 gpio_request(GPIO_FN_VIO0_FLD, NULL);
1201 gpio_request(GPIO_FN_VIO0_HD, NULL);
1202 platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
1203
1204 /* enable CEU1 */
1205 gpio_request(GPIO_FN_VIO1_D7, NULL);
1206 gpio_request(GPIO_FN_VIO1_D6, NULL);
1207 gpio_request(GPIO_FN_VIO1_D5, NULL);
1208 gpio_request(GPIO_FN_VIO1_D4, NULL);
1209 gpio_request(GPIO_FN_VIO1_D3, NULL);
1210 gpio_request(GPIO_FN_VIO1_D2, NULL);
1211 gpio_request(GPIO_FN_VIO1_D1, NULL);
1212 gpio_request(GPIO_FN_VIO1_D0, NULL);
1213 gpio_request(GPIO_FN_VIO1_FLD, NULL);
1214 gpio_request(GPIO_FN_VIO1_HD, NULL);
1215 gpio_request(GPIO_FN_VIO1_VD, NULL);
1216 gpio_request(GPIO_FN_VIO1_CLK, NULL);
1217 platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
1218
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001219 /* enable KEYSC */
1220 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
1221 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
1222 gpio_request(GPIO_FN_KEYOUT3, NULL);
1223 gpio_request(GPIO_FN_KEYOUT2, NULL);
1224 gpio_request(GPIO_FN_KEYOUT1, NULL);
1225 gpio_request(GPIO_FN_KEYOUT0, NULL);
1226 gpio_request(GPIO_FN_KEYIN0, NULL);
1227
Kuninori Morimoto064a16d2009-09-16 11:34:34 +00001228 /* enable user debug switch */
1229 gpio_request(GPIO_PTR0, NULL);
1230 gpio_request(GPIO_PTR4, NULL);
1231 gpio_request(GPIO_PTR5, NULL);
1232 gpio_request(GPIO_PTR6, NULL);
1233 gpio_direction_input(GPIO_PTR0);
1234 gpio_direction_input(GPIO_PTR4);
1235 gpio_direction_input(GPIO_PTR5);
1236 gpio_direction_input(GPIO_PTR6);
1237
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001238#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001239 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001240 gpio_request(GPIO_FN_SDHI0CD, NULL);
1241 gpio_request(GPIO_FN_SDHI0WP, NULL);
1242 gpio_request(GPIO_FN_SDHI0CMD, NULL);
1243 gpio_request(GPIO_FN_SDHI0CLK, NULL);
1244 gpio_request(GPIO_FN_SDHI0D3, NULL);
1245 gpio_request(GPIO_FN_SDHI0D2, NULL);
1246 gpio_request(GPIO_FN_SDHI0D1, NULL);
1247 gpio_request(GPIO_FN_SDHI0D0, NULL);
Magnus Damm98779ad2009-11-27 04:36:58 +00001248 gpio_request(GPIO_PTB6, NULL);
1249 gpio_direction_output(GPIO_PTB6, 0);
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001250
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001251#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001252 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001253 gpio_request(GPIO_FN_SDHI1CD, NULL);
1254 gpio_request(GPIO_FN_SDHI1WP, NULL);
1255 gpio_request(GPIO_FN_SDHI1CMD, NULL);
1256 gpio_request(GPIO_FN_SDHI1CLK, NULL);
1257 gpio_request(GPIO_FN_SDHI1D3, NULL);
1258 gpio_request(GPIO_FN_SDHI1D2, NULL);
1259 gpio_request(GPIO_FN_SDHI1D1, NULL);
1260 gpio_request(GPIO_FN_SDHI1D0, NULL);
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001261 gpio_request(GPIO_PTB7, NULL);
Magnus Damm98779ad2009-11-27 04:36:58 +00001262 gpio_direction_output(GPIO_PTB7, 0);
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001263
1264 /* I/O buffer drive ability is high for SDHI1 */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001265 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000 , IODRIVEA);
Yusuke Goda1238c682010-04-27 10:15:32 +00001266#endif /* CONFIG_MMC_SH_MMCIF */
Magnus Damm1ce4da72009-12-07 14:05:45 +00001267#else
1268 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1269 gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
1270 gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
1271 gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
1272 gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
1273 gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
1274 gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
1275 gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
1276 gpio_request(GPIO_PTY6, NULL); /* write protect */
1277 gpio_direction_input(GPIO_PTY6);
1278 gpio_request(GPIO_PTY7, NULL); /* card detect */
1279 gpio_direction_input(GPIO_PTY7);
1280
1281 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
1282#endif
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001283
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001284 /* enable Video */
1285 gpio_request(GPIO_PTU2, NULL);
1286 gpio_direction_output(GPIO_PTU2, 1);
1287
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001288 /* enable Camera */
1289 gpio_request(GPIO_PTA3, NULL);
1290 gpio_request(GPIO_PTA4, NULL);
1291 gpio_direction_output(GPIO_PTA3, 0);
1292 gpio_direction_output(GPIO_PTA4, 0);
1293
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001294 /* enable FSI */
1295 gpio_request(GPIO_FN_FSIMCKB, NULL);
1296 gpio_request(GPIO_FN_FSIIBSD, NULL);
1297 gpio_request(GPIO_FN_FSIOBSD, NULL);
1298 gpio_request(GPIO_FN_FSIIBBCK, NULL);
1299 gpio_request(GPIO_FN_FSIIBLRCK, NULL);
1300 gpio_request(GPIO_FN_FSIOBBCK, NULL);
1301 gpio_request(GPIO_FN_FSIOBLRCK, NULL);
1302 gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
1303
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001304 /* set SPU2 clock to 83.4 MHz */
1305 clk = clk_get(NULL, "spu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001306 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001307 clk_set_rate(clk, clk_round_rate(clk, 83333333));
1308 clk_put(clk);
1309 }
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001310
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001311 /* change parent of FSI B */
1312 clk = clk_get(NULL, "fsib_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001313 if (!IS_ERR(clk)) {
Kuninori Morimoto4bd5d252010-11-26 09:40:22 +00001314 /* 48kHz dummy clock was used to make sure 1/1 divide */
1315 clk_set_rate(&sh7724_fsimckb_clk, 48000);
1316 clk_set_parent(clk, &sh7724_fsimckb_clk);
1317 clk_set_rate(clk, 48000);
Kuninori Morimoto10305852010-05-13 01:08:33 +00001318 clk_put(clk);
1319 }
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001320
1321 gpio_request(GPIO_PTU0, NULL);
1322 gpio_direction_output(GPIO_PTU0, 0);
1323 mdelay(20);
1324
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +09001325 /* enable motion sensor */
1326 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1327 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1328
Magnus Damm6f26d192010-02-19 09:33:47 +00001329 /* set VPU clock to 166 MHz */
1330 clk = clk_get(NULL, "vpu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001331 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001332 clk_set_rate(clk, clk_round_rate(clk, 166000000));
1333 clk_put(clk);
1334 }
Magnus Damm6f26d192010-02-19 09:33:47 +00001335
Kuninori Morimoto26365712010-02-24 00:32:28 +00001336 /* enable IrDA */
1337 gpio_request(GPIO_FN_IRDA_OUT, NULL);
1338 gpio_request(GPIO_FN_IRDA_IN, NULL);
1339 gpio_request(GPIO_PTU5, NULL);
1340 gpio_direction_output(GPIO_PTU5, 0);
1341
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001342#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +00001343 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1344 gpio_request(GPIO_FN_MMC_D7, NULL);
1345 gpio_request(GPIO_FN_MMC_D6, NULL);
1346 gpio_request(GPIO_FN_MMC_D5, NULL);
1347 gpio_request(GPIO_FN_MMC_D4, NULL);
1348 gpio_request(GPIO_FN_MMC_D3, NULL);
1349 gpio_request(GPIO_FN_MMC_D2, NULL);
1350 gpio_request(GPIO_FN_MMC_D1, NULL);
1351 gpio_request(GPIO_FN_MMC_D0, NULL);
1352 gpio_request(GPIO_FN_MMC_CLK, NULL);
1353 gpio_request(GPIO_FN_MMC_CMD, NULL);
1354 gpio_request(GPIO_PTB7, NULL);
1355 gpio_direction_output(GPIO_PTB7, 0);
1356
1357 /* I/O buffer drive ability is high for MMCIF */
1358 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000 , IODRIVEA);
1359#endif
1360
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001361 /* enable I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001362 i2c_register_board_info(0, i2c0_devices,
1363 ARRAY_SIZE(i2c0_devices));
1364
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001365 i2c_register_board_info(1, i2c1_devices,
1366 ARRAY_SIZE(i2c1_devices));
1367
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001368#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001369 /* VOU */
1370 gpio_request(GPIO_FN_DV_D15, NULL);
1371 gpio_request(GPIO_FN_DV_D14, NULL);
1372 gpio_request(GPIO_FN_DV_D13, NULL);
1373 gpio_request(GPIO_FN_DV_D12, NULL);
1374 gpio_request(GPIO_FN_DV_D11, NULL);
1375 gpio_request(GPIO_FN_DV_D10, NULL);
1376 gpio_request(GPIO_FN_DV_D9, NULL);
1377 gpio_request(GPIO_FN_DV_D8, NULL);
1378 gpio_request(GPIO_FN_DV_CLKI, NULL);
1379 gpio_request(GPIO_FN_DV_CLK, NULL);
1380 gpio_request(GPIO_FN_DV_VSYNC, NULL);
1381 gpio_request(GPIO_FN_DV_HSYNC, NULL);
1382
1383 /* AK8813 power / reset sequence */
1384 gpio_request(GPIO_PTG4, NULL);
1385 gpio_request(GPIO_PTU3, NULL);
1386 /* Reset */
1387 gpio_direction_output(GPIO_PTG4, 0);
1388 /* Power down */
1389 gpio_direction_output(GPIO_PTU3, 1);
1390
1391 udelay(10);
1392
1393 /* Power up, reset */
1394 gpio_set_value(GPIO_PTU3, 0);
1395
1396 udelay(10);
1397
1398 /* Remove reset */
1399 gpio_set_value(GPIO_PTG4, 1);
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001400#endif
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001401
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001402 return platform_add_devices(ecovec_devices,
1403 ARRAY_SIZE(ecovec_devices));
1404}
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001405arch_initcall(arch_setup);
1406
1407static int __init devices_setup(void)
1408{
Magnus Damm376abbb2009-10-26 10:44:37 +00001409 sh_eth_init(&sh_eth_plat);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001410 return 0;
1411}
1412device_initcall(devices_setup);
1413
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001414static struct sh_machine_vector mv_ecovec __initmv = {
1415 .mv_name = "R0P7724 (EcoVec)",
1416};