blob: be8f0d94f6f1690cdfcceb637d9892ad1aede530 [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 Damm70e5c4f2009-01-07 20:36:10 +090021#include <linux/spi/spi.h>
22#include <linux/spi/spi_gpio.h>
23#include <video/sh_mobile_lcdc.h>
Magnus Damm17655342008-07-28 18:51:01 +090024#include <media/sh_mobile_ceu.h>
Kuninori Morimotoff04ea42008-12-02 16:38:34 +090025#include <media/ov772x.h>
Kuninori Morimotodeae7b82009-01-05 16:25:16 +090026#include <media/tw9910.h>
Magnus Damm6c7d8262008-07-17 19:16:11 +090027#include <asm/clock.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090028#include <asm/machvec.h>
29#include <asm/io.h>
Magnus Damm92cfeb62008-03-04 15:23:45 -080030#include <asm/sh_keysc.h>
Paul Mundt7639a452008-10-20 13:02:48 +090031#include <mach/migor.h>
Paul Mundtf7275652008-10-20 12:04:53 +090032#include <cpu/sh7722.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090033
34/* Address IRQ Size Bus Description
35 * 0x00000000 64MB 16 NOR Flash (SP29PL256N)
36 * 0x0c000000 64MB 64 SDRAM (2xK4M563233G)
37 * 0x10000000 IRQ0 16 Ethernet (SMC91C111)
38 * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596)
39 * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A)
40 */
41
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090042static struct smc91x_platdata smc91x_info = {
Magnus Damma30c89a2008-10-09 18:41:34 +090043 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090044};
45
Magnus Damm70f784e2008-02-07 00:38:24 +090046static struct resource smc91x_eth_resources[] = {
47 [0] = {
Magnus Dammb026a232008-03-21 18:43:46 +090048 .name = "SMC91C111" ,
49 .start = 0x10000300,
50 .end = 0x1000030f,
Magnus Damm70f784e2008-02-07 00:38:24 +090051 .flags = IORESOURCE_MEM,
52 },
53 [1] = {
54 .start = 32, /* IRQ0 */
Eric Miaod280ead2008-06-06 17:13:02 +080055 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
Magnus Damm70f784e2008-02-07 00:38:24 +090056 },
57};
58
59static struct platform_device smc91x_eth_device = {
60 .name = "smc91x",
61 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
62 .resource = smc91x_eth_resources,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090063 .dev = {
64 .platform_data = &smc91x_info,
65 },
Magnus Damm70f784e2008-02-07 00:38:24 +090066};
67
Magnus Damm92cfeb62008-03-04 15:23:45 -080068static struct sh_keysc_info sh_keysc_info = {
69 .mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */
70 .scan_timing = 3,
71 .delay = 5,
72 .keycodes = {
73 0, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER,
74 0, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1,
75 0, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6,
76 0, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0,
77 0, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD,
78 },
79};
80
81static struct resource sh_keysc_resources[] = {
82 [0] = {
83 .start = 0x044b0000,
84 .end = 0x044b000f,
85 .flags = IORESOURCE_MEM,
86 },
87 [1] = {
88 .start = 79,
89 .flags = IORESOURCE_IRQ,
90 },
91};
92
93static struct platform_device sh_keysc_device = {
94 .name = "sh_keysc",
Magnus Damm090d9512008-10-31 20:21:23 +090095 .id = 0, /* "keysc0" clock */
Magnus Damm92cfeb62008-03-04 15:23:45 -080096 .num_resources = ARRAY_SIZE(sh_keysc_resources),
97 .resource = sh_keysc_resources,
98 .dev = {
99 .platform_data = &sh_keysc_info,
100 },
Magnus Damm2de63cf2009-07-31 07:47:35 +0000101 .archdata = {
102 .hwblk_id = HWBLK_KEYSC,
103 },
Magnus Damm92cfeb62008-03-04 15:23:45 -0800104};
105
Magnus Dammb8808782008-03-21 18:43:55 +0900106static struct mtd_partition migor_nor_flash_partitions[] =
107{
108 {
109 .name = "uboot",
110 .offset = 0,
111 .size = (1 * 1024 * 1024),
112 .mask_flags = MTD_WRITEABLE, /* Read-only */
113 },
114 {
115 .name = "rootfs",
116 .offset = MTDPART_OFS_APPEND,
117 .size = (15 * 1024 * 1024),
118 },
119 {
120 .name = "other",
121 .offset = MTDPART_OFS_APPEND,
122 .size = MTDPART_SIZ_FULL,
123 },
124};
125
126static struct physmap_flash_data migor_nor_flash_data = {
127 .width = 2,
128 .parts = migor_nor_flash_partitions,
129 .nr_parts = ARRAY_SIZE(migor_nor_flash_partitions),
130};
131
132static struct resource migor_nor_flash_resources[] = {
133 [0] = {
134 .name = "NOR Flash",
135 .start = 0x00000000,
136 .end = 0x03ffffff,
137 .flags = IORESOURCE_MEM,
138 }
139};
140
141static struct platform_device migor_nor_flash_device = {
142 .name = "physmap-flash",
143 .resource = migor_nor_flash_resources,
144 .num_resources = ARRAY_SIZE(migor_nor_flash_resources),
145 .dev = {
146 .platform_data = &migor_nor_flash_data,
147 },
148};
149
Magnus Damm3c803a92008-03-21 18:44:04 +0900150static struct mtd_partition migor_nand_flash_partitions[] = {
151 {
152 .name = "nanddata1",
153 .offset = 0x0,
154 .size = 512 * 1024 * 1024,
155 },
156 {
157 .name = "nanddata2",
158 .offset = MTDPART_OFS_APPEND,
159 .size = 512 * 1024 * 1024,
160 },
161};
162
163static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd,
164 unsigned int ctrl)
165{
166 struct nand_chip *chip = mtd->priv;
167
168 if (cmd == NAND_CMD_NONE)
169 return;
170
171 if (ctrl & NAND_CLE)
172 writeb(cmd, chip->IO_ADDR_W + 0x00400000);
173 else if (ctrl & NAND_ALE)
174 writeb(cmd, chip->IO_ADDR_W + 0x00800000);
175 else
176 writeb(cmd, chip->IO_ADDR_W);
177}
178
179static int migor_nand_flash_ready(struct mtd_info *mtd)
180{
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900181 return gpio_get_value(GPIO_PTA1); /* NAND_RBn */
Magnus Damm3c803a92008-03-21 18:44:04 +0900182}
183
184struct platform_nand_data migor_nand_flash_data = {
185 .chip = {
186 .nr_chips = 1,
187 .partitions = migor_nand_flash_partitions,
188 .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions),
189 .chip_delay = 20,
190 .part_probe_types = (const char *[]) { "cmdlinepart", NULL },
191 },
192 .ctrl = {
193 .dev_ready = migor_nand_flash_ready,
194 .cmd_ctrl = migor_nand_flash_cmd_ctl,
195 },
196};
197
198static struct resource migor_nand_flash_resources[] = {
199 [0] = {
200 .name = "NAND Flash",
201 .start = 0x18000000,
202 .end = 0x18ffffff,
203 .flags = IORESOURCE_MEM,
204 },
205};
206
207static struct platform_device migor_nand_flash_device = {
208 .name = "gen_nand",
209 .resource = migor_nand_flash_resources,
210 .num_resources = ARRAY_SIZE(migor_nand_flash_resources),
211 .dev = {
212 .platform_data = &migor_nand_flash_data,
213 }
214};
215
Magnus Damm8b1285f2008-07-28 18:47:30 +0900216static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = {
217#ifdef CONFIG_SH_MIGOR_RTA_WVGA
218 .clock_source = LCDC_CLK_BUS,
219 .ch[0] = {
220 .chan = LCDC_CHAN_MAINLCD,
221 .bpp = 16,
222 .interface_type = RGB16,
223 .clock_divider = 2,
224 .lcd_cfg = {
225 .name = "LB070WV1",
226 .xres = 800,
227 .yres = 480,
228 .left_margin = 64,
229 .right_margin = 16,
230 .hsync_len = 120,
231 .upper_margin = 1,
232 .lower_margin = 17,
233 .vsync_len = 2,
234 .sync = 0,
235 },
Magnus Dammce9c0082008-08-11 15:26:00 +0900236 .lcd_size_cfg = { /* 7.0 inch */
237 .width = 152,
238 .height = 91,
239 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900240 }
241#endif
242#ifdef CONFIG_SH_MIGOR_QVGA
243 .clock_source = LCDC_CLK_PERIPHERAL,
244 .ch[0] = {
245 .chan = LCDC_CHAN_MAINLCD,
246 .bpp = 16,
247 .interface_type = SYS16A,
248 .clock_divider = 10,
249 .lcd_cfg = {
250 .name = "PH240320T",
251 .xres = 320,
252 .yres = 240,
253 .left_margin = 0,
254 .right_margin = 16,
255 .hsync_len = 8,
256 .upper_margin = 1,
257 .lower_margin = 17,
258 .vsync_len = 2,
259 .sync = FB_SYNC_HOR_HIGH_ACT,
260 },
Magnus Dammce9c0082008-08-11 15:26:00 +0900261 .lcd_size_cfg = { /* 2.4 inch */
262 .width = 49,
263 .height = 37,
264 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900265 .board_cfg = {
266 .setup_sys = migor_lcd_qvga_setup,
267 },
268 .sys_bus_cfg = {
269 .ldmt2r = 0x06000a09,
270 .ldmt3r = 0x180e3418,
Magnus Dammb5868e82008-12-19 15:34:50 +0900271 /* set 1s delay to encourage fsync() */
272 .deferred_io_msec = 1000,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900273 },
274 }
275#endif
276};
277
278static struct resource migor_lcdc_resources[] = {
279 [0] = {
280 .name = "LCDC",
281 .start = 0xfe940000, /* P4-only space */
282 .end = 0xfe941fff,
283 .flags = IORESOURCE_MEM,
284 },
Magnus Damm07905552008-12-19 12:02:16 +0900285 [1] = {
286 .start = 28,
287 .flags = IORESOURCE_IRQ,
288 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900289};
290
291static struct platform_device migor_lcdc_device = {
292 .name = "sh_mobile_lcdc_fb",
293 .num_resources = ARRAY_SIZE(migor_lcdc_resources),
294 .resource = migor_lcdc_resources,
295 .dev = {
296 .platform_data = &sh_mobile_lcdc_info,
297 },
Magnus Damm2de63cf2009-07-31 07:47:35 +0000298 .archdata = {
299 .hwblk_id = HWBLK_LCDC,
300 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900301};
302
Magnus Damm17655342008-07-28 18:51:01 +0900303static struct clk *camera_clk;
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900304static DEFINE_MUTEX(camera_lock);
Magnus Damm17655342008-07-28 18:51:01 +0900305
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900306static void camera_power_on(int is_tw)
Magnus Damm17655342008-07-28 18:51:01 +0900307{
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900308 mutex_lock(&camera_lock);
309
Magnus Damm22ee3ba2008-10-22 18:25:39 +0900310 /* Use 10 MHz VIO_CKO instead of 24 MHz to work
311 * around signal quality issues on Panel Board V2.1.
312 */
Magnus Damm17655342008-07-28 18:51:01 +0900313 camera_clk = clk_get(NULL, "video_clk");
Magnus Damm22ee3ba2008-10-22 18:25:39 +0900314 clk_set_rate(camera_clk, 10000000);
Magnus Damm17655342008-07-28 18:51:01 +0900315 clk_enable(camera_clk); /* start VIO_CKO */
316
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900317 /* use VIO_RST to take camera out of reset */
Magnus Damm17655342008-07-28 18:51:01 +0900318 mdelay(10);
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900319 if (is_tw) {
320 gpio_set_value(GPIO_PTT2, 0);
321 gpio_set_value(GPIO_PTT0, 0);
322 } else {
323 gpio_set_value(GPIO_PTT0, 1);
324 }
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900325 gpio_set_value(GPIO_PTT3, 0);
Magnus Damm17655342008-07-28 18:51:01 +0900326 mdelay(10);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900327 gpio_set_value(GPIO_PTT3, 1);
Magnus Damm4545bfa2008-12-10 17:02:13 +0900328 mdelay(10); /* wait to let chip come out of reset */
Magnus Damm17655342008-07-28 18:51:01 +0900329}
330
331static void camera_power_off(void)
332{
333 clk_disable(camera_clk); /* stop VIO_CKO */
334 clk_put(camera_clk);
335
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900336 gpio_set_value(GPIO_PTT3, 0);
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900337 mutex_unlock(&camera_lock);
Magnus Damm17655342008-07-28 18:51:01 +0900338}
339
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900340static int ov7725_power(struct device *dev, int mode)
341{
342 if (mode)
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900343 camera_power_on(0);
344 else
345 camera_power_off();
346
347 return 0;
348}
349
350static int tw9910_power(struct device *dev, int mode)
351{
352 if (mode)
353 camera_power_on(1);
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900354 else
355 camera_power_off();
356
357 return 0;
358}
359
Magnus Damm17655342008-07-28 18:51:01 +0900360static struct sh_mobile_ceu_info sh_mobile_ceu_info = {
Paul Mundt64935052009-04-02 11:25:12 +0900361 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
Magnus Damm17655342008-07-28 18:51:01 +0900362};
363
364static struct resource migor_ceu_resources[] = {
365 [0] = {
366 .name = "CEU",
367 .start = 0xfe910000,
368 .end = 0xfe91009f,
369 .flags = IORESOURCE_MEM,
370 },
371 [1] = {
372 .start = 52,
373 .flags = IORESOURCE_IRQ,
374 },
375 [2] = {
376 /* place holder for contiguous memory */
377 },
378};
379
380static struct platform_device migor_ceu_device = {
381 .name = "sh_mobile_ceu",
Magnus Damma42b6dd2008-10-31 20:21:44 +0900382 .id = 0, /* "ceu0" clock */
Magnus Damm17655342008-07-28 18:51:01 +0900383 .num_resources = ARRAY_SIZE(migor_ceu_resources),
384 .resource = migor_ceu_resources,
385 .dev = {
386 .platform_data = &sh_mobile_ceu_info,
387 },
Magnus Damm2de63cf2009-07-31 07:47:35 +0000388 .archdata = {
389 .hwblk_id = HWBLK_CEU,
390 },
Magnus Damm17655342008-07-28 18:51:01 +0900391};
392
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900393struct spi_gpio_platform_data sdcard_cn9_platform_data = {
394 .sck = GPIO_PTD0,
395 .mosi = GPIO_PTD1,
396 .miso = GPIO_PTD2,
397 .num_chipselect = 1,
398};
399
400static struct platform_device sdcard_cn9_device = {
401 .name = "spi_gpio",
402 .dev = {
403 .platform_data = &sdcard_cn9_platform_data,
404 },
405};
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 },
Guennadi Liakhovetski2cb582c2009-05-12 15:13:40 +0000415};
416
417static struct i2c_board_info migor_i2c_camera[] = {
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900418 {
419 I2C_BOARD_INFO("ov772x", 0x21),
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900420 },
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900421 {
422 I2C_BOARD_INFO("tw9910", 0x45),
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900423 },
Magnus Damm0c6111e2008-03-25 17:20:24 +0900424};
425
Guennadi Liakhovetski2cb582c2009-05-12 15:13:40 +0000426static struct ov772x_camera_info ov7725_info = {
427 .buswidth = SOCAM_DATAWIDTH_8,
428 .link = {
429 .power = ov7725_power,
430 .board_info = &migor_i2c_camera[0],
431 .i2c_adapter_id = 0,
432 .module_name = "ov772x",
433 },
434};
435
436static struct tw9910_video_info tw9910_info = {
437 .buswidth = SOCAM_DATAWIDTH_8,
438 .mpout = TW9910_MPO_FIELD,
439 .link = {
440 .power = tw9910_power,
441 .board_info = &migor_i2c_camera[1],
442 .i2c_adapter_id = 0,
443 .module_name = "tw9910",
444 }
445};
446
447static struct platform_device migor_camera[] = {
448 {
449 .name = "soc-camera-pdrv",
450 .id = 0,
451 .dev = {
452 .platform_data = &ov7725_info.link,
453 },
454 }, {
455 .name = "soc-camera-pdrv",
456 .id = 1,
457 .dev = {
458 .platform_data = &tw9910_info.link,
459 },
460 },
461};
462
463static struct platform_device *migor_devices[] __initdata = {
464 &smc91x_eth_device,
465 &sh_keysc_device,
466 &migor_lcdc_device,
467 &migor_ceu_device,
468 &migor_nor_flash_device,
469 &migor_nand_flash_device,
470 &sdcard_cn9_device,
471 &migor_camera[0],
472 &migor_camera[1],
473};
474
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900475static struct spi_board_info migor_spi_devices[] = {
476 {
477 .modalias = "mmc_spi",
478 .max_speed_hz = 5000000,
479 .chip_select = 0,
480 .controller_data = (void *) GPIO_PTD5,
481 },
482};
483
Magnus Damm70f784e2008-02-07 00:38:24 +0900484static int __init migor_devices_setup(void)
485{
Magnus Damm50840712009-03-10 06:13:22 +0000486
487#ifdef CONFIG_PM
488 /* Let D11 LED show STATUS0 */
489 gpio_request(GPIO_FN_STATUS0, NULL);
490
491 /* Lit D12 LED show PDSTATUS */
492 gpio_request(GPIO_FN_PDSTATUS, NULL);
493#else
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900494 /* Lit D11 LED */
495 gpio_request(GPIO_PTJ7, NULL);
496 gpio_direction_output(GPIO_PTJ7, 1);
497 gpio_export(GPIO_PTJ7, 0);
498
499 /* Lit D12 LED */
500 gpio_request(GPIO_PTJ5, NULL);
501 gpio_direction_output(GPIO_PTJ5, 1);
502 gpio_export(GPIO_PTJ5, 0);
Magnus Damm50840712009-03-10 06:13:22 +0000503#endif
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900504
Magnus Damma30c89a2008-10-09 18:41:34 +0900505 /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900506 gpio_request(GPIO_FN_IRQ0, NULL);
Magnus Damma30c89a2008-10-09 18:41:34 +0900507 ctrl_outl(0x00003400, BSC_CS4BCR);
508 ctrl_outl(0x00110080, BSC_CS4WCR);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900509
510 /* KEYSC */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900511 gpio_request(GPIO_FN_KEYOUT0, NULL);
512 gpio_request(GPIO_FN_KEYOUT1, NULL);
513 gpio_request(GPIO_FN_KEYOUT2, NULL);
514 gpio_request(GPIO_FN_KEYOUT3, NULL);
515 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
516 gpio_request(GPIO_FN_KEYIN1, NULL);
517 gpio_request(GPIO_FN_KEYIN2, NULL);
518 gpio_request(GPIO_FN_KEYIN3, NULL);
519 gpio_request(GPIO_FN_KEYIN4, NULL);
520 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
521
522 /* NAND Flash */
523 gpio_request(GPIO_FN_CS6A_CE2B, NULL);
524 ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR);
525 gpio_request(GPIO_PTA1, NULL);
526 gpio_direction_input(GPIO_PTA1);
527
528 /* Touch Panel */
529 gpio_request(GPIO_FN_IRQ6, NULL);
530
531 /* LCD Panel */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900532#ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */
533 gpio_request(GPIO_FN_LCDD17, NULL);
534 gpio_request(GPIO_FN_LCDD16, NULL);
535 gpio_request(GPIO_FN_LCDD15, NULL);
536 gpio_request(GPIO_FN_LCDD14, NULL);
537 gpio_request(GPIO_FN_LCDD13, NULL);
538 gpio_request(GPIO_FN_LCDD12, NULL);
539 gpio_request(GPIO_FN_LCDD11, NULL);
540 gpio_request(GPIO_FN_LCDD10, NULL);
541 gpio_request(GPIO_FN_LCDD8, NULL);
542 gpio_request(GPIO_FN_LCDD7, NULL);
543 gpio_request(GPIO_FN_LCDD6, NULL);
544 gpio_request(GPIO_FN_LCDD5, NULL);
545 gpio_request(GPIO_FN_LCDD4, NULL);
546 gpio_request(GPIO_FN_LCDD3, NULL);
547 gpio_request(GPIO_FN_LCDD2, NULL);
548 gpio_request(GPIO_FN_LCDD1, NULL);
549 gpio_request(GPIO_FN_LCDRS, NULL);
550 gpio_request(GPIO_FN_LCDCS, NULL);
551 gpio_request(GPIO_FN_LCDRD, NULL);
552 gpio_request(GPIO_FN_LCDWR, NULL);
553 gpio_request(GPIO_PTH2, NULL); /* LCD_DON */
554 gpio_direction_output(GPIO_PTH2, 1);
555#endif
556#ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */
557 gpio_request(GPIO_FN_LCDD15, NULL);
558 gpio_request(GPIO_FN_LCDD14, NULL);
559 gpio_request(GPIO_FN_LCDD13, NULL);
560 gpio_request(GPIO_FN_LCDD12, NULL);
561 gpio_request(GPIO_FN_LCDD11, NULL);
562 gpio_request(GPIO_FN_LCDD10, NULL);
563 gpio_request(GPIO_FN_LCDD9, NULL);
564 gpio_request(GPIO_FN_LCDD8, NULL);
565 gpio_request(GPIO_FN_LCDD7, NULL);
566 gpio_request(GPIO_FN_LCDD6, NULL);
567 gpio_request(GPIO_FN_LCDD5, NULL);
568 gpio_request(GPIO_FN_LCDD4, NULL);
569 gpio_request(GPIO_FN_LCDD3, NULL);
570 gpio_request(GPIO_FN_LCDD2, NULL);
571 gpio_request(GPIO_FN_LCDD1, NULL);
572 gpio_request(GPIO_FN_LCDD0, NULL);
573 gpio_request(GPIO_FN_LCDLCLK, NULL);
574 gpio_request(GPIO_FN_LCDDCK, NULL);
575 gpio_request(GPIO_FN_LCDVEPWC, NULL);
576 gpio_request(GPIO_FN_LCDVCPWC, NULL);
577 gpio_request(GPIO_FN_LCDVSYN, NULL);
578 gpio_request(GPIO_FN_LCDHSYN, NULL);
579 gpio_request(GPIO_FN_LCDDISP, NULL);
580 gpio_request(GPIO_FN_LCDDON, NULL);
581#endif
582
583 /* CEU */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900584 gpio_request(GPIO_FN_VIO_CLK2, NULL);
585 gpio_request(GPIO_FN_VIO_VD2, NULL);
586 gpio_request(GPIO_FN_VIO_HD2, NULL);
587 gpio_request(GPIO_FN_VIO_FLD, NULL);
588 gpio_request(GPIO_FN_VIO_CKO, NULL);
589 gpio_request(GPIO_FN_VIO_D15, NULL);
590 gpio_request(GPIO_FN_VIO_D14, NULL);
591 gpio_request(GPIO_FN_VIO_D13, NULL);
592 gpio_request(GPIO_FN_VIO_D12, NULL);
593 gpio_request(GPIO_FN_VIO_D11, NULL);
594 gpio_request(GPIO_FN_VIO_D10, NULL);
595 gpio_request(GPIO_FN_VIO_D9, NULL);
596 gpio_request(GPIO_FN_VIO_D8, NULL);
597
598 gpio_request(GPIO_PTT3, NULL); /* VIO_RST */
599 gpio_direction_output(GPIO_PTT3, 0);
600 gpio_request(GPIO_PTT2, NULL); /* TV_IN_EN */
601 gpio_direction_output(GPIO_PTT2, 1);
602 gpio_request(GPIO_PTT0, NULL); /* CAM_EN */
603#ifdef CONFIG_SH_MIGOR_RTA_WVGA
604 gpio_direction_output(GPIO_PTT0, 0);
605#else
606 gpio_direction_output(GPIO_PTT0, 1);
607#endif
608 ctrl_outw(ctrl_inw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */
Magnus Damm17655342008-07-28 18:51:01 +0900609
610 platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20);
Magnus Damm6c7d8262008-07-17 19:16:11 +0900611
Magnus Damm0c6111e2008-03-25 17:20:24 +0900612 i2c_register_board_info(0, migor_i2c_devices,
613 ARRAY_SIZE(migor_i2c_devices));
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900614
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900615 spi_register_board_info(migor_spi_devices,
616 ARRAY_SIZE(migor_spi_devices));
617
Magnus Damm70f784e2008-02-07 00:38:24 +0900618 return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices));
619}
Magnus Dammba3a1702009-08-13 11:39:02 +0900620arch_initcall(migor_devices_setup);
Magnus Damm0ec80fdd2009-06-03 08:22:50 +0000621
622/* Return the board specific boot mode pin configuration */
623static int migor_mode_pins(void)
624{
625 /* MD0=1, MD1=1, MD2=0: Clock Mode 3
626 * MD3=0: 16-bit Area0 Bus Width
627 * MD5=1: Little Endian
628 * TSTMD=1, MD8=0: Test Mode Disabled
629 */
630 return MODE_PIN0 | MODE_PIN1 | MODE_PIN5;
631}
632
633/*
634 * The Machine Vector
635 */
636static struct sh_machine_vector mv_migor __initmv = {
637 .mv_name = "Migo-R",
638 .mv_mode_pins = migor_mode_pins,
639};