blob: 63002c8a0ec8891e3f02b33ed6912eed342a248a [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>
Paul Mundt9307d112012-05-18 15:49:38 +090032#include <linux/sh_intc.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010033#include <linux/videodev2.h>
Kuninori Morimotofa3ba512009-08-26 11:04:34 +000034#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +000035#include <sound/sh_fsi.h>
Kuninori Morimoto2153ad32009-08-26 11:04:36 +000036#include <media/sh_mobile_ceu.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010037#include <media/soc_camera.h>
Kuninori Morimoto207efd02009-12-15 05:37:16 +000038#include <media/tw9910.h>
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +000039#include <media/mt9t112.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000040#include <asm/heartbeat.h>
Kuninori Morimotoa9918012009-09-14 11:23:16 +000041#include <asm/clock.h>
Magnus Dammeb0cd9e2009-10-30 04:23:59 +000042#include <asm/suspend.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000043#include <cpu/sh7724.h>
44
45/*
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000046 * Address Interface BusWidth
47 *-----------------------------------------
48 * 0x0000_0000 uboot 16bit
49 * 0x0004_0000 Linux romImage 16bit
50 * 0x0014_0000 MTD for Linux 16bit
51 * 0x0400_0000 Internal I/O 16/32bit
52 * 0x0800_0000 DRAM 32bit
53 * 0x1800_0000 MFI 16bit
Kuninori Morimoto4138b742009-08-19 12:08:33 +000054 */
55
Kuninori Morimoto9c472c42009-10-02 07:52:20 +000056/* SWITCH
57 *------------------------------
58 * DS2[1] = FlashROM write protect ON : write protect
59 * OFF : No write protect
60 * DS2[2] = RMII / TS, SCIF ON : RMII
61 * OFF : TS, SCIF3
62 * DS2[3] = Camera / Video ON : Camera
63 * OFF : NTSC/PAL (IN)
64 * DS2[5] = NTSC_OUT Clock ON : On board OSC
65 * OFF : SH7724 DV_CLK
66 * DS2[6-7] = MMC / SD ON-OFF : SD
67 * OFF-ON : MMC
68 */
69
Kuninori Morimoto4138b742009-08-19 12:08:33 +000070/* Heartbeat */
71static unsigned char led_pos[] = { 0, 1, 2, 3 };
Paul Mundta09d2832010-01-15 12:24:34 +090072
Kuninori Morimoto4138b742009-08-19 12:08:33 +000073static struct heartbeat_data heartbeat_data = {
Kuninori Morimoto4138b742009-08-19 12:08:33 +000074 .nr_bits = 4,
75 .bit_pos = led_pos,
76};
77
Paul Mundta09d2832010-01-15 12:24:34 +090078static struct resource heartbeat_resource = {
79 .start = 0xA405012C, /* PTG */
80 .end = 0xA405012E - 1,
81 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000082};
83
84static struct platform_device heartbeat_device = {
85 .name = "heartbeat",
86 .id = -1,
87 .dev = {
88 .platform_data = &heartbeat_data,
89 },
Paul Mundta09d2832010-01-15 12:24:34 +090090 .num_resources = 1,
91 .resource = &heartbeat_resource,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000092};
93
94/* MTD */
95static struct mtd_partition nor_flash_partitions[] = {
96 {
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000097 .name = "boot loader",
Kuninori Morimoto4138b742009-08-19 12:08:33 +000098 .offset = 0,
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000099 .size = (5 * 1024 * 1024),
Kuninori Morimotod5ce0102009-09-30 00:50:30 +0000100 .mask_flags = MTD_WRITEABLE, /* force read-only */
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000101 }, {
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000102 .name = "free-area",
103 .offset = MTDPART_OFS_APPEND,
104 .size = MTDPART_SIZ_FULL,
105 },
106};
107
108static struct physmap_flash_data nor_flash_data = {
109 .width = 2,
110 .parts = nor_flash_partitions,
111 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
112};
113
114static struct resource nor_flash_resources[] = {
115 [0] = {
116 .name = "NOR Flash",
117 .start = 0x00000000,
118 .end = 0x03ffffff,
119 .flags = IORESOURCE_MEM,
120 }
121};
122
123static struct platform_device nor_flash_device = {
124 .name = "physmap-flash",
125 .resource = nor_flash_resources,
126 .num_resources = ARRAY_SIZE(nor_flash_resources),
127 .dev = {
128 .platform_data = &nor_flash_data,
129 },
130};
131
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000132/* SH Eth */
133#define SH_ETH_ADDR (0xA4600000)
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000134static struct resource sh_eth_resources[] = {
135 [0] = {
136 .start = SH_ETH_ADDR,
137 .end = SH_ETH_ADDR + 0x1FC,
138 .flags = IORESOURCE_MEM,
139 },
140 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900141 .start = evt2irq(0xd60),
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000142 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
143 },
144};
145
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000146static struct sh_eth_plat_data sh_eth_plat = {
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000147 .phy = 0x1f, /* SMSC LAN8700 */
148 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +0000149 .register_type = SH_ETH_REG_FAST_SH4,
150 .phy_interface = PHY_INTERFACE_MODE_MII,
Kuninori Morimotoacf3cc22009-09-24 06:28:27 +0000151 .ether_link_active_low = 1
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000152};
153
154static struct platform_device sh_eth_device = {
155 .name = "sh-eth",
156 .id = 0,
157 .dev = {
158 .platform_data = &sh_eth_plat,
159 },
160 .num_resources = ARRAY_SIZE(sh_eth_resources),
161 .resource = sh_eth_resources,
162};
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] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900182 .start = evt2irq(0xa20),
183 .end = evt2irq(0xa20),
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000184 .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] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900218 .start = evt2irq(0xa40),
219 .end = evt2irq(0xa40),
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000220 .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] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900265 .start = evt2irq(0xa40),
266 .end = evt2irq(0xa40),
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000267 .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,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000281};
282
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000283/* LCDC */
Jesper Juhle04008e2011-07-09 23:16:22 +0200284static const struct fb_videomode ecovec_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000285 {
286 .name = "Panel",
287 .xres = 800,
288 .yres = 480,
289 .left_margin = 220,
290 .right_margin = 110,
291 .hsync_len = 70,
292 .upper_margin = 20,
293 .lower_margin = 5,
294 .vsync_len = 5,
295 .sync = 0, /* hsync and vsync are active low */
296 },
297};
298
Jesper Juhle04008e2011-07-09 23:16:22 +0200299static const struct fb_videomode ecovec_dvi_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000300 {
301 .name = "DVI",
302 .xres = 1280,
303 .yres = 720,
304 .left_margin = 220,
305 .right_margin = 110,
306 .hsync_len = 40,
307 .upper_margin = 20,
308 .lower_margin = 5,
309 .vsync_len = 5,
310 .sync = 0, /* hsync and vsync are active low */
311 },
312};
313
Laurent Pinchart018882a2011-09-11 22:59:04 +0200314static int ecovec24_set_brightness(int brightness)
Alexandre Courbot0839d682011-02-16 03:49:02 +0000315{
316 gpio_set_value(GPIO_PTR1, brightness);
317
318 return 0;
319}
320
Laurent Pinchart018882a2011-09-11 22:59:04 +0200321static int ecovec24_get_brightness(void)
Alexandre Courbot0839d682011-02-16 03:49:02 +0000322{
323 return gpio_get_value(GPIO_PTR1);
324}
325
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000326static struct sh_mobile_lcdc_info lcdc_info = {
327 .ch[0] = {
328 .interface_type = RGB18,
329 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100330 .fourcc = V4L2_PIX_FMT_RGB565,
Laurent Pinchartafaad832011-09-11 22:59:04 +0200331 .panel_cfg = { /* 7.0 inch */
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000332 .width = 152,
333 .height = 91,
334 },
Alexandre Courbot0839d682011-02-16 03:49:02 +0000335 .bl_info = {
336 .name = "sh_mobile_lcdc_bl",
337 .max_brightness = 1,
Laurent Pinchart43059b02011-09-11 22:59:04 +0200338 .set_brightness = ecovec24_set_brightness,
339 .get_brightness = ecovec24_get_brightness,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000340 },
341 }
342};
343
344static struct resource lcdc_resources[] = {
345 [0] = {
346 .name = "LCDC",
347 .start = 0xfe940000,
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000348 .end = 0xfe942fff,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000349 .flags = IORESOURCE_MEM,
350 },
351 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900352 .start = evt2irq(0xf40),
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000353 .flags = IORESOURCE_IRQ,
354 },
355};
356
357static struct platform_device lcdc_device = {
358 .name = "sh_mobile_lcdc_fb",
359 .num_resources = ARRAY_SIZE(lcdc_resources),
360 .resource = lcdc_resources,
361 .dev = {
362 .platform_data = &lcdc_info,
363 },
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000364};
365
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000366/* CEU0 */
367static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
368 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
369};
370
371static struct resource ceu0_resources[] = {
372 [0] = {
373 .name = "CEU0",
374 .start = 0xfe910000,
375 .end = 0xfe91009f,
376 .flags = IORESOURCE_MEM,
377 },
378 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900379 .start = evt2irq(0x880),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000380 .flags = IORESOURCE_IRQ,
381 },
382 [2] = {
383 /* place holder for contiguous memory */
384 },
385};
386
387static struct platform_device ceu0_device = {
388 .name = "sh_mobile_ceu",
389 .id = 0, /* "ceu0" clock */
390 .num_resources = ARRAY_SIZE(ceu0_resources),
391 .resource = ceu0_resources,
392 .dev = {
393 .platform_data = &sh_mobile_ceu0_info,
394 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000395};
396
397/* CEU1 */
398static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
399 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
400};
401
402static struct resource ceu1_resources[] = {
403 [0] = {
404 .name = "CEU1",
405 .start = 0xfe914000,
406 .end = 0xfe91409f,
407 .flags = IORESOURCE_MEM,
408 },
409 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900410 .start = evt2irq(0x9e0),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000411 .flags = IORESOURCE_IRQ,
412 },
413 [2] = {
414 /* place holder for contiguous memory */
415 },
416};
417
418static struct platform_device ceu1_device = {
419 .name = "sh_mobile_ceu",
420 .id = 1, /* "ceu1" clock */
421 .num_resources = ARRAY_SIZE(ceu1_resources),
422 .resource = ceu1_resources,
423 .dev = {
424 .platform_data = &sh_mobile_ceu1_info,
425 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000426};
427
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000428/* I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000429static struct i2c_board_info i2c0_devices[] = {
430 {
431 I2C_BOARD_INFO("da7210", 0x1a),
432 },
433};
434
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000435static struct i2c_board_info i2c1_devices[] = {
436 {
437 I2C_BOARD_INFO("r2025sd", 0x32),
438 },
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900439 {
440 I2C_BOARD_INFO("lis3lv02d", 0x1c),
Paul Mundt9307d112012-05-18 15:49:38 +0900441 .irq = evt2irq(0x620),
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900442 }
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000443};
444
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000445/* KEYSC */
446static struct sh_keysc_info keysc_info = {
447 .mode = SH_KEYSC_MODE_1,
448 .scan_timing = 3,
449 .delay = 50,
450 .kycr2_delay = 100,
451 .keycodes = { KEY_1, 0, 0, 0, 0,
452 KEY_2, 0, 0, 0, 0,
453 KEY_3, 0, 0, 0, 0,
454 KEY_4, 0, 0, 0, 0,
455 KEY_5, 0, 0, 0, 0,
456 KEY_6, 0, 0, 0, 0, },
457};
458
459static struct resource keysc_resources[] = {
460 [0] = {
461 .name = "KEYSC",
462 .start = 0x044b0000,
463 .end = 0x044b000f,
464 .flags = IORESOURCE_MEM,
465 },
466 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900467 .start = evt2irq(0xbe0),
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000468 .flags = IORESOURCE_IRQ,
469 },
470};
471
472static struct platform_device keysc_device = {
473 .name = "sh_keysc",
474 .id = 0, /* keysc0 clock */
475 .num_resources = ARRAY_SIZE(keysc_resources),
476 .resource = keysc_resources,
477 .dev = {
478 .platform_data = &keysc_info,
479 },
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000480};
481
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000482/* TouchScreen */
Paul Mundt9307d112012-05-18 15:49:38 +0900483#define IRQ0 evt2irq(0x600)
484
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900485static int ts_get_pendown_state(void)
486{
487 int val = 0;
488 gpio_free(GPIO_FN_INTC_IRQ0);
489 gpio_request(GPIO_PTZ0, NULL);
490 gpio_direction_input(GPIO_PTZ0);
491
492 val = gpio_get_value(GPIO_PTZ0);
493
494 gpio_free(GPIO_PTZ0);
495 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
496
497 return val ? 0 : 1;
498}
499
500static int ts_init(void)
501{
502 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
503 return 0;
504}
505
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000506static struct tsc2007_platform_data tsc2007_info = {
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000507 .model = 2007,
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900508 .x_plate_ohms = 180,
509 .get_pendown_state = ts_get_pendown_state,
510 .init_platform_hw = ts_init,
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000511};
512
513static struct i2c_board_info ts_i2c_clients = {
514 I2C_BOARD_INFO("tsc2007", 0x48),
515 .type = "tsc2007",
516 .platform_data = &tsc2007_info,
517 .irq = IRQ0,
518};
519
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200520#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000521/* SDHI0 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000522static void sdhi0_set_pwr(struct platform_device *pdev, int state)
523{
524 gpio_set_value(GPIO_PTB6, state);
525}
526
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100527static int sdhi0_get_cd(struct platform_device *pdev)
528{
529 return !gpio_get_value(GPIO_PTY7);
530}
531
Magnus Damm98779ad2009-11-27 04:36:58 +0000532static struct sh_mobile_sdhi_info sdhi0_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000533 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
534 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
535 .set_pwr = sdhi0_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100536 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
537 MMC_CAP_NEEDS_POLL,
538 .get_cd = sdhi0_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000539};
540
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000541static struct resource sdhi0_resources[] = {
542 [0] = {
543 .name = "SDHI0",
544 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100545 .end = 0x04ce00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000546 .flags = IORESOURCE_MEM,
547 },
548 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900549 .start = evt2irq(0xe80),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000550 .flags = IORESOURCE_IRQ,
551 },
552};
553
554static struct platform_device sdhi0_device = {
555 .name = "sh_mobile_sdhi",
556 .num_resources = ARRAY_SIZE(sdhi0_resources),
557 .resource = sdhi0_resources,
558 .id = 0,
Magnus Damm98779ad2009-11-27 04:36:58 +0000559 .dev = {
560 .platform_data = &sdhi0_info,
561 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000562};
563
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200564#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000565/* SDHI1 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000566static void sdhi1_set_pwr(struct platform_device *pdev, int state)
567{
568 gpio_set_value(GPIO_PTB7, state);
569}
570
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100571static int sdhi1_get_cd(struct platform_device *pdev)
572{
573 return !gpio_get_value(GPIO_PTW7);
574}
575
Magnus Damm98779ad2009-11-27 04:36:58 +0000576static struct sh_mobile_sdhi_info sdhi1_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000577 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
578 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100579 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
580 MMC_CAP_NEEDS_POLL,
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000581 .set_pwr = sdhi1_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100582 .get_cd = sdhi1_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000583};
584
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000585static struct resource sdhi1_resources[] = {
586 [0] = {
587 .name = "SDHI1",
588 .start = 0x04cf0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100589 .end = 0x04cf00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000590 .flags = IORESOURCE_MEM,
591 },
592 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900593 .start = evt2irq(0x4e0),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000594 .flags = IORESOURCE_IRQ,
595 },
596};
597
598static struct platform_device sdhi1_device = {
599 .name = "sh_mobile_sdhi",
600 .num_resources = ARRAY_SIZE(sdhi1_resources),
601 .resource = sdhi1_resources,
602 .id = 1,
Magnus Damm98779ad2009-11-27 04:36:58 +0000603 .dev = {
604 .platform_data = &sdhi1_info,
605 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000606};
Yusuke Goda1238c682010-04-27 10:15:32 +0000607#endif /* CONFIG_MMC_SH_MMCIF */
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000608
Magnus Damm1ce4da72009-12-07 14:05:45 +0000609#else
610
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000611/* MMC SPI */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000612static int mmc_spi_get_ro(struct device *dev)
613{
614 return gpio_get_value(GPIO_PTY6);
615}
616
617static int mmc_spi_get_cd(struct device *dev)
618{
619 return !gpio_get_value(GPIO_PTY7);
620}
621
622static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
623{
624 gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
625}
626
627static struct mmc_spi_platform_data mmc_spi_info = {
628 .get_ro = mmc_spi_get_ro,
629 .get_cd = mmc_spi_get_cd,
630 .caps = MMC_CAP_NEEDS_POLL,
631 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
632 .setpower = mmc_spi_setpower,
633};
634
635static struct spi_board_info spi_bus[] = {
636 {
637 .modalias = "mmc_spi",
638 .platform_data = &mmc_spi_info,
639 .max_speed_hz = 5000000,
640 .mode = SPI_MODE_0,
641 .controller_data = (void *) GPIO_PTM4,
642 },
643};
644
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000645/* MSIOF0 */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000646static struct sh_msiof_spi_info msiof0_data = {
647 .num_chipselect = 1,
648};
649
650static struct resource msiof0_resources[] = {
651 [0] = {
652 .name = "MSIOF0",
653 .start = 0xa4c40000,
654 .end = 0xa4c40063,
655 .flags = IORESOURCE_MEM,
656 },
657 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900658 .start = evt2irq(0xc80),
Magnus Damm1ce4da72009-12-07 14:05:45 +0000659 .flags = IORESOURCE_IRQ,
660 },
661};
662
663static struct platform_device msiof0_device = {
664 .name = "spi_sh_msiof",
665 .id = 0, /* MSIOF0 */
666 .dev = {
667 .platform_data = &msiof0_data,
668 },
669 .num_resources = ARRAY_SIZE(msiof0_resources),
670 .resource = msiof0_resources,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000671};
672
673#endif
674
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000675/* I2C Video/Camera */
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000676static struct i2c_board_info i2c_camera[] = {
677 {
678 I2C_BOARD_INFO("tw9910", 0x45),
679 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000680 {
681 /* 1st camera */
682 I2C_BOARD_INFO("mt9t112", 0x3c),
683 },
684 {
685 /* 2nd camera */
686 I2C_BOARD_INFO("mt9t112", 0x3c),
687 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000688};
689
690/* tw9910 */
691static int tw9910_power(struct device *dev, int mode)
692{
693 int val = mode ? 0 : 1;
694
695 gpio_set_value(GPIO_PTU2, val);
696 if (mode)
697 mdelay(100);
698
699 return 0;
700}
701
702static struct tw9910_video_info tw9910_info = {
703 .buswidth = SOCAM_DATAWIDTH_8,
704 .mpout = TW9910_MPO_FIELD,
705};
706
707static struct soc_camera_link tw9910_link = {
708 .i2c_adapter_id = 0,
709 .bus_id = 1,
710 .power = tw9910_power,
711 .board_info = &i2c_camera[0],
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000712 .priv = &tw9910_info,
713};
714
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000715/* mt9t112 */
716static int mt9t112_power1(struct device *dev, int mode)
717{
718 gpio_set_value(GPIO_PTA3, mode);
719 if (mode)
720 mdelay(100);
721
722 return 0;
723}
724
725static struct mt9t112_camera_info mt9t112_info1 = {
726 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
727 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
728};
729
730static struct soc_camera_link mt9t112_link1 = {
731 .i2c_adapter_id = 0,
732 .power = mt9t112_power1,
733 .bus_id = 0,
734 .board_info = &i2c_camera[1],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000735 .priv = &mt9t112_info1,
736};
737
738static int mt9t112_power2(struct device *dev, int mode)
739{
740 gpio_set_value(GPIO_PTA4, mode);
741 if (mode)
742 mdelay(100);
743
744 return 0;
745}
746
747static struct mt9t112_camera_info mt9t112_info2 = {
748 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
749 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
750};
751
752static struct soc_camera_link mt9t112_link2 = {
753 .i2c_adapter_id = 1,
754 .power = mt9t112_power2,
755 .bus_id = 1,
756 .board_info = &i2c_camera[2],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000757 .priv = &mt9t112_info2,
758};
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000759
760static struct platform_device camera_devices[] = {
761 {
762 .name = "soc-camera-pdrv",
763 .id = 0,
764 .dev = {
765 .platform_data = &tw9910_link,
766 },
767 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000768 {
769 .name = "soc-camera-pdrv",
770 .id = 1,
771 .dev = {
772 .platform_data = &mt9t112_link1,
773 },
774 },
775 {
776 .name = "soc-camera-pdrv",
777 .id = 2,
778 .dev = {
779 .platform_data = &mt9t112_link2,
780 },
781 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000782};
783
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000784/* FSI */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000785static struct sh_fsi_platform_info fsi_info = {
Kuninori Morimotofec691e2012-02-03 00:58:48 -0800786 .port_b = {
787 .flags = SH_FSI_BRS_INV,
788 },
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000789};
790
791static struct resource fsi_resources[] = {
792 [0] = {
793 .name = "FSI",
794 .start = 0xFE3C0000,
795 .end = 0xFE3C021d,
796 .flags = IORESOURCE_MEM,
797 },
798 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900799 .start = evt2irq(0xf80),
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000800 .flags = IORESOURCE_IRQ,
801 },
802};
803
804static struct platform_device fsi_device = {
805 .name = "sh_fsi",
806 .id = 0,
807 .num_resources = ARRAY_SIZE(fsi_resources),
808 .resource = fsi_resources,
809 .dev = {
810 .platform_data = &fsi_info,
811 },
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000812};
813
Kuninori Morimoto26365712010-02-24 00:32:28 +0000814/* IrDA */
815static struct resource irda_resources[] = {
816 [0] = {
817 .name = "IrDA",
818 .start = 0xA45D0000,
819 .end = 0xA45D0049,
820 .flags = IORESOURCE_MEM,
821 },
822 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900823 .start = evt2irq(0x480),
Kuninori Morimoto26365712010-02-24 00:32:28 +0000824 .flags = IORESOURCE_IRQ,
825 },
826};
827
828static struct platform_device irda_device = {
829 .name = "sh_sir",
830 .num_resources = ARRAY_SIZE(irda_resources),
831 .resource = irda_resources,
832};
833
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000834#include <media/ak881x.h>
835#include <media/sh_vou.h>
836
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000837static struct ak881x_pdata ak881x_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000838 .flags = AK881X_IF_MODE_SLAVE,
839};
840
841static struct i2c_board_info ak8813 = {
842 I2C_BOARD_INFO("ak8813", 0x20),
843 .platform_data = &ak881x_pdata,
844};
845
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000846static struct sh_vou_pdata sh_vou_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000847 .bus_fmt = SH_VOU_BUS_8BIT,
848 .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
849 .board_info = &ak8813,
850 .i2c_adap = 0,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000851};
852
853static struct resource sh_vou_resources[] = {
854 [0] = {
855 .start = 0xfe960000,
856 .end = 0xfe962043,
857 .flags = IORESOURCE_MEM,
858 },
859 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900860 .start = evt2irq(0x8e0),
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000861 .flags = IORESOURCE_IRQ,
862 },
863};
864
865static struct platform_device vou_device = {
866 .name = "sh-vou",
867 .id = -1,
868 .num_resources = ARRAY_SIZE(sh_vou_resources),
869 .resource = sh_vou_resources,
870 .dev = {
871 .platform_data = &sh_vou_pdata,
872 },
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000873};
874
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200875#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000876/* SH_MMCIF */
877static void mmcif_set_pwr(struct platform_device *pdev, int state)
878{
879 gpio_set_value(GPIO_PTB7, state);
880}
881
882static void mmcif_down_pwr(struct platform_device *pdev)
883{
884 gpio_set_value(GPIO_PTB7, 0);
885}
886
887static struct resource sh_mmcif_resources[] = {
888 [0] = {
889 .name = "SH_MMCIF",
890 .start = 0xA4CA0000,
891 .end = 0xA4CA00FF,
892 .flags = IORESOURCE_MEM,
893 },
894 [1] = {
895 /* MMC2I */
Paul Mundt9307d112012-05-18 15:49:38 +0900896 .start = evt2irq(0x5a0),
Yusuke Goda1238c682010-04-27 10:15:32 +0000897 .flags = IORESOURCE_IRQ,
898 },
899 [2] = {
900 /* MMC3I */
Paul Mundt9307d112012-05-18 15:49:38 +0900901 .start = evt2irq(0x5c0),
Yusuke Goda1238c682010-04-27 10:15:32 +0000902 .flags = IORESOURCE_IRQ,
903 },
904};
905
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000906static struct sh_mmcif_plat_data sh_mmcif_plat = {
Yusuke Goda1238c682010-04-27 10:15:32 +0000907 .set_pwr = mmcif_set_pwr,
908 .down_pwr = mmcif_down_pwr,
909 .sup_pclk = 0, /* SH7724: Max Pclk/2 */
910 .caps = MMC_CAP_4_BIT_DATA |
911 MMC_CAP_8_BIT_DATA |
912 MMC_CAP_NEEDS_POLL,
913 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
914};
915
916static struct platform_device sh_mmcif_device = {
917 .name = "sh_mmcif",
918 .id = 0,
919 .dev = {
920 .platform_data = &sh_mmcif_plat,
921 },
922 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
923 .resource = sh_mmcif_resources,
924};
925#endif
926
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000927static struct platform_device *ecovec_devices[] __initdata = {
928 &heartbeat_device,
929 &nor_flash_device,
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000930 &sh_eth_device,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000931 &usb0_host_device,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000932 &usb1_common_device,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000933 &usbhs_device,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000934 &lcdc_device,
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000935 &ceu0_device,
936 &ceu1_device,
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000937 &keysc_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200938#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000939 &sdhi0_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200940#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000941 &sdhi1_device,
Yusuke Goda1238c682010-04-27 10:15:32 +0000942#endif
Magnus Damm1ce4da72009-12-07 14:05:45 +0000943#else
944 &msiof0_device,
945#endif
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000946 &camera_devices[0],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000947 &camera_devices[1],
948 &camera_devices[2],
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000949 &fsi_device,
Kuninori Morimoto26365712010-02-24 00:32:28 +0000950 &irda_device,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000951 &vou_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200952#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000953 &sh_mmcif_device,
954#endif
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000955};
956
Magnus Damm6b3b5572010-02-25 11:10:54 +0000957#ifdef CONFIG_I2C
Kuninori Morimoto4907d572009-09-10 01:39:58 +0000958#define EEPROM_ADDR 0x50
959static u8 mac_read(struct i2c_adapter *a, u8 command)
960{
961 struct i2c_msg msg[2];
962 u8 buf;
963 int ret;
964
965 msg[0].addr = EEPROM_ADDR;
966 msg[0].flags = 0;
967 msg[0].len = 1;
968 msg[0].buf = &command;
969
970 msg[1].addr = EEPROM_ADDR;
971 msg[1].flags = I2C_M_RD;
972 msg[1].len = 1;
973 msg[1].buf = &buf;
974
975 ret = i2c_transfer(a, msg, 2);
976 if (ret < 0) {
977 printk(KERN_ERR "error %d\n", ret);
978 buf = 0xff;
979 }
980
981 return buf;
982}
983
Magnus Damm376abbb2009-10-26 10:44:37 +0000984static void __init sh_eth_init(struct sh_eth_plat_data *pd)
Kuninori Morimoto4907d572009-09-10 01:39:58 +0000985{
986 struct i2c_adapter *a = i2c_get_adapter(1);
Kuninori Morimoto4907d572009-09-10 01:39:58 +0000987 int i;
988
989 if (!a) {
990 pr_err("can not get I2C 1\n");
991 return;
992 }
993
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300994 /* read MAC address from EEPROM */
Magnus Damm376abbb2009-10-26 10:44:37 +0000995 for (i = 0; i < sizeof(pd->mac_addr); i++) {
996 pd->mac_addr[i] = mac_read(a, 0x10 + i);
Kuninori Morimoto4907d572009-09-10 01:39:58 +0000997 msleep(10);
998 }
Kuninori Morimotob230eb32010-03-16 02:01:33 +0000999
1000 i2c_put_adapter(a);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001001}
Magnus Damm6b3b5572010-02-25 11:10:54 +00001002#else
1003static void __init sh_eth_init(struct sh_eth_plat_data *pd)
1004{
1005 pr_err("unable to read sh_eth MAC address\n");
1006}
1007#endif
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001008
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001009#define PORT_HIZA 0xA4050158
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001010#define IODRIVEA 0xA405018A
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001011
1012extern char ecovec24_sdram_enter_start;
1013extern char ecovec24_sdram_enter_end;
1014extern char ecovec24_sdram_leave_start;
1015extern char ecovec24_sdram_leave_end;
1016
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001017static int __init arch_setup(void)
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001018{
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001019 struct clk *clk;
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001020 bool cn12_enabled = false;
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001021
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001022 /* register board specific self-refresh code */
Magnus Damm2839bd62010-02-25 11:07:52 +00001023 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
1024 SUSP_SH_RSTANDBY,
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001025 &ecovec24_sdram_enter_start,
1026 &ecovec24_sdram_enter_end,
1027 &ecovec24_sdram_leave_start,
1028 &ecovec24_sdram_leave_end);
1029
Magnus Dammf78bab32009-10-07 09:00:06 +00001030 /* enable STATUS0, STATUS2 and PDSTATUS */
1031 gpio_request(GPIO_FN_STATUS0, NULL);
1032 gpio_request(GPIO_FN_STATUS2, NULL);
1033 gpio_request(GPIO_FN_PDSTATUS, NULL);
1034
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001035 /* enable SCIFA0 */
1036 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
1037 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001038
1039 /* enable debug LED */
1040 gpio_request(GPIO_PTG0, NULL);
1041 gpio_request(GPIO_PTG1, NULL);
1042 gpio_request(GPIO_PTG2, NULL);
1043 gpio_request(GPIO_PTG3, NULL);
Kuninori Morimotob7056bc2009-08-26 11:04:22 +00001044 gpio_direction_output(GPIO_PTG0, 0);
1045 gpio_direction_output(GPIO_PTG1, 0);
1046 gpio_direction_output(GPIO_PTG2, 0);
1047 gpio_direction_output(GPIO_PTG3, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001048 __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001049
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001050 /* enable SH-Eth */
1051 gpio_request(GPIO_PTA1, NULL);
1052 gpio_direction_output(GPIO_PTA1, 1);
1053 mdelay(20);
1054
1055 gpio_request(GPIO_FN_RMII_RXD0, NULL);
1056 gpio_request(GPIO_FN_RMII_RXD1, NULL);
1057 gpio_request(GPIO_FN_RMII_TXD0, NULL);
1058 gpio_request(GPIO_FN_RMII_TXD1, NULL);
1059 gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
1060 gpio_request(GPIO_FN_RMII_TX_EN, NULL);
1061 gpio_request(GPIO_FN_RMII_RX_ER, NULL);
1062 gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
1063 gpio_request(GPIO_FN_MDIO, NULL);
1064 gpio_request(GPIO_FN_MDC, NULL);
1065 gpio_request(GPIO_FN_LNKSTA, NULL);
1066
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001067 /* enable USB */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001068 __raw_writew(0x0000, 0xA4D80000);
1069 __raw_writew(0x0000, 0xA4D90000);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001070 gpio_request(GPIO_PTB3, NULL);
1071 gpio_request(GPIO_PTB4, NULL);
1072 gpio_request(GPIO_PTB5, NULL);
1073 gpio_direction_input(GPIO_PTB3);
1074 gpio_direction_output(GPIO_PTB4, 0);
1075 gpio_direction_output(GPIO_PTB5, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001076 __raw_writew(0x0600, 0xa40501d4);
1077 __raw_writew(0x0600, 0xa4050192);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001078
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001079 if (gpio_get_value(GPIO_PTB3)) {
1080 printk(KERN_INFO "USB1 function is selected\n");
1081 usb1_common_device.name = "r8a66597_udc";
1082 } else {
1083 printk(KERN_INFO "USB1 host is selected\n");
1084 usb1_common_device.name = "r8a66597_hcd";
1085 }
1086
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001087 /* enable LCDC */
1088 gpio_request(GPIO_FN_LCDD23, NULL);
1089 gpio_request(GPIO_FN_LCDD22, NULL);
1090 gpio_request(GPIO_FN_LCDD21, NULL);
1091 gpio_request(GPIO_FN_LCDD20, NULL);
1092 gpio_request(GPIO_FN_LCDD19, NULL);
1093 gpio_request(GPIO_FN_LCDD18, NULL);
1094 gpio_request(GPIO_FN_LCDD17, NULL);
1095 gpio_request(GPIO_FN_LCDD16, NULL);
1096 gpio_request(GPIO_FN_LCDD15, NULL);
1097 gpio_request(GPIO_FN_LCDD14, NULL);
1098 gpio_request(GPIO_FN_LCDD13, NULL);
1099 gpio_request(GPIO_FN_LCDD12, NULL);
1100 gpio_request(GPIO_FN_LCDD11, NULL);
1101 gpio_request(GPIO_FN_LCDD10, NULL);
1102 gpio_request(GPIO_FN_LCDD9, NULL);
1103 gpio_request(GPIO_FN_LCDD8, NULL);
1104 gpio_request(GPIO_FN_LCDD7, NULL);
1105 gpio_request(GPIO_FN_LCDD6, NULL);
1106 gpio_request(GPIO_FN_LCDD5, NULL);
1107 gpio_request(GPIO_FN_LCDD4, NULL);
1108 gpio_request(GPIO_FN_LCDD3, NULL);
1109 gpio_request(GPIO_FN_LCDD2, NULL);
1110 gpio_request(GPIO_FN_LCDD1, NULL);
1111 gpio_request(GPIO_FN_LCDD0, NULL);
1112 gpio_request(GPIO_FN_LCDDISP, NULL);
1113 gpio_request(GPIO_FN_LCDHSYN, NULL);
1114 gpio_request(GPIO_FN_LCDDCK, NULL);
1115 gpio_request(GPIO_FN_LCDVSYN, NULL);
1116 gpio_request(GPIO_FN_LCDDON, NULL);
1117 gpio_request(GPIO_FN_LCDLCLK, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001118 __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001119
1120 gpio_request(GPIO_PTE6, NULL);
1121 gpio_request(GPIO_PTU1, NULL);
1122 gpio_request(GPIO_PTR1, NULL);
1123 gpio_request(GPIO_PTA2, NULL);
1124 gpio_direction_input(GPIO_PTE6);
1125 gpio_direction_output(GPIO_PTU1, 0);
1126 gpio_direction_output(GPIO_PTR1, 0);
1127 gpio_direction_output(GPIO_PTA2, 0);
1128
Kuninori Morimoto82b33222009-12-02 09:35:42 +00001129 /* I/O buffer drive ability is high */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001130 __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001131
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001132 if (gpio_get_value(GPIO_PTE6)) {
1133 /* DVI */
1134 lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001135 lcdc_info.ch[0].clock_divider = 1;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001136 lcdc_info.ch[0].lcd_modes = ecovec_dvi_modes;
1137 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_dvi_modes);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001138
1139 gpio_set_value(GPIO_PTA2, 1);
1140 gpio_set_value(GPIO_PTU1, 1);
1141 } else {
1142 /* Panel */
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001143 lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001144 lcdc_info.ch[0].clock_divider = 2;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001145 lcdc_info.ch[0].lcd_modes = ecovec_lcd_modes;
1146 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_lcd_modes);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001147
1148 gpio_set_value(GPIO_PTR1, 1);
1149
1150 /* FIXME
1151 *
1152 * LCDDON control is needed for Panel,
1153 * but current sh_mobile_lcdc driver doesn't control it.
1154 * It is temporary correspondence
1155 */
1156 gpio_request(GPIO_PTF4, NULL);
1157 gpio_direction_output(GPIO_PTF4, 1);
Kuninori Morimoto8810e052009-09-28 08:21:41 +00001158
1159 /* enable TouchScreen */
1160 i2c_register_board_info(0, &ts_i2c_clients, 1);
Thomas Gleixnerfcb89182011-03-24 16:31:17 +01001161 irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001162 }
1163
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001164 /* enable CEU0 */
1165 gpio_request(GPIO_FN_VIO0_D15, NULL);
1166 gpio_request(GPIO_FN_VIO0_D14, NULL);
1167 gpio_request(GPIO_FN_VIO0_D13, NULL);
1168 gpio_request(GPIO_FN_VIO0_D12, NULL);
1169 gpio_request(GPIO_FN_VIO0_D11, NULL);
1170 gpio_request(GPIO_FN_VIO0_D10, NULL);
1171 gpio_request(GPIO_FN_VIO0_D9, NULL);
1172 gpio_request(GPIO_FN_VIO0_D8, NULL);
1173 gpio_request(GPIO_FN_VIO0_D7, NULL);
1174 gpio_request(GPIO_FN_VIO0_D6, NULL);
1175 gpio_request(GPIO_FN_VIO0_D5, NULL);
1176 gpio_request(GPIO_FN_VIO0_D4, NULL);
1177 gpio_request(GPIO_FN_VIO0_D3, NULL);
1178 gpio_request(GPIO_FN_VIO0_D2, NULL);
1179 gpio_request(GPIO_FN_VIO0_D1, NULL);
1180 gpio_request(GPIO_FN_VIO0_D0, NULL);
1181 gpio_request(GPIO_FN_VIO0_VD, NULL);
1182 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1183 gpio_request(GPIO_FN_VIO0_FLD, NULL);
1184 gpio_request(GPIO_FN_VIO0_HD, NULL);
1185 platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
1186
1187 /* enable CEU1 */
1188 gpio_request(GPIO_FN_VIO1_D7, NULL);
1189 gpio_request(GPIO_FN_VIO1_D6, NULL);
1190 gpio_request(GPIO_FN_VIO1_D5, NULL);
1191 gpio_request(GPIO_FN_VIO1_D4, NULL);
1192 gpio_request(GPIO_FN_VIO1_D3, NULL);
1193 gpio_request(GPIO_FN_VIO1_D2, NULL);
1194 gpio_request(GPIO_FN_VIO1_D1, NULL);
1195 gpio_request(GPIO_FN_VIO1_D0, NULL);
1196 gpio_request(GPIO_FN_VIO1_FLD, NULL);
1197 gpio_request(GPIO_FN_VIO1_HD, NULL);
1198 gpio_request(GPIO_FN_VIO1_VD, NULL);
1199 gpio_request(GPIO_FN_VIO1_CLK, NULL);
1200 platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
1201
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001202 /* enable KEYSC */
1203 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
1204 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
1205 gpio_request(GPIO_FN_KEYOUT3, NULL);
1206 gpio_request(GPIO_FN_KEYOUT2, NULL);
1207 gpio_request(GPIO_FN_KEYOUT1, NULL);
1208 gpio_request(GPIO_FN_KEYOUT0, NULL);
1209 gpio_request(GPIO_FN_KEYIN0, NULL);
1210
Kuninori Morimoto064a16d2009-09-16 11:34:34 +00001211 /* enable user debug switch */
1212 gpio_request(GPIO_PTR0, NULL);
1213 gpio_request(GPIO_PTR4, NULL);
1214 gpio_request(GPIO_PTR5, NULL);
1215 gpio_request(GPIO_PTR6, NULL);
1216 gpio_direction_input(GPIO_PTR0);
1217 gpio_direction_input(GPIO_PTR4);
1218 gpio_direction_input(GPIO_PTR5);
1219 gpio_direction_input(GPIO_PTR6);
1220
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001221 /* SD-card slot CN11 */
1222 /* Card-detect, used on CN11, either with SDHI0 or with SPI */
1223 gpio_request(GPIO_PTY7, NULL);
1224 gpio_direction_input(GPIO_PTY7);
1225
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001226#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001227 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001228 gpio_request(GPIO_FN_SDHI0WP, NULL);
1229 gpio_request(GPIO_FN_SDHI0CMD, NULL);
1230 gpio_request(GPIO_FN_SDHI0CLK, NULL);
1231 gpio_request(GPIO_FN_SDHI0D3, NULL);
1232 gpio_request(GPIO_FN_SDHI0D2, NULL);
1233 gpio_request(GPIO_FN_SDHI0D1, NULL);
1234 gpio_request(GPIO_FN_SDHI0D0, NULL);
Magnus Damm98779ad2009-11-27 04:36:58 +00001235 gpio_request(GPIO_PTB6, NULL);
1236 gpio_direction_output(GPIO_PTB6, 0);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001237#else
1238 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1239 gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
1240 gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
1241 gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
1242 gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
1243 gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
1244 gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
1245 gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
1246 gpio_request(GPIO_PTY6, NULL); /* write protect */
1247 gpio_direction_input(GPIO_PTY6);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001248
1249 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
1250#endif
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001251
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001252 /* MMC/SD-card slot CN12 */
1253#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1254 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1255 gpio_request(GPIO_FN_MMC_D7, NULL);
1256 gpio_request(GPIO_FN_MMC_D6, NULL);
1257 gpio_request(GPIO_FN_MMC_D5, NULL);
1258 gpio_request(GPIO_FN_MMC_D4, NULL);
1259 gpio_request(GPIO_FN_MMC_D3, NULL);
1260 gpio_request(GPIO_FN_MMC_D2, NULL);
1261 gpio_request(GPIO_FN_MMC_D1, NULL);
1262 gpio_request(GPIO_FN_MMC_D0, NULL);
1263 gpio_request(GPIO_FN_MMC_CLK, NULL);
1264 gpio_request(GPIO_FN_MMC_CMD, NULL);
1265 gpio_request(GPIO_PTB7, NULL);
1266 gpio_direction_output(GPIO_PTB7, 0);
1267
1268 cn12_enabled = true;
1269#elif defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1270 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
1271 gpio_request(GPIO_FN_SDHI1WP, NULL);
1272 gpio_request(GPIO_FN_SDHI1CMD, NULL);
1273 gpio_request(GPIO_FN_SDHI1CLK, NULL);
1274 gpio_request(GPIO_FN_SDHI1D3, NULL);
1275 gpio_request(GPIO_FN_SDHI1D2, NULL);
1276 gpio_request(GPIO_FN_SDHI1D1, NULL);
1277 gpio_request(GPIO_FN_SDHI1D0, NULL);
1278 gpio_request(GPIO_PTB7, NULL);
1279 gpio_direction_output(GPIO_PTB7, 0);
1280
1281 /* Card-detect, used on CN12 with SDHI1 */
1282 gpio_request(GPIO_PTW7, NULL);
1283 gpio_direction_input(GPIO_PTW7);
1284
1285 cn12_enabled = true;
1286#endif
1287
1288 if (cn12_enabled)
1289 /* I/O buffer drive ability is high for CN12 */
1290 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000,
1291 IODRIVEA);
1292
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001293 /* enable Video */
1294 gpio_request(GPIO_PTU2, NULL);
1295 gpio_direction_output(GPIO_PTU2, 1);
1296
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001297 /* enable Camera */
1298 gpio_request(GPIO_PTA3, NULL);
1299 gpio_request(GPIO_PTA4, NULL);
1300 gpio_direction_output(GPIO_PTA3, 0);
1301 gpio_direction_output(GPIO_PTA4, 0);
1302
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001303 /* enable FSI */
1304 gpio_request(GPIO_FN_FSIMCKB, NULL);
1305 gpio_request(GPIO_FN_FSIIBSD, NULL);
1306 gpio_request(GPIO_FN_FSIOBSD, NULL);
1307 gpio_request(GPIO_FN_FSIIBBCK, NULL);
1308 gpio_request(GPIO_FN_FSIIBLRCK, NULL);
1309 gpio_request(GPIO_FN_FSIOBBCK, NULL);
1310 gpio_request(GPIO_FN_FSIOBLRCK, NULL);
1311 gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
1312
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001313 /* set SPU2 clock to 83.4 MHz */
1314 clk = clk_get(NULL, "spu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001315 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001316 clk_set_rate(clk, clk_round_rate(clk, 83333333));
1317 clk_put(clk);
1318 }
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001319
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001320 /* change parent of FSI B */
1321 clk = clk_get(NULL, "fsib_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001322 if (!IS_ERR(clk)) {
Kuninori Morimoto4bd5d252010-11-26 09:40:22 +00001323 /* 48kHz dummy clock was used to make sure 1/1 divide */
1324 clk_set_rate(&sh7724_fsimckb_clk, 48000);
1325 clk_set_parent(clk, &sh7724_fsimckb_clk);
1326 clk_set_rate(clk, 48000);
Kuninori Morimoto10305852010-05-13 01:08:33 +00001327 clk_put(clk);
1328 }
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001329
1330 gpio_request(GPIO_PTU0, NULL);
1331 gpio_direction_output(GPIO_PTU0, 0);
1332 mdelay(20);
1333
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +09001334 /* enable motion sensor */
1335 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1336 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1337
Magnus Damm6f26d192010-02-19 09:33:47 +00001338 /* set VPU clock to 166 MHz */
1339 clk = clk_get(NULL, "vpu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001340 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001341 clk_set_rate(clk, clk_round_rate(clk, 166000000));
1342 clk_put(clk);
1343 }
Magnus Damm6f26d192010-02-19 09:33:47 +00001344
Kuninori Morimoto26365712010-02-24 00:32:28 +00001345 /* enable IrDA */
1346 gpio_request(GPIO_FN_IRDA_OUT, NULL);
1347 gpio_request(GPIO_FN_IRDA_IN, NULL);
1348 gpio_request(GPIO_PTU5, NULL);
1349 gpio_direction_output(GPIO_PTU5, 0);
1350
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001351 /* enable I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001352 i2c_register_board_info(0, i2c0_devices,
1353 ARRAY_SIZE(i2c0_devices));
1354
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001355 i2c_register_board_info(1, i2c1_devices,
1356 ARRAY_SIZE(i2c1_devices));
1357
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001358#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001359 /* VOU */
1360 gpio_request(GPIO_FN_DV_D15, NULL);
1361 gpio_request(GPIO_FN_DV_D14, NULL);
1362 gpio_request(GPIO_FN_DV_D13, NULL);
1363 gpio_request(GPIO_FN_DV_D12, NULL);
1364 gpio_request(GPIO_FN_DV_D11, NULL);
1365 gpio_request(GPIO_FN_DV_D10, NULL);
1366 gpio_request(GPIO_FN_DV_D9, NULL);
1367 gpio_request(GPIO_FN_DV_D8, NULL);
1368 gpio_request(GPIO_FN_DV_CLKI, NULL);
1369 gpio_request(GPIO_FN_DV_CLK, NULL);
1370 gpio_request(GPIO_FN_DV_VSYNC, NULL);
1371 gpio_request(GPIO_FN_DV_HSYNC, NULL);
1372
1373 /* AK8813 power / reset sequence */
1374 gpio_request(GPIO_PTG4, NULL);
1375 gpio_request(GPIO_PTU3, NULL);
1376 /* Reset */
1377 gpio_direction_output(GPIO_PTG4, 0);
1378 /* Power down */
1379 gpio_direction_output(GPIO_PTU3, 1);
1380
1381 udelay(10);
1382
1383 /* Power up, reset */
1384 gpio_set_value(GPIO_PTU3, 0);
1385
1386 udelay(10);
1387
1388 /* Remove reset */
1389 gpio_set_value(GPIO_PTG4, 1);
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001390#endif
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001391
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001392 return platform_add_devices(ecovec_devices,
1393 ARRAY_SIZE(ecovec_devices));
1394}
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001395arch_initcall(arch_setup);
1396
1397static int __init devices_setup(void)
1398{
Magnus Damm376abbb2009-10-26 10:44:37 +00001399 sh_eth_init(&sh_eth_plat);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001400 return 0;
1401}
1402device_initcall(devices_setup);
1403
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001404static struct sh_machine_vector mv_ecovec __initmv = {
1405 .mv_name = "R0P7724 (EcoVec)",
1406};