blob: 299a40a44c92d1b9ef3dd785d02b019659011c14 [file] [log] [blame]
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001/*
2 * Copyright (C) 2009 Renesas Solutions Corp.
3 *
4 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10
11#include <linux/init.h>
12#include <linux/device.h>
13#include <linux/platform_device.h>
Yusuke Goda1238c682010-04-27 10:15:32 +000014#include <linux/mmc/host.h>
15#include <linux/mmc/sh_mmcif.h>
Guennadi Liakhovetski960b9e72011-03-09 11:29:48 +010016#include <linux/mmc/sh_mobile_sdhi.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000017#include <linux/mtd/physmap.h>
18#include <linux/gpio.h>
19#include <linux/interrupt.h>
Kuninori Morimoto35a35402009-08-26 11:04:26 +000020#include <linux/io.h>
21#include <linux/delay.h>
Kuninori Morimoto907050a2009-08-26 11:04:31 +000022#include <linux/usb/r8a66597.h>
Kuninori Morimotofb2e7392011-06-15 06:08:18 +000023#include <linux/usb/renesas_usbhs.h>
Kuninori Morimoto4907d572009-09-10 01:39:58 +000024#include <linux/i2c.h>
Kuninori Morimoto8810e052009-09-28 08:21:41 +000025#include <linux/i2c/tsc2007.h>
Magnus Damm1ce4da72009-12-07 14:05:45 +000026#include <linux/spi/spi.h>
27#include <linux/spi/sh_msiof.h>
28#include <linux/spi/mmc_spi.h>
Kuninori Morimotoe9103e72009-09-14 11:23:00 +000029#include <linux/input.h>
Magnus Dammfc1d0032009-11-27 07:32:24 +000030#include <linux/input/sh_keysc.h>
Yoshihiro Shimodacf8e56b2011-09-28 16:49:14 +090031#include <linux/sh_eth.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010032#include <linux/videodev2.h>
Kuninori Morimotofa3ba512009-08-26 11:04:34 +000033#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +000034#include <sound/sh_fsi.h>
Kuninori Morimoto064bfad2012-04-08 21:19:25 -070035#include <sound/simple_card.h>
Kuninori Morimoto2153ad32009-08-26 11:04:36 +000036#include <media/sh_mobile_ceu.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010037#include <media/soc_camera.h>
Kuninori Morimoto207efd02009-12-15 05:37:16 +000038#include <media/tw9910.h>
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +000039#include <media/mt9t112.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000040#include <asm/heartbeat.h>
Kuninori Morimotoa9918012009-09-14 11:23:16 +000041#include <asm/clock.h>
Magnus Dammeb0cd9e2009-10-30 04:23:59 +000042#include <asm/suspend.h>
Kuninori Morimoto4138b742009-08-19 12:08:33 +000043#include <cpu/sh7724.h>
44
45/*
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000046 * Address Interface BusWidth
47 *-----------------------------------------
48 * 0x0000_0000 uboot 16bit
49 * 0x0004_0000 Linux romImage 16bit
50 * 0x0014_0000 MTD for Linux 16bit
51 * 0x0400_0000 Internal I/O 16/32bit
52 * 0x0800_0000 DRAM 32bit
53 * 0x1800_0000 MFI 16bit
Kuninori Morimoto4138b742009-08-19 12:08:33 +000054 */
55
Kuninori Morimoto9c472c42009-10-02 07:52:20 +000056/* SWITCH
57 *------------------------------
58 * DS2[1] = FlashROM write protect ON : write protect
59 * OFF : No write protect
60 * DS2[2] = RMII / TS, SCIF ON : RMII
61 * OFF : TS, SCIF3
62 * DS2[3] = Camera / Video ON : Camera
63 * OFF : NTSC/PAL (IN)
64 * DS2[5] = NTSC_OUT Clock ON : On board OSC
65 * OFF : SH7724 DV_CLK
66 * DS2[6-7] = MMC / SD ON-OFF : SD
67 * OFF-ON : MMC
68 */
69
Kuninori Morimoto4138b742009-08-19 12:08:33 +000070/* Heartbeat */
71static unsigned char led_pos[] = { 0, 1, 2, 3 };
Paul Mundta09d2832010-01-15 12:24:34 +090072
Kuninori Morimoto4138b742009-08-19 12:08:33 +000073static struct heartbeat_data heartbeat_data = {
Kuninori Morimoto4138b742009-08-19 12:08:33 +000074 .nr_bits = 4,
75 .bit_pos = led_pos,
76};
77
Paul Mundta09d2832010-01-15 12:24:34 +090078static struct resource heartbeat_resource = {
79 .start = 0xA405012C, /* PTG */
80 .end = 0xA405012E - 1,
81 .flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000082};
83
84static struct platform_device heartbeat_device = {
85 .name = "heartbeat",
86 .id = -1,
87 .dev = {
88 .platform_data = &heartbeat_data,
89 },
Paul Mundta09d2832010-01-15 12:24:34 +090090 .num_resources = 1,
91 .resource = &heartbeat_resource,
Kuninori Morimoto4138b742009-08-19 12:08:33 +000092};
93
94/* MTD */
95static struct mtd_partition nor_flash_partitions[] = {
96 {
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000097 .name = "boot loader",
Kuninori Morimoto4138b742009-08-19 12:08:33 +000098 .offset = 0,
Kuninori Morimotob7056bc2009-08-26 11:04:22 +000099 .size = (5 * 1024 * 1024),
Kuninori Morimotod5ce0102009-09-30 00:50:30 +0000100 .mask_flags = MTD_WRITEABLE, /* force read-only */
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000101 }, {
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000102 .name = "free-area",
103 .offset = MTDPART_OFS_APPEND,
104 .size = MTDPART_SIZ_FULL,
105 },
106};
107
108static struct physmap_flash_data nor_flash_data = {
109 .width = 2,
110 .parts = nor_flash_partitions,
111 .nr_parts = ARRAY_SIZE(nor_flash_partitions),
112};
113
114static struct resource nor_flash_resources[] = {
115 [0] = {
116 .name = "NOR Flash",
117 .start = 0x00000000,
118 .end = 0x03ffffff,
119 .flags = IORESOURCE_MEM,
120 }
121};
122
123static struct platform_device nor_flash_device = {
124 .name = "physmap-flash",
125 .resource = nor_flash_resources,
126 .num_resources = ARRAY_SIZE(nor_flash_resources),
127 .dev = {
128 .platform_data = &nor_flash_data,
129 },
130};
131
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000132/* SH Eth */
133#define SH_ETH_ADDR (0xA4600000)
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000134static struct resource sh_eth_resources[] = {
135 [0] = {
136 .start = SH_ETH_ADDR,
137 .end = SH_ETH_ADDR + 0x1FC,
138 .flags = IORESOURCE_MEM,
139 },
140 [1] = {
141 .start = 91,
142 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
143 },
144};
145
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000146static struct sh_eth_plat_data sh_eth_plat = {
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000147 .phy = 0x1f, /* SMSC LAN8700 */
148 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +0000149 .register_type = SH_ETH_REG_FAST_SH4,
150 .phy_interface = PHY_INTERFACE_MODE_MII,
Kuninori Morimotoacf3cc22009-09-24 06:28:27 +0000151 .ether_link_active_low = 1
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000152};
153
154static struct platform_device sh_eth_device = {
155 .name = "sh-eth",
156 .id = 0,
157 .dev = {
158 .platform_data = &sh_eth_plat,
159 },
160 .num_resources = ARRAY_SIZE(sh_eth_resources),
161 .resource = sh_eth_resources,
162};
163
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000164/* USB0 host */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000165static void usb0_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000166{
167 gpio_set_value(GPIO_PTB4, power);
168}
169
170static struct r8a66597_platdata usb0_host_data = {
171 .on_chip = 1,
172 .port_power = usb0_port_power,
173};
174
175static struct resource usb0_host_resources[] = {
176 [0] = {
177 .start = 0xa4d80000,
178 .end = 0xa4d80124 - 1,
179 .flags = IORESOURCE_MEM,
180 },
181 [1] = {
182 .start = 65,
183 .end = 65,
184 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
185 },
186};
187
188static struct platform_device usb0_host_device = {
189 .name = "r8a66597_hcd",
190 .id = 0,
191 .dev = {
192 .dma_mask = NULL, /* not use dma */
193 .coherent_dma_mask = 0xffffffff,
194 .platform_data = &usb0_host_data,
195 },
196 .num_resources = ARRAY_SIZE(usb0_host_resources),
197 .resource = usb0_host_resources,
198};
199
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000200/* USB1 host/function */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000201static void usb1_port_power(int port, int power)
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000202{
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000203 gpio_set_value(GPIO_PTB5, power);
204}
205
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000206static struct r8a66597_platdata usb1_common_data = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000207 .on_chip = 1,
208 .port_power = usb1_port_power,
209};
210
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000211static struct resource usb1_common_resources[] = {
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000212 [0] = {
213 .start = 0xa4d90000,
214 .end = 0xa4d90124 - 1,
215 .flags = IORESOURCE_MEM,
216 },
217 [1] = {
218 .start = 66,
219 .end = 66,
220 .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
221 },
222};
223
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000224static struct platform_device usb1_common_device = {
225 /* .name will be added in arch_setup */
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000226 .id = 1,
227 .dev = {
228 .dma_mask = NULL, /* not use dma */
229 .coherent_dma_mask = 0xffffffff,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000230 .platform_data = &usb1_common_data,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000231 },
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000232 .num_resources = ARRAY_SIZE(usb1_common_resources),
233 .resource = usb1_common_resources,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000234};
235
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000236/*
237 * USBHS
238 */
239static int usbhs_get_id(struct platform_device *pdev)
240{
241 return gpio_get_value(GPIO_PTB3);
242}
243
244static struct renesas_usbhs_platform_info usbhs_info = {
245 .platform_callback = {
246 .get_id = usbhs_get_id,
247 },
248 .driver_param = {
249 .buswait_bwait = 4,
250 .detection_delay = 5,
Kuninori Morimoto9f0fa792011-06-15 06:08:32 +0000251 .d0_tx_id = SHDMA_SLAVE_USB1D0_TX,
252 .d0_rx_id = SHDMA_SLAVE_USB1D0_RX,
253 .d1_tx_id = SHDMA_SLAVE_USB1D1_TX,
254 .d1_rx_id = SHDMA_SLAVE_USB1D1_RX,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000255 },
256};
257
258static struct resource usbhs_resources[] = {
259 [0] = {
260 .start = 0xa4d90000,
261 .end = 0xa4d90124 - 1,
262 .flags = IORESOURCE_MEM,
263 },
264 [1] = {
265 .start = 66,
266 .end = 66,
267 .flags = IORESOURCE_IRQ,
268 },
269};
270
271static struct platform_device usbhs_device = {
272 .name = "renesas_usbhs",
273 .id = 1,
274 .dev = {
275 .dma_mask = NULL, /* not use dma */
276 .coherent_dma_mask = 0xffffffff,
277 .platform_data = &usbhs_info,
278 },
279 .num_resources = ARRAY_SIZE(usbhs_resources),
280 .resource = usbhs_resources,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000281};
282
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000283/* LCDC */
Jesper Juhle04008e2011-07-09 23:16:22 +0200284static const struct fb_videomode ecovec_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000285 {
286 .name = "Panel",
287 .xres = 800,
288 .yres = 480,
289 .left_margin = 220,
290 .right_margin = 110,
291 .hsync_len = 70,
292 .upper_margin = 20,
293 .lower_margin = 5,
294 .vsync_len = 5,
295 .sync = 0, /* hsync and vsync are active low */
296 },
297};
298
Jesper Juhle04008e2011-07-09 23:16:22 +0200299static const struct fb_videomode ecovec_dvi_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000300 {
301 .name = "DVI",
302 .xres = 1280,
303 .yres = 720,
304 .left_margin = 220,
305 .right_margin = 110,
306 .hsync_len = 40,
307 .upper_margin = 20,
308 .lower_margin = 5,
309 .vsync_len = 5,
310 .sync = 0, /* hsync and vsync are active low */
311 },
312};
313
Laurent Pinchart018882a2011-09-11 22:59:04 +0200314static int ecovec24_set_brightness(int brightness)
Alexandre Courbot0839d682011-02-16 03:49:02 +0000315{
316 gpio_set_value(GPIO_PTR1, brightness);
317
318 return 0;
319}
320
Laurent Pinchart018882a2011-09-11 22:59:04 +0200321static int ecovec24_get_brightness(void)
Alexandre Courbot0839d682011-02-16 03:49:02 +0000322{
323 return gpio_get_value(GPIO_PTR1);
324}
325
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000326static struct sh_mobile_lcdc_info lcdc_info = {
327 .ch[0] = {
328 .interface_type = RGB18,
329 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100330 .fourcc = V4L2_PIX_FMT_RGB565,
Laurent Pinchartafaad832011-09-11 22:59:04 +0200331 .panel_cfg = { /* 7.0 inch */
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000332 .width = 152,
333 .height = 91,
334 },
Alexandre Courbot0839d682011-02-16 03:49:02 +0000335 .bl_info = {
336 .name = "sh_mobile_lcdc_bl",
337 .max_brightness = 1,
Laurent Pinchart43059b02011-09-11 22:59:04 +0200338 .set_brightness = ecovec24_set_brightness,
339 .get_brightness = ecovec24_get_brightness,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000340 },
341 }
342};
343
344static struct resource lcdc_resources[] = {
345 [0] = {
346 .name = "LCDC",
347 .start = 0xfe940000,
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000348 .end = 0xfe942fff,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000349 .flags = IORESOURCE_MEM,
350 },
351 [1] = {
352 .start = 106,
353 .flags = IORESOURCE_IRQ,
354 },
355};
356
357static struct platform_device lcdc_device = {
358 .name = "sh_mobile_lcdc_fb",
359 .num_resources = ARRAY_SIZE(lcdc_resources),
360 .resource = lcdc_resources,
361 .dev = {
362 .platform_data = &lcdc_info,
363 },
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000364};
365
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000366/* CEU0 */
367static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
368 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
369};
370
371static struct resource ceu0_resources[] = {
372 [0] = {
373 .name = "CEU0",
374 .start = 0xfe910000,
375 .end = 0xfe91009f,
376 .flags = IORESOURCE_MEM,
377 },
378 [1] = {
379 .start = 52,
380 .flags = IORESOURCE_IRQ,
381 },
382 [2] = {
383 /* place holder for contiguous memory */
384 },
385};
386
387static struct platform_device ceu0_device = {
388 .name = "sh_mobile_ceu",
389 .id = 0, /* "ceu0" clock */
390 .num_resources = ARRAY_SIZE(ceu0_resources),
391 .resource = ceu0_resources,
392 .dev = {
393 .platform_data = &sh_mobile_ceu0_info,
394 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000395};
396
397/* CEU1 */
398static struct sh_mobile_ceu_info sh_mobile_ceu1_info = {
399 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
400};
401
402static struct resource ceu1_resources[] = {
403 [0] = {
404 .name = "CEU1",
405 .start = 0xfe914000,
406 .end = 0xfe91409f,
407 .flags = IORESOURCE_MEM,
408 },
409 [1] = {
410 .start = 63,
411 .flags = IORESOURCE_IRQ,
412 },
413 [2] = {
414 /* place holder for contiguous memory */
415 },
416};
417
418static struct platform_device ceu1_device = {
419 .name = "sh_mobile_ceu",
420 .id = 1, /* "ceu1" clock */
421 .num_resources = ARRAY_SIZE(ceu1_resources),
422 .resource = ceu1_resources,
423 .dev = {
424 .platform_data = &sh_mobile_ceu1_info,
425 },
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000426};
427
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000428/* I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000429static struct i2c_board_info i2c0_devices[] = {
430 {
431 I2C_BOARD_INFO("da7210", 0x1a),
432 },
433};
434
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000435static struct i2c_board_info i2c1_devices[] = {
436 {
437 I2C_BOARD_INFO("r2025sd", 0x32),
438 },
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +0900439 {
440 I2C_BOARD_INFO("lis3lv02d", 0x1c),
441 .irq = 33,
442 }
Kuninori Morimoto125ecce2009-09-10 01:39:37 +0000443};
444
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000445/* KEYSC */
446static struct sh_keysc_info keysc_info = {
447 .mode = SH_KEYSC_MODE_1,
448 .scan_timing = 3,
449 .delay = 50,
450 .kycr2_delay = 100,
451 .keycodes = { KEY_1, 0, 0, 0, 0,
452 KEY_2, 0, 0, 0, 0,
453 KEY_3, 0, 0, 0, 0,
454 KEY_4, 0, 0, 0, 0,
455 KEY_5, 0, 0, 0, 0,
456 KEY_6, 0, 0, 0, 0, },
457};
458
459static struct resource keysc_resources[] = {
460 [0] = {
461 .name = "KEYSC",
462 .start = 0x044b0000,
463 .end = 0x044b000f,
464 .flags = IORESOURCE_MEM,
465 },
466 [1] = {
467 .start = 79,
468 .flags = IORESOURCE_IRQ,
469 },
470};
471
472static struct platform_device keysc_device = {
473 .name = "sh_keysc",
474 .id = 0, /* keysc0 clock */
475 .num_resources = ARRAY_SIZE(keysc_resources),
476 .resource = keysc_resources,
477 .dev = {
478 .platform_data = &keysc_info,
479 },
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000480};
481
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000482/* TouchScreen */
483#define IRQ0 32
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900484static int ts_get_pendown_state(void)
485{
486 int val = 0;
487 gpio_free(GPIO_FN_INTC_IRQ0);
488 gpio_request(GPIO_PTZ0, NULL);
489 gpio_direction_input(GPIO_PTZ0);
490
491 val = gpio_get_value(GPIO_PTZ0);
492
493 gpio_free(GPIO_PTZ0);
494 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
495
496 return val ? 0 : 1;
497}
498
499static int ts_init(void)
500{
501 gpio_request(GPIO_FN_INTC_IRQ0, NULL);
502 return 0;
503}
504
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000505static struct tsc2007_platform_data tsc2007_info = {
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000506 .model = 2007,
Paul Mundt5d75b3a2010-09-14 18:26:38 +0900507 .x_plate_ohms = 180,
508 .get_pendown_state = ts_get_pendown_state,
509 .init_platform_hw = ts_init,
Kuninori Morimoto8810e052009-09-28 08:21:41 +0000510};
511
512static struct i2c_board_info ts_i2c_clients = {
513 I2C_BOARD_INFO("tsc2007", 0x48),
514 .type = "tsc2007",
515 .platform_data = &tsc2007_info,
516 .irq = IRQ0,
517};
518
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200519#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000520/* SDHI0 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000521static void sdhi0_set_pwr(struct platform_device *pdev, int state)
522{
523 gpio_set_value(GPIO_PTB6, state);
524}
525
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100526static int sdhi0_get_cd(struct platform_device *pdev)
527{
528 return !gpio_get_value(GPIO_PTY7);
529}
530
Magnus Damm98779ad2009-11-27 04:36:58 +0000531static struct sh_mobile_sdhi_info sdhi0_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000532 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
533 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
534 .set_pwr = sdhi0_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100535 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
536 MMC_CAP_NEEDS_POLL,
537 .get_cd = sdhi0_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000538};
539
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000540static struct resource sdhi0_resources[] = {
541 [0] = {
542 .name = "SDHI0",
543 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100544 .end = 0x04ce00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000545 .flags = IORESOURCE_MEM,
546 },
547 [1] = {
Magnus Damm3844ead2010-02-09 06:50:04 +0000548 .start = 100,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000549 .flags = IORESOURCE_IRQ,
550 },
551};
552
553static struct platform_device sdhi0_device = {
554 .name = "sh_mobile_sdhi",
555 .num_resources = ARRAY_SIZE(sdhi0_resources),
556 .resource = sdhi0_resources,
557 .id = 0,
Magnus Damm98779ad2009-11-27 04:36:58 +0000558 .dev = {
559 .platform_data = &sdhi0_info,
560 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000561};
562
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200563#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000564/* SDHI1 */
Magnus Damm98779ad2009-11-27 04:36:58 +0000565static void sdhi1_set_pwr(struct platform_device *pdev, int state)
566{
567 gpio_set_value(GPIO_PTB7, state);
568}
569
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100570static int sdhi1_get_cd(struct platform_device *pdev)
571{
572 return !gpio_get_value(GPIO_PTW7);
573}
574
Magnus Damm98779ad2009-11-27 04:36:58 +0000575static struct sh_mobile_sdhi_info sdhi1_info = {
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000576 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
577 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100578 .tmio_caps = MMC_CAP_SDIO_IRQ | MMC_CAP_POWER_OFF_CARD |
579 MMC_CAP_NEEDS_POLL,
Guennadi Liakhovetski815f1992010-05-19 18:34:27 +0000580 .set_pwr = sdhi1_set_pwr,
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +0100581 .get_cd = sdhi1_get_cd,
Magnus Damm98779ad2009-11-27 04:36:58 +0000582};
583
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000584static struct resource sdhi1_resources[] = {
585 [0] = {
586 .name = "SDHI1",
587 .start = 0x04cf0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100588 .end = 0x04cf00ff,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000589 .flags = IORESOURCE_MEM,
590 },
591 [1] = {
Magnus Damm3844ead2010-02-09 06:50:04 +0000592 .start = 23,
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000593 .flags = IORESOURCE_IRQ,
594 },
595};
596
597static struct platform_device sdhi1_device = {
598 .name = "sh_mobile_sdhi",
599 .num_resources = ARRAY_SIZE(sdhi1_resources),
600 .resource = sdhi1_resources,
601 .id = 1,
Magnus Damm98779ad2009-11-27 04:36:58 +0000602 .dev = {
603 .platform_data = &sdhi1_info,
604 },
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000605};
Yusuke Goda1238c682010-04-27 10:15:32 +0000606#endif /* CONFIG_MMC_SH_MMCIF */
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000607
Magnus Damm1ce4da72009-12-07 14:05:45 +0000608#else
609
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000610/* MMC SPI */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000611static int mmc_spi_get_ro(struct device *dev)
612{
613 return gpio_get_value(GPIO_PTY6);
614}
615
616static int mmc_spi_get_cd(struct device *dev)
617{
618 return !gpio_get_value(GPIO_PTY7);
619}
620
621static void mmc_spi_setpower(struct device *dev, unsigned int maskval)
622{
623 gpio_set_value(GPIO_PTB6, maskval ? 1 : 0);
624}
625
626static struct mmc_spi_platform_data mmc_spi_info = {
627 .get_ro = mmc_spi_get_ro,
628 .get_cd = mmc_spi_get_cd,
629 .caps = MMC_CAP_NEEDS_POLL,
630 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, /* 3.3V only */
631 .setpower = mmc_spi_setpower,
632};
633
634static struct spi_board_info spi_bus[] = {
635 {
636 .modalias = "mmc_spi",
637 .platform_data = &mmc_spi_info,
638 .max_speed_hz = 5000000,
639 .mode = SPI_MODE_0,
640 .controller_data = (void *) GPIO_PTM4,
641 },
642};
643
Kuninori Morimoto9503e892009-12-24 05:27:47 +0000644/* MSIOF0 */
Magnus Damm1ce4da72009-12-07 14:05:45 +0000645static struct sh_msiof_spi_info msiof0_data = {
646 .num_chipselect = 1,
647};
648
649static struct resource msiof0_resources[] = {
650 [0] = {
651 .name = "MSIOF0",
652 .start = 0xa4c40000,
653 .end = 0xa4c40063,
654 .flags = IORESOURCE_MEM,
655 },
656 [1] = {
657 .start = 84,
658 .flags = IORESOURCE_IRQ,
659 },
660};
661
662static struct platform_device msiof0_device = {
663 .name = "spi_sh_msiof",
664 .id = 0, /* MSIOF0 */
665 .dev = {
666 .platform_data = &msiof0_data,
667 },
668 .num_resources = ARRAY_SIZE(msiof0_resources),
669 .resource = msiof0_resources,
Magnus Damm1ce4da72009-12-07 14:05:45 +0000670};
671
672#endif
673
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000674/* I2C Video/Camera */
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000675static struct i2c_board_info i2c_camera[] = {
676 {
677 I2C_BOARD_INFO("tw9910", 0x45),
678 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000679 {
680 /* 1st camera */
681 I2C_BOARD_INFO("mt9t112", 0x3c),
682 },
683 {
684 /* 2nd camera */
685 I2C_BOARD_INFO("mt9t112", 0x3c),
686 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000687};
688
689/* tw9910 */
690static int tw9910_power(struct device *dev, int mode)
691{
692 int val = mode ? 0 : 1;
693
694 gpio_set_value(GPIO_PTU2, val);
695 if (mode)
696 mdelay(100);
697
698 return 0;
699}
700
701static struct tw9910_video_info tw9910_info = {
702 .buswidth = SOCAM_DATAWIDTH_8,
703 .mpout = TW9910_MPO_FIELD,
704};
705
706static struct soc_camera_link tw9910_link = {
707 .i2c_adapter_id = 0,
708 .bus_id = 1,
709 .power = tw9910_power,
710 .board_info = &i2c_camera[0],
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000711 .priv = &tw9910_info,
712};
713
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000714/* mt9t112 */
715static int mt9t112_power1(struct device *dev, int mode)
716{
717 gpio_set_value(GPIO_PTA3, mode);
718 if (mode)
719 mdelay(100);
720
721 return 0;
722}
723
724static struct mt9t112_camera_info mt9t112_info1 = {
725 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
726 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
727};
728
729static struct soc_camera_link mt9t112_link1 = {
730 .i2c_adapter_id = 0,
731 .power = mt9t112_power1,
732 .bus_id = 0,
733 .board_info = &i2c_camera[1],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000734 .priv = &mt9t112_info1,
735};
736
737static int mt9t112_power2(struct device *dev, int mode)
738{
739 gpio_set_value(GPIO_PTA4, mode);
740 if (mode)
741 mdelay(100);
742
743 return 0;
744}
745
746static struct mt9t112_camera_info mt9t112_info2 = {
747 .flags = MT9T112_FLAG_PCLK_RISING_EDGE | MT9T112_FLAG_DATAWIDTH_8,
748 .divider = { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
749};
750
751static struct soc_camera_link mt9t112_link2 = {
752 .i2c_adapter_id = 1,
753 .power = mt9t112_power2,
754 .bus_id = 1,
755 .board_info = &i2c_camera[2],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000756 .priv = &mt9t112_info2,
757};
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000758
759static struct platform_device camera_devices[] = {
760 {
761 .name = "soc-camera-pdrv",
762 .id = 0,
763 .dev = {
764 .platform_data = &tw9910_link,
765 },
766 },
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000767 {
768 .name = "soc-camera-pdrv",
769 .id = 1,
770 .dev = {
771 .platform_data = &mt9t112_link1,
772 },
773 },
774 {
775 .name = "soc-camera-pdrv",
776 .id = 2,
777 .dev = {
778 .platform_data = &mt9t112_link2,
779 },
780 },
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000781};
782
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000783/* FSI */
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000784static struct sh_fsi_platform_info fsi_info = {
Kuninori Morimotofec691e2012-02-03 00:58:48 -0800785 .port_b = {
786 .flags = SH_FSI_BRS_INV,
787 },
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000788};
789
790static struct resource fsi_resources[] = {
791 [0] = {
792 .name = "FSI",
793 .start = 0xFE3C0000,
794 .end = 0xFE3C021d,
795 .flags = IORESOURCE_MEM,
796 },
797 [1] = {
798 .start = 108,
799 .flags = IORESOURCE_IRQ,
800 },
801};
802
803static struct platform_device fsi_device = {
804 .name = "sh_fsi",
805 .id = 0,
806 .num_resources = ARRAY_SIZE(fsi_resources),
807 .resource = fsi_resources,
808 .dev = {
809 .platform_data = &fsi_info,
810 },
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000811};
812
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700813static struct asoc_simple_dai_init_info fsi_da7210_init_info = {
814 .fmt = SND_SOC_DAIFMT_I2S,
815 .codec_daifmt = SND_SOC_DAIFMT_CBM_CFM,
816 .cpu_daifmt = SND_SOC_DAIFMT_CBS_CFS,
817};
818
819static struct asoc_simple_card_info fsi_da7210_info = {
820 .name = "DA7210",
821 .card = "FSIB-DA7210",
822 .cpu_dai = "fsib-dai",
823 .codec = "da7210.0-001a",
824 .platform = "sh_fsi.0",
825 .codec_dai = "da7210-hifi",
826 .init = &fsi_da7210_init_info,
827};
828
829static struct platform_device fsi_da7210_device = {
830 .name = "asoc-simple-card",
831 .dev = {
832 .platform_data = &fsi_da7210_info,
833 },
834};
835
836
Kuninori Morimoto26365712010-02-24 00:32:28 +0000837/* IrDA */
838static struct resource irda_resources[] = {
839 [0] = {
840 .name = "IrDA",
841 .start = 0xA45D0000,
842 .end = 0xA45D0049,
843 .flags = IORESOURCE_MEM,
844 },
845 [1] = {
846 .start = 20,
847 .flags = IORESOURCE_IRQ,
848 },
849};
850
851static struct platform_device irda_device = {
852 .name = "sh_sir",
853 .num_resources = ARRAY_SIZE(irda_resources),
854 .resource = irda_resources,
855};
856
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000857#include <media/ak881x.h>
858#include <media/sh_vou.h>
859
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000860static struct ak881x_pdata ak881x_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000861 .flags = AK881X_IF_MODE_SLAVE,
862};
863
864static struct i2c_board_info ak8813 = {
865 I2C_BOARD_INFO("ak8813", 0x20),
866 .platform_data = &ak881x_pdata,
867};
868
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000869static struct sh_vou_pdata sh_vou_pdata = {
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000870 .bus_fmt = SH_VOU_BUS_8BIT,
871 .flags = SH_VOU_HSYNC_LOW | SH_VOU_VSYNC_LOW,
872 .board_info = &ak8813,
873 .i2c_adap = 0,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000874};
875
876static struct resource sh_vou_resources[] = {
877 [0] = {
878 .start = 0xfe960000,
879 .end = 0xfe962043,
880 .flags = IORESOURCE_MEM,
881 },
882 [1] = {
883 .start = 55,
884 .flags = IORESOURCE_IRQ,
885 },
886};
887
888static struct platform_device vou_device = {
889 .name = "sh-vou",
890 .id = -1,
891 .num_resources = ARRAY_SIZE(sh_vou_resources),
892 .resource = sh_vou_resources,
893 .dev = {
894 .platform_data = &sh_vou_pdata,
895 },
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000896};
897
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200898#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000899/* SH_MMCIF */
900static void mmcif_set_pwr(struct platform_device *pdev, int state)
901{
902 gpio_set_value(GPIO_PTB7, state);
903}
904
905static void mmcif_down_pwr(struct platform_device *pdev)
906{
907 gpio_set_value(GPIO_PTB7, 0);
908}
909
910static struct resource sh_mmcif_resources[] = {
911 [0] = {
912 .name = "SH_MMCIF",
913 .start = 0xA4CA0000,
914 .end = 0xA4CA00FF,
915 .flags = IORESOURCE_MEM,
916 },
917 [1] = {
918 /* MMC2I */
919 .start = 29,
920 .flags = IORESOURCE_IRQ,
921 },
922 [2] = {
923 /* MMC3I */
924 .start = 30,
925 .flags = IORESOURCE_IRQ,
926 },
927};
928
Kuninori Morimoto3ce09332010-06-02 00:27:31 +0000929static struct sh_mmcif_plat_data sh_mmcif_plat = {
Yusuke Goda1238c682010-04-27 10:15:32 +0000930 .set_pwr = mmcif_set_pwr,
931 .down_pwr = mmcif_down_pwr,
932 .sup_pclk = 0, /* SH7724: Max Pclk/2 */
933 .caps = MMC_CAP_4_BIT_DATA |
934 MMC_CAP_8_BIT_DATA |
935 MMC_CAP_NEEDS_POLL,
936 .ocr = MMC_VDD_32_33 | MMC_VDD_33_34,
937};
938
939static struct platform_device sh_mmcif_device = {
940 .name = "sh_mmcif",
941 .id = 0,
942 .dev = {
943 .platform_data = &sh_mmcif_plat,
944 },
945 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
946 .resource = sh_mmcif_resources,
947};
948#endif
949
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000950static struct platform_device *ecovec_devices[] __initdata = {
951 &heartbeat_device,
952 &nor_flash_device,
Kuninori Morimoto35a35402009-08-26 11:04:26 +0000953 &sh_eth_device,
Kuninori Morimoto907050a2009-08-26 11:04:31 +0000954 &usb0_host_device,
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +0000955 &usb1_common_device,
Kuninori Morimotofb2e7392011-06-15 06:08:18 +0000956 &usbhs_device,
Kuninori Morimotofa3ba512009-08-26 11:04:34 +0000957 &lcdc_device,
Kuninori Morimoto2153ad32009-08-26 11:04:36 +0000958 &ceu0_device,
959 &ceu1_device,
Kuninori Morimotoe9103e72009-09-14 11:23:00 +0000960 &keysc_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200961#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000962 &sdhi0_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200963#if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
Kuninori Morimoto96987d92009-10-02 07:54:42 +0000964 &sdhi1_device,
Yusuke Goda1238c682010-04-27 10:15:32 +0000965#endif
Magnus Damm1ce4da72009-12-07 14:05:45 +0000966#else
967 &msiof0_device,
968#endif
Kuninori Morimoto207efd02009-12-15 05:37:16 +0000969 &camera_devices[0],
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +0000970 &camera_devices[1],
971 &camera_devices[2],
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +0000972 &fsi_device,
Kuninori Morimoto064bfad2012-04-08 21:19:25 -0700973 &fsi_da7210_device,
Kuninori Morimoto26365712010-02-24 00:32:28 +0000974 &irda_device,
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +0000975 &vou_device,
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +0200976#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
Yusuke Goda1238c682010-04-27 10:15:32 +0000977 &sh_mmcif_device,
978#endif
Kuninori Morimoto4138b742009-08-19 12:08:33 +0000979};
980
Magnus Damm6b3b5572010-02-25 11:10:54 +0000981#ifdef CONFIG_I2C
Kuninori Morimoto4907d572009-09-10 01:39:58 +0000982#define EEPROM_ADDR 0x50
983static u8 mac_read(struct i2c_adapter *a, u8 command)
984{
985 struct i2c_msg msg[2];
986 u8 buf;
987 int ret;
988
989 msg[0].addr = EEPROM_ADDR;
990 msg[0].flags = 0;
991 msg[0].len = 1;
992 msg[0].buf = &command;
993
994 msg[1].addr = EEPROM_ADDR;
995 msg[1].flags = I2C_M_RD;
996 msg[1].len = 1;
997 msg[1].buf = &buf;
998
999 ret = i2c_transfer(a, msg, 2);
1000 if (ret < 0) {
1001 printk(KERN_ERR "error %d\n", ret);
1002 buf = 0xff;
1003 }
1004
1005 return buf;
1006}
1007
Magnus Damm376abbb2009-10-26 10:44:37 +00001008static void __init sh_eth_init(struct sh_eth_plat_data *pd)
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001009{
1010 struct i2c_adapter *a = i2c_get_adapter(1);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001011 int i;
1012
1013 if (!a) {
1014 pr_err("can not get I2C 1\n");
1015 return;
1016 }
1017
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001018 /* read MAC address from EEPROM */
Magnus Damm376abbb2009-10-26 10:44:37 +00001019 for (i = 0; i < sizeof(pd->mac_addr); i++) {
1020 pd->mac_addr[i] = mac_read(a, 0x10 + i);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001021 msleep(10);
1022 }
Kuninori Morimotob230eb32010-03-16 02:01:33 +00001023
1024 i2c_put_adapter(a);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001025}
Magnus Damm6b3b5572010-02-25 11:10:54 +00001026#else
1027static void __init sh_eth_init(struct sh_eth_plat_data *pd)
1028{
1029 pr_err("unable to read sh_eth MAC address\n");
1030}
1031#endif
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001032
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001033#define PORT_HIZA 0xA4050158
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001034#define IODRIVEA 0xA405018A
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001035
1036extern char ecovec24_sdram_enter_start;
1037extern char ecovec24_sdram_enter_end;
1038extern char ecovec24_sdram_leave_start;
1039extern char ecovec24_sdram_leave_end;
1040
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001041static int __init arch_setup(void)
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001042{
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001043 struct clk *clk;
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001044 bool cn12_enabled = false;
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001045
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001046 /* register board specific self-refresh code */
Magnus Damm2839bd62010-02-25 11:07:52 +00001047 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF |
1048 SUSP_SH_RSTANDBY,
Magnus Dammeb0cd9e2009-10-30 04:23:59 +00001049 &ecovec24_sdram_enter_start,
1050 &ecovec24_sdram_enter_end,
1051 &ecovec24_sdram_leave_start,
1052 &ecovec24_sdram_leave_end);
1053
Magnus Dammf78bab32009-10-07 09:00:06 +00001054 /* enable STATUS0, STATUS2 and PDSTATUS */
1055 gpio_request(GPIO_FN_STATUS0, NULL);
1056 gpio_request(GPIO_FN_STATUS2, NULL);
1057 gpio_request(GPIO_FN_PDSTATUS, NULL);
1058
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001059 /* enable SCIFA0 */
1060 gpio_request(GPIO_FN_SCIF0_TXD, NULL);
1061 gpio_request(GPIO_FN_SCIF0_RXD, NULL);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001062
1063 /* enable debug LED */
1064 gpio_request(GPIO_PTG0, NULL);
1065 gpio_request(GPIO_PTG1, NULL);
1066 gpio_request(GPIO_PTG2, NULL);
1067 gpio_request(GPIO_PTG3, NULL);
Kuninori Morimotob7056bc2009-08-26 11:04:22 +00001068 gpio_direction_output(GPIO_PTG0, 0);
1069 gpio_direction_output(GPIO_PTG1, 0);
1070 gpio_direction_output(GPIO_PTG2, 0);
1071 gpio_direction_output(GPIO_PTG3, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001072 __raw_writew((__raw_readw(PORT_HIZA) & ~(0x1 << 1)) , PORT_HIZA);
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001073
Kuninori Morimoto35a35402009-08-26 11:04:26 +00001074 /* enable SH-Eth */
1075 gpio_request(GPIO_PTA1, NULL);
1076 gpio_direction_output(GPIO_PTA1, 1);
1077 mdelay(20);
1078
1079 gpio_request(GPIO_FN_RMII_RXD0, NULL);
1080 gpio_request(GPIO_FN_RMII_RXD1, NULL);
1081 gpio_request(GPIO_FN_RMII_TXD0, NULL);
1082 gpio_request(GPIO_FN_RMII_TXD1, NULL);
1083 gpio_request(GPIO_FN_RMII_REF_CLK, NULL);
1084 gpio_request(GPIO_FN_RMII_TX_EN, NULL);
1085 gpio_request(GPIO_FN_RMII_RX_ER, NULL);
1086 gpio_request(GPIO_FN_RMII_CRS_DV, NULL);
1087 gpio_request(GPIO_FN_MDIO, NULL);
1088 gpio_request(GPIO_FN_MDC, NULL);
1089 gpio_request(GPIO_FN_LNKSTA, NULL);
1090
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001091 /* enable USB */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001092 __raw_writew(0x0000, 0xA4D80000);
1093 __raw_writew(0x0000, 0xA4D90000);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001094 gpio_request(GPIO_PTB3, NULL);
1095 gpio_request(GPIO_PTB4, NULL);
1096 gpio_request(GPIO_PTB5, NULL);
1097 gpio_direction_input(GPIO_PTB3);
1098 gpio_direction_output(GPIO_PTB4, 0);
1099 gpio_direction_output(GPIO_PTB5, 0);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001100 __raw_writew(0x0600, 0xa40501d4);
1101 __raw_writew(0x0600, 0xa4050192);
Kuninori Morimoto907050a2009-08-26 11:04:31 +00001102
Kuninori Morimoto3714a9a2009-10-28 06:31:57 +00001103 if (gpio_get_value(GPIO_PTB3)) {
1104 printk(KERN_INFO "USB1 function is selected\n");
1105 usb1_common_device.name = "r8a66597_udc";
1106 } else {
1107 printk(KERN_INFO "USB1 host is selected\n");
1108 usb1_common_device.name = "r8a66597_hcd";
1109 }
1110
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001111 /* enable LCDC */
1112 gpio_request(GPIO_FN_LCDD23, NULL);
1113 gpio_request(GPIO_FN_LCDD22, NULL);
1114 gpio_request(GPIO_FN_LCDD21, NULL);
1115 gpio_request(GPIO_FN_LCDD20, NULL);
1116 gpio_request(GPIO_FN_LCDD19, NULL);
1117 gpio_request(GPIO_FN_LCDD18, NULL);
1118 gpio_request(GPIO_FN_LCDD17, NULL);
1119 gpio_request(GPIO_FN_LCDD16, NULL);
1120 gpio_request(GPIO_FN_LCDD15, NULL);
1121 gpio_request(GPIO_FN_LCDD14, NULL);
1122 gpio_request(GPIO_FN_LCDD13, NULL);
1123 gpio_request(GPIO_FN_LCDD12, NULL);
1124 gpio_request(GPIO_FN_LCDD11, NULL);
1125 gpio_request(GPIO_FN_LCDD10, NULL);
1126 gpio_request(GPIO_FN_LCDD9, NULL);
1127 gpio_request(GPIO_FN_LCDD8, NULL);
1128 gpio_request(GPIO_FN_LCDD7, NULL);
1129 gpio_request(GPIO_FN_LCDD6, NULL);
1130 gpio_request(GPIO_FN_LCDD5, NULL);
1131 gpio_request(GPIO_FN_LCDD4, NULL);
1132 gpio_request(GPIO_FN_LCDD3, NULL);
1133 gpio_request(GPIO_FN_LCDD2, NULL);
1134 gpio_request(GPIO_FN_LCDD1, NULL);
1135 gpio_request(GPIO_FN_LCDD0, NULL);
1136 gpio_request(GPIO_FN_LCDDISP, NULL);
1137 gpio_request(GPIO_FN_LCDHSYN, NULL);
1138 gpio_request(GPIO_FN_LCDDCK, NULL);
1139 gpio_request(GPIO_FN_LCDVSYN, NULL);
1140 gpio_request(GPIO_FN_LCDDON, NULL);
1141 gpio_request(GPIO_FN_LCDLCLK, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +09001142 __raw_writew((__raw_readw(PORT_HIZA) & ~0x0001), PORT_HIZA);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001143
1144 gpio_request(GPIO_PTE6, NULL);
1145 gpio_request(GPIO_PTU1, NULL);
1146 gpio_request(GPIO_PTR1, NULL);
1147 gpio_request(GPIO_PTA2, NULL);
1148 gpio_direction_input(GPIO_PTE6);
1149 gpio_direction_output(GPIO_PTU1, 0);
1150 gpio_direction_output(GPIO_PTR1, 0);
1151 gpio_direction_output(GPIO_PTA2, 0);
1152
Kuninori Morimoto82b33222009-12-02 09:35:42 +00001153 /* I/O buffer drive ability is high */
Paul Mundt9d56dd32010-01-26 12:58:40 +09001154 __raw_writew((__raw_readw(IODRIVEA) & ~0x00c0) | 0x0080 , IODRIVEA);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001155
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001156 if (gpio_get_value(GPIO_PTE6)) {
1157 /* DVI */
1158 lcdc_info.clock_source = LCDC_CLK_EXTERNAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001159 lcdc_info.ch[0].clock_divider = 1;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001160 lcdc_info.ch[0].lcd_modes = ecovec_dvi_modes;
1161 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_dvi_modes);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001162
1163 gpio_set_value(GPIO_PTA2, 1);
1164 gpio_set_value(GPIO_PTU1, 1);
1165 } else {
1166 /* Panel */
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001167 lcdc_info.clock_source = LCDC_CLK_PERIPHERAL;
Guennadi Liakhovetski44432402010-09-03 07:20:04 +00001168 lcdc_info.ch[0].clock_divider = 2;
Laurent Pinchart93ff2592011-11-29 14:33:41 +01001169 lcdc_info.ch[0].lcd_modes = ecovec_lcd_modes;
1170 lcdc_info.ch[0].num_modes = ARRAY_SIZE(ecovec_lcd_modes);
Kuninori Morimotoea15edb2009-08-26 11:04:39 +00001171
1172 gpio_set_value(GPIO_PTR1, 1);
1173
1174 /* FIXME
1175 *
1176 * LCDDON control is needed for Panel,
1177 * but current sh_mobile_lcdc driver doesn't control it.
1178 * It is temporary correspondence
1179 */
1180 gpio_request(GPIO_PTF4, NULL);
1181 gpio_direction_output(GPIO_PTF4, 1);
Kuninori Morimoto8810e052009-09-28 08:21:41 +00001182
1183 /* enable TouchScreen */
1184 i2c_register_board_info(0, &ts_i2c_clients, 1);
Thomas Gleixnerfcb89182011-03-24 16:31:17 +01001185 irq_set_irq_type(IRQ0, IRQ_TYPE_LEVEL_LOW);
Kuninori Morimotofa3ba512009-08-26 11:04:34 +00001186 }
1187
Kuninori Morimoto2153ad32009-08-26 11:04:36 +00001188 /* enable CEU0 */
1189 gpio_request(GPIO_FN_VIO0_D15, NULL);
1190 gpio_request(GPIO_FN_VIO0_D14, NULL);
1191 gpio_request(GPIO_FN_VIO0_D13, NULL);
1192 gpio_request(GPIO_FN_VIO0_D12, NULL);
1193 gpio_request(GPIO_FN_VIO0_D11, NULL);
1194 gpio_request(GPIO_FN_VIO0_D10, NULL);
1195 gpio_request(GPIO_FN_VIO0_D9, NULL);
1196 gpio_request(GPIO_FN_VIO0_D8, NULL);
1197 gpio_request(GPIO_FN_VIO0_D7, NULL);
1198 gpio_request(GPIO_FN_VIO0_D6, NULL);
1199 gpio_request(GPIO_FN_VIO0_D5, NULL);
1200 gpio_request(GPIO_FN_VIO0_D4, NULL);
1201 gpio_request(GPIO_FN_VIO0_D3, NULL);
1202 gpio_request(GPIO_FN_VIO0_D2, NULL);
1203 gpio_request(GPIO_FN_VIO0_D1, NULL);
1204 gpio_request(GPIO_FN_VIO0_D0, NULL);
1205 gpio_request(GPIO_FN_VIO0_VD, NULL);
1206 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1207 gpio_request(GPIO_FN_VIO0_FLD, NULL);
1208 gpio_request(GPIO_FN_VIO0_HD, NULL);
1209 platform_resource_setup_memory(&ceu0_device, "ceu0", 4 << 20);
1210
1211 /* enable CEU1 */
1212 gpio_request(GPIO_FN_VIO1_D7, NULL);
1213 gpio_request(GPIO_FN_VIO1_D6, NULL);
1214 gpio_request(GPIO_FN_VIO1_D5, NULL);
1215 gpio_request(GPIO_FN_VIO1_D4, NULL);
1216 gpio_request(GPIO_FN_VIO1_D3, NULL);
1217 gpio_request(GPIO_FN_VIO1_D2, NULL);
1218 gpio_request(GPIO_FN_VIO1_D1, NULL);
1219 gpio_request(GPIO_FN_VIO1_D0, NULL);
1220 gpio_request(GPIO_FN_VIO1_FLD, NULL);
1221 gpio_request(GPIO_FN_VIO1_HD, NULL);
1222 gpio_request(GPIO_FN_VIO1_VD, NULL);
1223 gpio_request(GPIO_FN_VIO1_CLK, NULL);
1224 platform_resource_setup_memory(&ceu1_device, "ceu1", 4 << 20);
1225
Kuninori Morimotoe9103e72009-09-14 11:23:00 +00001226 /* enable KEYSC */
1227 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
1228 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
1229 gpio_request(GPIO_FN_KEYOUT3, NULL);
1230 gpio_request(GPIO_FN_KEYOUT2, NULL);
1231 gpio_request(GPIO_FN_KEYOUT1, NULL);
1232 gpio_request(GPIO_FN_KEYOUT0, NULL);
1233 gpio_request(GPIO_FN_KEYIN0, NULL);
1234
Kuninori Morimoto064a16d2009-09-16 11:34:34 +00001235 /* enable user debug switch */
1236 gpio_request(GPIO_PTR0, NULL);
1237 gpio_request(GPIO_PTR4, NULL);
1238 gpio_request(GPIO_PTR5, NULL);
1239 gpio_request(GPIO_PTR6, NULL);
1240 gpio_direction_input(GPIO_PTR0);
1241 gpio_direction_input(GPIO_PTR4);
1242 gpio_direction_input(GPIO_PTR5);
1243 gpio_direction_input(GPIO_PTR6);
1244
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001245 /* SD-card slot CN11 */
1246 /* Card-detect, used on CN11, either with SDHI0 or with SPI */
1247 gpio_request(GPIO_PTY7, NULL);
1248 gpio_direction_input(GPIO_PTY7);
1249
Guennadi Liakhovetski5744c882011-04-15 20:03:17 +02001250#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Magnus Damm1ce4da72009-12-07 14:05:45 +00001251 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001252 gpio_request(GPIO_FN_SDHI0WP, NULL);
1253 gpio_request(GPIO_FN_SDHI0CMD, NULL);
1254 gpio_request(GPIO_FN_SDHI0CLK, NULL);
1255 gpio_request(GPIO_FN_SDHI0D3, NULL);
1256 gpio_request(GPIO_FN_SDHI0D2, NULL);
1257 gpio_request(GPIO_FN_SDHI0D1, NULL);
1258 gpio_request(GPIO_FN_SDHI0D0, NULL);
Magnus Damm98779ad2009-11-27 04:36:58 +00001259 gpio_request(GPIO_PTB6, NULL);
1260 gpio_direction_output(GPIO_PTB6, 0);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001261#else
1262 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1263 gpio_request(GPIO_FN_MSIOF0_TXD, NULL);
1264 gpio_request(GPIO_FN_MSIOF0_RXD, NULL);
1265 gpio_request(GPIO_FN_MSIOF0_TSCK, NULL);
1266 gpio_request(GPIO_PTM4, NULL); /* software CS control of TSYNC pin */
1267 gpio_direction_output(GPIO_PTM4, 1); /* active low CS */
1268 gpio_request(GPIO_PTB6, NULL); /* 3.3V power control */
1269 gpio_direction_output(GPIO_PTB6, 0); /* disable power by default */
1270 gpio_request(GPIO_PTY6, NULL); /* write protect */
1271 gpio_direction_input(GPIO_PTY6);
Magnus Damm1ce4da72009-12-07 14:05:45 +00001272
1273 spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus));
1274#endif
Kuninori Morimoto96987d92009-10-02 07:54:42 +00001275
Guennadi Liakhovetski4eb80142012-01-28 19:36:24 +01001276 /* MMC/SD-card slot CN12 */
1277#if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1278 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1279 gpio_request(GPIO_FN_MMC_D7, NULL);
1280 gpio_request(GPIO_FN_MMC_D6, NULL);
1281 gpio_request(GPIO_FN_MMC_D5, NULL);
1282 gpio_request(GPIO_FN_MMC_D4, NULL);
1283 gpio_request(GPIO_FN_MMC_D3, NULL);
1284 gpio_request(GPIO_FN_MMC_D2, NULL);
1285 gpio_request(GPIO_FN_MMC_D1, NULL);
1286 gpio_request(GPIO_FN_MMC_D0, NULL);
1287 gpio_request(GPIO_FN_MMC_CLK, NULL);
1288 gpio_request(GPIO_FN_MMC_CMD, NULL);
1289 gpio_request(GPIO_PTB7, NULL);
1290 gpio_direction_output(GPIO_PTB7, 0);
1291
1292 cn12_enabled = true;
1293#elif defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1294 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
1295 gpio_request(GPIO_FN_SDHI1WP, NULL);
1296 gpio_request(GPIO_FN_SDHI1CMD, NULL);
1297 gpio_request(GPIO_FN_SDHI1CLK, NULL);
1298 gpio_request(GPIO_FN_SDHI1D3, NULL);
1299 gpio_request(GPIO_FN_SDHI1D2, NULL);
1300 gpio_request(GPIO_FN_SDHI1D1, NULL);
1301 gpio_request(GPIO_FN_SDHI1D0, NULL);
1302 gpio_request(GPIO_PTB7, NULL);
1303 gpio_direction_output(GPIO_PTB7, 0);
1304
1305 /* Card-detect, used on CN12 with SDHI1 */
1306 gpio_request(GPIO_PTW7, NULL);
1307 gpio_direction_input(GPIO_PTW7);
1308
1309 cn12_enabled = true;
1310#endif
1311
1312 if (cn12_enabled)
1313 /* I/O buffer drive ability is high for CN12 */
1314 __raw_writew((__raw_readw(IODRIVEA) & ~0x3000) | 0x2000,
1315 IODRIVEA);
1316
Kuninori Morimoto207efd02009-12-15 05:37:16 +00001317 /* enable Video */
1318 gpio_request(GPIO_PTU2, NULL);
1319 gpio_direction_output(GPIO_PTU2, 1);
1320
Kuninori Morimoto9aa25d62009-12-15 05:37:26 +00001321 /* enable Camera */
1322 gpio_request(GPIO_PTA3, NULL);
1323 gpio_request(GPIO_PTA4, NULL);
1324 gpio_direction_output(GPIO_PTA3, 0);
1325 gpio_direction_output(GPIO_PTA4, 0);
1326
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001327 /* enable FSI */
1328 gpio_request(GPIO_FN_FSIMCKB, NULL);
1329 gpio_request(GPIO_FN_FSIIBSD, NULL);
1330 gpio_request(GPIO_FN_FSIOBSD, NULL);
1331 gpio_request(GPIO_FN_FSIIBBCK, NULL);
1332 gpio_request(GPIO_FN_FSIIBLRCK, NULL);
1333 gpio_request(GPIO_FN_FSIOBBCK, NULL);
1334 gpio_request(GPIO_FN_FSIOBLRCK, NULL);
1335 gpio_request(GPIO_FN_CLKAUDIOBO, NULL);
1336
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001337 /* set SPU2 clock to 83.4 MHz */
1338 clk = clk_get(NULL, "spu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001339 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001340 clk_set_rate(clk, clk_round_rate(clk, 83333333));
1341 clk_put(clk);
1342 }
Kuninori Morimoto16afc9f2010-02-22 05:18:10 +00001343
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001344 /* change parent of FSI B */
1345 clk = clk_get(NULL, "fsib_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001346 if (!IS_ERR(clk)) {
Kuninori Morimoto4bd5d252010-11-26 09:40:22 +00001347 /* 48kHz dummy clock was used to make sure 1/1 divide */
1348 clk_set_rate(&sh7724_fsimckb_clk, 48000);
1349 clk_set_parent(clk, &sh7724_fsimckb_clk);
1350 clk_set_rate(clk, 48000);
Kuninori Morimoto10305852010-05-13 01:08:33 +00001351 clk_put(clk);
1352 }
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001353
1354 gpio_request(GPIO_PTU0, NULL);
1355 gpio_direction_output(GPIO_PTU0, 0);
1356 mdelay(20);
1357
NISHIMOTO Hirokiea440782010-01-15 08:25:00 +09001358 /* enable motion sensor */
1359 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1360 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1361
Magnus Damm6f26d192010-02-19 09:33:47 +00001362 /* set VPU clock to 166 MHz */
1363 clk = clk_get(NULL, "vpu_clk");
Guennadi Liakhovetski56ea5102010-10-15 14:37:24 +00001364 if (!IS_ERR(clk)) {
Kuninori Morimoto10305852010-05-13 01:08:33 +00001365 clk_set_rate(clk, clk_round_rate(clk, 166000000));
1366 clk_put(clk);
1367 }
Magnus Damm6f26d192010-02-19 09:33:47 +00001368
Kuninori Morimoto26365712010-02-24 00:32:28 +00001369 /* enable IrDA */
1370 gpio_request(GPIO_FN_IRDA_OUT, NULL);
1371 gpio_request(GPIO_FN_IRDA_IN, NULL);
1372 gpio_request(GPIO_PTU5, NULL);
1373 gpio_direction_output(GPIO_PTU5, 0);
1374
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001375 /* enable I2C device */
Kuninori Morimoto1980fdc2009-12-15 05:37:39 +00001376 i2c_register_board_info(0, i2c0_devices,
1377 ARRAY_SIZE(i2c0_devices));
1378
Kuninori Morimoto125ecce2009-09-10 01:39:37 +00001379 i2c_register_board_info(1, i2c1_devices,
1380 ARRAY_SIZE(i2c1_devices));
1381
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001382#if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001383 /* VOU */
1384 gpio_request(GPIO_FN_DV_D15, NULL);
1385 gpio_request(GPIO_FN_DV_D14, NULL);
1386 gpio_request(GPIO_FN_DV_D13, NULL);
1387 gpio_request(GPIO_FN_DV_D12, NULL);
1388 gpio_request(GPIO_FN_DV_D11, NULL);
1389 gpio_request(GPIO_FN_DV_D10, NULL);
1390 gpio_request(GPIO_FN_DV_D9, NULL);
1391 gpio_request(GPIO_FN_DV_D8, NULL);
1392 gpio_request(GPIO_FN_DV_CLKI, NULL);
1393 gpio_request(GPIO_FN_DV_CLK, NULL);
1394 gpio_request(GPIO_FN_DV_VSYNC, NULL);
1395 gpio_request(GPIO_FN_DV_HSYNC, NULL);
1396
1397 /* AK8813 power / reset sequence */
1398 gpio_request(GPIO_PTG4, NULL);
1399 gpio_request(GPIO_PTU3, NULL);
1400 /* Reset */
1401 gpio_direction_output(GPIO_PTG4, 0);
1402 /* Power down */
1403 gpio_direction_output(GPIO_PTU3, 1);
1404
1405 udelay(10);
1406
1407 /* Power up, reset */
1408 gpio_set_value(GPIO_PTU3, 0);
1409
1410 udelay(10);
1411
1412 /* Remove reset */
1413 gpio_set_value(GPIO_PTG4, 1);
Guennadi Liakhovetski92359a72011-01-17 08:02:53 +00001414#endif
Guennadi Liakhovetskiaee5ab02010-04-21 08:45:25 +00001415
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001416 return platform_add_devices(ecovec_devices,
1417 ARRAY_SIZE(ecovec_devices));
1418}
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001419arch_initcall(arch_setup);
1420
1421static int __init devices_setup(void)
1422{
Magnus Damm376abbb2009-10-26 10:44:37 +00001423 sh_eth_init(&sh_eth_plat);
Kuninori Morimoto4907d572009-09-10 01:39:58 +00001424 return 0;
1425}
1426device_initcall(devices_setup);
1427
Kuninori Morimoto4138b742009-08-19 12:08:33 +00001428static struct sh_machine_vector mv_ecovec __initmv = {
1429 .mv_name = "R0P7724 (EcoVec)",
1430};