Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 1 | /* |
| 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 Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 13 | #include <linux/input.h> |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 14 | #include <linux/mtd/physmap.h> |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 15 | #include <linux/mtd/nand.h> |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 16 | #include <linux/i2c.h> |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 17 | #include <linux/smc91x.h> |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 18 | #include <linux/delay.h> |
| 19 | #include <linux/clk.h> |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 20 | #include <linux/gpio.h> |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 21 | #include <media/sh_mobile_ceu.h> |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 22 | #include <media/ov772x.h> |
Paul Mundt | 225c9a8 | 2008-10-01 16:24:32 +0900 | [diff] [blame] | 23 | #include <video/sh_mobile_lcdc.h> |
Magnus Damm | 6c7d826 | 2008-07-17 19:16:11 +0900 | [diff] [blame] | 24 | #include <asm/clock.h> |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 25 | #include <asm/machvec.h> |
| 26 | #include <asm/io.h> |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 27 | #include <asm/sh_keysc.h> |
Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 28 | #include <mach/migor.h> |
Paul Mundt | f727565 | 2008-10-20 12:04:53 +0900 | [diff] [blame] | 29 | #include <cpu/sh7722.h> |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 30 | |
| 31 | /* Address IRQ Size Bus Description |
| 32 | * 0x00000000 64MB 16 NOR Flash (SP29PL256N) |
| 33 | * 0x0c000000 64MB 64 SDRAM (2xK4M563233G) |
| 34 | * 0x10000000 IRQ0 16 Ethernet (SMC91C111) |
| 35 | * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596) |
| 36 | * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A) |
| 37 | */ |
| 38 | |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 39 | static struct smc91x_platdata smc91x_info = { |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 40 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 41 | }; |
| 42 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 43 | static struct resource smc91x_eth_resources[] = { |
| 44 | [0] = { |
Magnus Damm | b026a23 | 2008-03-21 18:43:46 +0900 | [diff] [blame] | 45 | .name = "SMC91C111" , |
| 46 | .start = 0x10000300, |
| 47 | .end = 0x1000030f, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 48 | .flags = IORESOURCE_MEM, |
| 49 | }, |
| 50 | [1] = { |
| 51 | .start = 32, /* IRQ0 */ |
Eric Miao | d280ead | 2008-06-06 17:13:02 +0800 | [diff] [blame] | 52 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 53 | }, |
| 54 | }; |
| 55 | |
| 56 | static struct platform_device smc91x_eth_device = { |
| 57 | .name = "smc91x", |
| 58 | .num_resources = ARRAY_SIZE(smc91x_eth_resources), |
| 59 | .resource = smc91x_eth_resources, |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 60 | .dev = { |
| 61 | .platform_data = &smc91x_info, |
| 62 | }, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 63 | }; |
| 64 | |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 65 | static struct sh_keysc_info sh_keysc_info = { |
| 66 | .mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */ |
| 67 | .scan_timing = 3, |
| 68 | .delay = 5, |
| 69 | .keycodes = { |
| 70 | 0, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER, |
| 71 | 0, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1, |
| 72 | 0, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, |
| 73 | 0, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0, |
| 74 | 0, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD, |
| 75 | }, |
| 76 | }; |
| 77 | |
| 78 | static struct resource sh_keysc_resources[] = { |
| 79 | [0] = { |
| 80 | .start = 0x044b0000, |
| 81 | .end = 0x044b000f, |
| 82 | .flags = IORESOURCE_MEM, |
| 83 | }, |
| 84 | [1] = { |
| 85 | .start = 79, |
| 86 | .flags = IORESOURCE_IRQ, |
| 87 | }, |
| 88 | }; |
| 89 | |
| 90 | static struct platform_device sh_keysc_device = { |
| 91 | .name = "sh_keysc", |
Magnus Damm | 090d951 | 2008-10-31 20:21:23 +0900 | [diff] [blame] | 92 | .id = 0, /* "keysc0" clock */ |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 93 | .num_resources = ARRAY_SIZE(sh_keysc_resources), |
| 94 | .resource = sh_keysc_resources, |
| 95 | .dev = { |
| 96 | .platform_data = &sh_keysc_info, |
| 97 | }, |
| 98 | }; |
| 99 | |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 100 | static struct mtd_partition migor_nor_flash_partitions[] = |
| 101 | { |
| 102 | { |
| 103 | .name = "uboot", |
| 104 | .offset = 0, |
| 105 | .size = (1 * 1024 * 1024), |
| 106 | .mask_flags = MTD_WRITEABLE, /* Read-only */ |
| 107 | }, |
| 108 | { |
| 109 | .name = "rootfs", |
| 110 | .offset = MTDPART_OFS_APPEND, |
| 111 | .size = (15 * 1024 * 1024), |
| 112 | }, |
| 113 | { |
| 114 | .name = "other", |
| 115 | .offset = MTDPART_OFS_APPEND, |
| 116 | .size = MTDPART_SIZ_FULL, |
| 117 | }, |
| 118 | }; |
| 119 | |
| 120 | static struct physmap_flash_data migor_nor_flash_data = { |
| 121 | .width = 2, |
| 122 | .parts = migor_nor_flash_partitions, |
| 123 | .nr_parts = ARRAY_SIZE(migor_nor_flash_partitions), |
| 124 | }; |
| 125 | |
| 126 | static struct resource migor_nor_flash_resources[] = { |
| 127 | [0] = { |
| 128 | .name = "NOR Flash", |
| 129 | .start = 0x00000000, |
| 130 | .end = 0x03ffffff, |
| 131 | .flags = IORESOURCE_MEM, |
| 132 | } |
| 133 | }; |
| 134 | |
| 135 | static struct platform_device migor_nor_flash_device = { |
| 136 | .name = "physmap-flash", |
| 137 | .resource = migor_nor_flash_resources, |
| 138 | .num_resources = ARRAY_SIZE(migor_nor_flash_resources), |
| 139 | .dev = { |
| 140 | .platform_data = &migor_nor_flash_data, |
| 141 | }, |
| 142 | }; |
| 143 | |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 144 | static struct mtd_partition migor_nand_flash_partitions[] = { |
| 145 | { |
| 146 | .name = "nanddata1", |
| 147 | .offset = 0x0, |
| 148 | .size = 512 * 1024 * 1024, |
| 149 | }, |
| 150 | { |
| 151 | .name = "nanddata2", |
| 152 | .offset = MTDPART_OFS_APPEND, |
| 153 | .size = 512 * 1024 * 1024, |
| 154 | }, |
| 155 | }; |
| 156 | |
| 157 | static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd, |
| 158 | unsigned int ctrl) |
| 159 | { |
| 160 | struct nand_chip *chip = mtd->priv; |
| 161 | |
| 162 | if (cmd == NAND_CMD_NONE) |
| 163 | return; |
| 164 | |
| 165 | if (ctrl & NAND_CLE) |
| 166 | writeb(cmd, chip->IO_ADDR_W + 0x00400000); |
| 167 | else if (ctrl & NAND_ALE) |
| 168 | writeb(cmd, chip->IO_ADDR_W + 0x00800000); |
| 169 | else |
| 170 | writeb(cmd, chip->IO_ADDR_W); |
| 171 | } |
| 172 | |
| 173 | static int migor_nand_flash_ready(struct mtd_info *mtd) |
| 174 | { |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 175 | return gpio_get_value(GPIO_PTA1); /* NAND_RBn */ |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | struct platform_nand_data migor_nand_flash_data = { |
| 179 | .chip = { |
| 180 | .nr_chips = 1, |
| 181 | .partitions = migor_nand_flash_partitions, |
| 182 | .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions), |
| 183 | .chip_delay = 20, |
| 184 | .part_probe_types = (const char *[]) { "cmdlinepart", NULL }, |
| 185 | }, |
| 186 | .ctrl = { |
| 187 | .dev_ready = migor_nand_flash_ready, |
| 188 | .cmd_ctrl = migor_nand_flash_cmd_ctl, |
| 189 | }, |
| 190 | }; |
| 191 | |
| 192 | static struct resource migor_nand_flash_resources[] = { |
| 193 | [0] = { |
| 194 | .name = "NAND Flash", |
| 195 | .start = 0x18000000, |
| 196 | .end = 0x18ffffff, |
| 197 | .flags = IORESOURCE_MEM, |
| 198 | }, |
| 199 | }; |
| 200 | |
| 201 | static struct platform_device migor_nand_flash_device = { |
| 202 | .name = "gen_nand", |
| 203 | .resource = migor_nand_flash_resources, |
| 204 | .num_resources = ARRAY_SIZE(migor_nand_flash_resources), |
| 205 | .dev = { |
| 206 | .platform_data = &migor_nand_flash_data, |
| 207 | } |
| 208 | }; |
| 209 | |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 210 | static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = { |
| 211 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA |
| 212 | .clock_source = LCDC_CLK_BUS, |
| 213 | .ch[0] = { |
| 214 | .chan = LCDC_CHAN_MAINLCD, |
| 215 | .bpp = 16, |
| 216 | .interface_type = RGB16, |
| 217 | .clock_divider = 2, |
| 218 | .lcd_cfg = { |
| 219 | .name = "LB070WV1", |
| 220 | .xres = 800, |
| 221 | .yres = 480, |
| 222 | .left_margin = 64, |
| 223 | .right_margin = 16, |
| 224 | .hsync_len = 120, |
| 225 | .upper_margin = 1, |
| 226 | .lower_margin = 17, |
| 227 | .vsync_len = 2, |
| 228 | .sync = 0, |
| 229 | }, |
Magnus Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 230 | .lcd_size_cfg = { /* 7.0 inch */ |
| 231 | .width = 152, |
| 232 | .height = 91, |
| 233 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 234 | } |
| 235 | #endif |
| 236 | #ifdef CONFIG_SH_MIGOR_QVGA |
| 237 | .clock_source = LCDC_CLK_PERIPHERAL, |
| 238 | .ch[0] = { |
| 239 | .chan = LCDC_CHAN_MAINLCD, |
| 240 | .bpp = 16, |
| 241 | .interface_type = SYS16A, |
| 242 | .clock_divider = 10, |
| 243 | .lcd_cfg = { |
| 244 | .name = "PH240320T", |
| 245 | .xres = 320, |
| 246 | .yres = 240, |
| 247 | .left_margin = 0, |
| 248 | .right_margin = 16, |
| 249 | .hsync_len = 8, |
| 250 | .upper_margin = 1, |
| 251 | .lower_margin = 17, |
| 252 | .vsync_len = 2, |
| 253 | .sync = FB_SYNC_HOR_HIGH_ACT, |
| 254 | }, |
Magnus Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 255 | .lcd_size_cfg = { /* 2.4 inch */ |
| 256 | .width = 49, |
| 257 | .height = 37, |
| 258 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 259 | .board_cfg = { |
| 260 | .setup_sys = migor_lcd_qvga_setup, |
| 261 | }, |
| 262 | .sys_bus_cfg = { |
| 263 | .ldmt2r = 0x06000a09, |
| 264 | .ldmt3r = 0x180e3418, |
Magnus Damm | b5868e8 | 2008-12-19 15:34:50 +0900 | [diff] [blame] | 265 | /* set 1s delay to encourage fsync() */ |
| 266 | .deferred_io_msec = 1000, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 267 | }, |
| 268 | } |
| 269 | #endif |
| 270 | }; |
| 271 | |
| 272 | static struct resource migor_lcdc_resources[] = { |
| 273 | [0] = { |
| 274 | .name = "LCDC", |
| 275 | .start = 0xfe940000, /* P4-only space */ |
| 276 | .end = 0xfe941fff, |
| 277 | .flags = IORESOURCE_MEM, |
| 278 | }, |
Magnus Damm | 0790555 | 2008-12-19 12:02:16 +0900 | [diff] [blame] | 279 | [1] = { |
| 280 | .start = 28, |
| 281 | .flags = IORESOURCE_IRQ, |
| 282 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 283 | }; |
| 284 | |
| 285 | static struct platform_device migor_lcdc_device = { |
| 286 | .name = "sh_mobile_lcdc_fb", |
| 287 | .num_resources = ARRAY_SIZE(migor_lcdc_resources), |
| 288 | .resource = migor_lcdc_resources, |
| 289 | .dev = { |
| 290 | .platform_data = &sh_mobile_lcdc_info, |
| 291 | }, |
| 292 | }; |
| 293 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 294 | static struct clk *camera_clk; |
| 295 | |
| 296 | static void camera_power_on(void) |
| 297 | { |
Magnus Damm | 22ee3ba | 2008-10-22 18:25:39 +0900 | [diff] [blame] | 298 | /* Use 10 MHz VIO_CKO instead of 24 MHz to work |
| 299 | * around signal quality issues on Panel Board V2.1. |
| 300 | */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 301 | camera_clk = clk_get(NULL, "video_clk"); |
Magnus Damm | 22ee3ba | 2008-10-22 18:25:39 +0900 | [diff] [blame] | 302 | clk_set_rate(camera_clk, 10000000); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 303 | clk_enable(camera_clk); /* start VIO_CKO */ |
| 304 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 305 | /* use VIO_RST to take camera out of reset */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 306 | mdelay(10); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 307 | gpio_set_value(GPIO_PTT3, 0); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 308 | mdelay(10); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 309 | gpio_set_value(GPIO_PTT3, 1); |
Magnus Damm | 4545bfa | 2008-12-10 17:02:13 +0900 | [diff] [blame] | 310 | mdelay(10); /* wait to let chip come out of reset */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | static void camera_power_off(void) |
| 314 | { |
| 315 | clk_disable(camera_clk); /* stop VIO_CKO */ |
| 316 | clk_put(camera_clk); |
| 317 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 318 | gpio_set_value(GPIO_PTT3, 0); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 319 | } |
| 320 | |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 321 | static int ov7725_power(struct device *dev, int mode) |
| 322 | { |
| 323 | if (mode) |
| 324 | camera_power_on(); |
| 325 | else |
| 326 | camera_power_off(); |
| 327 | |
| 328 | return 0; |
| 329 | } |
| 330 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 331 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { |
| 332 | .flags = SOCAM_MASTER | SOCAM_DATAWIDTH_8 | SOCAM_PCLK_SAMPLE_RISING \ |
| 333 | | SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_HIGH, |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 334 | }; |
| 335 | |
| 336 | static struct resource migor_ceu_resources[] = { |
| 337 | [0] = { |
| 338 | .name = "CEU", |
| 339 | .start = 0xfe910000, |
| 340 | .end = 0xfe91009f, |
| 341 | .flags = IORESOURCE_MEM, |
| 342 | }, |
| 343 | [1] = { |
| 344 | .start = 52, |
| 345 | .flags = IORESOURCE_IRQ, |
| 346 | }, |
| 347 | [2] = { |
| 348 | /* place holder for contiguous memory */ |
| 349 | }, |
| 350 | }; |
| 351 | |
| 352 | static struct platform_device migor_ceu_device = { |
| 353 | .name = "sh_mobile_ceu", |
Magnus Damm | a42b6dd | 2008-10-31 20:21:44 +0900 | [diff] [blame] | 354 | .id = 0, /* "ceu0" clock */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 355 | .num_resources = ARRAY_SIZE(migor_ceu_resources), |
| 356 | .resource = migor_ceu_resources, |
| 357 | .dev = { |
| 358 | .platform_data = &sh_mobile_ceu_info, |
| 359 | }, |
| 360 | }; |
| 361 | |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 362 | static struct ov772x_camera_info ov7725_info = { |
| 363 | .buswidth = SOCAM_DATAWIDTH_8, |
| 364 | .link = { |
| 365 | .power = ov7725_power, |
| 366 | }, |
| 367 | }; |
| 368 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 369 | static struct platform_device *migor_devices[] __initdata = { |
| 370 | &smc91x_eth_device, |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 371 | &sh_keysc_device, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 372 | &migor_lcdc_device, |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 373 | &migor_ceu_device, |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 374 | &migor_nor_flash_device, |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 375 | &migor_nand_flash_device, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 376 | }; |
| 377 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 378 | static struct i2c_board_info migor_i2c_devices[] = { |
Magnus Damm | 5779586 | 2008-03-25 17:24:31 +0900 | [diff] [blame] | 379 | { |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 380 | I2C_BOARD_INFO("rs5c372b", 0x32), |
Magnus Damm | 5779586 | 2008-03-25 17:24:31 +0900 | [diff] [blame] | 381 | }, |
Magnus Damm | 67908ab | 2008-03-25 17:30:45 +0900 | [diff] [blame] | 382 | { |
| 383 | I2C_BOARD_INFO("migor_ts", 0x51), |
| 384 | .irq = 38, /* IRQ6 */ |
| 385 | }, |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 386 | { |
| 387 | I2C_BOARD_INFO("ov772x", 0x21), |
| 388 | .platform_data = &ov7725_info, |
| 389 | }, |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 390 | }; |
| 391 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 392 | static int __init migor_devices_setup(void) |
| 393 | { |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 394 | /* Lit D11 LED */ |
| 395 | gpio_request(GPIO_PTJ7, NULL); |
| 396 | gpio_direction_output(GPIO_PTJ7, 1); |
| 397 | gpio_export(GPIO_PTJ7, 0); |
| 398 | |
| 399 | /* Lit D12 LED */ |
| 400 | gpio_request(GPIO_PTJ5, NULL); |
| 401 | gpio_direction_output(GPIO_PTJ5, 1); |
| 402 | gpio_export(GPIO_PTJ5, 0); |
| 403 | |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 404 | /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 405 | gpio_request(GPIO_FN_IRQ0, NULL); |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 406 | ctrl_outl(0x00003400, BSC_CS4BCR); |
| 407 | ctrl_outl(0x00110080, BSC_CS4WCR); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 408 | |
| 409 | /* KEYSC */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 410 | gpio_request(GPIO_FN_KEYOUT0, NULL); |
| 411 | gpio_request(GPIO_FN_KEYOUT1, NULL); |
| 412 | gpio_request(GPIO_FN_KEYOUT2, NULL); |
| 413 | gpio_request(GPIO_FN_KEYOUT3, NULL); |
| 414 | gpio_request(GPIO_FN_KEYOUT4_IN6, NULL); |
| 415 | gpio_request(GPIO_FN_KEYIN1, NULL); |
| 416 | gpio_request(GPIO_FN_KEYIN2, NULL); |
| 417 | gpio_request(GPIO_FN_KEYIN3, NULL); |
| 418 | gpio_request(GPIO_FN_KEYIN4, NULL); |
| 419 | gpio_request(GPIO_FN_KEYOUT5_IN5, NULL); |
| 420 | |
| 421 | /* NAND Flash */ |
| 422 | gpio_request(GPIO_FN_CS6A_CE2B, NULL); |
| 423 | ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR); |
| 424 | gpio_request(GPIO_PTA1, NULL); |
| 425 | gpio_direction_input(GPIO_PTA1); |
| 426 | |
| 427 | /* Touch Panel */ |
| 428 | gpio_request(GPIO_FN_IRQ6, NULL); |
| 429 | |
| 430 | /* LCD Panel */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 431 | #ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */ |
| 432 | gpio_request(GPIO_FN_LCDD17, NULL); |
| 433 | gpio_request(GPIO_FN_LCDD16, NULL); |
| 434 | gpio_request(GPIO_FN_LCDD15, NULL); |
| 435 | gpio_request(GPIO_FN_LCDD14, NULL); |
| 436 | gpio_request(GPIO_FN_LCDD13, NULL); |
| 437 | gpio_request(GPIO_FN_LCDD12, NULL); |
| 438 | gpio_request(GPIO_FN_LCDD11, NULL); |
| 439 | gpio_request(GPIO_FN_LCDD10, NULL); |
| 440 | gpio_request(GPIO_FN_LCDD8, NULL); |
| 441 | gpio_request(GPIO_FN_LCDD7, NULL); |
| 442 | gpio_request(GPIO_FN_LCDD6, NULL); |
| 443 | gpio_request(GPIO_FN_LCDD5, NULL); |
| 444 | gpio_request(GPIO_FN_LCDD4, NULL); |
| 445 | gpio_request(GPIO_FN_LCDD3, NULL); |
| 446 | gpio_request(GPIO_FN_LCDD2, NULL); |
| 447 | gpio_request(GPIO_FN_LCDD1, NULL); |
| 448 | gpio_request(GPIO_FN_LCDRS, NULL); |
| 449 | gpio_request(GPIO_FN_LCDCS, NULL); |
| 450 | gpio_request(GPIO_FN_LCDRD, NULL); |
| 451 | gpio_request(GPIO_FN_LCDWR, NULL); |
| 452 | gpio_request(GPIO_PTH2, NULL); /* LCD_DON */ |
| 453 | gpio_direction_output(GPIO_PTH2, 1); |
| 454 | #endif |
| 455 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */ |
| 456 | gpio_request(GPIO_FN_LCDD15, NULL); |
| 457 | gpio_request(GPIO_FN_LCDD14, NULL); |
| 458 | gpio_request(GPIO_FN_LCDD13, NULL); |
| 459 | gpio_request(GPIO_FN_LCDD12, NULL); |
| 460 | gpio_request(GPIO_FN_LCDD11, NULL); |
| 461 | gpio_request(GPIO_FN_LCDD10, NULL); |
| 462 | gpio_request(GPIO_FN_LCDD9, NULL); |
| 463 | gpio_request(GPIO_FN_LCDD8, NULL); |
| 464 | gpio_request(GPIO_FN_LCDD7, NULL); |
| 465 | gpio_request(GPIO_FN_LCDD6, NULL); |
| 466 | gpio_request(GPIO_FN_LCDD5, NULL); |
| 467 | gpio_request(GPIO_FN_LCDD4, NULL); |
| 468 | gpio_request(GPIO_FN_LCDD3, NULL); |
| 469 | gpio_request(GPIO_FN_LCDD2, NULL); |
| 470 | gpio_request(GPIO_FN_LCDD1, NULL); |
| 471 | gpio_request(GPIO_FN_LCDD0, NULL); |
| 472 | gpio_request(GPIO_FN_LCDLCLK, NULL); |
| 473 | gpio_request(GPIO_FN_LCDDCK, NULL); |
| 474 | gpio_request(GPIO_FN_LCDVEPWC, NULL); |
| 475 | gpio_request(GPIO_FN_LCDVCPWC, NULL); |
| 476 | gpio_request(GPIO_FN_LCDVSYN, NULL); |
| 477 | gpio_request(GPIO_FN_LCDHSYN, NULL); |
| 478 | gpio_request(GPIO_FN_LCDDISP, NULL); |
| 479 | gpio_request(GPIO_FN_LCDDON, NULL); |
| 480 | #endif |
| 481 | |
| 482 | /* CEU */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 483 | gpio_request(GPIO_FN_VIO_CLK2, NULL); |
| 484 | gpio_request(GPIO_FN_VIO_VD2, NULL); |
| 485 | gpio_request(GPIO_FN_VIO_HD2, NULL); |
| 486 | gpio_request(GPIO_FN_VIO_FLD, NULL); |
| 487 | gpio_request(GPIO_FN_VIO_CKO, NULL); |
| 488 | gpio_request(GPIO_FN_VIO_D15, NULL); |
| 489 | gpio_request(GPIO_FN_VIO_D14, NULL); |
| 490 | gpio_request(GPIO_FN_VIO_D13, NULL); |
| 491 | gpio_request(GPIO_FN_VIO_D12, NULL); |
| 492 | gpio_request(GPIO_FN_VIO_D11, NULL); |
| 493 | gpio_request(GPIO_FN_VIO_D10, NULL); |
| 494 | gpio_request(GPIO_FN_VIO_D9, NULL); |
| 495 | gpio_request(GPIO_FN_VIO_D8, NULL); |
| 496 | |
| 497 | gpio_request(GPIO_PTT3, NULL); /* VIO_RST */ |
| 498 | gpio_direction_output(GPIO_PTT3, 0); |
| 499 | gpio_request(GPIO_PTT2, NULL); /* TV_IN_EN */ |
| 500 | gpio_direction_output(GPIO_PTT2, 1); |
| 501 | gpio_request(GPIO_PTT0, NULL); /* CAM_EN */ |
| 502 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA |
| 503 | gpio_direction_output(GPIO_PTT0, 0); |
| 504 | #else |
| 505 | gpio_direction_output(GPIO_PTT0, 1); |
| 506 | #endif |
| 507 | ctrl_outw(ctrl_inw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 508 | |
| 509 | platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20); |
Magnus Damm | 6c7d826 | 2008-07-17 19:16:11 +0900 | [diff] [blame] | 510 | |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 511 | i2c_register_board_info(0, migor_i2c_devices, |
| 512 | ARRAY_SIZE(migor_i2c_devices)); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 513 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 514 | return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); |
| 515 | } |
| 516 | __initcall(migor_devices_setup); |