blob: 53537fec31944c590d1eba5eeb534b8044faed57 [file] [log] [blame]
Magnus Damm70f784e2008-02-07 00:38:24 +09001/*
2 * Renesas System Solutions Asia Pte. Ltd - Migo-R
3 *
4 * Copyright (C) 2008 Magnus Damm
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#include <linux/init.h>
11#include <linux/platform_device.h>
12#include <linux/interrupt.h>
Magnus Damm92cfeb62008-03-04 15:23:45 -080013#include <linux/input.h>
Magnus Dammb8808782008-03-21 18:43:55 +090014#include <linux/mtd/physmap.h>
Magnus Damm3c803a92008-03-21 18:44:04 +090015#include <linux/mtd/nand.h>
Magnus Damm0c6111e2008-03-25 17:20:24 +090016#include <linux/i2c.h>
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090017#include <linux/smc91x.h>
Magnus Damm17655342008-07-28 18:51:01 +090018#include <linux/delay.h>
19#include <linux/clk.h>
Magnus Damm91b6f3c2008-10-08 20:42:01 +090020#include <linux/gpio.h>
Magnus Damm17655342008-07-28 18:51:01 +090021#include <media/sh_mobile_ceu.h>
Kuninori Morimotoff04ea42008-12-02 16:38:34 +090022#include <media/ov772x.h>
Kuninori Morimotodeae7b82009-01-05 16:25:16 +090023#include <media/tw9910.h>
Paul Mundt225c9a82008-10-01 16:24:32 +090024#include <video/sh_mobile_lcdc.h>
Magnus Damm6c7d8262008-07-17 19:16:11 +090025#include <asm/clock.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090026#include <asm/machvec.h>
27#include <asm/io.h>
Magnus Damm92cfeb62008-03-04 15:23:45 -080028#include <asm/sh_keysc.h>
Paul Mundt7639a452008-10-20 13:02:48 +090029#include <mach/migor.h>
Paul Mundtf7275652008-10-20 12:04:53 +090030#include <cpu/sh7722.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090031
32/* Address IRQ Size Bus Description
33 * 0x00000000 64MB 16 NOR Flash (SP29PL256N)
34 * 0x0c000000 64MB 64 SDRAM (2xK4M563233G)
35 * 0x10000000 IRQ0 16 Ethernet (SMC91C111)
36 * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596)
37 * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A)
38 */
39
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090040static struct smc91x_platdata smc91x_info = {
Magnus Damma30c89a2008-10-09 18:41:34 +090041 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090042};
43
Magnus Damm70f784e2008-02-07 00:38:24 +090044static struct resource smc91x_eth_resources[] = {
45 [0] = {
Magnus Dammb026a232008-03-21 18:43:46 +090046 .name = "SMC91C111" ,
47 .start = 0x10000300,
48 .end = 0x1000030f,
Magnus Damm70f784e2008-02-07 00:38:24 +090049 .flags = IORESOURCE_MEM,
50 },
51 [1] = {
52 .start = 32, /* IRQ0 */
Eric Miaod280ead2008-06-06 17:13:02 +080053 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
Magnus Damm70f784e2008-02-07 00:38:24 +090054 },
55};
56
57static struct platform_device smc91x_eth_device = {
58 .name = "smc91x",
59 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
60 .resource = smc91x_eth_resources,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090061 .dev = {
62 .platform_data = &smc91x_info,
63 },
Magnus Damm70f784e2008-02-07 00:38:24 +090064};
65
Magnus Damm92cfeb62008-03-04 15:23:45 -080066static struct sh_keysc_info sh_keysc_info = {
67 .mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */
68 .scan_timing = 3,
69 .delay = 5,
70 .keycodes = {
71 0, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER,
72 0, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1,
73 0, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6,
74 0, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0,
75 0, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD,
76 },
77};
78
79static struct resource sh_keysc_resources[] = {
80 [0] = {
81 .start = 0x044b0000,
82 .end = 0x044b000f,
83 .flags = IORESOURCE_MEM,
84 },
85 [1] = {
86 .start = 79,
87 .flags = IORESOURCE_IRQ,
88 },
89};
90
91static struct platform_device sh_keysc_device = {
92 .name = "sh_keysc",
Magnus Damm090d9512008-10-31 20:21:23 +090093 .id = 0, /* "keysc0" clock */
Magnus Damm92cfeb62008-03-04 15:23:45 -080094 .num_resources = ARRAY_SIZE(sh_keysc_resources),
95 .resource = sh_keysc_resources,
96 .dev = {
97 .platform_data = &sh_keysc_info,
98 },
99};
100
Magnus Dammb8808782008-03-21 18:43:55 +0900101static struct mtd_partition migor_nor_flash_partitions[] =
102{
103 {
104 .name = "uboot",
105 .offset = 0,
106 .size = (1 * 1024 * 1024),
107 .mask_flags = MTD_WRITEABLE, /* Read-only */
108 },
109 {
110 .name = "rootfs",
111 .offset = MTDPART_OFS_APPEND,
112 .size = (15 * 1024 * 1024),
113 },
114 {
115 .name = "other",
116 .offset = MTDPART_OFS_APPEND,
117 .size = MTDPART_SIZ_FULL,
118 },
119};
120
121static struct physmap_flash_data migor_nor_flash_data = {
122 .width = 2,
123 .parts = migor_nor_flash_partitions,
124 .nr_parts = ARRAY_SIZE(migor_nor_flash_partitions),
125};
126
127static struct resource migor_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 migor_nor_flash_device = {
137 .name = "physmap-flash",
138 .resource = migor_nor_flash_resources,
139 .num_resources = ARRAY_SIZE(migor_nor_flash_resources),
140 .dev = {
141 .platform_data = &migor_nor_flash_data,
142 },
143};
144
Magnus Damm3c803a92008-03-21 18:44:04 +0900145static struct mtd_partition migor_nand_flash_partitions[] = {
146 {
147 .name = "nanddata1",
148 .offset = 0x0,
149 .size = 512 * 1024 * 1024,
150 },
151 {
152 .name = "nanddata2",
153 .offset = MTDPART_OFS_APPEND,
154 .size = 512 * 1024 * 1024,
155 },
156};
157
158static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd,
159 unsigned int ctrl)
160{
161 struct nand_chip *chip = mtd->priv;
162
163 if (cmd == NAND_CMD_NONE)
164 return;
165
166 if (ctrl & NAND_CLE)
167 writeb(cmd, chip->IO_ADDR_W + 0x00400000);
168 else if (ctrl & NAND_ALE)
169 writeb(cmd, chip->IO_ADDR_W + 0x00800000);
170 else
171 writeb(cmd, chip->IO_ADDR_W);
172}
173
174static int migor_nand_flash_ready(struct mtd_info *mtd)
175{
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900176 return gpio_get_value(GPIO_PTA1); /* NAND_RBn */
Magnus Damm3c803a92008-03-21 18:44:04 +0900177}
178
179struct platform_nand_data migor_nand_flash_data = {
180 .chip = {
181 .nr_chips = 1,
182 .partitions = migor_nand_flash_partitions,
183 .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions),
184 .chip_delay = 20,
185 .part_probe_types = (const char *[]) { "cmdlinepart", NULL },
186 },
187 .ctrl = {
188 .dev_ready = migor_nand_flash_ready,
189 .cmd_ctrl = migor_nand_flash_cmd_ctl,
190 },
191};
192
193static struct resource migor_nand_flash_resources[] = {
194 [0] = {
195 .name = "NAND Flash",
196 .start = 0x18000000,
197 .end = 0x18ffffff,
198 .flags = IORESOURCE_MEM,
199 },
200};
201
202static struct platform_device migor_nand_flash_device = {
203 .name = "gen_nand",
204 .resource = migor_nand_flash_resources,
205 .num_resources = ARRAY_SIZE(migor_nand_flash_resources),
206 .dev = {
207 .platform_data = &migor_nand_flash_data,
208 }
209};
210
Magnus Damm8b1285f2008-07-28 18:47:30 +0900211static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = {
212#ifdef CONFIG_SH_MIGOR_RTA_WVGA
213 .clock_source = LCDC_CLK_BUS,
214 .ch[0] = {
215 .chan = LCDC_CHAN_MAINLCD,
216 .bpp = 16,
217 .interface_type = RGB16,
218 .clock_divider = 2,
219 .lcd_cfg = {
220 .name = "LB070WV1",
221 .xres = 800,
222 .yres = 480,
223 .left_margin = 64,
224 .right_margin = 16,
225 .hsync_len = 120,
226 .upper_margin = 1,
227 .lower_margin = 17,
228 .vsync_len = 2,
229 .sync = 0,
230 },
Magnus Dammce9c0082008-08-11 15:26:00 +0900231 .lcd_size_cfg = { /* 7.0 inch */
232 .width = 152,
233 .height = 91,
234 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900235 }
236#endif
237#ifdef CONFIG_SH_MIGOR_QVGA
238 .clock_source = LCDC_CLK_PERIPHERAL,
239 .ch[0] = {
240 .chan = LCDC_CHAN_MAINLCD,
241 .bpp = 16,
242 .interface_type = SYS16A,
243 .clock_divider = 10,
244 .lcd_cfg = {
245 .name = "PH240320T",
246 .xres = 320,
247 .yres = 240,
248 .left_margin = 0,
249 .right_margin = 16,
250 .hsync_len = 8,
251 .upper_margin = 1,
252 .lower_margin = 17,
253 .vsync_len = 2,
254 .sync = FB_SYNC_HOR_HIGH_ACT,
255 },
Magnus Dammce9c0082008-08-11 15:26:00 +0900256 .lcd_size_cfg = { /* 2.4 inch */
257 .width = 49,
258 .height = 37,
259 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900260 .board_cfg = {
261 .setup_sys = migor_lcd_qvga_setup,
262 },
263 .sys_bus_cfg = {
264 .ldmt2r = 0x06000a09,
265 .ldmt3r = 0x180e3418,
Magnus Dammb5868e82008-12-19 15:34:50 +0900266 /* set 1s delay to encourage fsync() */
267 .deferred_io_msec = 1000,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900268 },
269 }
270#endif
271};
272
273static struct resource migor_lcdc_resources[] = {
274 [0] = {
275 .name = "LCDC",
276 .start = 0xfe940000, /* P4-only space */
277 .end = 0xfe941fff,
278 .flags = IORESOURCE_MEM,
279 },
Magnus Damm07905552008-12-19 12:02:16 +0900280 [1] = {
281 .start = 28,
282 .flags = IORESOURCE_IRQ,
283 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900284};
285
286static struct platform_device migor_lcdc_device = {
287 .name = "sh_mobile_lcdc_fb",
288 .num_resources = ARRAY_SIZE(migor_lcdc_resources),
289 .resource = migor_lcdc_resources,
290 .dev = {
291 .platform_data = &sh_mobile_lcdc_info,
292 },
293};
294
Magnus Damm17655342008-07-28 18:51:01 +0900295static struct clk *camera_clk;
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900296static DEFINE_MUTEX(camera_lock);
Magnus Damm17655342008-07-28 18:51:01 +0900297
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900298static void camera_power_on(int is_tw)
Magnus Damm17655342008-07-28 18:51:01 +0900299{
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900300 mutex_lock(&camera_lock);
301
Magnus Damm22ee3ba2008-10-22 18:25:39 +0900302 /* Use 10 MHz VIO_CKO instead of 24 MHz to work
303 * around signal quality issues on Panel Board V2.1.
304 */
Magnus Damm17655342008-07-28 18:51:01 +0900305 camera_clk = clk_get(NULL, "video_clk");
Magnus Damm22ee3ba2008-10-22 18:25:39 +0900306 clk_set_rate(camera_clk, 10000000);
Magnus Damm17655342008-07-28 18:51:01 +0900307 clk_enable(camera_clk); /* start VIO_CKO */
308
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900309 /* use VIO_RST to take camera out of reset */
Magnus Damm17655342008-07-28 18:51:01 +0900310 mdelay(10);
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900311 if (is_tw) {
312 gpio_set_value(GPIO_PTT2, 0);
313 gpio_set_value(GPIO_PTT0, 0);
314 } else {
315 gpio_set_value(GPIO_PTT0, 1);
316 }
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900317 gpio_set_value(GPIO_PTT3, 0);
Magnus Damm17655342008-07-28 18:51:01 +0900318 mdelay(10);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900319 gpio_set_value(GPIO_PTT3, 1);
Magnus Damm4545bfa2008-12-10 17:02:13 +0900320 mdelay(10); /* wait to let chip come out of reset */
Magnus Damm17655342008-07-28 18:51:01 +0900321}
322
323static void camera_power_off(void)
324{
325 clk_disable(camera_clk); /* stop VIO_CKO */
326 clk_put(camera_clk);
327
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900328 gpio_set_value(GPIO_PTT3, 0);
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900329 mutex_unlock(&camera_lock);
Magnus Damm17655342008-07-28 18:51:01 +0900330}
331
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900332static int ov7725_power(struct device *dev, int mode)
333{
334 if (mode)
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900335 camera_power_on(0);
336 else
337 camera_power_off();
338
339 return 0;
340}
341
342static int tw9910_power(struct device *dev, int mode)
343{
344 if (mode)
345 camera_power_on(1);
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900346 else
347 camera_power_off();
348
349 return 0;
350}
351
Magnus Damm17655342008-07-28 18:51:01 +0900352static struct sh_mobile_ceu_info sh_mobile_ceu_info = {
353 .flags = SOCAM_MASTER | SOCAM_DATAWIDTH_8 | SOCAM_PCLK_SAMPLE_RISING \
354 | SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH,
Magnus Damm17655342008-07-28 18:51:01 +0900355};
356
357static struct resource migor_ceu_resources[] = {
358 [0] = {
359 .name = "CEU",
360 .start = 0xfe910000,
361 .end = 0xfe91009f,
362 .flags = IORESOURCE_MEM,
363 },
364 [1] = {
365 .start = 52,
366 .flags = IORESOURCE_IRQ,
367 },
368 [2] = {
369 /* place holder for contiguous memory */
370 },
371};
372
373static struct platform_device migor_ceu_device = {
374 .name = "sh_mobile_ceu",
Magnus Damma42b6dd2008-10-31 20:21:44 +0900375 .id = 0, /* "ceu0" clock */
Magnus Damm17655342008-07-28 18:51:01 +0900376 .num_resources = ARRAY_SIZE(migor_ceu_resources),
377 .resource = migor_ceu_resources,
378 .dev = {
379 .platform_data = &sh_mobile_ceu_info,
380 },
381};
382
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900383static struct ov772x_camera_info ov7725_info = {
384 .buswidth = SOCAM_DATAWIDTH_8,
385 .link = {
386 .power = ov7725_power,
387 },
388};
389
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900390static struct tw9910_video_info tw9910_info = {
391 .buswidth = SOCAM_DATAWIDTH_8,
392 .mpout = TW9910_MPO_FIELD,
393 .link = {
394 .power = tw9910_power,
395 }
396};
397
Magnus Damm70f784e2008-02-07 00:38:24 +0900398static struct platform_device *migor_devices[] __initdata = {
399 &smc91x_eth_device,
Magnus Damm92cfeb62008-03-04 15:23:45 -0800400 &sh_keysc_device,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900401 &migor_lcdc_device,
Magnus Damm17655342008-07-28 18:51:01 +0900402 &migor_ceu_device,
Magnus Dammb8808782008-03-21 18:43:55 +0900403 &migor_nor_flash_device,
Magnus Damm3c803a92008-03-21 18:44:04 +0900404 &migor_nand_flash_device,
Magnus Damm70f784e2008-02-07 00:38:24 +0900405};
406
Magnus Damm17655342008-07-28 18:51:01 +0900407static struct i2c_board_info migor_i2c_devices[] = {
Magnus Damm57795862008-03-25 17:24:31 +0900408 {
Jean Delvare3760f732008-04-29 23:11:40 +0200409 I2C_BOARD_INFO("rs5c372b", 0x32),
Magnus Damm57795862008-03-25 17:24:31 +0900410 },
Magnus Damm67908ab2008-03-25 17:30:45 +0900411 {
412 I2C_BOARD_INFO("migor_ts", 0x51),
413 .irq = 38, /* IRQ6 */
414 },
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900415 {
416 I2C_BOARD_INFO("ov772x", 0x21),
417 .platform_data = &ov7725_info,
418 },
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900419 {
420 I2C_BOARD_INFO("tw9910", 0x45),
421 .platform_data = &tw9910_info,
422 },
Magnus Damm0c6111e2008-03-25 17:20:24 +0900423};
424
Magnus Damm70f784e2008-02-07 00:38:24 +0900425static int __init migor_devices_setup(void)
426{
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900427 /* Lit D11 LED */
428 gpio_request(GPIO_PTJ7, NULL);
429 gpio_direction_output(GPIO_PTJ7, 1);
430 gpio_export(GPIO_PTJ7, 0);
431
432 /* Lit D12 LED */
433 gpio_request(GPIO_PTJ5, NULL);
434 gpio_direction_output(GPIO_PTJ5, 1);
435 gpio_export(GPIO_PTJ5, 0);
436
Magnus Damma30c89a2008-10-09 18:41:34 +0900437 /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900438 gpio_request(GPIO_FN_IRQ0, NULL);
Magnus Damma30c89a2008-10-09 18:41:34 +0900439 ctrl_outl(0x00003400, BSC_CS4BCR);
440 ctrl_outl(0x00110080, BSC_CS4WCR);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900441
442 /* KEYSC */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900443 gpio_request(GPIO_FN_KEYOUT0, NULL);
444 gpio_request(GPIO_FN_KEYOUT1, NULL);
445 gpio_request(GPIO_FN_KEYOUT2, NULL);
446 gpio_request(GPIO_FN_KEYOUT3, NULL);
447 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
448 gpio_request(GPIO_FN_KEYIN1, NULL);
449 gpio_request(GPIO_FN_KEYIN2, NULL);
450 gpio_request(GPIO_FN_KEYIN3, NULL);
451 gpio_request(GPIO_FN_KEYIN4, NULL);
452 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
453
454 /* NAND Flash */
455 gpio_request(GPIO_FN_CS6A_CE2B, NULL);
456 ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR);
457 gpio_request(GPIO_PTA1, NULL);
458 gpio_direction_input(GPIO_PTA1);
459
460 /* Touch Panel */
461 gpio_request(GPIO_FN_IRQ6, NULL);
462
463 /* LCD Panel */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900464#ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */
465 gpio_request(GPIO_FN_LCDD17, NULL);
466 gpio_request(GPIO_FN_LCDD16, NULL);
467 gpio_request(GPIO_FN_LCDD15, NULL);
468 gpio_request(GPIO_FN_LCDD14, NULL);
469 gpio_request(GPIO_FN_LCDD13, NULL);
470 gpio_request(GPIO_FN_LCDD12, NULL);
471 gpio_request(GPIO_FN_LCDD11, NULL);
472 gpio_request(GPIO_FN_LCDD10, NULL);
473 gpio_request(GPIO_FN_LCDD8, NULL);
474 gpio_request(GPIO_FN_LCDD7, NULL);
475 gpio_request(GPIO_FN_LCDD6, NULL);
476 gpio_request(GPIO_FN_LCDD5, NULL);
477 gpio_request(GPIO_FN_LCDD4, NULL);
478 gpio_request(GPIO_FN_LCDD3, NULL);
479 gpio_request(GPIO_FN_LCDD2, NULL);
480 gpio_request(GPIO_FN_LCDD1, NULL);
481 gpio_request(GPIO_FN_LCDRS, NULL);
482 gpio_request(GPIO_FN_LCDCS, NULL);
483 gpio_request(GPIO_FN_LCDRD, NULL);
484 gpio_request(GPIO_FN_LCDWR, NULL);
485 gpio_request(GPIO_PTH2, NULL); /* LCD_DON */
486 gpio_direction_output(GPIO_PTH2, 1);
487#endif
488#ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */
489 gpio_request(GPIO_FN_LCDD15, NULL);
490 gpio_request(GPIO_FN_LCDD14, NULL);
491 gpio_request(GPIO_FN_LCDD13, NULL);
492 gpio_request(GPIO_FN_LCDD12, NULL);
493 gpio_request(GPIO_FN_LCDD11, NULL);
494 gpio_request(GPIO_FN_LCDD10, NULL);
495 gpio_request(GPIO_FN_LCDD9, NULL);
496 gpio_request(GPIO_FN_LCDD8, NULL);
497 gpio_request(GPIO_FN_LCDD7, NULL);
498 gpio_request(GPIO_FN_LCDD6, NULL);
499 gpio_request(GPIO_FN_LCDD5, NULL);
500 gpio_request(GPIO_FN_LCDD4, NULL);
501 gpio_request(GPIO_FN_LCDD3, NULL);
502 gpio_request(GPIO_FN_LCDD2, NULL);
503 gpio_request(GPIO_FN_LCDD1, NULL);
504 gpio_request(GPIO_FN_LCDD0, NULL);
505 gpio_request(GPIO_FN_LCDLCLK, NULL);
506 gpio_request(GPIO_FN_LCDDCK, NULL);
507 gpio_request(GPIO_FN_LCDVEPWC, NULL);
508 gpio_request(GPIO_FN_LCDVCPWC, NULL);
509 gpio_request(GPIO_FN_LCDVSYN, NULL);
510 gpio_request(GPIO_FN_LCDHSYN, NULL);
511 gpio_request(GPIO_FN_LCDDISP, NULL);
512 gpio_request(GPIO_FN_LCDDON, NULL);
513#endif
514
515 /* CEU */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900516 gpio_request(GPIO_FN_VIO_CLK2, NULL);
517 gpio_request(GPIO_FN_VIO_VD2, NULL);
518 gpio_request(GPIO_FN_VIO_HD2, NULL);
519 gpio_request(GPIO_FN_VIO_FLD, NULL);
520 gpio_request(GPIO_FN_VIO_CKO, NULL);
521 gpio_request(GPIO_FN_VIO_D15, NULL);
522 gpio_request(GPIO_FN_VIO_D14, NULL);
523 gpio_request(GPIO_FN_VIO_D13, NULL);
524 gpio_request(GPIO_FN_VIO_D12, NULL);
525 gpio_request(GPIO_FN_VIO_D11, NULL);
526 gpio_request(GPIO_FN_VIO_D10, NULL);
527 gpio_request(GPIO_FN_VIO_D9, NULL);
528 gpio_request(GPIO_FN_VIO_D8, NULL);
529
530 gpio_request(GPIO_PTT3, NULL); /* VIO_RST */
531 gpio_direction_output(GPIO_PTT3, 0);
532 gpio_request(GPIO_PTT2, NULL); /* TV_IN_EN */
533 gpio_direction_output(GPIO_PTT2, 1);
534 gpio_request(GPIO_PTT0, NULL); /* CAM_EN */
535#ifdef CONFIG_SH_MIGOR_RTA_WVGA
536 gpio_direction_output(GPIO_PTT0, 0);
537#else
538 gpio_direction_output(GPIO_PTT0, 1);
539#endif
540 ctrl_outw(ctrl_inw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */
Magnus Damm17655342008-07-28 18:51:01 +0900541
542 platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20);
Magnus Damm6c7d8262008-07-17 19:16:11 +0900543
Magnus Damm0c6111e2008-03-25 17:20:24 +0900544 i2c_register_board_info(0, migor_i2c_devices,
545 ARRAY_SIZE(migor_i2c_devices));
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900546
Magnus Damm70f784e2008-02-07 00:38:24 +0900547 return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices));
548}
549__initcall(migor_devices_setup);