blob: a1557ec4833fe6a0b7bf6603eabc4e8ee60f0d50 [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>
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +020022#include <linux/regulator/fixed.h>
23#include <linux/regulator/machine.h>
Kuninori Morimoto907050a2009-08-26 11:04:31 +000024#include <linux/usb/r8a66597.h>
Kuninori Morimotofb2e7392011-06-15 06:08:18 +000025#include <linux/usb/renesas_usbhs.h>
Kuninori Morimoto4907d572009-09-10 01:39:58 +000026#include <linux/i2c.h>
Kuninori Morimoto8810e052009-09-28 08:21:41 +000027#include <linux/i2c/tsc2007.h>
Magnus Damm1ce4da72009-12-07 14:05:45 +000028#include <linux/spi/spi.h>
29#include <linux/spi/sh_msiof.h>
30#include <linux/spi/mmc_spi.h>
Kuninori Morimotoe9103e72009-09-14 11:23:00 +000031#include <linux/input.h>
Magnus Dammfc1d0032009-11-27 07:32:24 +000032#include <linux/input/sh_keysc.h>
Yoshihiro Shimodacf8e56b2011-09-28 16:49:14 +090033#include <linux/sh_eth.h>
Paul Mundt9307d112012-05-18 15:49:38 +090034#include <linux/sh_intc.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010035#include <linux/videodev2.h>
Kuninori Morimotofa3ba512009-08-26 11:04:34 +000036#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +000037#include <sound/sh_fsi.h>
Kuninori Morimoto064bfad2012-04-08 21:19:25 -070038#include <sound/simple_card.h>
Kuninori Morimoto2153ad32009-08-26 11:04:36 +000039#include <media/sh_mobile_ceu.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010040#include <media/soc_camera.h>
Kuninori Morimoto207efd02009-12-15 05:37:16 +000041#include <media/tw9910.h>
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +000042#include <media/mt9t112.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000043#include <asm/heartbeat.h>
Kuninori Morimotoa9918012009-09-14 11:23:16 +000044#include <asm/clock.h>
Magnus Dammeb0cd9e2009-10-30 04:23:59 +000045#include <asm/suspend.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000046#include <cpu/sh7724.h>
47
48/*
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000049 * Address Interface BusWidth
50 *-----------------------------------------
51 * 0x0000_0000 uboot 16bit
52 * 0x0004_0000 Linux romImage 16bit
53 * 0x0014_0000 MTD for Linux 16bit
54 * 0x0400_0000 Internal I/O 16/32bit
55 * 0x0800_0000 DRAM 32bit
56 * 0x1800_0000 MFI 16bit
Kuninori Morimoto4138b742009-08-19 12:08:33 +000057 */
58
Kuninori Morimoto9c472c42009-10-02 07:52:20 +000059/* SWITCH
60 *------------------------------
61 * DS2[1] = FlashROM write protect ON : write protect
62 * OFF : No write protect
63 * DS2[2] = RMII / TS, SCIF ON : RMII
64 * OFF : TS, SCIF3
65 * DS2[3] = Camera / Video ON : Camera
66 * OFF : NTSC/PAL (IN)
67 * DS2[5] = NTSC_OUT Clock ON : On board OSC
68 * OFF : SH7724 DV_CLK
69 * DS2[6-7] = MMC / SD ON-OFF : SD
70 * OFF-ON : MMC
71 */
72
Kuninori Morimoto035688d2012-12-24 20:04:20 -080073/*
74 * FSI - DA7210
75 *
76 * it needs amixer settings for playing
77 *
78 * amixer set 'HeadPhone' 80
79 * amixer set 'Out Mixer Left DAC Left' on
80 * amixer set 'Out Mixer Right DAC Right' on
81 */
82
Kuninori Morimoto4138b742009-08-19 12:08:33 +000083/* Heartbeat */
84static unsigned char led_pos[] = { 0, 1, 2, 3 };
Paul Mundta09d2832010-01-15 12:24:34 +090085
Kuninori Morimoto4138b742009-08-19 12:08:33 +000086static struct heartbeat_data heartbeat_data = {
Kuninori Morimoto4138b742009-08-19 12:08:33 +000087 .nr_bits = 4,
88 .bit_pos = led_pos,
89};
90
Paul Mundta09d2832010-01-15 12:24:34 +090091static struct resource heartbeat_resource = {
92 .start = 0xA405012C, /* PTG */
93 .end = 0xA405012E - 1,
94 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000095};
96
97static struct platform_device heartbeat_device = {
98 .name = "heartbeat",
99 .id = -1,
100 .dev = {
101 .platform_data = &heartbeat_data,
102 },
Paul Mundta09d2832010-01-15 12:24:34 +0900103 .num_resources = 1,
104 .resource = &heartbeat_resource,
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000105};
106
107/* MTD */
108static struct mtd_partition nor_flash_partitions[] = {
109 {
Kuninori Morimotob7056bc2009-08-26 11:04:22 +0000110 .name = "boot loader",
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000111 .offset = 0,
Kuninori Morimotob7056bc2009-08-26 11:04:22 +0000112 .size = (5 * 1024 * 1024),
Kuninori Morimotod5ce0102009-09-30 00:50:30 +0000113 .mask_flags = MTD_WRITEABLE, /* force read-only */
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000114 }, {
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000115 .name = "free-area",
116 .offset = MTDPART_OFS_APPEND,
117 .size = MTDPART_SIZ_FULL,
118 },
119};
120
121static struct physmap_flash_data nor_flash_data = {
122 .width = 2,
123 .parts = nor_flash_partitions,
124 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
125};
126
127static struct resource nor_flash_resources[] = {
128 [0] = {
129 .name = "NOR Flash",
130 .start = 0x00000000,
131 .end = 0x03ffffff,
132 .flags = IORESOURCE_MEM,
133 }
134};
135
136static struct platform_device nor_flash_device = {
137 .name = "physmap-flash",
138 .resource = nor_flash_resources,
139 .num_resources = ARRAY_SIZE(nor_flash_resources),
140 .dev = {
141 .platform_data = &nor_flash_data,
142 },
143};
144
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000145/* SH Eth */
146#define SH_ETH_ADDR (0xA4600000)
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000147static struct resource sh_eth_resources[] = {
148 [0] = {
149 .start = SH_ETH_ADDR,
150 .end = SH_ETH_ADDR + 0x1FC,
151 .flags = IORESOURCE_MEM,
152 },
153 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900154 .start = evt2irq(0xd60),
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000155 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
156 },
157};
158
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000159static struct sh_eth_plat_data sh_eth_plat = {
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000160 .phy = 0x1f, /* SMSC LAN8700 */
161 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +0000162 .register_type = SH_ETH_REG_FAST_SH4,
163 .phy_interface = PHY_INTERFACE_MODE_MII,
Kuninori Morimotoacf3cc22009-09-24 06:28:27 +0000164 .ether_link_active_low = 1
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000165};
166
167static struct platform_device sh_eth_device = {
Sergei Shtylyov9c3beaa2013-06-07 14:03:37 +0000168 .name = "sh7724-ether",
169 .id = 0,
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000170 .dev = {
171 .platform_data = &sh_eth_plat,
172 },
173 .num_resources = ARRAY_SIZE(sh_eth_resources),
174 .resource = sh_eth_resources,
175};
176
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000177/* USB0 host */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000178static void usb0_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000179{
180 gpio_set_value(GPIO_PTB4, power);
181}
182
183static struct r8a66597_platdata usb0_host_data = {
184 .on_chip = 1,
185 .port_power = usb0_port_power,
186};
187
188static struct resource usb0_host_resources[] = {
189 [0] = {
190 .start = 0xa4d80000,
191 .end = 0xa4d80124 - 1,
192 .flags = IORESOURCE_MEM,
193 },
194 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900195 .start = evt2irq(0xa20),
196 .end = evt2irq(0xa20),
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000197 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
198 },
199};
200
201static struct platform_device usb0_host_device = {
202 .name = "r8a66597_hcd",
203 .id = 0,
204 .dev = {
205 .dma_mask = NULL, /* not use dma */
206 .coherent_dma_mask = 0xffffffff,
207 .platform_data = &usb0_host_data,
208 },
209 .num_resources = ARRAY_SIZE(usb0_host_resources),
210 .resource = usb0_host_resources,
211};
212
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000213/* USB1 host/function */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000214static void usb1_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000215{
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000216 gpio_set_value(GPIO_PTB5, power);
217}
218
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000219static struct r8a66597_platdata usb1_common_data = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000220 .on_chip = 1,
221 .port_power = usb1_port_power,
222};
223
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000224static struct resource usb1_common_resources[] = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000225 [0] = {
226 .start = 0xa4d90000,
227 .end = 0xa4d90124 - 1,
228 .flags = IORESOURCE_MEM,
229 },
230 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900231 .start = evt2irq(0xa40),
232 .end = evt2irq(0xa40),
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000233 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
234 },
235};
236
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000237static struct platform_device usb1_common_device = {
238 /* .name will be added in arch_setup */
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000239 .id = 1,
240 .dev = {
241 .dma_mask = NULL, /* not use dma */
242 .coherent_dma_mask = 0xffffffff,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000243 .platform_data = &usb1_common_data,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000244 },
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000245 .num_resources = ARRAY_SIZE(usb1_common_resources),
246 .resource = usb1_common_resources,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000247};
248
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000249/*
250 * USBHS
251 */
252static int usbhs_get_id(struct platform_device *pdev)
253{
254 return gpio_get_value(GPIO_PTB3);
255}
256
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700257static int usbhs_phy_reset(struct platform_device *pdev)
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700258{
259 /* enable vbus if HOST */
260 if (!gpio_get_value(GPIO_PTB3))
261 gpio_set_value(GPIO_PTB5, 1);
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700262
263 return 0;
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700264}
265
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000266static struct renesas_usbhs_platform_info usbhs_info = {
267 .platform_callback = {
268 .get_id = usbhs_get_id,
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700269 .phy_reset = usbhs_phy_reset,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000270 },
271 .driver_param = {
272 .buswait_bwait = 4,
273 .detection_delay = 5,
Kuninori Morimoto9f0fa792011-06-15 06:08:32 +0000274 .d0_tx_id = SHDMA_SLAVE_USB1D0_TX,
275 .d0_rx_id = SHDMA_SLAVE_USB1D0_RX,
276 .d1_tx_id = SHDMA_SLAVE_USB1D1_TX,
277 .d1_rx_id = SHDMA_SLAVE_USB1D1_RX,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000278 },
279};
280
281static struct resource usbhs_resources[] = {
282 [0] = {
283 .start = 0xa4d90000,
284 .end = 0xa4d90124 - 1,
285 .flags = IORESOURCE_MEM,
286 },
287 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900288 .start = evt2irq(0xa40),
289 .end = evt2irq(0xa40),
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000290 .flags = IORESOURCE_IRQ,
291 },
292};
293
294static struct platform_device usbhs_device = {
295 .name = "renesas_usbhs",
296 .id = 1,
297 .dev = {
298 .dma_mask = NULL, /* not use dma */
299 .coherent_dma_mask = 0xffffffff,
300 .platform_data = &usbhs_info,
301 },
302 .num_resources = ARRAY_SIZE(usbhs_resources),
303 .resource = usbhs_resources,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000304};
305
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000306/* LCDC */
Jesper Juhle04008e2011-07-09 23:16:22 +0200307static const struct fb_videomode ecovec_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000308 {
309 .name = "Panel",
310 .xres = 800,
311 .yres = 480,
312 .left_margin = 220,
313 .right_margin = 110,
314 .hsync_len = 70,
315 .upper_margin = 20,
316 .lower_margin = 5,
317 .vsync_len = 5,
318 .sync = 0, /* hsync and vsync are active low */
319 },
320};
321
Jesper Juhle04008e2011-07-09 23:16:22 +0200322static const struct fb_videomode ecovec_dvi_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000323 {
324 .name = "DVI",
325 .xres = 1280,
326 .yres = 720,
327 .left_margin = 220,
328 .right_margin = 110,
329 .hsync_len = 40,
330 .upper_margin = 20,
331 .lower_margin = 5,
332 .vsync_len = 5,
333 .sync = 0, /* hsync and vsync are active low */
334 },
335};
336
Laurent Pinchart018882a2011-09-11 22:59:04 +0200337static int ecovec24_set_brightness(int brightness)
Alexandre Courbot0839d682011-02-16 03:49:02 +0000338{
339 gpio_set_value(GPIO_PTR1, brightness);
340
341 return 0;
342}
343
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000344static struct sh_mobile_lcdc_info lcdc_info = {
345 .ch[0] = {
346 .interface_type = RGB18,
347 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100348 .fourcc = V4L2_PIX_FMT_RGB565,
Laurent Pinchartafaad832011-09-11 22:59:04 +0200349 .panel_cfg = { /* 7.0 inch */
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000350 .width = 152,
351 .height = 91,
352 },
Alexandre Courbot0839d682011-02-16 03:49:02 +0000353 .bl_info = {
354 .name = "sh_mobile_lcdc_bl",
355 .max_brightness = 1,
Laurent Pinchart43059b02011-09-11 22:59:04 +0200356 .set_brightness = ecovec24_set_brightness,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000357 },
358 }
359};
360
361static struct resource lcdc_resources[] = {
362 [0] = {
363 .name = "LCDC",
364 .start = 0xfe940000,
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000365 .end = 0xfe942fff,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000366 .flags = IORESOURCE_MEM,
367 },
368 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900369 .start = evt2irq(0xf40),
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000370 .flags = IORESOURCE_IRQ,
371 },
372};
373
374static struct platform_device lcdc_device = {
375 .name = "sh_mobile_lcdc_fb",
376 .num_resources = ARRAY_SIZE(lcdc_resources),
377 .resource = lcdc_resources,
378 .dev = {
379 .platform_data = &lcdc_info,
380 },
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000381};
382
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000383/* CEU0 */
384static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
385 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
386};
387
388static struct resource ceu0_resources[] = {
389 [0] = {
390 .name = "CEU0",
391 .start = 0xfe910000,
392 .end = 0xfe91009f,
393 .flags = IORESOURCE_MEM,
394 },
395 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900396 .start = evt2irq(0x880),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000397 .flags = IORESOURCE_IRQ,
398 },
399 [2] = {
400 /* place holder for contiguous memory */
401 },
402};
403
404static struct platform_device ceu0_device = {
405 .name = "sh_mobile_ceu",
406 .id = 0, /* "ceu0" clock */
407 .num_resources = ARRAY_SIZE(ceu0_resources),
408 .resource = ceu0_resources,
409 .dev = {
410 .platform_data = &sh_mobile_ceu0_info,
411 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000412};
413
414/* CEU1 */
415static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
416 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
417};
418
419static struct resource ceu1_resources[] = {
420 [0] = {
421 .name = "CEU1",
422 .start = 0xfe914000,
423 .end = 0xfe91409f,
424 .flags = IORESOURCE_MEM,
425 },
426 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900427 .start = evt2irq(0x9e0),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000428 .flags = IORESOURCE_IRQ,
429 },
430 [2] = {
431 /* place holder for contiguous memory */
432 },
433};
434
435static struct platform_device ceu1_device = {
436 .name = "sh_mobile_ceu",
437 .id = 1, /* "ceu1" clock */
438 .num_resources = ARRAY_SIZE(ceu1_resources),
439 .resource = ceu1_resources,
440 .dev = {
441 .platform_data = &sh_mobile_ceu1_info,
442 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000443};
444
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000445/* I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000446static struct i2c_board_info i2c0_devices[] = {
447 {
448 I2C_BOARD_INFO("da7210", 0x1a),
449 },
450};
451
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000452static struct i2c_board_info i2c1_devices[] = {
453 {
454 I2C_BOARD_INFO("r2025sd", 0x32),
455 },
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900456 {
457 I2C_BOARD_INFO("lis3lv02d", 0x1c),
Paul Mundt9307d112012-05-18 15:49:38 +0900458 .irq = evt2irq(0x620),
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900459 }
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000460};
461
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000462/* KEYSC */
463static struct sh_keysc_info keysc_info = {
464 .mode = SH_KEYSC_MODE_1,
465 .scan_timing = 3,
466 .delay = 50,
467 .kycr2_delay = 100,
468 .keycodes = { KEY_1, 0, 0, 0, 0,
469 KEY_2, 0, 0, 0, 0,
470 KEY_3, 0, 0, 0, 0,
471 KEY_4, 0, 0, 0, 0,
472 KEY_5, 0, 0, 0, 0,
473 KEY_6, 0, 0, 0, 0, },
474};
475
476static struct resource keysc_resources[] = {
477 [0] = {
478 .name = "KEYSC",
479 .start = 0x044b0000,
480 .end = 0x044b000f,
481 .flags = IORESOURCE_MEM,
482 },
483 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900484 .start = evt2irq(0xbe0),
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000485 .flags = IORESOURCE_IRQ,
486 },
487};
488
489static struct platform_device keysc_device = {
490 .name = "sh_keysc",
491 .id = 0, /* keysc0 clock */
492 .num_resources = ARRAY_SIZE(keysc_resources),
493 .resource = keysc_resources,
494 .dev = {
495 .platform_data = &keysc_info,
496 },
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000497};
498
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000499/* TouchScreen */
Paul Mundt9307d112012-05-18 15:49:38 +0900500#define IRQ0 evt2irq(0x600)
501
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900502static int ts_get_pendown_state(void)
503{
504 int val = 0;
505 gpio_free(GPIO_FN_INTC_IRQ0);
506 gpio_request(GPIO_PTZ0, NULL);
507 gpio_direction_input(GPIO_PTZ0);
508
509 val = gpio_get_value(GPIO_PTZ0);
510
511 gpio_free(GPIO_PTZ0);
512 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
513
514 return val ? 0 : 1;
515}
516
517static int ts_init(void)
518{
519 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
520 return 0;
521}
522
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000523static struct tsc2007_platform_data tsc2007_info = {
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000524 .model = 2007,
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900525 .x_plate_ohms = 180,
526 .get_pendown_state = ts_get_pendown_state,
527 .init_platform_hw = ts_init,
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000528};
529
530static struct i2c_board_info ts_i2c_clients = {
531 I2C_BOARD_INFO("tsc2007", 0x48),
532 .type = "tsc2007",
533 .platform_data = &tsc2007_info,
534 .irq = IRQ0,
535};
536
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200537static struct regulator_consumer_supply cn12_power_consumers[] =
538{
539 REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
540 REGULATOR_SUPPLY("vqmmc", "sh_mmcif.0"),
541 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
542 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.1"),
543};
544
545static struct regulator_init_data cn12_power_init_data = {
546 .constraints = {
547 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
548 },
549 .num_consumer_supplies = ARRAY_SIZE(cn12_power_consumers),
550 .consumer_supplies = cn12_power_consumers,
551};
552
553static struct fixed_voltage_config cn12_power_info = {
554 .supply_name = "CN12 SD/MMC Vdd",
555 .microvolts = 3300000,
556 .gpio = GPIO_PTB7,
557 .enable_high = 1,
558 .init_data = &cn12_power_init_data,
559};
560
561static struct platform_device cn12_power = {
562 .name = "reg-fixed-voltage",
563 .id = 0,
564 .dev = {
565 .platform_data = &cn12_power_info,
566 },
567};
568
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200569#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000570/* SDHI0 */
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200571static struct regulator_consumer_supply sdhi0_power_consumers[] =
572{
573 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
574 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
575};
576
577static struct regulator_init_data sdhi0_power_init_data = {
578 .constraints = {
579 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
580 },
581 .num_consumer_supplies = ARRAY_SIZE(sdhi0_power_consumers),
582 .consumer_supplies = sdhi0_power_consumers,
583};
584
585static struct fixed_voltage_config sdhi0_power_info = {
586 .supply_name = "CN11 SD/MMC Vdd",
587 .microvolts = 3300000,
588 .gpio = GPIO_PTB6,
589 .enable_high = 1,
590 .init_data = &sdhi0_power_init_data,
591};
592
593static struct platform_device sdhi0_power = {
594 .name = "reg-fixed-voltage",
595 .id = 1,
596 .dev = {
597 .platform_data = &sdhi0_power_info,
598 },
599};
600
Magnus Damm98779ad2009-11-27 04:36:58 +0000601static void sdhi0_set_pwr(struct platform_device *pdev, int state)
602{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200603 static int power_gpio = -EINVAL;
604
605 if (power_gpio < 0) {
606 int ret = gpio_request(GPIO_PTB6, NULL);
607 if (!ret) {
608 power_gpio = GPIO_PTB6;
609 gpio_direction_output(power_gpio, 0);
610 }
611 }
612
613 /*
614 * Toggle the GPIO regardless, whether we managed to grab it above or
615 * the fixed regulator driver did.
616 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000617 gpio_set_value(GPIO_PTB6, state);
618}
619
620static struct sh_mobile_sdhi_info sdhi0_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000621 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
622 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
623 .set_pwr = sdhi0_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100624 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
625 MMC_CAP_NEEDS_POLL,
Laurent Pinchartafa2c942013-08-08 12:38:34 +0200626 .tmio_flags = TMIO_MMC_USE_GPIO_CD,
627 .cd_gpio = GPIO_PTY7,
Magnus Damm98779ad2009-11-27 04:36:58 +0000628};
629
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000630static struct resource sdhi0_resources[] = {
631 [0] = {
632 .name = "SDHI0",
633 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100634 .end = 0x04ce00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000635 .flags = IORESOURCE_MEM,
636 },
637 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900638 .start = evt2irq(0xe80),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000639 .flags = IORESOURCE_IRQ,
640 },
641};
642
643static struct platform_device sdhi0_device = {
644 .name = "sh_mobile_sdhi",
645 .num_resources = ARRAY_SIZE(sdhi0_resources),
646 .resource = sdhi0_resources,
647 .id = 0,
Magnus Damm98779ad2009-11-27 04:36:58 +0000648 .dev = {
649 .platform_data = &sdhi0_info,
650 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000651};
652
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200653static void cn12_set_pwr(struct platform_device *pdev, int state)
Magnus Damm98779ad2009-11-27 04:36:58 +0000654{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200655 static int power_gpio = -EINVAL;
656
657 if (power_gpio < 0) {
658 int ret = gpio_request(GPIO_PTB7, NULL);
659 if (!ret) {
660 power_gpio = GPIO_PTB7;
661 gpio_direction_output(power_gpio, 0);
662 }
663 }
664
665 /*
666 * Toggle the GPIO regardless, whether we managed to grab it above or
667 * the fixed regulator driver did.
668 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000669 gpio_set_value(GPIO_PTB7, state);
670}
671
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200672#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
673/* SDHI1 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000674static struct sh_mobile_sdhi_info sdhi1_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000675 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
676 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100677 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
678 MMC_CAP_NEEDS_POLL,
Laurent Pinchartafa2c942013-08-08 12:38:34 +0200679 .tmio_flags = TMIO_MMC_USE_GPIO_CD,
680 .cd_gpio = GPIO_PTW7,
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200681 .set_pwr = cn12_set_pwr,
Magnus Damm98779ad2009-11-27 04:36:58 +0000682};
683
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000684static struct resource sdhi1_resources[] = {
685 [0] = {
686 .name = "SDHI1",
687 .start = 0x04cf0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100688 .end = 0x04cf00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000689 .flags = IORESOURCE_MEM,
690 },
691 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900692 .start = evt2irq(0x4e0),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000693 .flags = IORESOURCE_IRQ,
694 },
695};
696
697static struct platform_device sdhi1_device = {
698 .name = "sh_mobile_sdhi",
699 .num_resources = ARRAY_SIZE(sdhi1_resources),
700 .resource = sdhi1_resources,
701 .id = 1,
Magnus Damm98779ad2009-11-27 04:36:58 +0000702 .dev = {
703 .platform_data = &sdhi1_info,
704 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000705};
Yusuke Goda1238c682010-04-27 10:15:32 +0000706#endif /* CONFIG_MMC_SH_MMCIF */
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000707
Magnus Damm1ce4da72009-12-07 14:05:45 +0000708#else
709
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000710/* MMC SPI */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000711static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
712{
713 gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
714}
715
716static struct mmc_spi_platform_data mmc_spi_info = {
Magnus Damm1ce4da72009-12-07 14:05:45 +0000717 .caps = MMC_CAP_NEEDS_POLL,
Laurent Pinchartafa2c942013-08-08 12:38:34 +0200718 .caps2 = MMC_CAP2_RO_ACTIVE_HIGH,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000719 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
720 .setpower = mmc_spi_setpower,
Laurent Pinchartafa2c942013-08-08 12:38:34 +0200721 .flags = MMC_SPI_USE_CD_GPIO | MMC_SPI_USE_RO_GPIO,
722 .cd_gpio = GPIO_PTY7,
723 .ro_gpio = GPIO_PTY6,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000724};
725
726static struct spi_board_info spi_bus[] = {
727 {
728 .modalias = "mmc_spi",
729 .platform_data = &mmc_spi_info,
730 .max_speed_hz = 5000000,
731 .mode = SPI_MODE_0,
732 .controller_data = (void *) GPIO_PTM4,
733 },
734};
735
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000736/* MSIOF0 */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000737static struct sh_msiof_spi_info msiof0_data = {
738 .num_chipselect = 1,
739};
740
741static struct resource msiof0_resources[] = {
742 [0] = {
743 .name = "MSIOF0",
744 .start = 0xa4c40000,
745 .end = 0xa4c40063,
746 .flags = IORESOURCE_MEM,
747 },
748 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900749 .start = evt2irq(0xc80),
Magnus Damm1ce4da72009-12-07 14:05:45 +0000750 .flags = IORESOURCE_IRQ,
751 },
752};
753
754static struct platform_device msiof0_device = {
755 .name = "spi_sh_msiof",
756 .id = 0, /* MSIOF0 */
757 .dev = {
758 .platform_data = &msiof0_data,
759 },
760 .num_resources = ARRAY_SIZE(msiof0_resources),
761 .resource = msiof0_resources,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000762};
763
764#endif
765
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000766/* I2C Video/Camera */
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000767static struct i2c_board_info i2c_camera[] = {
768 {
769 I2C_BOARD_INFO("tw9910", 0x45),
770 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000771 {
772 /* 1st camera */
773 I2C_BOARD_INFO("mt9t112", 0x3c),
774 },
775 {
776 /* 2nd camera */
777 I2C_BOARD_INFO("mt9t112", 0x3c),
778 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000779};
780
781/* tw9910 */
782static int tw9910_power(struct device *dev, int mode)
783{
784 int val = mode ? 0 : 1;
785
786 gpio_set_value(GPIO_PTU2, val);
787 if (mode)
788 mdelay(100);
789
790 return 0;
791}
792
793static struct tw9910_video_info tw9910_info = {
794 .buswidth = SOCAM_DATAWIDTH_8,
795 .mpout = TW9910_MPO_FIELD,
796};
797
798static struct soc_camera_link tw9910_link = {
799 .i2c_adapter_id = 0,
800 .bus_id = 1,
801 .power = tw9910_power,
802 .board_info = &i2c_camera[0],
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000803 .priv = &tw9910_info,
804};
805
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000806/* mt9t112 */
807static int mt9t112_power1(struct device *dev, int mode)
808{
809 gpio_set_value(GPIO_PTA3, mode);
810 if (mode)
811 mdelay(100);
812
813 return 0;
814}
815
816static struct mt9t112_camera_info mt9t112_info1 = {
817 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
818 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
819};
820
821static struct soc_camera_link mt9t112_link1 = {
822 .i2c_adapter_id = 0,
823 .power = mt9t112_power1,
824 .bus_id = 0,
825 .board_info = &i2c_camera[1],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000826 .priv = &mt9t112_info1,
827};
828
829static int mt9t112_power2(struct device *dev, int mode)
830{
831 gpio_set_value(GPIO_PTA4, mode);
832 if (mode)
833 mdelay(100);
834
835 return 0;
836}
837
838static struct mt9t112_camera_info mt9t112_info2 = {
839 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
840 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
841};
842
843static struct soc_camera_link mt9t112_link2 = {
844 .i2c_adapter_id = 1,
845 .power = mt9t112_power2,
846 .bus_id = 1,
847 .board_info = &i2c_camera[2],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000848 .priv = &mt9t112_info2,
849};
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000850
851static struct platform_device camera_devices[] = {
852 {
853 .name = "soc-camera-pdrv",
854 .id = 0,
855 .dev = {
856 .platform_data = &tw9910_link,
857 },
858 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000859 {
860 .name = "soc-camera-pdrv",
861 .id = 1,
862 .dev = {
863 .platform_data = &mt9t112_link1,
864 },
865 },
866 {
867 .name = "soc-camera-pdrv",
868 .id = 2,
869 .dev = {
870 .platform_data = &mt9t112_link2,
871 },
872 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000873};
874
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000875/* FSI */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000876static struct resource fsi_resources[] = {
877 [0] = {
878 .name = "FSI",
879 .start = 0xFE3C0000,
880 .end = 0xFE3C021d,
881 .flags = IORESOURCE_MEM,
882 },
883 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900884 .start = evt2irq(0xf80),
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000885 .flags = IORESOURCE_IRQ,
886 },
887};
888
889static struct platform_device fsi_device = {
890 .name = "sh_fsi",
891 .id = 0,
892 .num_resources = ARRAY_SIZE(fsi_resources),
893 .resource = fsi_resources,
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000894};
895
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700896static struct asoc_simple_card_info fsi_da7210_info = {
897 .name = "DA7210",
898 .card = "FSIB-DA7210",
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700899 .codec = "da7210.0-001a",
900 .platform = "sh_fsi.0",
Kuninori Morimotoa4a29922013-01-10 16:49:11 -0800901 .daifmt = SND_SOC_DAIFMT_I2S,
902 .cpu_dai = {
903 .name = "fsib-dai",
904 .fmt = SND_SOC_DAIFMT_CBS_CFS | SND_SOC_DAIFMT_IB_NF,
905 },
906 .codec_dai = {
907 .name = "da7210-hifi",
908 .fmt = SND_SOC_DAIFMT_CBM_CFM,
909 },
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700910};
911
912static struct platform_device fsi_da7210_device = {
913 .name = "asoc-simple-card",
914 .dev = {
915 .platform_data = &fsi_da7210_info,
916 },
917};
918
919
Kuninori Morimoto26365712010-02-24 00:32:28 +0000920/* IrDA */
921static struct resource irda_resources[] = {
922 [0] = {
923 .name = "IrDA",
924 .start = 0xA45D0000,
925 .end = 0xA45D0049,
926 .flags = IORESOURCE_MEM,
927 },
928 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900929 .start = evt2irq(0x480),
Kuninori Morimoto26365712010-02-24 00:32:28 +0000930 .flags = IORESOURCE_IRQ,
931 },
932};
933
934static struct platform_device irda_device = {
935 .name = "sh_sir",
936 .num_resources = ARRAY_SIZE(irda_resources),
937 .resource = irda_resources,
938};
939
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000940#include <media/ak881x.h>
941#include <media/sh_vou.h>
942
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000943static struct ak881x_pdata ak881x_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000944 .flags = AK881X_IF_MODE_SLAVE,
945};
946
947static struct i2c_board_info ak8813 = {
948 I2C_BOARD_INFO("ak8813", 0x20),
949 .platform_data = &ak881x_pdata,
950};
951
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000952static struct sh_vou_pdata sh_vou_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000953 .bus_fmt = SH_VOU_BUS_8BIT,
954 .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
955 .board_info = &ak8813,
956 .i2c_adap = 0,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000957};
958
959static struct resource sh_vou_resources[] = {
960 [0] = {
961 .start = 0xfe960000,
962 .end = 0xfe962043,
963 .flags = IORESOURCE_MEM,
964 },
965 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900966 .start = evt2irq(0x8e0),
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000967 .flags = IORESOURCE_IRQ,
968 },
969};
970
971static struct platform_device vou_device = {
972 .name = "sh-vou",
973 .id = -1,
974 .num_resources = ARRAY_SIZE(sh_vou_resources),
975 .resource = sh_vou_resources,
976 .dev = {
977 .platform_data = &sh_vou_pdata,
978 },
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000979};
980
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200981#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000982/* SH_MMCIF */
Yusuke Goda1238c682010-04-27 10:15:32 +0000983static void mmcif_down_pwr(struct platform_device *pdev)
984{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200985 cn12_set_pwr(pdev, 0);
Yusuke Goda1238c682010-04-27 10:15:32 +0000986}
987
988static struct resource sh_mmcif_resources[] = {
989 [0] = {
990 .name = "SH_MMCIF",
991 .start = 0xA4CA0000,
992 .end = 0xA4CA00FF,
993 .flags = IORESOURCE_MEM,
994 },
995 [1] = {
996 /* MMC2I */
Paul Mundt9307d112012-05-18 15:49:38 +0900997 .start = evt2irq(0x5a0),
Yusuke Goda1238c682010-04-27 10:15:32 +0000998 .flags = IORESOURCE_IRQ,
999 },
1000 [2] = {
1001 /* MMC3I */
Paul Mundt9307d112012-05-18 15:49:38 +09001002 .start = evt2irq(0x5c0),
Yusuke Goda1238c682010-04-27 10:15:32 +00001003 .flags = IORESOURCE_IRQ,
1004 },
1005};
1006
Kuninori Morimoto3ce09332010-06-02 00:27:31 +00001007static struct sh_mmcif_plat_data sh_mmcif_plat = {
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001008 .set_pwr = cn12_set_pwr,
Yusuke Goda1238c682010-04-27 10:15:32 +00001009 .down_pwr = mmcif_down_pwr,
1010 .sup_pclk = 0, /* SH7724: Max Pclk/2 */
1011 .caps = MMC_CAP_4_BIT_DATA |
1012 MMC_CAP_8_BIT_DATA |
1013 MMC_CAP_NEEDS_POLL,
1014 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
1015};
1016
1017static struct platform_device sh_mmcif_device = {
1018 .name = "sh_mmcif",
1019 .id = 0,
1020 .dev = {
1021 .platform_data = &sh_mmcif_plat,
1022 },
1023 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
1024 .resource = sh_mmcif_resources,
1025};
1026#endif
1027
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001028static struct platform_device *ecovec_devices[] __initdata = {
1029 &heartbeat_device,
1030 &nor_flash_device,
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001031 &sh_eth_device,
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001032 &usb0_host_device,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001033 &usb1_common_device,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +00001034 &usbhs_device,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001035 &lcdc_device,
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001036 &ceu0_device,
1037 &ceu1_device,
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001038 &keysc_device,
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001039 &cn12_power,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001040#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001041 &sdhi0_power,
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001042 &sdhi0_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001043#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001044 &sdhi1_device,
Yusuke Goda1238c682010-04-27 10:15:32 +00001045#endif
Magnus Damm1ce4da72009-12-07 14:05:45 +00001046#else
1047 &msiof0_device,
1048#endif
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001049 &camera_devices[0],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001050 &camera_devices[1],
1051 &camera_devices[2],
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001052 &fsi_device,
Kuninori Morimoto064bfad2012-04-08 21:19:25 -07001053 &fsi_da7210_device,
Kuninori Morimoto26365712010-02-24 00:32:28 +00001054 &irda_device,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001055 &vou_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001056#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +00001057 &sh_mmcif_device,
1058#endif
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001059};
1060
Magnus Damm6b3b5572010-02-25 11:10:54 +00001061#ifdef CONFIG_I2C
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001062#define EEPROM_ADDR 0x50
1063static u8 mac_read(struct i2c_adapter *a, u8 command)
1064{
1065 struct i2c_msg msg[2];
1066 u8 buf;
1067 int ret;
1068
1069 msg[0].addr = EEPROM_ADDR;
1070 msg[0].flags = 0;
1071 msg[0].len = 1;
1072 msg[0].buf = &command;
1073
1074 msg[1].addr = EEPROM_ADDR;
1075 msg[1].flags = I2C_M_RD;
1076 msg[1].len = 1;
1077 msg[1].buf = &buf;
1078
1079 ret = i2c_transfer(a, msg, 2);
1080 if (ret < 0) {
1081 printk(KERN_ERR "error %d\n", ret);
1082 buf = 0xff;
1083 }
1084
1085 return buf;
1086}
1087
Magnus Damm376abbb2009-10-26 10:44:37 +00001088static void __init sh_eth_init(struct sh_eth_plat_data *pd)
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001089{
1090 struct i2c_adapter *a = i2c_get_adapter(1);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001091 int i;
1092
1093 if (!a) {
1094 pr_err("can not get I2C 1\n");
1095 return;
1096 }
1097
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001098 /* read MAC address from EEPROM */
Magnus Damm376abbb2009-10-26 10:44:37 +00001099 for (i = 0; i < sizeof(pd->mac_addr); i++) {
1100 pd->mac_addr[i] = mac_read(a, 0x10 + i);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001101 msleep(10);
1102 }
Kuninori Morimotob230eb32010-03-16 02:01:33 +00001103
1104 i2c_put_adapter(a);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001105}
Magnus Damm6b3b5572010-02-25 11:10:54 +00001106#else
1107static void __init sh_eth_init(struct sh_eth_plat_data *pd)
1108{
1109 pr_err("unable to read sh_eth MAC address\n");
1110}
1111#endif
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001112
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001113#define PORT_HIZA 0xA4050158
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001114#define IODRIVEA 0xA405018A
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001115
1116extern char ecovec24_sdram_enter_start;
1117extern char ecovec24_sdram_enter_end;
1118extern char ecovec24_sdram_leave_start;
1119extern char ecovec24_sdram_leave_end;
1120
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001121static int __init arch_setup(void)
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001122{
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001123 struct clk *clk;
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001124 bool cn12_enabled = false;
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001125
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001126 /* register board specific self-refresh code */
Magnus Damm2839bd62010-02-25 11:07:52 +00001127 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
1128 SUSP_SH_RSTANDBY,
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001129 &ecovec24_sdram_enter_start,
1130 &ecovec24_sdram_enter_end,
1131 &ecovec24_sdram_leave_start,
1132 &ecovec24_sdram_leave_end);
1133
Magnus Dammf78bab32009-10-07 09:00:06 +00001134 /* enable STATUS0, STATUS2 and PDSTATUS */
1135 gpio_request(GPIO_FN_STATUS0, NULL);
1136 gpio_request(GPIO_FN_STATUS2, NULL);
1137 gpio_request(GPIO_FN_PDSTATUS, NULL);
1138
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001139 /* enable SCIFA0 */
1140 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
1141 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001142
1143 /* enable debug LED */
1144 gpio_request(GPIO_PTG0, NULL);
1145 gpio_request(GPIO_PTG1, NULL);
1146 gpio_request(GPIO_PTG2, NULL);
1147 gpio_request(GPIO_PTG3, NULL);
Kuninori Morimotob7056bc2009-08-26 11:04:22 +00001148 gpio_direction_output(GPIO_PTG0, 0);
1149 gpio_direction_output(GPIO_PTG1, 0);
1150 gpio_direction_output(GPIO_PTG2, 0);
1151 gpio_direction_output(GPIO_PTG3, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001152 __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001153
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001154 /* enable SH-Eth */
1155 gpio_request(GPIO_PTA1, NULL);
1156 gpio_direction_output(GPIO_PTA1, 1);
1157 mdelay(20);
1158
1159 gpio_request(GPIO_FN_RMII_RXD0, NULL);
1160 gpio_request(GPIO_FN_RMII_RXD1, NULL);
1161 gpio_request(GPIO_FN_RMII_TXD0, NULL);
1162 gpio_request(GPIO_FN_RMII_TXD1, NULL);
1163 gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
1164 gpio_request(GPIO_FN_RMII_TX_EN, NULL);
1165 gpio_request(GPIO_FN_RMII_RX_ER, NULL);
1166 gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
1167 gpio_request(GPIO_FN_MDIO, NULL);
1168 gpio_request(GPIO_FN_MDC, NULL);
1169 gpio_request(GPIO_FN_LNKSTA, NULL);
1170
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001171 /* enable USB */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001172 __raw_writew(0x0000, 0xA4D80000);
1173 __raw_writew(0x0000, 0xA4D90000);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001174 gpio_request(GPIO_PTB3, NULL);
1175 gpio_request(GPIO_PTB4, NULL);
1176 gpio_request(GPIO_PTB5, NULL);
1177 gpio_direction_input(GPIO_PTB3);
1178 gpio_direction_output(GPIO_PTB4, 0);
1179 gpio_direction_output(GPIO_PTB5, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001180 __raw_writew(0x0600, 0xa40501d4);
1181 __raw_writew(0x0600, 0xa4050192);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001182
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001183 if (gpio_get_value(GPIO_PTB3)) {
1184 printk(KERN_INFO "USB1 function is selected\n");
1185 usb1_common_device.name = "r8a66597_udc";
1186 } else {
1187 printk(KERN_INFO "USB1 host is selected\n");
1188 usb1_common_device.name = "r8a66597_hcd";
1189 }
1190
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001191 /* enable LCDC */
1192 gpio_request(GPIO_FN_LCDD23, NULL);
1193 gpio_request(GPIO_FN_LCDD22, NULL);
1194 gpio_request(GPIO_FN_LCDD21, NULL);
1195 gpio_request(GPIO_FN_LCDD20, NULL);
1196 gpio_request(GPIO_FN_LCDD19, NULL);
1197 gpio_request(GPIO_FN_LCDD18, NULL);
1198 gpio_request(GPIO_FN_LCDD17, NULL);
1199 gpio_request(GPIO_FN_LCDD16, NULL);
1200 gpio_request(GPIO_FN_LCDD15, NULL);
1201 gpio_request(GPIO_FN_LCDD14, NULL);
1202 gpio_request(GPIO_FN_LCDD13, NULL);
1203 gpio_request(GPIO_FN_LCDD12, NULL);
1204 gpio_request(GPIO_FN_LCDD11, NULL);
1205 gpio_request(GPIO_FN_LCDD10, NULL);
1206 gpio_request(GPIO_FN_LCDD9, NULL);
1207 gpio_request(GPIO_FN_LCDD8, NULL);
1208 gpio_request(GPIO_FN_LCDD7, NULL);
1209 gpio_request(GPIO_FN_LCDD6, NULL);
1210 gpio_request(GPIO_FN_LCDD5, NULL);
1211 gpio_request(GPIO_FN_LCDD4, NULL);
1212 gpio_request(GPIO_FN_LCDD3, NULL);
1213 gpio_request(GPIO_FN_LCDD2, NULL);
1214 gpio_request(GPIO_FN_LCDD1, NULL);
1215 gpio_request(GPIO_FN_LCDD0, NULL);
1216 gpio_request(GPIO_FN_LCDDISP, NULL);
1217 gpio_request(GPIO_FN_LCDHSYN, NULL);
1218 gpio_request(GPIO_FN_LCDDCK, NULL);
1219 gpio_request(GPIO_FN_LCDVSYN, NULL);
1220 gpio_request(GPIO_FN_LCDDON, NULL);
1221 gpio_request(GPIO_FN_LCDLCLK, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001222 __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001223
1224 gpio_request(GPIO_PTE6, NULL);
1225 gpio_request(GPIO_PTU1, NULL);
1226 gpio_request(GPIO_PTR1, NULL);
1227 gpio_request(GPIO_PTA2, NULL);
1228 gpio_direction_input(GPIO_PTE6);
1229 gpio_direction_output(GPIO_PTU1, 0);
1230 gpio_direction_output(GPIO_PTR1, 0);
1231 gpio_direction_output(GPIO_PTA2, 0);
1232
Kuninori Morimoto82b33222009-12-02 09:35:42 +00001233 /* I/O buffer drive ability is high */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001234 __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001235
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001236 if (gpio_get_value(GPIO_PTE6)) {
1237 /* DVI */
1238 lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001239 lcdc_info.ch[0].clock_divider = 1;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001240 lcdc_info.ch[0].lcd_modes = ecovec_dvi_modes;
1241 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_dvi_modes);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001242
1243 gpio_set_value(GPIO_PTA2, 1);
1244 gpio_set_value(GPIO_PTU1, 1);
1245 } else {
1246 /* Panel */
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001247 lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001248 lcdc_info.ch[0].clock_divider = 2;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001249 lcdc_info.ch[0].lcd_modes = ecovec_lcd_modes;
1250 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_lcd_modes);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001251
1252 gpio_set_value(GPIO_PTR1, 1);
1253
1254 /* FIXME
1255 *
1256 * LCDDON control is needed for Panel,
1257 * but current sh_mobile_lcdc driver doesn't control it.
1258 * It is temporary correspondence
1259 */
1260 gpio_request(GPIO_PTF4, NULL);
1261 gpio_direction_output(GPIO_PTF4, 1);
Kuninori Morimoto8810e052009-09-28 08:21:41 +00001262
1263 /* enable TouchScreen */
1264 i2c_register_board_info(0, &ts_i2c_clients, 1);
Thomas Gleixnerfcb89182011-03-24 16:31:17 +01001265 irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001266 }
1267
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001268 /* enable CEU0 */
1269 gpio_request(GPIO_FN_VIO0_D15, NULL);
1270 gpio_request(GPIO_FN_VIO0_D14, NULL);
1271 gpio_request(GPIO_FN_VIO0_D13, NULL);
1272 gpio_request(GPIO_FN_VIO0_D12, NULL);
1273 gpio_request(GPIO_FN_VIO0_D11, NULL);
1274 gpio_request(GPIO_FN_VIO0_D10, NULL);
1275 gpio_request(GPIO_FN_VIO0_D9, NULL);
1276 gpio_request(GPIO_FN_VIO0_D8, NULL);
1277 gpio_request(GPIO_FN_VIO0_D7, NULL);
1278 gpio_request(GPIO_FN_VIO0_D6, NULL);
1279 gpio_request(GPIO_FN_VIO0_D5, NULL);
1280 gpio_request(GPIO_FN_VIO0_D4, NULL);
1281 gpio_request(GPIO_FN_VIO0_D3, NULL);
1282 gpio_request(GPIO_FN_VIO0_D2, NULL);
1283 gpio_request(GPIO_FN_VIO0_D1, NULL);
1284 gpio_request(GPIO_FN_VIO0_D0, NULL);
1285 gpio_request(GPIO_FN_VIO0_VD, NULL);
1286 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1287 gpio_request(GPIO_FN_VIO0_FLD, NULL);
1288 gpio_request(GPIO_FN_VIO0_HD, NULL);
1289 platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
1290
1291 /* enable CEU1 */
1292 gpio_request(GPIO_FN_VIO1_D7, NULL);
1293 gpio_request(GPIO_FN_VIO1_D6, NULL);
1294 gpio_request(GPIO_FN_VIO1_D5, NULL);
1295 gpio_request(GPIO_FN_VIO1_D4, NULL);
1296 gpio_request(GPIO_FN_VIO1_D3, NULL);
1297 gpio_request(GPIO_FN_VIO1_D2, NULL);
1298 gpio_request(GPIO_FN_VIO1_D1, NULL);
1299 gpio_request(GPIO_FN_VIO1_D0, NULL);
1300 gpio_request(GPIO_FN_VIO1_FLD, NULL);
1301 gpio_request(GPIO_FN_VIO1_HD, NULL);
1302 gpio_request(GPIO_FN_VIO1_VD, NULL);
1303 gpio_request(GPIO_FN_VIO1_CLK, NULL);
1304 platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
1305
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001306 /* enable KEYSC */
1307 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
1308 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
1309 gpio_request(GPIO_FN_KEYOUT3, NULL);
1310 gpio_request(GPIO_FN_KEYOUT2, NULL);
1311 gpio_request(GPIO_FN_KEYOUT1, NULL);
1312 gpio_request(GPIO_FN_KEYOUT0, NULL);
1313 gpio_request(GPIO_FN_KEYIN0, NULL);
1314
Kuninori Morimoto064a16d2009-09-16 11:34:34 +00001315 /* enable user debug switch */
1316 gpio_request(GPIO_PTR0, NULL);
1317 gpio_request(GPIO_PTR4, NULL);
1318 gpio_request(GPIO_PTR5, NULL);
1319 gpio_request(GPIO_PTR6, NULL);
1320 gpio_direction_input(GPIO_PTR0);
1321 gpio_direction_input(GPIO_PTR4);
1322 gpio_direction_input(GPIO_PTR5);
1323 gpio_direction_input(GPIO_PTR6);
1324
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001325 /* SD-card slot CN11 */
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001326#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001327 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001328 gpio_request(GPIO_FN_SDHI0WP, NULL);
1329 gpio_request(GPIO_FN_SDHI0CMD, NULL);
1330 gpio_request(GPIO_FN_SDHI0CLK, NULL);
1331 gpio_request(GPIO_FN_SDHI0D3, NULL);
1332 gpio_request(GPIO_FN_SDHI0D2, NULL);
1333 gpio_request(GPIO_FN_SDHI0D1, NULL);
1334 gpio_request(GPIO_FN_SDHI0D0, NULL);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001335#else
1336 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1337 gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
1338 gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
1339 gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
1340 gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
1341 gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
1342 gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
1343 gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
Magnus Damm1ce4da72009-12-07 14:05:45 +00001344
1345 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
1346#endif
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001347
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001348 /* MMC/SD-card slot CN12 */
1349#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1350 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1351 gpio_request(GPIO_FN_MMC_D7, NULL);
1352 gpio_request(GPIO_FN_MMC_D6, NULL);
1353 gpio_request(GPIO_FN_MMC_D5, NULL);
1354 gpio_request(GPIO_FN_MMC_D4, NULL);
1355 gpio_request(GPIO_FN_MMC_D3, NULL);
1356 gpio_request(GPIO_FN_MMC_D2, NULL);
1357 gpio_request(GPIO_FN_MMC_D1, NULL);
1358 gpio_request(GPIO_FN_MMC_D0, NULL);
1359 gpio_request(GPIO_FN_MMC_CLK, NULL);
1360 gpio_request(GPIO_FN_MMC_CMD, NULL);
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001361
1362 cn12_enabled = true;
1363#elif defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1364 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
1365 gpio_request(GPIO_FN_SDHI1WP, NULL);
1366 gpio_request(GPIO_FN_SDHI1CMD, NULL);
1367 gpio_request(GPIO_FN_SDHI1CLK, NULL);
1368 gpio_request(GPIO_FN_SDHI1D3, NULL);
1369 gpio_request(GPIO_FN_SDHI1D2, NULL);
1370 gpio_request(GPIO_FN_SDHI1D1, NULL);
1371 gpio_request(GPIO_FN_SDHI1D0, NULL);
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001372
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001373 cn12_enabled = true;
1374#endif
1375
1376 if (cn12_enabled)
1377 /* I/O buffer drive ability is high for CN12 */
1378 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000,
1379 IODRIVEA);
1380
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001381 /* enable Video */
1382 gpio_request(GPIO_PTU2, NULL);
1383 gpio_direction_output(GPIO_PTU2, 1);
1384
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001385 /* enable Camera */
1386 gpio_request(GPIO_PTA3, NULL);
1387 gpio_request(GPIO_PTA4, NULL);
1388 gpio_direction_output(GPIO_PTA3, 0);
1389 gpio_direction_output(GPIO_PTA4, 0);
1390
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001391 /* enable FSI */
1392 gpio_request(GPIO_FN_FSIMCKB, NULL);
1393 gpio_request(GPIO_FN_FSIIBSD, NULL);
1394 gpio_request(GPIO_FN_FSIOBSD, NULL);
1395 gpio_request(GPIO_FN_FSIIBBCK, NULL);
1396 gpio_request(GPIO_FN_FSIIBLRCK, NULL);
1397 gpio_request(GPIO_FN_FSIOBBCK, NULL);
1398 gpio_request(GPIO_FN_FSIOBLRCK, NULL);
1399 gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
1400
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001401 /* set SPU2 clock to 83.4 MHz */
1402 clk = clk_get(NULL, "spu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001403 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001404 clk_set_rate(clk, clk_round_rate(clk, 83333333));
1405 clk_put(clk);
1406 }
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001407
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001408 /* change parent of FSI B */
1409 clk = clk_get(NULL, "fsib_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001410 if (!IS_ERR(clk)) {
Kuninori Morimoto4bd5d252010-11-26 09:40:22 +00001411 /* 48kHz dummy clock was used to make sure 1/1 divide */
1412 clk_set_rate(&sh7724_fsimckb_clk, 48000);
1413 clk_set_parent(clk, &sh7724_fsimckb_clk);
1414 clk_set_rate(clk, 48000);
Kuninori Morimoto10305852010-05-13 01:08:33 +00001415 clk_put(clk);
1416 }
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001417
1418 gpio_request(GPIO_PTU0, NULL);
1419 gpio_direction_output(GPIO_PTU0, 0);
1420 mdelay(20);
1421
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +09001422 /* enable motion sensor */
1423 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1424 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1425
Magnus Damm6f26d192010-02-19 09:33:47 +00001426 /* set VPU clock to 166 MHz */
1427 clk = clk_get(NULL, "vpu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001428 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001429 clk_set_rate(clk, clk_round_rate(clk, 166000000));
1430 clk_put(clk);
1431 }
Magnus Damm6f26d192010-02-19 09:33:47 +00001432
Kuninori Morimoto26365712010-02-24 00:32:28 +00001433 /* enable IrDA */
1434 gpio_request(GPIO_FN_IRDA_OUT, NULL);
1435 gpio_request(GPIO_FN_IRDA_IN, NULL);
1436 gpio_request(GPIO_PTU5, NULL);
1437 gpio_direction_output(GPIO_PTU5, 0);
1438
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001439 /* enable I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001440 i2c_register_board_info(0, i2c0_devices,
1441 ARRAY_SIZE(i2c0_devices));
1442
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001443 i2c_register_board_info(1, i2c1_devices,
1444 ARRAY_SIZE(i2c1_devices));
1445
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001446#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001447 /* VOU */
1448 gpio_request(GPIO_FN_DV_D15, NULL);
1449 gpio_request(GPIO_FN_DV_D14, NULL);
1450 gpio_request(GPIO_FN_DV_D13, NULL);
1451 gpio_request(GPIO_FN_DV_D12, NULL);
1452 gpio_request(GPIO_FN_DV_D11, NULL);
1453 gpio_request(GPIO_FN_DV_D10, NULL);
1454 gpio_request(GPIO_FN_DV_D9, NULL);
1455 gpio_request(GPIO_FN_DV_D8, NULL);
1456 gpio_request(GPIO_FN_DV_CLKI, NULL);
1457 gpio_request(GPIO_FN_DV_CLK, NULL);
1458 gpio_request(GPIO_FN_DV_VSYNC, NULL);
1459 gpio_request(GPIO_FN_DV_HSYNC, NULL);
1460
1461 /* AK8813 power / reset sequence */
1462 gpio_request(GPIO_PTG4, NULL);
1463 gpio_request(GPIO_PTU3, NULL);
1464 /* Reset */
1465 gpio_direction_output(GPIO_PTG4, 0);
1466 /* Power down */
1467 gpio_direction_output(GPIO_PTU3, 1);
1468
1469 udelay(10);
1470
1471 /* Power up, reset */
1472 gpio_set_value(GPIO_PTU3, 0);
1473
1474 udelay(10);
1475
1476 /* Remove reset */
1477 gpio_set_value(GPIO_PTG4, 1);
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001478#endif
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001479
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001480 return platform_add_devices(ecovec_devices,
1481 ARRAY_SIZE(ecovec_devices));
1482}
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001483arch_initcall(arch_setup);
1484
1485static int __init devices_setup(void)
1486{
Magnus Damm376abbb2009-10-26 10:44:37 +00001487 sh_eth_init(&sh_eth_plat);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001488 return 0;
1489}
1490device_initcall(devices_setup);
1491
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001492static struct sh_machine_vector mv_ecovec __initmv = {
1493 .mv_name = "R0P7724 (EcoVec)",
1494};