blob: aaff7671101b301cedc1e30edf2055fc6aa008c8 [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 = {
168 .name = "sh-eth",
169 .id = 0,
170 .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 Morimoto1ca8fe32012-08-01 00:54:58 -0700257static void usbhs_phy_reset(struct platform_device *pdev)
258{
259 /* enable vbus if HOST */
260 if (!gpio_get_value(GPIO_PTB3))
261 gpio_set_value(GPIO_PTB5, 1);
262}
263
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000264static struct renesas_usbhs_platform_info usbhs_info = {
265 .platform_callback = {
266 .get_id = usbhs_get_id,
Kuninori Morimoto1ca8fe32012-08-01 00:54:58 -0700267 .phy_reset = usbhs_phy_reset,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000268 },
269 .driver_param = {
270 .buswait_bwait = 4,
271 .detection_delay = 5,
Kuninori Morimoto9f0fa792011-06-15 06:08:32 +0000272 .d0_tx_id = SHDMA_SLAVE_USB1D0_TX,
273 .d0_rx_id = SHDMA_SLAVE_USB1D0_RX,
274 .d1_tx_id = SHDMA_SLAVE_USB1D1_TX,
275 .d1_rx_id = SHDMA_SLAVE_USB1D1_RX,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000276 },
277};
278
279static struct resource usbhs_resources[] = {
280 [0] = {
281 .start = 0xa4d90000,
282 .end = 0xa4d90124 - 1,
283 .flags = IORESOURCE_MEM,
284 },
285 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900286 .start = evt2irq(0xa40),
287 .end = evt2irq(0xa40),
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000288 .flags = IORESOURCE_IRQ,
289 },
290};
291
292static struct platform_device usbhs_device = {
293 .name = "renesas_usbhs",
294 .id = 1,
295 .dev = {
296 .dma_mask = NULL, /* not use dma */
297 .coherent_dma_mask = 0xffffffff,
298 .platform_data = &usbhs_info,
299 },
300 .num_resources = ARRAY_SIZE(usbhs_resources),
301 .resource = usbhs_resources,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000302};
303
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000304/* LCDC */
Jesper Juhle04008e2011-07-09 23:16:22 +0200305static const struct fb_videomode ecovec_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000306 {
307 .name = "Panel",
308 .xres = 800,
309 .yres = 480,
310 .left_margin = 220,
311 .right_margin = 110,
312 .hsync_len = 70,
313 .upper_margin = 20,
314 .lower_margin = 5,
315 .vsync_len = 5,
316 .sync = 0, /* hsync and vsync are active low */
317 },
318};
319
Jesper Juhle04008e2011-07-09 23:16:22 +0200320static const struct fb_videomode ecovec_dvi_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000321 {
322 .name = "DVI",
323 .xres = 1280,
324 .yres = 720,
325 .left_margin = 220,
326 .right_margin = 110,
327 .hsync_len = 40,
328 .upper_margin = 20,
329 .lower_margin = 5,
330 .vsync_len = 5,
331 .sync = 0, /* hsync and vsync are active low */
332 },
333};
334
Laurent Pinchart018882a2011-09-11 22:59:04 +0200335static int ecovec24_set_brightness(int brightness)
Alexandre Courbot0839d682011-02-16 03:49:02 +0000336{
337 gpio_set_value(GPIO_PTR1, brightness);
338
339 return 0;
340}
341
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000342static struct sh_mobile_lcdc_info lcdc_info = {
343 .ch[0] = {
344 .interface_type = RGB18,
345 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100346 .fourcc = V4L2_PIX_FMT_RGB565,
Laurent Pinchartafaad832011-09-11 22:59:04 +0200347 .panel_cfg = { /* 7.0 inch */
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000348 .width = 152,
349 .height = 91,
350 },
Alexandre Courbot0839d682011-02-16 03:49:02 +0000351 .bl_info = {
352 .name = "sh_mobile_lcdc_bl",
353 .max_brightness = 1,
Laurent Pinchart43059b02011-09-11 22:59:04 +0200354 .set_brightness = ecovec24_set_brightness,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000355 },
356 }
357};
358
359static struct resource lcdc_resources[] = {
360 [0] = {
361 .name = "LCDC",
362 .start = 0xfe940000,
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000363 .end = 0xfe942fff,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000364 .flags = IORESOURCE_MEM,
365 },
366 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900367 .start = evt2irq(0xf40),
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000368 .flags = IORESOURCE_IRQ,
369 },
370};
371
372static struct platform_device lcdc_device = {
373 .name = "sh_mobile_lcdc_fb",
374 .num_resources = ARRAY_SIZE(lcdc_resources),
375 .resource = lcdc_resources,
376 .dev = {
377 .platform_data = &lcdc_info,
378 },
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000379};
380
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000381/* CEU0 */
382static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
383 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
384};
385
386static struct resource ceu0_resources[] = {
387 [0] = {
388 .name = "CEU0",
389 .start = 0xfe910000,
390 .end = 0xfe91009f,
391 .flags = IORESOURCE_MEM,
392 },
393 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900394 .start = evt2irq(0x880),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000395 .flags = IORESOURCE_IRQ,
396 },
397 [2] = {
398 /* place holder for contiguous memory */
399 },
400};
401
402static struct platform_device ceu0_device = {
403 .name = "sh_mobile_ceu",
404 .id = 0, /* "ceu0" clock */
405 .num_resources = ARRAY_SIZE(ceu0_resources),
406 .resource = ceu0_resources,
407 .dev = {
408 .platform_data = &sh_mobile_ceu0_info,
409 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000410};
411
412/* CEU1 */
413static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
414 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
415};
416
417static struct resource ceu1_resources[] = {
418 [0] = {
419 .name = "CEU1",
420 .start = 0xfe914000,
421 .end = 0xfe91409f,
422 .flags = IORESOURCE_MEM,
423 },
424 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900425 .start = evt2irq(0x9e0),
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000426 .flags = IORESOURCE_IRQ,
427 },
428 [2] = {
429 /* place holder for contiguous memory */
430 },
431};
432
433static struct platform_device ceu1_device = {
434 .name = "sh_mobile_ceu",
435 .id = 1, /* "ceu1" clock */
436 .num_resources = ARRAY_SIZE(ceu1_resources),
437 .resource = ceu1_resources,
438 .dev = {
439 .platform_data = &sh_mobile_ceu1_info,
440 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000441};
442
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000443/* I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000444static struct i2c_board_info i2c0_devices[] = {
445 {
446 I2C_BOARD_INFO("da7210", 0x1a),
447 },
448};
449
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000450static struct i2c_board_info i2c1_devices[] = {
451 {
452 I2C_BOARD_INFO("r2025sd", 0x32),
453 },
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900454 {
455 I2C_BOARD_INFO("lis3lv02d", 0x1c),
Paul Mundt9307d112012-05-18 15:49:38 +0900456 .irq = evt2irq(0x620),
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900457 }
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000458};
459
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000460/* KEYSC */
461static struct sh_keysc_info keysc_info = {
462 .mode = SH_KEYSC_MODE_1,
463 .scan_timing = 3,
464 .delay = 50,
465 .kycr2_delay = 100,
466 .keycodes = { KEY_1, 0, 0, 0, 0,
467 KEY_2, 0, 0, 0, 0,
468 KEY_3, 0, 0, 0, 0,
469 KEY_4, 0, 0, 0, 0,
470 KEY_5, 0, 0, 0, 0,
471 KEY_6, 0, 0, 0, 0, },
472};
473
474static struct resource keysc_resources[] = {
475 [0] = {
476 .name = "KEYSC",
477 .start = 0x044b0000,
478 .end = 0x044b000f,
479 .flags = IORESOURCE_MEM,
480 },
481 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900482 .start = evt2irq(0xbe0),
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000483 .flags = IORESOURCE_IRQ,
484 },
485};
486
487static struct platform_device keysc_device = {
488 .name = "sh_keysc",
489 .id = 0, /* keysc0 clock */
490 .num_resources = ARRAY_SIZE(keysc_resources),
491 .resource = keysc_resources,
492 .dev = {
493 .platform_data = &keysc_info,
494 },
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000495};
496
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000497/* TouchScreen */
Paul Mundt9307d112012-05-18 15:49:38 +0900498#define IRQ0 evt2irq(0x600)
499
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900500static int ts_get_pendown_state(void)
501{
502 int val = 0;
503 gpio_free(GPIO_FN_INTC_IRQ0);
504 gpio_request(GPIO_PTZ0, NULL);
505 gpio_direction_input(GPIO_PTZ0);
506
507 val = gpio_get_value(GPIO_PTZ0);
508
509 gpio_free(GPIO_PTZ0);
510 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
511
512 return val ? 0 : 1;
513}
514
515static int ts_init(void)
516{
517 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
518 return 0;
519}
520
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000521static struct tsc2007_platform_data tsc2007_info = {
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000522 .model = 2007,
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900523 .x_plate_ohms = 180,
524 .get_pendown_state = ts_get_pendown_state,
525 .init_platform_hw = ts_init,
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000526};
527
528static struct i2c_board_info ts_i2c_clients = {
529 I2C_BOARD_INFO("tsc2007", 0x48),
530 .type = "tsc2007",
531 .platform_data = &tsc2007_info,
532 .irq = IRQ0,
533};
534
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200535static struct regulator_consumer_supply cn12_power_consumers[] =
536{
537 REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
538 REGULATOR_SUPPLY("vqmmc", "sh_mmcif.0"),
539 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
540 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.1"),
541};
542
543static struct regulator_init_data cn12_power_init_data = {
544 .constraints = {
545 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
546 },
547 .num_consumer_supplies = ARRAY_SIZE(cn12_power_consumers),
548 .consumer_supplies = cn12_power_consumers,
549};
550
551static struct fixed_voltage_config cn12_power_info = {
552 .supply_name = "CN12 SD/MMC Vdd",
553 .microvolts = 3300000,
554 .gpio = GPIO_PTB7,
555 .enable_high = 1,
556 .init_data = &cn12_power_init_data,
557};
558
559static struct platform_device cn12_power = {
560 .name = "reg-fixed-voltage",
561 .id = 0,
562 .dev = {
563 .platform_data = &cn12_power_info,
564 },
565};
566
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200567#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000568/* SDHI0 */
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200569static struct regulator_consumer_supply sdhi0_power_consumers[] =
570{
571 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
572 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
573};
574
575static struct regulator_init_data sdhi0_power_init_data = {
576 .constraints = {
577 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
578 },
579 .num_consumer_supplies = ARRAY_SIZE(sdhi0_power_consumers),
580 .consumer_supplies = sdhi0_power_consumers,
581};
582
583static struct fixed_voltage_config sdhi0_power_info = {
584 .supply_name = "CN11 SD/MMC Vdd",
585 .microvolts = 3300000,
586 .gpio = GPIO_PTB6,
587 .enable_high = 1,
588 .init_data = &sdhi0_power_init_data,
589};
590
591static struct platform_device sdhi0_power = {
592 .name = "reg-fixed-voltage",
593 .id = 1,
594 .dev = {
595 .platform_data = &sdhi0_power_info,
596 },
597};
598
Magnus Damm98779ad2009-11-27 04:36:58 +0000599static void sdhi0_set_pwr(struct platform_device *pdev, int state)
600{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200601 static int power_gpio = -EINVAL;
602
603 if (power_gpio < 0) {
604 int ret = gpio_request(GPIO_PTB6, NULL);
605 if (!ret) {
606 power_gpio = GPIO_PTB6;
607 gpio_direction_output(power_gpio, 0);
608 }
609 }
610
611 /*
612 * Toggle the GPIO regardless, whether we managed to grab it above or
613 * the fixed regulator driver did.
614 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000615 gpio_set_value(GPIO_PTB6, state);
616}
617
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100618static int sdhi0_get_cd(struct platform_device *pdev)
619{
620 return !gpio_get_value(GPIO_PTY7);
621}
622
Magnus Damm98779ad2009-11-27 04:36:58 +0000623static struct sh_mobile_sdhi_info sdhi0_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000624 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
625 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
626 .set_pwr = sdhi0_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100627 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
628 MMC_CAP_NEEDS_POLL,
629 .get_cd = sdhi0_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000630};
631
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000632static struct resource sdhi0_resources[] = {
633 [0] = {
634 .name = "SDHI0",
635 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100636 .end = 0x04ce00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000637 .flags = IORESOURCE_MEM,
638 },
639 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900640 .start = evt2irq(0xe80),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000641 .flags = IORESOURCE_IRQ,
642 },
643};
644
645static struct platform_device sdhi0_device = {
646 .name = "sh_mobile_sdhi",
647 .num_resources = ARRAY_SIZE(sdhi0_resources),
648 .resource = sdhi0_resources,
649 .id = 0,
Magnus Damm98779ad2009-11-27 04:36:58 +0000650 .dev = {
651 .platform_data = &sdhi0_info,
652 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000653};
654
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200655static void cn12_set_pwr(struct platform_device *pdev, int state)
Magnus Damm98779ad2009-11-27 04:36:58 +0000656{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200657 static int power_gpio = -EINVAL;
658
659 if (power_gpio < 0) {
660 int ret = gpio_request(GPIO_PTB7, NULL);
661 if (!ret) {
662 power_gpio = GPIO_PTB7;
663 gpio_direction_output(power_gpio, 0);
664 }
665 }
666
667 /*
668 * Toggle the GPIO regardless, whether we managed to grab it above or
669 * the fixed regulator driver did.
670 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000671 gpio_set_value(GPIO_PTB7, state);
672}
673
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200674#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
675/* SDHI1 */
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100676static int sdhi1_get_cd(struct platform_device *pdev)
677{
678 return !gpio_get_value(GPIO_PTW7);
679}
680
Magnus Damm98779ad2009-11-27 04:36:58 +0000681static struct sh_mobile_sdhi_info sdhi1_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000682 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
683 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100684 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
685 MMC_CAP_NEEDS_POLL,
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200686 .set_pwr = cn12_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100687 .get_cd = sdhi1_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000688};
689
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000690static struct resource sdhi1_resources[] = {
691 [0] = {
692 .name = "SDHI1",
693 .start = 0x04cf0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100694 .end = 0x04cf00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000695 .flags = IORESOURCE_MEM,
696 },
697 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900698 .start = evt2irq(0x4e0),
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000699 .flags = IORESOURCE_IRQ,
700 },
701};
702
703static struct platform_device sdhi1_device = {
704 .name = "sh_mobile_sdhi",
705 .num_resources = ARRAY_SIZE(sdhi1_resources),
706 .resource = sdhi1_resources,
707 .id = 1,
Magnus Damm98779ad2009-11-27 04:36:58 +0000708 .dev = {
709 .platform_data = &sdhi1_info,
710 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000711};
Yusuke Goda1238c682010-04-27 10:15:32 +0000712#endif /* CONFIG_MMC_SH_MMCIF */
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000713
Magnus Damm1ce4da72009-12-07 14:05:45 +0000714#else
715
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000716/* MMC SPI */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000717static int mmc_spi_get_ro(struct device *dev)
718{
719 return gpio_get_value(GPIO_PTY6);
720}
721
722static int mmc_spi_get_cd(struct device *dev)
723{
724 return !gpio_get_value(GPIO_PTY7);
725}
726
727static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
728{
729 gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
730}
731
732static struct mmc_spi_platform_data mmc_spi_info = {
733 .get_ro = mmc_spi_get_ro,
734 .get_cd = mmc_spi_get_cd,
735 .caps = MMC_CAP_NEEDS_POLL,
736 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
737 .setpower = mmc_spi_setpower,
738};
739
740static struct spi_board_info spi_bus[] = {
741 {
742 .modalias = "mmc_spi",
743 .platform_data = &mmc_spi_info,
744 .max_speed_hz = 5000000,
745 .mode = SPI_MODE_0,
746 .controller_data = (void *) GPIO_PTM4,
747 },
748};
749
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000750/* MSIOF0 */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000751static struct sh_msiof_spi_info msiof0_data = {
752 .num_chipselect = 1,
753};
754
755static struct resource msiof0_resources[] = {
756 [0] = {
757 .name = "MSIOF0",
758 .start = 0xa4c40000,
759 .end = 0xa4c40063,
760 .flags = IORESOURCE_MEM,
761 },
762 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900763 .start = evt2irq(0xc80),
Magnus Damm1ce4da72009-12-07 14:05:45 +0000764 .flags = IORESOURCE_IRQ,
765 },
766};
767
768static struct platform_device msiof0_device = {
769 .name = "spi_sh_msiof",
770 .id = 0, /* MSIOF0 */
771 .dev = {
772 .platform_data = &msiof0_data,
773 },
774 .num_resources = ARRAY_SIZE(msiof0_resources),
775 .resource = msiof0_resources,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000776};
777
778#endif
779
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000780/* I2C Video/Camera */
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000781static struct i2c_board_info i2c_camera[] = {
782 {
783 I2C_BOARD_INFO("tw9910", 0x45),
784 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000785 {
786 /* 1st camera */
787 I2C_BOARD_INFO("mt9t112", 0x3c),
788 },
789 {
790 /* 2nd camera */
791 I2C_BOARD_INFO("mt9t112", 0x3c),
792 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000793};
794
795/* tw9910 */
796static int tw9910_power(struct device *dev, int mode)
797{
798 int val = mode ? 0 : 1;
799
800 gpio_set_value(GPIO_PTU2, val);
801 if (mode)
802 mdelay(100);
803
804 return 0;
805}
806
807static struct tw9910_video_info tw9910_info = {
808 .buswidth = SOCAM_DATAWIDTH_8,
809 .mpout = TW9910_MPO_FIELD,
810};
811
812static struct soc_camera_link tw9910_link = {
813 .i2c_adapter_id = 0,
814 .bus_id = 1,
815 .power = tw9910_power,
816 .board_info = &i2c_camera[0],
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000817 .priv = &tw9910_info,
818};
819
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000820/* mt9t112 */
821static int mt9t112_power1(struct device *dev, int mode)
822{
823 gpio_set_value(GPIO_PTA3, mode);
824 if (mode)
825 mdelay(100);
826
827 return 0;
828}
829
830static struct mt9t112_camera_info mt9t112_info1 = {
831 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
832 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
833};
834
835static struct soc_camera_link mt9t112_link1 = {
836 .i2c_adapter_id = 0,
837 .power = mt9t112_power1,
838 .bus_id = 0,
839 .board_info = &i2c_camera[1],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000840 .priv = &mt9t112_info1,
841};
842
843static int mt9t112_power2(struct device *dev, int mode)
844{
845 gpio_set_value(GPIO_PTA4, mode);
846 if (mode)
847 mdelay(100);
848
849 return 0;
850}
851
852static struct mt9t112_camera_info mt9t112_info2 = {
853 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
854 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
855};
856
857static struct soc_camera_link mt9t112_link2 = {
858 .i2c_adapter_id = 1,
859 .power = mt9t112_power2,
860 .bus_id = 1,
861 .board_info = &i2c_camera[2],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000862 .priv = &mt9t112_info2,
863};
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000864
865static struct platform_device camera_devices[] = {
866 {
867 .name = "soc-camera-pdrv",
868 .id = 0,
869 .dev = {
870 .platform_data = &tw9910_link,
871 },
872 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000873 {
874 .name = "soc-camera-pdrv",
875 .id = 1,
876 .dev = {
877 .platform_data = &mt9t112_link1,
878 },
879 },
880 {
881 .name = "soc-camera-pdrv",
882 .id = 2,
883 .dev = {
884 .platform_data = &mt9t112_link2,
885 },
886 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000887};
888
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000889/* FSI */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000890static struct resource fsi_resources[] = {
891 [0] = {
892 .name = "FSI",
893 .start = 0xFE3C0000,
894 .end = 0xFE3C021d,
895 .flags = IORESOURCE_MEM,
896 },
897 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900898 .start = evt2irq(0xf80),
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000899 .flags = IORESOURCE_IRQ,
900 },
901};
902
903static struct platform_device fsi_device = {
904 .name = "sh_fsi",
905 .id = 0,
906 .num_resources = ARRAY_SIZE(fsi_resources),
907 .resource = fsi_resources,
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000908};
909
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700910static struct asoc_simple_card_info fsi_da7210_info = {
911 .name = "DA7210",
912 .card = "FSIB-DA7210",
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700913 .codec = "da7210.0-001a",
914 .platform = "sh_fsi.0",
Kuninori Morimotoa4a29922013-01-10 16:49:11 -0800915 .daifmt = SND_SOC_DAIFMT_I2S,
916 .cpu_dai = {
917 .name = "fsib-dai",
918 .fmt = SND_SOC_DAIFMT_CBS_CFS | SND_SOC_DAIFMT_IB_NF,
919 },
920 .codec_dai = {
921 .name = "da7210-hifi",
922 .fmt = SND_SOC_DAIFMT_CBM_CFM,
923 },
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700924};
925
926static struct platform_device fsi_da7210_device = {
927 .name = "asoc-simple-card",
928 .dev = {
929 .platform_data = &fsi_da7210_info,
930 },
931};
932
933
Kuninori Morimoto26365712010-02-24 00:32:28 +0000934/* IrDA */
935static struct resource irda_resources[] = {
936 [0] = {
937 .name = "IrDA",
938 .start = 0xA45D0000,
939 .end = 0xA45D0049,
940 .flags = IORESOURCE_MEM,
941 },
942 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900943 .start = evt2irq(0x480),
Kuninori Morimoto26365712010-02-24 00:32:28 +0000944 .flags = IORESOURCE_IRQ,
945 },
946};
947
948static struct platform_device irda_device = {
949 .name = "sh_sir",
950 .num_resources = ARRAY_SIZE(irda_resources),
951 .resource = irda_resources,
952};
953
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000954#include <media/ak881x.h>
955#include <media/sh_vou.h>
956
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000957static struct ak881x_pdata ak881x_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000958 .flags = AK881X_IF_MODE_SLAVE,
959};
960
961static struct i2c_board_info ak8813 = {
962 I2C_BOARD_INFO("ak8813", 0x20),
963 .platform_data = &ak881x_pdata,
964};
965
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000966static struct sh_vou_pdata sh_vou_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000967 .bus_fmt = SH_VOU_BUS_8BIT,
968 .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
969 .board_info = &ak8813,
970 .i2c_adap = 0,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000971};
972
973static struct resource sh_vou_resources[] = {
974 [0] = {
975 .start = 0xfe960000,
976 .end = 0xfe962043,
977 .flags = IORESOURCE_MEM,
978 },
979 [1] = {
Paul Mundt9307d112012-05-18 15:49:38 +0900980 .start = evt2irq(0x8e0),
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000981 .flags = IORESOURCE_IRQ,
982 },
983};
984
985static struct platform_device vou_device = {
986 .name = "sh-vou",
987 .id = -1,
988 .num_resources = ARRAY_SIZE(sh_vou_resources),
989 .resource = sh_vou_resources,
990 .dev = {
991 .platform_data = &sh_vou_pdata,
992 },
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000993};
994
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200995#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000996/* SH_MMCIF */
Yusuke Goda1238c682010-04-27 10:15:32 +0000997static void mmcif_down_pwr(struct platform_device *pdev)
998{
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +0200999 cn12_set_pwr(pdev, 0);
Yusuke Goda1238c682010-04-27 10:15:32 +00001000}
1001
1002static struct resource sh_mmcif_resources[] = {
1003 [0] = {
1004 .name = "SH_MMCIF",
1005 .start = 0xA4CA0000,
1006 .end = 0xA4CA00FF,
1007 .flags = IORESOURCE_MEM,
1008 },
1009 [1] = {
1010 /* MMC2I */
Paul Mundt9307d112012-05-18 15:49:38 +09001011 .start = evt2irq(0x5a0),
Yusuke Goda1238c682010-04-27 10:15:32 +00001012 .flags = IORESOURCE_IRQ,
1013 },
1014 [2] = {
1015 /* MMC3I */
Paul Mundt9307d112012-05-18 15:49:38 +09001016 .start = evt2irq(0x5c0),
Yusuke Goda1238c682010-04-27 10:15:32 +00001017 .flags = IORESOURCE_IRQ,
1018 },
1019};
1020
Kuninori Morimoto3ce09332010-06-02 00:27:31 +00001021static struct sh_mmcif_plat_data sh_mmcif_plat = {
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001022 .set_pwr = cn12_set_pwr,
Yusuke Goda1238c682010-04-27 10:15:32 +00001023 .down_pwr = mmcif_down_pwr,
1024 .sup_pclk = 0, /* SH7724: Max Pclk/2 */
1025 .caps = MMC_CAP_4_BIT_DATA |
1026 MMC_CAP_8_BIT_DATA |
1027 MMC_CAP_NEEDS_POLL,
1028 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
1029};
1030
1031static struct platform_device sh_mmcif_device = {
1032 .name = "sh_mmcif",
1033 .id = 0,
1034 .dev = {
1035 .platform_data = &sh_mmcif_plat,
1036 },
1037 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
1038 .resource = sh_mmcif_resources,
1039};
1040#endif
1041
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001042static struct platform_device *ecovec_devices[] __initdata = {
1043 &heartbeat_device,
1044 &nor_flash_device,
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001045 &sh_eth_device,
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001046 &usb0_host_device,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001047 &usb1_common_device,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +00001048 &usbhs_device,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001049 &lcdc_device,
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001050 &ceu0_device,
1051 &ceu1_device,
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001052 &keysc_device,
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001053 &cn12_power,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001054#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Guennadi Liakhovetskid4c191d2012-06-28 12:29:46 +02001055 &sdhi0_power,
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001056 &sdhi0_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001057#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001058 &sdhi1_device,
Yusuke Goda1238c682010-04-27 10:15:32 +00001059#endif
Magnus Damm1ce4da72009-12-07 14:05:45 +00001060#else
1061 &msiof0_device,
1062#endif
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001063 &camera_devices[0],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001064 &camera_devices[1],
1065 &camera_devices[2],
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001066 &fsi_device,
Kuninori Morimoto064bfad2012-04-08 21:19:25 -07001067 &fsi_da7210_device,
Kuninori Morimoto26365712010-02-24 00:32:28 +00001068 &irda_device,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001069 &vou_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001070#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +00001071 &sh_mmcif_device,
1072#endif
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001073};
1074
Magnus Damm6b3b5572010-02-25 11:10:54 +00001075#ifdef CONFIG_I2C
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001076#define EEPROM_ADDR 0x50
1077static u8 mac_read(struct i2c_adapter *a, u8 command)
1078{
1079 struct i2c_msg msg[2];
1080 u8 buf;
1081 int ret;
1082
1083 msg[0].addr = EEPROM_ADDR;
1084 msg[0].flags = 0;
1085 msg[0].len = 1;
1086 msg[0].buf = &command;
1087
1088 msg[1].addr = EEPROM_ADDR;
1089 msg[1].flags = I2C_M_RD;
1090 msg[1].len = 1;
1091 msg[1].buf = &buf;
1092
1093 ret = i2c_transfer(a, msg, 2);
1094 if (ret < 0) {
1095 printk(KERN_ERR "error %d\n", ret);
1096 buf = 0xff;
1097 }
1098
1099 return buf;
1100}
1101
Magnus Damm376abbb2009-10-26 10:44:37 +00001102static void __init sh_eth_init(struct sh_eth_plat_data *pd)
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001103{
1104 struct i2c_adapter *a = i2c_get_adapter(1);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001105 int i;
1106
1107 if (!a) {
1108 pr_err("can not get I2C 1\n");
1109 return;
1110 }
1111
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001112 /* read MAC address from EEPROM */
Magnus Damm376abbb2009-10-26 10:44:37 +00001113 for (i = 0; i < sizeof(pd->mac_addr); i++) {
1114 pd->mac_addr[i] = mac_read(a, 0x10 + i);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001115 msleep(10);
1116 }
Kuninori Morimotob230eb32010-03-16 02:01:33 +00001117
1118 i2c_put_adapter(a);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001119}
Magnus Damm6b3b5572010-02-25 11:10:54 +00001120#else
1121static void __init sh_eth_init(struct sh_eth_plat_data *pd)
1122{
1123 pr_err("unable to read sh_eth MAC address\n");
1124}
1125#endif
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001126
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001127#define PORT_HIZA 0xA4050158
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001128#define IODRIVEA 0xA405018A
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001129
1130extern char ecovec24_sdram_enter_start;
1131extern char ecovec24_sdram_enter_end;
1132extern char ecovec24_sdram_leave_start;
1133extern char ecovec24_sdram_leave_end;
1134
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001135static int __init arch_setup(void)
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001136{
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001137 struct clk *clk;
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001138 bool cn12_enabled = false;
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001139
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001140 /* register board specific self-refresh code */
Magnus Damm2839bd62010-02-25 11:07:52 +00001141 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
1142 SUSP_SH_RSTANDBY,
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001143 &ecovec24_sdram_enter_start,
1144 &ecovec24_sdram_enter_end,
1145 &ecovec24_sdram_leave_start,
1146 &ecovec24_sdram_leave_end);
1147
Magnus Dammf78bab32009-10-07 09:00:06 +00001148 /* enable STATUS0, STATUS2 and PDSTATUS */
1149 gpio_request(GPIO_FN_STATUS0, NULL);
1150 gpio_request(GPIO_FN_STATUS2, NULL);
1151 gpio_request(GPIO_FN_PDSTATUS, NULL);
1152
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001153 /* enable SCIFA0 */
1154 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
1155 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001156
1157 /* enable debug LED */
1158 gpio_request(GPIO_PTG0, NULL);
1159 gpio_request(GPIO_PTG1, NULL);
1160 gpio_request(GPIO_PTG2, NULL);
1161 gpio_request(GPIO_PTG3, NULL);
Kuninori Morimotob7056bc2009-08-26 11:04:22 +00001162 gpio_direction_output(GPIO_PTG0, 0);
1163 gpio_direction_output(GPIO_PTG1, 0);
1164 gpio_direction_output(GPIO_PTG2, 0);
1165 gpio_direction_output(GPIO_PTG3, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001166 __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001167
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001168 /* enable SH-Eth */
1169 gpio_request(GPIO_PTA1, NULL);
1170 gpio_direction_output(GPIO_PTA1, 1);
1171 mdelay(20);
1172
1173 gpio_request(GPIO_FN_RMII_RXD0, NULL);
1174 gpio_request(GPIO_FN_RMII_RXD1, NULL);
1175 gpio_request(GPIO_FN_RMII_TXD0, NULL);
1176 gpio_request(GPIO_FN_RMII_TXD1, NULL);
1177 gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
1178 gpio_request(GPIO_FN_RMII_TX_EN, NULL);
1179 gpio_request(GPIO_FN_RMII_RX_ER, NULL);
1180 gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
1181 gpio_request(GPIO_FN_MDIO, NULL);
1182 gpio_request(GPIO_FN_MDC, NULL);
1183 gpio_request(GPIO_FN_LNKSTA, NULL);
1184
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001185 /* enable USB */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001186 __raw_writew(0x0000, 0xA4D80000);
1187 __raw_writew(0x0000, 0xA4D90000);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001188 gpio_request(GPIO_PTB3, NULL);
1189 gpio_request(GPIO_PTB4, NULL);
1190 gpio_request(GPIO_PTB5, NULL);
1191 gpio_direction_input(GPIO_PTB3);
1192 gpio_direction_output(GPIO_PTB4, 0);
1193 gpio_direction_output(GPIO_PTB5, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001194 __raw_writew(0x0600, 0xa40501d4);
1195 __raw_writew(0x0600, 0xa4050192);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001196
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001197 if (gpio_get_value(GPIO_PTB3)) {
1198 printk(KERN_INFO "USB1 function is selected\n");
1199 usb1_common_device.name = "r8a66597_udc";
1200 } else {
1201 printk(KERN_INFO "USB1 host is selected\n");
1202 usb1_common_device.name = "r8a66597_hcd";
1203 }
1204
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001205 /* enable LCDC */
1206 gpio_request(GPIO_FN_LCDD23, NULL);
1207 gpio_request(GPIO_FN_LCDD22, NULL);
1208 gpio_request(GPIO_FN_LCDD21, NULL);
1209 gpio_request(GPIO_FN_LCDD20, NULL);
1210 gpio_request(GPIO_FN_LCDD19, NULL);
1211 gpio_request(GPIO_FN_LCDD18, NULL);
1212 gpio_request(GPIO_FN_LCDD17, NULL);
1213 gpio_request(GPIO_FN_LCDD16, NULL);
1214 gpio_request(GPIO_FN_LCDD15, NULL);
1215 gpio_request(GPIO_FN_LCDD14, NULL);
1216 gpio_request(GPIO_FN_LCDD13, NULL);
1217 gpio_request(GPIO_FN_LCDD12, NULL);
1218 gpio_request(GPIO_FN_LCDD11, NULL);
1219 gpio_request(GPIO_FN_LCDD10, NULL);
1220 gpio_request(GPIO_FN_LCDD9, NULL);
1221 gpio_request(GPIO_FN_LCDD8, NULL);
1222 gpio_request(GPIO_FN_LCDD7, NULL);
1223 gpio_request(GPIO_FN_LCDD6, NULL);
1224 gpio_request(GPIO_FN_LCDD5, NULL);
1225 gpio_request(GPIO_FN_LCDD4, NULL);
1226 gpio_request(GPIO_FN_LCDD3, NULL);
1227 gpio_request(GPIO_FN_LCDD2, NULL);
1228 gpio_request(GPIO_FN_LCDD1, NULL);
1229 gpio_request(GPIO_FN_LCDD0, NULL);
1230 gpio_request(GPIO_FN_LCDDISP, NULL);
1231 gpio_request(GPIO_FN_LCDHSYN, NULL);
1232 gpio_request(GPIO_FN_LCDDCK, NULL);
1233 gpio_request(GPIO_FN_LCDVSYN, NULL);
1234 gpio_request(GPIO_FN_LCDDON, NULL);
1235 gpio_request(GPIO_FN_LCDLCLK, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001236 __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001237
1238 gpio_request(GPIO_PTE6, NULL);
1239 gpio_request(GPIO_PTU1, NULL);
1240 gpio_request(GPIO_PTR1, NULL);
1241 gpio_request(GPIO_PTA2, NULL);
1242 gpio_direction_input(GPIO_PTE6);
1243 gpio_direction_output(GPIO_PTU1, 0);
1244 gpio_direction_output(GPIO_PTR1, 0);
1245 gpio_direction_output(GPIO_PTA2, 0);
1246
Kuninori Morimoto82b33222009-12-02 09:35:42 +00001247 /* I/O buffer drive ability is high */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001248 __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001249
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001250 if (gpio_get_value(GPIO_PTE6)) {
1251 /* DVI */
1252 lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001253 lcdc_info.ch[0].clock_divider = 1;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001254 lcdc_info.ch[0].lcd_modes = ecovec_dvi_modes;
1255 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_dvi_modes);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001256
1257 gpio_set_value(GPIO_PTA2, 1);
1258 gpio_set_value(GPIO_PTU1, 1);
1259 } else {
1260 /* Panel */
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001261 lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001262 lcdc_info.ch[0].clock_divider = 2;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001263 lcdc_info.ch[0].lcd_modes = ecovec_lcd_modes;
1264 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_lcd_modes);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001265
1266 gpio_set_value(GPIO_PTR1, 1);
1267
1268 /* FIXME
1269 *
1270 * LCDDON control is needed for Panel,
1271 * but current sh_mobile_lcdc driver doesn't control it.
1272 * It is temporary correspondence
1273 */
1274 gpio_request(GPIO_PTF4, NULL);
1275 gpio_direction_output(GPIO_PTF4, 1);
Kuninori Morimoto8810e052009-09-28 08:21:41 +00001276
1277 /* enable TouchScreen */
1278 i2c_register_board_info(0, &ts_i2c_clients, 1);
Thomas Gleixnerfcb89182011-03-24 16:31:17 +01001279 irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001280 }
1281
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001282 /* enable CEU0 */
1283 gpio_request(GPIO_FN_VIO0_D15, NULL);
1284 gpio_request(GPIO_FN_VIO0_D14, NULL);
1285 gpio_request(GPIO_FN_VIO0_D13, NULL);
1286 gpio_request(GPIO_FN_VIO0_D12, NULL);
1287 gpio_request(GPIO_FN_VIO0_D11, NULL);
1288 gpio_request(GPIO_FN_VIO0_D10, NULL);
1289 gpio_request(GPIO_FN_VIO0_D9, NULL);
1290 gpio_request(GPIO_FN_VIO0_D8, NULL);
1291 gpio_request(GPIO_FN_VIO0_D7, NULL);
1292 gpio_request(GPIO_FN_VIO0_D6, NULL);
1293 gpio_request(GPIO_FN_VIO0_D5, NULL);
1294 gpio_request(GPIO_FN_VIO0_D4, NULL);
1295 gpio_request(GPIO_FN_VIO0_D3, NULL);
1296 gpio_request(GPIO_FN_VIO0_D2, NULL);
1297 gpio_request(GPIO_FN_VIO0_D1, NULL);
1298 gpio_request(GPIO_FN_VIO0_D0, NULL);
1299 gpio_request(GPIO_FN_VIO0_VD, NULL);
1300 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1301 gpio_request(GPIO_FN_VIO0_FLD, NULL);
1302 gpio_request(GPIO_FN_VIO0_HD, NULL);
1303 platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
1304
1305 /* enable CEU1 */
1306 gpio_request(GPIO_FN_VIO1_D7, NULL);
1307 gpio_request(GPIO_FN_VIO1_D6, NULL);
1308 gpio_request(GPIO_FN_VIO1_D5, NULL);
1309 gpio_request(GPIO_FN_VIO1_D4, NULL);
1310 gpio_request(GPIO_FN_VIO1_D3, NULL);
1311 gpio_request(GPIO_FN_VIO1_D2, NULL);
1312 gpio_request(GPIO_FN_VIO1_D1, NULL);
1313 gpio_request(GPIO_FN_VIO1_D0, NULL);
1314 gpio_request(GPIO_FN_VIO1_FLD, NULL);
1315 gpio_request(GPIO_FN_VIO1_HD, NULL);
1316 gpio_request(GPIO_FN_VIO1_VD, NULL);
1317 gpio_request(GPIO_FN_VIO1_CLK, NULL);
1318 platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
1319
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001320 /* enable KEYSC */
1321 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
1322 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
1323 gpio_request(GPIO_FN_KEYOUT3, NULL);
1324 gpio_request(GPIO_FN_KEYOUT2, NULL);
1325 gpio_request(GPIO_FN_KEYOUT1, NULL);
1326 gpio_request(GPIO_FN_KEYOUT0, NULL);
1327 gpio_request(GPIO_FN_KEYIN0, NULL);
1328
Kuninori Morimoto064a16d2009-09-16 11:34:34 +00001329 /* enable user debug switch */
1330 gpio_request(GPIO_PTR0, NULL);
1331 gpio_request(GPIO_PTR4, NULL);
1332 gpio_request(GPIO_PTR5, NULL);
1333 gpio_request(GPIO_PTR6, NULL);
1334 gpio_direction_input(GPIO_PTR0);
1335 gpio_direction_input(GPIO_PTR4);
1336 gpio_direction_input(GPIO_PTR5);
1337 gpio_direction_input(GPIO_PTR6);
1338
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001339 /* SD-card slot CN11 */
1340 /* Card-detect, used on CN11, either with SDHI0 or with SPI */
1341 gpio_request(GPIO_PTY7, NULL);
1342 gpio_direction_input(GPIO_PTY7);
1343
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001344#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001345 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001346 gpio_request(GPIO_FN_SDHI0WP, NULL);
1347 gpio_request(GPIO_FN_SDHI0CMD, NULL);
1348 gpio_request(GPIO_FN_SDHI0CLK, NULL);
1349 gpio_request(GPIO_FN_SDHI0D3, NULL);
1350 gpio_request(GPIO_FN_SDHI0D2, NULL);
1351 gpio_request(GPIO_FN_SDHI0D1, NULL);
1352 gpio_request(GPIO_FN_SDHI0D0, NULL);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001353#else
1354 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1355 gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
1356 gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
1357 gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
1358 gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
1359 gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
1360 gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
1361 gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
1362 gpio_request(GPIO_PTY6, NULL); /* write protect */
1363 gpio_direction_input(GPIO_PTY6);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001364
1365 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
1366#endif
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001367
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001368 /* MMC/SD-card slot CN12 */
1369#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1370 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1371 gpio_request(GPIO_FN_MMC_D7, NULL);
1372 gpio_request(GPIO_FN_MMC_D6, NULL);
1373 gpio_request(GPIO_FN_MMC_D5, NULL);
1374 gpio_request(GPIO_FN_MMC_D4, NULL);
1375 gpio_request(GPIO_FN_MMC_D3, NULL);
1376 gpio_request(GPIO_FN_MMC_D2, NULL);
1377 gpio_request(GPIO_FN_MMC_D1, NULL);
1378 gpio_request(GPIO_FN_MMC_D0, NULL);
1379 gpio_request(GPIO_FN_MMC_CLK, NULL);
1380 gpio_request(GPIO_FN_MMC_CMD, NULL);
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001381
1382 cn12_enabled = true;
1383#elif defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1384 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
1385 gpio_request(GPIO_FN_SDHI1WP, NULL);
1386 gpio_request(GPIO_FN_SDHI1CMD, NULL);
1387 gpio_request(GPIO_FN_SDHI1CLK, NULL);
1388 gpio_request(GPIO_FN_SDHI1D3, NULL);
1389 gpio_request(GPIO_FN_SDHI1D2, NULL);
1390 gpio_request(GPIO_FN_SDHI1D1, NULL);
1391 gpio_request(GPIO_FN_SDHI1D0, NULL);
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001392
1393 /* Card-detect, used on CN12 with SDHI1 */
1394 gpio_request(GPIO_PTW7, NULL);
1395 gpio_direction_input(GPIO_PTW7);
1396
1397 cn12_enabled = true;
1398#endif
1399
1400 if (cn12_enabled)
1401 /* I/O buffer drive ability is high for CN12 */
1402 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000,
1403 IODRIVEA);
1404
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001405 /* enable Video */
1406 gpio_request(GPIO_PTU2, NULL);
1407 gpio_direction_output(GPIO_PTU2, 1);
1408
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001409 /* enable Camera */
1410 gpio_request(GPIO_PTA3, NULL);
1411 gpio_request(GPIO_PTA4, NULL);
1412 gpio_direction_output(GPIO_PTA3, 0);
1413 gpio_direction_output(GPIO_PTA4, 0);
1414
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001415 /* enable FSI */
1416 gpio_request(GPIO_FN_FSIMCKB, NULL);
1417 gpio_request(GPIO_FN_FSIIBSD, NULL);
1418 gpio_request(GPIO_FN_FSIOBSD, NULL);
1419 gpio_request(GPIO_FN_FSIIBBCK, NULL);
1420 gpio_request(GPIO_FN_FSIIBLRCK, NULL);
1421 gpio_request(GPIO_FN_FSIOBBCK, NULL);
1422 gpio_request(GPIO_FN_FSIOBLRCK, NULL);
1423 gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
1424
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001425 /* set SPU2 clock to 83.4 MHz */
1426 clk = clk_get(NULL, "spu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001427 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001428 clk_set_rate(clk, clk_round_rate(clk, 83333333));
1429 clk_put(clk);
1430 }
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001431
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001432 /* change parent of FSI B */
1433 clk = clk_get(NULL, "fsib_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001434 if (!IS_ERR(clk)) {
Kuninori Morimoto4bd5d252010-11-26 09:40:22 +00001435 /* 48kHz dummy clock was used to make sure 1/1 divide */
1436 clk_set_rate(&sh7724_fsimckb_clk, 48000);
1437 clk_set_parent(clk, &sh7724_fsimckb_clk);
1438 clk_set_rate(clk, 48000);
Kuninori Morimoto10305852010-05-13 01:08:33 +00001439 clk_put(clk);
1440 }
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001441
1442 gpio_request(GPIO_PTU0, NULL);
1443 gpio_direction_output(GPIO_PTU0, 0);
1444 mdelay(20);
1445
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +09001446 /* enable motion sensor */
1447 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1448 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1449
Magnus Damm6f26d192010-02-19 09:33:47 +00001450 /* set VPU clock to 166 MHz */
1451 clk = clk_get(NULL, "vpu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001452 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001453 clk_set_rate(clk, clk_round_rate(clk, 166000000));
1454 clk_put(clk);
1455 }
Magnus Damm6f26d192010-02-19 09:33:47 +00001456
Kuninori Morimoto26365712010-02-24 00:32:28 +00001457 /* enable IrDA */
1458 gpio_request(GPIO_FN_IRDA_OUT, NULL);
1459 gpio_request(GPIO_FN_IRDA_IN, NULL);
1460 gpio_request(GPIO_PTU5, NULL);
1461 gpio_direction_output(GPIO_PTU5, 0);
1462
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001463 /* enable I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001464 i2c_register_board_info(0, i2c0_devices,
1465 ARRAY_SIZE(i2c0_devices));
1466
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001467 i2c_register_board_info(1, i2c1_devices,
1468 ARRAY_SIZE(i2c1_devices));
1469
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001470#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001471 /* VOU */
1472 gpio_request(GPIO_FN_DV_D15, NULL);
1473 gpio_request(GPIO_FN_DV_D14, NULL);
1474 gpio_request(GPIO_FN_DV_D13, NULL);
1475 gpio_request(GPIO_FN_DV_D12, NULL);
1476 gpio_request(GPIO_FN_DV_D11, NULL);
1477 gpio_request(GPIO_FN_DV_D10, NULL);
1478 gpio_request(GPIO_FN_DV_D9, NULL);
1479 gpio_request(GPIO_FN_DV_D8, NULL);
1480 gpio_request(GPIO_FN_DV_CLKI, NULL);
1481 gpio_request(GPIO_FN_DV_CLK, NULL);
1482 gpio_request(GPIO_FN_DV_VSYNC, NULL);
1483 gpio_request(GPIO_FN_DV_HSYNC, NULL);
1484
1485 /* AK8813 power / reset sequence */
1486 gpio_request(GPIO_PTG4, NULL);
1487 gpio_request(GPIO_PTU3, NULL);
1488 /* Reset */
1489 gpio_direction_output(GPIO_PTG4, 0);
1490 /* Power down */
1491 gpio_direction_output(GPIO_PTU3, 1);
1492
1493 udelay(10);
1494
1495 /* Power up, reset */
1496 gpio_set_value(GPIO_PTU3, 0);
1497
1498 udelay(10);
1499
1500 /* Remove reset */
1501 gpio_set_value(GPIO_PTG4, 1);
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001502#endif
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001503
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001504 return platform_add_devices(ecovec_devices,
1505 ARRAY_SIZE(ecovec_devices));
1506}
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001507arch_initcall(arch_setup);
1508
1509static int __init devices_setup(void)
1510{
Magnus Damm376abbb2009-10-26 10:44:37 +00001511 sh_eth_init(&sh_eth_plat);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001512 return 0;
1513}
1514device_initcall(devices_setup);
1515
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001516static struct sh_machine_vector mv_ecovec __initmv = {
1517 .mv_name = "R0P7724 (EcoVec)",
1518};