blob: bcbb86bd659ee460784bd7dba7522c221cf6cf45 [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>
Laurent Pinchartfe79f912013-07-04 21:13:28 +020033#include <linux/platform_data/gpio_backlight.h>
Yoshihiro Shimodacf8e56b2011-09-28 16:49:14 +090034#include <linux/sh_eth.h>
Paul Mundt9307d112012-05-18 15:49:38 +090035#include <linux/sh_intc.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010036#include <linux/videodev2.h>
Kuninori Morimotofa3ba512009-08-26 11:04:34 +000037#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +000038#include <sound/sh_fsi.h>
Kuninori Morimoto064bfad2012-04-08 21:19:25 -070039#include <sound/simple_card.h>
Kuninori Morimoto2153ad32009-08-26 11:04:36 +000040#include <media/sh_mobile_ceu.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010041#include <media/soc_camera.h>
Kuninori Morimoto207efd02009-12-15 05:37:16 +000042#include <media/tw9910.h>
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +000043#include <media/mt9t112.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000044#include <asm/heartbeat.h>
Kuninori Morimotoa9918012009-09-14 11:23:16 +000045#include <asm/clock.h>
Magnus Dammeb0cd9e2009-10-30 04:23:59 +000046#include <asm/suspend.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000047#include <cpu/sh7724.h>
48
49/*
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000050 * Address Interface BusWidth
51 *-----------------------------------------
52 * 0x0000_0000 uboot 16bit
53 * 0x0004_0000 Linux romImage 16bit
54 * 0x0014_0000 MTD for Linux 16bit
55 * 0x0400_0000 Internal I/O 16/32bit
56 * 0x0800_0000 DRAM 32bit
57 * 0x1800_0000 MFI 16bit
Kuninori Morimoto4138b742009-08-19 12:08:33 +000058 */
59
Kuninori Morimoto9c472c42009-10-02 07:52:20 +000060/* SWITCH
61 *------------------------------
62 * DS2[1] = FlashROM write protect ON : write protect
63 * OFF : No write protect
64 * DS2[2] = RMII / TS, SCIF ON : RMII
65 * OFF : TS, SCIF3
66 * DS2[3] = Camera / Video ON : Camera
67 * OFF : NTSC/PAL (IN)
68 * DS2[5] = NTSC_OUT Clock ON : On board OSC
69 * OFF : SH7724 DV_CLK
70 * DS2[6-7] = MMC / SD ON-OFF : SD
71 * OFF-ON : MMC
72 */
73
Kuninori Morimoto035688d2012-12-24 20:04:20 -080074/*
75 * FSI - DA7210
76 *
77 * it needs amixer settings for playing
78 *
79 * amixer set 'HeadPhone' 80
80 * amixer set 'Out Mixer Left DAC Left' on
81 * amixer set 'Out Mixer Right DAC Right' on
82 */
83
Kuninori Morimoto4138b742009-08-19 12:08:33 +000084/* Heartbeat */
85static unsigned char led_pos[] = { 0, 1, 2, 3 };
Paul Mundta09d2832010-01-15 12:24:34 +090086
Kuninori Morimoto4138b742009-08-19 12:08:33 +000087static struct heartbeat_data heartbeat_data = {
Kuninori Morimoto4138b742009-08-19 12:08:33 +000088 .nr_bits = 4,
89 .bit_pos = led_pos,
90};
91
Paul Mundta09d2832010-01-15 12:24:34 +090092static struct resource heartbeat_resource = {
93 .start = 0xA405012C, /* PTG */
94 .end = 0xA405012E - 1,
95 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000096};
97
98static struct platform_device heartbeat_device = {
99 .name = "heartbeat",
100 .id = -1,
101 .dev = {
102 .platform_data = &heartbeat_data,
103 },
Paul Mundta09d2832010-01-15 12:24:34 +0900104 .num_resources = 1,
105 .resource = &heartbeat_resource,
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000106};
107
108/* MTD */
109static struct mtd_partition nor_flash_partitions[] = {
110 {
Kuninori Morimotob7056bc2009-08-26 11:04:22 +0000111 .name = "boot loader",
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000112 .offset = 0,
Kuninori Morimotob7056bc2009-08-26 11:04:22 +0000113 .size = (5 * 1024 * 1024),
Kuninori Morimotod5ce0102009-09-30 00:50:30 +0000114 .mask_flags = MTD_WRITEABLE, /* force read-only */
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000115 }, {
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000116 .name = "free-area",
117 .offset = MTDPART_OFS_APPEND,
118 .size = MTDPART_SIZ_FULL,
119 },
120};
121
122static struct physmap_flash_data nor_flash_data = {
123 .width = 2,
124 .parts = nor_flash_partitions,
125 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
126};
127
128static struct resource nor_flash_resources[] = {
129 [0] = {
130 .name = "NOR Flash",
131 .start = 0x00000000,
132 .end = 0x03ffffff,
133 .flags = IORESOURCE_MEM,
134 }
135};
136
137static struct platform_device nor_flash_device = {
138 .name = "physmap-flash",
139 .resource = nor_flash_resources,
140 .num_resources = ARRAY_SIZE(nor_flash_resources),
141 .dev = {
142 .platform_data = &nor_flash_data,
143 },
144};
145
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000146/* SH Eth */
147#define SH_ETH_ADDR (0xA4600000)
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000148static struct resource sh_eth_resources[] = {
149 [0] = {
150 .start = SH_ETH_ADDR,
151 .end = SH_ETH_ADDR + 0x1FC,
152 .flags = IORESOURCE_MEM,
153 },
154 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900155 .start = evt2irq(0xd60),
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000156 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
157 },
158};
159
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000160static struct sh_eth_plat_data sh_eth_plat = {
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000161 .phy = 0x1f, /* SMSC LAN8700 */
162 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +0000163 .register_type = SH_ETH_REG_FAST_SH4,
164 .phy_interface = PHY_INTERFACE_MODE_MII,
Kuninori Morimotoacf3cc22009-09-24 06:28:27 +0000165 .ether_link_active_low = 1
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000166};
167
168static struct platform_device sh_eth_device = {
Sergei Shtylyov9c3beaa2013-06-07 14:03:37 +0000169 .name = "sh7724-ether",
170 .id = 0,
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000171 .dev = {
172 .platform_data = &sh_eth_plat,
173 },
174 .num_resources = ARRAY_SIZE(sh_eth_resources),
175 .resource = sh_eth_resources,
176};
177
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000178/* USB0 host */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000179static void usb0_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000180{
181 gpio_set_value(GPIO_PTB4, power);
182}
183
184static struct r8a66597_platdata usb0_host_data = {
185 .on_chip = 1,
186 .port_power = usb0_port_power,
187};
188
189static struct resource usb0_host_resources[] = {
190 [0] = {
191 .start = 0xa4d80000,
192 .end = 0xa4d80124 - 1,
193 .flags = IORESOURCE_MEM,
194 },
195 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900196 .start = evt2irq(0xa20),
197 .end = evt2irq(0xa20),
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000198 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
199 },
200};
201
202static struct platform_device usb0_host_device = {
203 .name = "r8a66597_hcd",
204 .id = 0,
205 .dev = {
206 .dma_mask = NULL, /* not use dma */
207 .coherent_dma_mask = 0xffffffff,
208 .platform_data = &usb0_host_data,
209 },
210 .num_resources = ARRAY_SIZE(usb0_host_resources),
211 .resource = usb0_host_resources,
212};
213
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000214/* USB1 host/function */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000215static void usb1_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000216{
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000217 gpio_set_value(GPIO_PTB5, power);
218}
219
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000220static struct r8a66597_platdata usb1_common_data = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000221 .on_chip = 1,
222 .port_power = usb1_port_power,
223};
224
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000225static struct resource usb1_common_resources[] = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000226 [0] = {
227 .start = 0xa4d90000,
228 .end = 0xa4d90124 - 1,
229 .flags = IORESOURCE_MEM,
230 },
231 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900232 .start = evt2irq(0xa40),
233 .end = evt2irq(0xa40),
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000234 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
235 },
236};
237
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000238static struct platform_device usb1_common_device = {
239 /* .name will be added in arch_setup */
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000240 .id = 1,
241 .dev = {
242 .dma_mask = NULL, /* not use dma */
243 .coherent_dma_mask = 0xffffffff,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000244 .platform_data = &usb1_common_data,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000245 },
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000246 .num_resources = ARRAY_SIZE(usb1_common_resources),
247 .resource = usb1_common_resources,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000248};
249
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000250/*
251 * USBHS
252 */
253static int usbhs_get_id(struct platform_device *pdev)
254{
255 return gpio_get_value(GPIO_PTB3);
256}
257
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700258static int usbhs_phy_reset(struct platform_device *pdev)
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700259{
260 /* enable vbus if HOST */
261 if (!gpio_get_value(GPIO_PTB3))
262 gpio_set_value(GPIO_PTB5, 1);
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700263
264 return 0;
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700265}
266
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000267static struct renesas_usbhs_platform_info usbhs_info = {
268 .platform_callback = {
269 .get_id = usbhs_get_id,
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700270 .phy_reset = usbhs_phy_reset,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000271 },
272 .driver_param = {
273 .buswait_bwait = 4,
274 .detection_delay = 5,
Kuninori Morimoto9f0fa792011-06-15 06:08:32 +0000275 .d0_tx_id = SHDMA_SLAVE_USB1D0_TX,
276 .d0_rx_id = SHDMA_SLAVE_USB1D0_RX,
277 .d1_tx_id = SHDMA_SLAVE_USB1D1_TX,
278 .d1_rx_id = SHDMA_SLAVE_USB1D1_RX,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000279 },
280};
281
282static struct resource usbhs_resources[] = {
283 [0] = {
284 .start = 0xa4d90000,
285 .end = 0xa4d90124 - 1,
286 .flags = IORESOURCE_MEM,
287 },
288 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900289 .start = evt2irq(0xa40),
290 .end = evt2irq(0xa40),
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000291 .flags = IORESOURCE_IRQ,
292 },
293};
294
295static struct platform_device usbhs_device = {
296 .name = "renesas_usbhs",
297 .id = 1,
298 .dev = {
299 .dma_mask = NULL, /* not use dma */
300 .coherent_dma_mask = 0xffffffff,
301 .platform_data = &usbhs_info,
302 },
303 .num_resources = ARRAY_SIZE(usbhs_resources),
304 .resource = usbhs_resources,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000305};
306
Laurent Pinchartfe79f912013-07-04 21:13:28 +0200307/* LCDC and backlight */
Jesper Juhle04008e2011-07-09 23:16:22 +0200308static const struct fb_videomode ecovec_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000309 {
310 .name = "Panel",
311 .xres = 800,
312 .yres = 480,
313 .left_margin = 220,
314 .right_margin = 110,
315 .hsync_len = 70,
316 .upper_margin = 20,
317 .lower_margin = 5,
318 .vsync_len = 5,
319 .sync = 0, /* hsync and vsync are active low */
320 },
321};
322
Jesper Juhle04008e2011-07-09 23:16:22 +0200323static const struct fb_videomode ecovec_dvi_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000324 {
325 .name = "DVI",
326 .xres = 1280,
327 .yres = 720,
328 .left_margin = 220,
329 .right_margin = 110,
330 .hsync_len = 40,
331 .upper_margin = 20,
332 .lower_margin = 5,
333 .vsync_len = 5,
334 .sync = 0, /* hsync and vsync are active low */
335 },
336};
337
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000338static struct sh_mobile_lcdc_info lcdc_info = {
339 .ch[0] = {
340 .interface_type = RGB18,
341 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100342 .fourcc = V4L2_PIX_FMT_RGB565,
Laurent Pinchartafaad832011-09-11 22:59:04 +0200343 .panel_cfg = { /* 7.0 inch */
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000344 .width = 152,
345 .height = 91,
346 },
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000347 }
348};
349
350static struct resource lcdc_resources[] = {
351 [0] = {
352 .name = "LCDC",
353 .start = 0xfe940000,
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000354 .end = 0xfe942fff,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000355 .flags = IORESOURCE_MEM,
356 },
357 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900358 .start = evt2irq(0xf40),
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000359 .flags = IORESOURCE_IRQ,
360 },
361};
362
363static struct platform_device lcdc_device = {
364 .name = "sh_mobile_lcdc_fb",
365 .num_resources = ARRAY_SIZE(lcdc_resources),
366 .resource = lcdc_resources,
367 .dev = {
368 .platform_data = &lcdc_info,
369 },
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000370};
371
Laurent Pinchartfe79f912013-07-04 21:13:28 +0200372static struct gpio_backlight_platform_data gpio_backlight_data = {
373 .fbdev = &lcdc_device.dev,
374 .gpio = GPIO_PTR1,
375 .def_value = 1,
376 .name = "backlight",
377};
378
379static struct platform_device gpio_backlight_device = {
380 .name = "gpio-backlight",
381 .dev = {
382 .platform_data = &gpio_backlight_data,
383 },
384};
385
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000386/* CEU0 */
387static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
388 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
389};
390
391static struct resource ceu0_resources[] = {
392 [0] = {
393 .name = "CEU0",
394 .start = 0xfe910000,
395 .end = 0xfe91009f,
396 .flags = IORESOURCE_MEM,
397 },
398 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900399 .start = evt2irq(0x880),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000400 .flags = IORESOURCE_IRQ,
401 },
402 [2] = {
403 /* place holder for contiguous memory */
404 },
405};
406
407static struct platform_device ceu0_device = {
408 .name = "sh_mobile_ceu",
409 .id = 0, /* "ceu0" clock */
410 .num_resources = ARRAY_SIZE(ceu0_resources),
411 .resource = ceu0_resources,
412 .dev = {
413 .platform_data = &sh_mobile_ceu0_info,
414 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000415};
416
417/* CEU1 */
418static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
419 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
420};
421
422static struct resource ceu1_resources[] = {
423 [0] = {
424 .name = "CEU1",
425 .start = 0xfe914000,
426 .end = 0xfe91409f,
427 .flags = IORESOURCE_MEM,
428 },
429 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900430 .start = evt2irq(0x9e0),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000431 .flags = IORESOURCE_IRQ,
432 },
433 [2] = {
434 /* place holder for contiguous memory */
435 },
436};
437
438static struct platform_device ceu1_device = {
439 .name = "sh_mobile_ceu",
440 .id = 1, /* "ceu1" clock */
441 .num_resources = ARRAY_SIZE(ceu1_resources),
442 .resource = ceu1_resources,
443 .dev = {
444 .platform_data = &sh_mobile_ceu1_info,
445 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000446};
447
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000448/* I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000449static struct i2c_board_info i2c0_devices[] = {
450 {
451 I2C_BOARD_INFO("da7210", 0x1a),
452 },
453};
454
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000455static struct i2c_board_info i2c1_devices[] = {
456 {
457 I2C_BOARD_INFO("r2025sd", 0x32),
458 },
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900459 {
460 I2C_BOARD_INFO("lis3lv02d", 0x1c),
Paul Mundt9307d112012-05-18 15:49:38 +0900461 .irq = evt2irq(0x620),
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900462 }
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000463};
464
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000465/* KEYSC */
466static struct sh_keysc_info keysc_info = {
467 .mode = SH_KEYSC_MODE_1,
468 .scan_timing = 3,
469 .delay = 50,
470 .kycr2_delay = 100,
471 .keycodes = { KEY_1, 0, 0, 0, 0,
472 KEY_2, 0, 0, 0, 0,
473 KEY_3, 0, 0, 0, 0,
474 KEY_4, 0, 0, 0, 0,
475 KEY_5, 0, 0, 0, 0,
476 KEY_6, 0, 0, 0, 0, },
477};
478
479static struct resource keysc_resources[] = {
480 [0] = {
481 .name = "KEYSC",
482 .start = 0x044b0000,
483 .end = 0x044b000f,
484 .flags = IORESOURCE_MEM,
485 },
486 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900487 .start = evt2irq(0xbe0),
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000488 .flags = IORESOURCE_IRQ,
489 },
490};
491
492static struct platform_device keysc_device = {
493 .name = "sh_keysc",
494 .id = 0, /* keysc0 clock */
495 .num_resources = ARRAY_SIZE(keysc_resources),
496 .resource = keysc_resources,
497 .dev = {
498 .platform_data = &keysc_info,
499 },
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000500};
501
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000502/* TouchScreen */
Paul Mundt9307d112012-05-18 15:49:38 +0900503#define IRQ0 evt2irq(0x600)
504
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900505static int ts_get_pendown_state(void)
506{
507 int val = 0;
508 gpio_free(GPIO_FN_INTC_IRQ0);
509 gpio_request(GPIO_PTZ0, NULL);
510 gpio_direction_input(GPIO_PTZ0);
511
512 val = gpio_get_value(GPIO_PTZ0);
513
514 gpio_free(GPIO_PTZ0);
515 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
516
517 return val ? 0 : 1;
518}
519
520static int ts_init(void)
521{
522 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
523 return 0;
524}
525
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000526static struct tsc2007_platform_data tsc2007_info = {
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000527 .model = 2007,
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900528 .x_plate_ohms = 180,
529 .get_pendown_state = ts_get_pendown_state,
530 .init_platform_hw = ts_init,
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000531};
532
533static struct i2c_board_info ts_i2c_clients = {
534 I2C_BOARD_INFO("tsc2007", 0x48),
535 .type = "tsc2007",
536 .platform_data = &tsc2007_info,
537 .irq = IRQ0,
538};
539
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200540static struct regulator_consumer_supply cn12_power_consumers[] =
541{
542 REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
543 REGULATOR_SUPPLY("vqmmc", "sh_mmcif.0"),
544 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
545 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.1"),
546};
547
548static struct regulator_init_data cn12_power_init_data = {
549 .constraints = {
550 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
551 },
552 .num_consumer_supplies = ARRAY_SIZE(cn12_power_consumers),
553 .consumer_supplies = cn12_power_consumers,
554};
555
556static struct fixed_voltage_config cn12_power_info = {
557 .supply_name = "CN12 SD/MMC Vdd",
558 .microvolts = 3300000,
559 .gpio = GPIO_PTB7,
560 .enable_high = 1,
561 .init_data = &cn12_power_init_data,
562};
563
564static struct platform_device cn12_power = {
565 .name = "reg-fixed-voltage",
566 .id = 0,
567 .dev = {
568 .platform_data = &cn12_power_info,
569 },
570};
571
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200572#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000573/* SDHI0 */
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200574static struct regulator_consumer_supply sdhi0_power_consumers[] =
575{
576 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
577 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
578};
579
580static struct regulator_init_data sdhi0_power_init_data = {
581 .constraints = {
582 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
583 },
584 .num_consumer_supplies = ARRAY_SIZE(sdhi0_power_consumers),
585 .consumer_supplies = sdhi0_power_consumers,
586};
587
588static struct fixed_voltage_config sdhi0_power_info = {
589 .supply_name = "CN11 SD/MMC Vdd",
590 .microvolts = 3300000,
591 .gpio = GPIO_PTB6,
592 .enable_high = 1,
593 .init_data = &sdhi0_power_init_data,
594};
595
596static struct platform_device sdhi0_power = {
597 .name = "reg-fixed-voltage",
598 .id = 1,
599 .dev = {
600 .platform_data = &sdhi0_power_info,
601 },
602};
603
Magnus Damm98779ad2009-11-27 04:36:58 +0000604static void sdhi0_set_pwr(struct platform_device *pdev, int state)
605{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200606 static int power_gpio = -EINVAL;
607
608 if (power_gpio < 0) {
609 int ret = gpio_request(GPIO_PTB6, NULL);
610 if (!ret) {
611 power_gpio = GPIO_PTB6;
612 gpio_direction_output(power_gpio, 0);
613 }
614 }
615
616 /*
617 * Toggle the GPIO regardless, whether we managed to grab it above or
618 * the fixed regulator driver did.
619 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000620 gpio_set_value(GPIO_PTB6, state);
621}
622
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100623static int sdhi0_get_cd(struct platform_device *pdev)
624{
625 return !gpio_get_value(GPIO_PTY7);
626}
627
Magnus Damm98779ad2009-11-27 04:36:58 +0000628static struct sh_mobile_sdhi_info sdhi0_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000629 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
630 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
631 .set_pwr = sdhi0_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100632 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
633 MMC_CAP_NEEDS_POLL,
634 .get_cd = sdhi0_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000635};
636
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000637static struct resource sdhi0_resources[] = {
638 [0] = {
639 .name = "SDHI0",
640 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100641 .end = 0x04ce00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000642 .flags = IORESOURCE_MEM,
643 },
644 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900645 .start = evt2irq(0xe80),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000646 .flags = IORESOURCE_IRQ,
647 },
648};
649
650static struct platform_device sdhi0_device = {
651 .name = "sh_mobile_sdhi",
652 .num_resources = ARRAY_SIZE(sdhi0_resources),
653 .resource = sdhi0_resources,
654 .id = 0,
Magnus Damm98779ad2009-11-27 04:36:58 +0000655 .dev = {
656 .platform_data = &sdhi0_info,
657 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000658};
659
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200660static void cn12_set_pwr(struct platform_device *pdev, int state)
Magnus Damm98779ad2009-11-27 04:36:58 +0000661{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200662 static int power_gpio = -EINVAL;
663
664 if (power_gpio < 0) {
665 int ret = gpio_request(GPIO_PTB7, NULL);
666 if (!ret) {
667 power_gpio = GPIO_PTB7;
668 gpio_direction_output(power_gpio, 0);
669 }
670 }
671
672 /*
673 * Toggle the GPIO regardless, whether we managed to grab it above or
674 * the fixed regulator driver did.
675 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000676 gpio_set_value(GPIO_PTB7, state);
677}
678
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200679#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
680/* SDHI1 */
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100681static int sdhi1_get_cd(struct platform_device *pdev)
682{
683 return !gpio_get_value(GPIO_PTW7);
684}
685
Magnus Damm98779ad2009-11-27 04:36:58 +0000686static struct sh_mobile_sdhi_info sdhi1_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000687 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
688 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100689 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
690 MMC_CAP_NEEDS_POLL,
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200691 .set_pwr = cn12_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100692 .get_cd = sdhi1_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000693};
694
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000695static struct resource sdhi1_resources[] = {
696 [0] = {
697 .name = "SDHI1",
698 .start = 0x04cf0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100699 .end = 0x04cf00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000700 .flags = IORESOURCE_MEM,
701 },
702 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900703 .start = evt2irq(0x4e0),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000704 .flags = IORESOURCE_IRQ,
705 },
706};
707
708static struct platform_device sdhi1_device = {
709 .name = "sh_mobile_sdhi",
710 .num_resources = ARRAY_SIZE(sdhi1_resources),
711 .resource = sdhi1_resources,
712 .id = 1,
Magnus Damm98779ad2009-11-27 04:36:58 +0000713 .dev = {
714 .platform_data = &sdhi1_info,
715 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000716};
Yusuke Goda1238c682010-04-27 10:15:32 +0000717#endif /* CONFIG_MMC_SH_MMCIF */
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000718
Magnus Damm1ce4da72009-12-07 14:05:45 +0000719#else
720
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000721/* MMC SPI */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000722static int mmc_spi_get_ro(struct device *dev)
723{
724 return gpio_get_value(GPIO_PTY6);
725}
726
727static int mmc_spi_get_cd(struct device *dev)
728{
729 return !gpio_get_value(GPIO_PTY7);
730}
731
732static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
733{
734 gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
735}
736
737static struct mmc_spi_platform_data mmc_spi_info = {
738 .get_ro = mmc_spi_get_ro,
739 .get_cd = mmc_spi_get_cd,
740 .caps = MMC_CAP_NEEDS_POLL,
741 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
742 .setpower = mmc_spi_setpower,
743};
744
745static struct spi_board_info spi_bus[] = {
746 {
747 .modalias = "mmc_spi",
748 .platform_data = &mmc_spi_info,
749 .max_speed_hz = 5000000,
750 .mode = SPI_MODE_0,
751 .controller_data = (void *) GPIO_PTM4,
752 },
753};
754
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000755/* MSIOF0 */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000756static struct sh_msiof_spi_info msiof0_data = {
757 .num_chipselect = 1,
758};
759
760static struct resource msiof0_resources[] = {
761 [0] = {
762 .name = "MSIOF0",
763 .start = 0xa4c40000,
764 .end = 0xa4c40063,
765 .flags = IORESOURCE_MEM,
766 },
767 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900768 .start = evt2irq(0xc80),
Magnus Damm1ce4da72009-12-07 14:05:45 +0000769 .flags = IORESOURCE_IRQ,
770 },
771};
772
773static struct platform_device msiof0_device = {
774 .name = "spi_sh_msiof",
775 .id = 0, /* MSIOF0 */
776 .dev = {
777 .platform_data = &msiof0_data,
778 },
779 .num_resources = ARRAY_SIZE(msiof0_resources),
780 .resource = msiof0_resources,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000781};
782
783#endif
784
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000785/* I2C Video/Camera */
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000786static struct i2c_board_info i2c_camera[] = {
787 {
788 I2C_BOARD_INFO("tw9910", 0x45),
789 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000790 {
791 /* 1st camera */
792 I2C_BOARD_INFO("mt9t112", 0x3c),
793 },
794 {
795 /* 2nd camera */
796 I2C_BOARD_INFO("mt9t112", 0x3c),
797 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000798};
799
800/* tw9910 */
801static int tw9910_power(struct device *dev, int mode)
802{
803 int val = mode ? 0 : 1;
804
805 gpio_set_value(GPIO_PTU2, val);
806 if (mode)
807 mdelay(100);
808
809 return 0;
810}
811
812static struct tw9910_video_info tw9910_info = {
813 .buswidth = SOCAM_DATAWIDTH_8,
814 .mpout = TW9910_MPO_FIELD,
815};
816
817static struct soc_camera_link tw9910_link = {
818 .i2c_adapter_id = 0,
819 .bus_id = 1,
820 .power = tw9910_power,
821 .board_info = &i2c_camera[0],
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000822 .priv = &tw9910_info,
823};
824
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000825/* mt9t112 */
826static int mt9t112_power1(struct device *dev, int mode)
827{
828 gpio_set_value(GPIO_PTA3, mode);
829 if (mode)
830 mdelay(100);
831
832 return 0;
833}
834
835static struct mt9t112_camera_info mt9t112_info1 = {
836 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
837 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
838};
839
840static struct soc_camera_link mt9t112_link1 = {
841 .i2c_adapter_id = 0,
842 .power = mt9t112_power1,
843 .bus_id = 0,
844 .board_info = &i2c_camera[1],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000845 .priv = &mt9t112_info1,
846};
847
848static int mt9t112_power2(struct device *dev, int mode)
849{
850 gpio_set_value(GPIO_PTA4, mode);
851 if (mode)
852 mdelay(100);
853
854 return 0;
855}
856
857static struct mt9t112_camera_info mt9t112_info2 = {
858 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
859 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
860};
861
862static struct soc_camera_link mt9t112_link2 = {
863 .i2c_adapter_id = 1,
864 .power = mt9t112_power2,
865 .bus_id = 1,
866 .board_info = &i2c_camera[2],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000867 .priv = &mt9t112_info2,
868};
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000869
870static struct platform_device camera_devices[] = {
871 {
872 .name = "soc-camera-pdrv",
873 .id = 0,
874 .dev = {
875 .platform_data = &tw9910_link,
876 },
877 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000878 {
879 .name = "soc-camera-pdrv",
880 .id = 1,
881 .dev = {
882 .platform_data = &mt9t112_link1,
883 },
884 },
885 {
886 .name = "soc-camera-pdrv",
887 .id = 2,
888 .dev = {
889 .platform_data = &mt9t112_link2,
890 },
891 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000892};
893
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000894/* FSI */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000895static struct resource fsi_resources[] = {
896 [0] = {
897 .name = "FSI",
898 .start = 0xFE3C0000,
899 .end = 0xFE3C021d,
900 .flags = IORESOURCE_MEM,
901 },
902 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900903 .start = evt2irq(0xf80),
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000904 .flags = IORESOURCE_IRQ,
905 },
906};
907
908static struct platform_device fsi_device = {
909 .name = "sh_fsi",
910 .id = 0,
911 .num_resources = ARRAY_SIZE(fsi_resources),
912 .resource = fsi_resources,
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000913};
914
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700915static struct asoc_simple_card_info fsi_da7210_info = {
916 .name = "DA7210",
917 .card = "FSIB-DA7210",
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700918 .codec = "da7210.0-001a",
919 .platform = "sh_fsi.0",
Kuninori Morimotoa4a29922013-01-10 16:49:11 -0800920 .daifmt = SND_SOC_DAIFMT_I2S,
921 .cpu_dai = {
922 .name = "fsib-dai",
923 .fmt = SND_SOC_DAIFMT_CBS_CFS | SND_SOC_DAIFMT_IB_NF,
924 },
925 .codec_dai = {
926 .name = "da7210-hifi",
927 .fmt = SND_SOC_DAIFMT_CBM_CFM,
928 },
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700929};
930
931static struct platform_device fsi_da7210_device = {
932 .name = "asoc-simple-card",
933 .dev = {
934 .platform_data = &fsi_da7210_info,
935 },
936};
937
938
Kuninori Morimoto26365712010-02-24 00:32:28 +0000939/* IrDA */
940static struct resource irda_resources[] = {
941 [0] = {
942 .name = "IrDA",
943 .start = 0xA45D0000,
944 .end = 0xA45D0049,
945 .flags = IORESOURCE_MEM,
946 },
947 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900948 .start = evt2irq(0x480),
Kuninori Morimoto26365712010-02-24 00:32:28 +0000949 .flags = IORESOURCE_IRQ,
950 },
951};
952
953static struct platform_device irda_device = {
954 .name = "sh_sir",
955 .num_resources = ARRAY_SIZE(irda_resources),
956 .resource = irda_resources,
957};
958
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000959#include <media/ak881x.h>
960#include <media/sh_vou.h>
961
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000962static struct ak881x_pdata ak881x_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000963 .flags = AK881X_IF_MODE_SLAVE,
964};
965
966static struct i2c_board_info ak8813 = {
967 I2C_BOARD_INFO("ak8813", 0x20),
968 .platform_data = &ak881x_pdata,
969};
970
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000971static struct sh_vou_pdata sh_vou_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000972 .bus_fmt = SH_VOU_BUS_8BIT,
973 .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
974 .board_info = &ak8813,
975 .i2c_adap = 0,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000976};
977
978static struct resource sh_vou_resources[] = {
979 [0] = {
980 .start = 0xfe960000,
981 .end = 0xfe962043,
982 .flags = IORESOURCE_MEM,
983 },
984 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900985 .start = evt2irq(0x8e0),
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000986 .flags = IORESOURCE_IRQ,
987 },
988};
989
990static struct platform_device vou_device = {
991 .name = "sh-vou",
992 .id = -1,
993 .num_resources = ARRAY_SIZE(sh_vou_resources),
994 .resource = sh_vou_resources,
995 .dev = {
996 .platform_data = &sh_vou_pdata,
997 },
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000998};
999
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001000#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +00001001/* SH_MMCIF */
Yusuke Goda1238c682010-04-27 10:15:32 +00001002static void mmcif_down_pwr(struct platform_device *pdev)
1003{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001004 cn12_set_pwr(pdev, 0);
Yusuke Goda1238c682010-04-27 10:15:32 +00001005}
1006
1007static struct resource sh_mmcif_resources[] = {
1008 [0] = {
1009 .name = "SH_MMCIF",
1010 .start = 0xA4CA0000,
1011 .end = 0xA4CA00FF,
1012 .flags = IORESOURCE_MEM,
1013 },
1014 [1] = {
1015 /* MMC2I */
Paul Mundt9307d112012-05-18 15:49:38 +09001016 .start = evt2irq(0x5a0),
Yusuke Goda1238c682010-04-27 10:15:32 +00001017 .flags = IORESOURCE_IRQ,
1018 },
1019 [2] = {
1020 /* MMC3I */
Paul Mundt9307d112012-05-18 15:49:38 +09001021 .start = evt2irq(0x5c0),
Yusuke Goda1238c682010-04-27 10:15:32 +00001022 .flags = IORESOURCE_IRQ,
1023 },
1024};
1025
Kuninori Morimoto3ce09332010-06-02 00:27:31 +00001026static struct sh_mmcif_plat_data sh_mmcif_plat = {
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001027 .set_pwr = cn12_set_pwr,
Yusuke Goda1238c682010-04-27 10:15:32 +00001028 .down_pwr = mmcif_down_pwr,
1029 .sup_pclk = 0, /* SH7724: Max Pclk/2 */
1030 .caps = MMC_CAP_4_BIT_DATA |
1031 MMC_CAP_8_BIT_DATA |
1032 MMC_CAP_NEEDS_POLL,
1033 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
1034};
1035
1036static struct platform_device sh_mmcif_device = {
1037 .name = "sh_mmcif",
1038 .id = 0,
1039 .dev = {
1040 .platform_data = &sh_mmcif_plat,
1041 },
1042 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
1043 .resource = sh_mmcif_resources,
1044};
1045#endif
1046
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001047static struct platform_device *ecovec_devices[] __initdata = {
1048 &heartbeat_device,
1049 &nor_flash_device,
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001050 &sh_eth_device,
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001051 &usb0_host_device,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001052 &usb1_common_device,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +00001053 &usbhs_device,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001054 &lcdc_device,
Laurent Pinchartfe79f912013-07-04 21:13:28 +02001055 &gpio_backlight_device,
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001056 &ceu0_device,
1057 &ceu1_device,
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001058 &keysc_device,
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001059 &cn12_power,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001060#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001061 &sdhi0_power,
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001062 &sdhi0_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001063#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001064 &sdhi1_device,
Yusuke Goda1238c682010-04-27 10:15:32 +00001065#endif
Magnus Damm1ce4da72009-12-07 14:05:45 +00001066#else
1067 &msiof0_device,
1068#endif
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001069 &camera_devices[0],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001070 &camera_devices[1],
1071 &camera_devices[2],
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001072 &fsi_device,
Kuninori Morimoto064bfad2012-04-08 21:19:25 -07001073 &fsi_da7210_device,
Kuninori Morimoto26365712010-02-24 00:32:28 +00001074 &irda_device,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001075 &vou_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001076#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +00001077 &sh_mmcif_device,
1078#endif
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001079};
1080
Magnus Damm6b3b5572010-02-25 11:10:54 +00001081#ifdef CONFIG_I2C
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001082#define EEPROM_ADDR 0x50
1083static u8 mac_read(struct i2c_adapter *a, u8 command)
1084{
1085 struct i2c_msg msg[2];
1086 u8 buf;
1087 int ret;
1088
1089 msg[0].addr = EEPROM_ADDR;
1090 msg[0].flags = 0;
1091 msg[0].len = 1;
1092 msg[0].buf = &command;
1093
1094 msg[1].addr = EEPROM_ADDR;
1095 msg[1].flags = I2C_M_RD;
1096 msg[1].len = 1;
1097 msg[1].buf = &buf;
1098
1099 ret = i2c_transfer(a, msg, 2);
1100 if (ret < 0) {
1101 printk(KERN_ERR "error %d\n", ret);
1102 buf = 0xff;
1103 }
1104
1105 return buf;
1106}
1107
Magnus Damm376abbb2009-10-26 10:44:37 +00001108static void __init sh_eth_init(struct sh_eth_plat_data *pd)
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001109{
1110 struct i2c_adapter *a = i2c_get_adapter(1);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001111 int i;
1112
1113 if (!a) {
1114 pr_err("can not get I2C 1\n");
1115 return;
1116 }
1117
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001118 /* read MAC address from EEPROM */
Magnus Damm376abbb2009-10-26 10:44:37 +00001119 for (i = 0; i < sizeof(pd->mac_addr); i++) {
1120 pd->mac_addr[i] = mac_read(a, 0x10 + i);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001121 msleep(10);
1122 }
Kuninori Morimotob230eb32010-03-16 02:01:33 +00001123
1124 i2c_put_adapter(a);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001125}
Magnus Damm6b3b5572010-02-25 11:10:54 +00001126#else
1127static void __init sh_eth_init(struct sh_eth_plat_data *pd)
1128{
1129 pr_err("unable to read sh_eth MAC address\n");
1130}
1131#endif
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001132
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001133#define PORT_HIZA 0xA4050158
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001134#define IODRIVEA 0xA405018A
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001135
1136extern char ecovec24_sdram_enter_start;
1137extern char ecovec24_sdram_enter_end;
1138extern char ecovec24_sdram_leave_start;
1139extern char ecovec24_sdram_leave_end;
1140
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001141static int __init arch_setup(void)
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001142{
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001143 struct clk *clk;
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001144 bool cn12_enabled = false;
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001145
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001146 /* register board specific self-refresh code */
Magnus Damm2839bd62010-02-25 11:07:52 +00001147 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
1148 SUSP_SH_RSTANDBY,
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001149 &ecovec24_sdram_enter_start,
1150 &ecovec24_sdram_enter_end,
1151 &ecovec24_sdram_leave_start,
1152 &ecovec24_sdram_leave_end);
1153
Magnus Dammf78bab32009-10-07 09:00:06 +00001154 /* enable STATUS0, STATUS2 and PDSTATUS */
1155 gpio_request(GPIO_FN_STATUS0, NULL);
1156 gpio_request(GPIO_FN_STATUS2, NULL);
1157 gpio_request(GPIO_FN_PDSTATUS, NULL);
1158
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001159 /* enable SCIFA0 */
1160 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
1161 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001162
1163 /* enable debug LED */
1164 gpio_request(GPIO_PTG0, NULL);
1165 gpio_request(GPIO_PTG1, NULL);
1166 gpio_request(GPIO_PTG2, NULL);
1167 gpio_request(GPIO_PTG3, NULL);
Kuninori Morimotob7056bc2009-08-26 11:04:22 +00001168 gpio_direction_output(GPIO_PTG0, 0);
1169 gpio_direction_output(GPIO_PTG1, 0);
1170 gpio_direction_output(GPIO_PTG2, 0);
1171 gpio_direction_output(GPIO_PTG3, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001172 __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001173
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001174 /* enable SH-Eth */
1175 gpio_request(GPIO_PTA1, NULL);
1176 gpio_direction_output(GPIO_PTA1, 1);
1177 mdelay(20);
1178
1179 gpio_request(GPIO_FN_RMII_RXD0, NULL);
1180 gpio_request(GPIO_FN_RMII_RXD1, NULL);
1181 gpio_request(GPIO_FN_RMII_TXD0, NULL);
1182 gpio_request(GPIO_FN_RMII_TXD1, NULL);
1183 gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
1184 gpio_request(GPIO_FN_RMII_TX_EN, NULL);
1185 gpio_request(GPIO_FN_RMII_RX_ER, NULL);
1186 gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
1187 gpio_request(GPIO_FN_MDIO, NULL);
1188 gpio_request(GPIO_FN_MDC, NULL);
1189 gpio_request(GPIO_FN_LNKSTA, NULL);
1190
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001191 /* enable USB */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001192 __raw_writew(0x0000, 0xA4D80000);
1193 __raw_writew(0x0000, 0xA4D90000);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001194 gpio_request(GPIO_PTB3, NULL);
1195 gpio_request(GPIO_PTB4, NULL);
1196 gpio_request(GPIO_PTB5, NULL);
1197 gpio_direction_input(GPIO_PTB3);
1198 gpio_direction_output(GPIO_PTB4, 0);
1199 gpio_direction_output(GPIO_PTB5, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001200 __raw_writew(0x0600, 0xa40501d4);
1201 __raw_writew(0x0600, 0xa4050192);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001202
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001203 if (gpio_get_value(GPIO_PTB3)) {
1204 printk(KERN_INFO "USB1 function is selected\n");
1205 usb1_common_device.name = "r8a66597_udc";
1206 } else {
1207 printk(KERN_INFO "USB1 host is selected\n");
1208 usb1_common_device.name = "r8a66597_hcd";
1209 }
1210
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001211 /* enable LCDC */
1212 gpio_request(GPIO_FN_LCDD23, NULL);
1213 gpio_request(GPIO_FN_LCDD22, NULL);
1214 gpio_request(GPIO_FN_LCDD21, NULL);
1215 gpio_request(GPIO_FN_LCDD20, NULL);
1216 gpio_request(GPIO_FN_LCDD19, NULL);
1217 gpio_request(GPIO_FN_LCDD18, NULL);
1218 gpio_request(GPIO_FN_LCDD17, NULL);
1219 gpio_request(GPIO_FN_LCDD16, NULL);
1220 gpio_request(GPIO_FN_LCDD15, NULL);
1221 gpio_request(GPIO_FN_LCDD14, NULL);
1222 gpio_request(GPIO_FN_LCDD13, NULL);
1223 gpio_request(GPIO_FN_LCDD12, NULL);
1224 gpio_request(GPIO_FN_LCDD11, NULL);
1225 gpio_request(GPIO_FN_LCDD10, NULL);
1226 gpio_request(GPIO_FN_LCDD9, NULL);
1227 gpio_request(GPIO_FN_LCDD8, NULL);
1228 gpio_request(GPIO_FN_LCDD7, NULL);
1229 gpio_request(GPIO_FN_LCDD6, NULL);
1230 gpio_request(GPIO_FN_LCDD5, NULL);
1231 gpio_request(GPIO_FN_LCDD4, NULL);
1232 gpio_request(GPIO_FN_LCDD3, NULL);
1233 gpio_request(GPIO_FN_LCDD2, NULL);
1234 gpio_request(GPIO_FN_LCDD1, NULL);
1235 gpio_request(GPIO_FN_LCDD0, NULL);
1236 gpio_request(GPIO_FN_LCDDISP, NULL);
1237 gpio_request(GPIO_FN_LCDHSYN, NULL);
1238 gpio_request(GPIO_FN_LCDDCK, NULL);
1239 gpio_request(GPIO_FN_LCDVSYN, NULL);
1240 gpio_request(GPIO_FN_LCDDON, NULL);
1241 gpio_request(GPIO_FN_LCDLCLK, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001242 __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001243
1244 gpio_request(GPIO_PTE6, NULL);
1245 gpio_request(GPIO_PTU1, NULL);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001246 gpio_request(GPIO_PTA2, NULL);
1247 gpio_direction_input(GPIO_PTE6);
1248 gpio_direction_output(GPIO_PTU1, 0);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001249 gpio_direction_output(GPIO_PTA2, 0);
1250
Kuninori Morimoto82b33222009-12-02 09:35:42 +00001251 /* I/O buffer drive ability is high */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001252 __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001253
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001254 if (gpio_get_value(GPIO_PTE6)) {
1255 /* DVI */
1256 lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001257 lcdc_info.ch[0].clock_divider = 1;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001258 lcdc_info.ch[0].lcd_modes = ecovec_dvi_modes;
1259 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_dvi_modes);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001260
Laurent Pinchartfe79f912013-07-04 21:13:28 +02001261 /* No backlight */
1262 gpio_backlight_data.fbdev = NULL;
1263
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001264 gpio_set_value(GPIO_PTA2, 1);
1265 gpio_set_value(GPIO_PTU1, 1);
1266 } else {
1267 /* Panel */
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001268 lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001269 lcdc_info.ch[0].clock_divider = 2;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001270 lcdc_info.ch[0].lcd_modes = ecovec_lcd_modes;
1271 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_lcd_modes);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001272
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001273 /* FIXME
1274 *
1275 * LCDDON control is needed for Panel,
1276 * but current sh_mobile_lcdc driver doesn't control it.
1277 * It is temporary correspondence
1278 */
1279 gpio_request(GPIO_PTF4, NULL);
1280 gpio_direction_output(GPIO_PTF4, 1);
Kuninori Morimoto8810e052009-09-28 08:21:41 +00001281
1282 /* enable TouchScreen */
1283 i2c_register_board_info(0, &ts_i2c_clients, 1);
Thomas Gleixnerfcb89182011-03-24 16:31:17 +01001284 irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001285 }
1286
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001287 /* enable CEU0 */
1288 gpio_request(GPIO_FN_VIO0_D15, NULL);
1289 gpio_request(GPIO_FN_VIO0_D14, NULL);
1290 gpio_request(GPIO_FN_VIO0_D13, NULL);
1291 gpio_request(GPIO_FN_VIO0_D12, NULL);
1292 gpio_request(GPIO_FN_VIO0_D11, NULL);
1293 gpio_request(GPIO_FN_VIO0_D10, NULL);
1294 gpio_request(GPIO_FN_VIO0_D9, NULL);
1295 gpio_request(GPIO_FN_VIO0_D8, NULL);
1296 gpio_request(GPIO_FN_VIO0_D7, NULL);
1297 gpio_request(GPIO_FN_VIO0_D6, NULL);
1298 gpio_request(GPIO_FN_VIO0_D5, NULL);
1299 gpio_request(GPIO_FN_VIO0_D4, NULL);
1300 gpio_request(GPIO_FN_VIO0_D3, NULL);
1301 gpio_request(GPIO_FN_VIO0_D2, NULL);
1302 gpio_request(GPIO_FN_VIO0_D1, NULL);
1303 gpio_request(GPIO_FN_VIO0_D0, NULL);
1304 gpio_request(GPIO_FN_VIO0_VD, NULL);
1305 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1306 gpio_request(GPIO_FN_VIO0_FLD, NULL);
1307 gpio_request(GPIO_FN_VIO0_HD, NULL);
1308 platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
1309
1310 /* enable CEU1 */
1311 gpio_request(GPIO_FN_VIO1_D7, NULL);
1312 gpio_request(GPIO_FN_VIO1_D6, NULL);
1313 gpio_request(GPIO_FN_VIO1_D5, NULL);
1314 gpio_request(GPIO_FN_VIO1_D4, NULL);
1315 gpio_request(GPIO_FN_VIO1_D3, NULL);
1316 gpio_request(GPIO_FN_VIO1_D2, NULL);
1317 gpio_request(GPIO_FN_VIO1_D1, NULL);
1318 gpio_request(GPIO_FN_VIO1_D0, NULL);
1319 gpio_request(GPIO_FN_VIO1_FLD, NULL);
1320 gpio_request(GPIO_FN_VIO1_HD, NULL);
1321 gpio_request(GPIO_FN_VIO1_VD, NULL);
1322 gpio_request(GPIO_FN_VIO1_CLK, NULL);
1323 platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
1324
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001325 /* enable KEYSC */
1326 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
1327 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
1328 gpio_request(GPIO_FN_KEYOUT3, NULL);
1329 gpio_request(GPIO_FN_KEYOUT2, NULL);
1330 gpio_request(GPIO_FN_KEYOUT1, NULL);
1331 gpio_request(GPIO_FN_KEYOUT0, NULL);
1332 gpio_request(GPIO_FN_KEYIN0, NULL);
1333
Kuninori Morimoto064a16d2009-09-16 11:34:34 +00001334 /* enable user debug switch */
1335 gpio_request(GPIO_PTR0, NULL);
1336 gpio_request(GPIO_PTR4, NULL);
1337 gpio_request(GPIO_PTR5, NULL);
1338 gpio_request(GPIO_PTR6, NULL);
1339 gpio_direction_input(GPIO_PTR0);
1340 gpio_direction_input(GPIO_PTR4);
1341 gpio_direction_input(GPIO_PTR5);
1342 gpio_direction_input(GPIO_PTR6);
1343
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001344 /* SD-card slot CN11 */
1345 /* Card-detect, used on CN11, either with SDHI0 or with SPI */
1346 gpio_request(GPIO_PTY7, NULL);
1347 gpio_direction_input(GPIO_PTY7);
1348
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001349#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001350 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001351 gpio_request(GPIO_FN_SDHI0WP, NULL);
1352 gpio_request(GPIO_FN_SDHI0CMD, NULL);
1353 gpio_request(GPIO_FN_SDHI0CLK, NULL);
1354 gpio_request(GPIO_FN_SDHI0D3, NULL);
1355 gpio_request(GPIO_FN_SDHI0D2, NULL);
1356 gpio_request(GPIO_FN_SDHI0D1, NULL);
1357 gpio_request(GPIO_FN_SDHI0D0, NULL);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001358#else
1359 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1360 gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
1361 gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
1362 gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
1363 gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
1364 gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
1365 gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
1366 gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
1367 gpio_request(GPIO_PTY6, NULL); /* write protect */
1368 gpio_direction_input(GPIO_PTY6);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001369
1370 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
1371#endif
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001372
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001373 /* MMC/SD-card slot CN12 */
1374#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1375 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1376 gpio_request(GPIO_FN_MMC_D7, NULL);
1377 gpio_request(GPIO_FN_MMC_D6, NULL);
1378 gpio_request(GPIO_FN_MMC_D5, NULL);
1379 gpio_request(GPIO_FN_MMC_D4, NULL);
1380 gpio_request(GPIO_FN_MMC_D3, NULL);
1381 gpio_request(GPIO_FN_MMC_D2, NULL);
1382 gpio_request(GPIO_FN_MMC_D1, NULL);
1383 gpio_request(GPIO_FN_MMC_D0, NULL);
1384 gpio_request(GPIO_FN_MMC_CLK, NULL);
1385 gpio_request(GPIO_FN_MMC_CMD, NULL);
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001386
1387 cn12_enabled = true;
1388#elif defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1389 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
1390 gpio_request(GPIO_FN_SDHI1WP, NULL);
1391 gpio_request(GPIO_FN_SDHI1CMD, NULL);
1392 gpio_request(GPIO_FN_SDHI1CLK, NULL);
1393 gpio_request(GPIO_FN_SDHI1D3, NULL);
1394 gpio_request(GPIO_FN_SDHI1D2, NULL);
1395 gpio_request(GPIO_FN_SDHI1D1, NULL);
1396 gpio_request(GPIO_FN_SDHI1D0, NULL);
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001397
1398 /* Card-detect, used on CN12 with SDHI1 */
1399 gpio_request(GPIO_PTW7, NULL);
1400 gpio_direction_input(GPIO_PTW7);
1401
1402 cn12_enabled = true;
1403#endif
1404
1405 if (cn12_enabled)
1406 /* I/O buffer drive ability is high for CN12 */
1407 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000,
1408 IODRIVEA);
1409
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001410 /* enable Video */
1411 gpio_request(GPIO_PTU2, NULL);
1412 gpio_direction_output(GPIO_PTU2, 1);
1413
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001414 /* enable Camera */
1415 gpio_request(GPIO_PTA3, NULL);
1416 gpio_request(GPIO_PTA4, NULL);
1417 gpio_direction_output(GPIO_PTA3, 0);
1418 gpio_direction_output(GPIO_PTA4, 0);
1419
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001420 /* enable FSI */
1421 gpio_request(GPIO_FN_FSIMCKB, NULL);
1422 gpio_request(GPIO_FN_FSIIBSD, NULL);
1423 gpio_request(GPIO_FN_FSIOBSD, NULL);
1424 gpio_request(GPIO_FN_FSIIBBCK, NULL);
1425 gpio_request(GPIO_FN_FSIIBLRCK, NULL);
1426 gpio_request(GPIO_FN_FSIOBBCK, NULL);
1427 gpio_request(GPIO_FN_FSIOBLRCK, NULL);
1428 gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
1429
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001430 /* set SPU2 clock to 83.4 MHz */
1431 clk = clk_get(NULL, "spu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001432 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001433 clk_set_rate(clk, clk_round_rate(clk, 83333333));
1434 clk_put(clk);
1435 }
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001436
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001437 /* change parent of FSI B */
1438 clk = clk_get(NULL, "fsib_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001439 if (!IS_ERR(clk)) {
Kuninori Morimoto4bd5d252010-11-26 09:40:22 +00001440 /* 48kHz dummy clock was used to make sure 1/1 divide */
1441 clk_set_rate(&sh7724_fsimckb_clk, 48000);
1442 clk_set_parent(clk, &sh7724_fsimckb_clk);
1443 clk_set_rate(clk, 48000);
Kuninori Morimoto10305852010-05-13 01:08:33 +00001444 clk_put(clk);
1445 }
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001446
1447 gpio_request(GPIO_PTU0, NULL);
1448 gpio_direction_output(GPIO_PTU0, 0);
1449 mdelay(20);
1450
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +09001451 /* enable motion sensor */
1452 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1453 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1454
Magnus Damm6f26d192010-02-19 09:33:47 +00001455 /* set VPU clock to 166 MHz */
1456 clk = clk_get(NULL, "vpu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001457 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001458 clk_set_rate(clk, clk_round_rate(clk, 166000000));
1459 clk_put(clk);
1460 }
Magnus Damm6f26d192010-02-19 09:33:47 +00001461
Kuninori Morimoto26365712010-02-24 00:32:28 +00001462 /* enable IrDA */
1463 gpio_request(GPIO_FN_IRDA_OUT, NULL);
1464 gpio_request(GPIO_FN_IRDA_IN, NULL);
1465 gpio_request(GPIO_PTU5, NULL);
1466 gpio_direction_output(GPIO_PTU5, 0);
1467
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001468 /* enable I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001469 i2c_register_board_info(0, i2c0_devices,
1470 ARRAY_SIZE(i2c0_devices));
1471
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001472 i2c_register_board_info(1, i2c1_devices,
1473 ARRAY_SIZE(i2c1_devices));
1474
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001475#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001476 /* VOU */
1477 gpio_request(GPIO_FN_DV_D15, NULL);
1478 gpio_request(GPIO_FN_DV_D14, NULL);
1479 gpio_request(GPIO_FN_DV_D13, NULL);
1480 gpio_request(GPIO_FN_DV_D12, NULL);
1481 gpio_request(GPIO_FN_DV_D11, NULL);
1482 gpio_request(GPIO_FN_DV_D10, NULL);
1483 gpio_request(GPIO_FN_DV_D9, NULL);
1484 gpio_request(GPIO_FN_DV_D8, NULL);
1485 gpio_request(GPIO_FN_DV_CLKI, NULL);
1486 gpio_request(GPIO_FN_DV_CLK, NULL);
1487 gpio_request(GPIO_FN_DV_VSYNC, NULL);
1488 gpio_request(GPIO_FN_DV_HSYNC, NULL);
1489
1490 /* AK8813 power / reset sequence */
1491 gpio_request(GPIO_PTG4, NULL);
1492 gpio_request(GPIO_PTU3, NULL);
1493 /* Reset */
1494 gpio_direction_output(GPIO_PTG4, 0);
1495 /* Power down */
1496 gpio_direction_output(GPIO_PTU3, 1);
1497
1498 udelay(10);
1499
1500 /* Power up, reset */
1501 gpio_set_value(GPIO_PTU3, 0);
1502
1503 udelay(10);
1504
1505 /* Remove reset */
1506 gpio_set_value(GPIO_PTG4, 1);
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001507#endif
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001508
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001509 return platform_add_devices(ecovec_devices,
1510 ARRAY_SIZE(ecovec_devices));
1511}
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001512arch_initcall(arch_setup);
1513
1514static int __init devices_setup(void)
1515{
Magnus Damm376abbb2009-10-26 10:44:37 +00001516 sh_eth_init(&sh_eth_plat);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001517 return 0;
1518}
1519device_initcall(devices_setup);
1520
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001521static struct sh_machine_vector mv_ecovec __initmv = {
1522 .mv_name = "R0P7724 (EcoVec)",
1523};