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> |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 23 | #include <media/tw9910.h> |
Paul Mundt | 225c9a8 | 2008-10-01 16:24:32 +0900 | [diff] [blame] | 24 | #include <video/sh_mobile_lcdc.h> |
Magnus Damm | 6c7d826 | 2008-07-17 19:16:11 +0900 | [diff] [blame] | 25 | #include <asm/clock.h> |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 26 | #include <asm/machvec.h> |
| 27 | #include <asm/io.h> |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 28 | #include <asm/sh_keysc.h> |
Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 29 | #include <mach/migor.h> |
Paul Mundt | f727565 | 2008-10-20 12:04:53 +0900 | [diff] [blame] | 30 | #include <cpu/sh7722.h> |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 31 | |
| 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 Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 40 | static struct smc91x_platdata smc91x_info = { |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 41 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 42 | }; |
| 43 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 44 | static struct resource smc91x_eth_resources[] = { |
| 45 | [0] = { |
Magnus Damm | b026a23 | 2008-03-21 18:43:46 +0900 | [diff] [blame] | 46 | .name = "SMC91C111" , |
| 47 | .start = 0x10000300, |
| 48 | .end = 0x1000030f, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 49 | .flags = IORESOURCE_MEM, |
| 50 | }, |
| 51 | [1] = { |
| 52 | .start = 32, /* IRQ0 */ |
Eric Miao | d280ead | 2008-06-06 17:13:02 +0800 | [diff] [blame] | 53 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 54 | }, |
| 55 | }; |
| 56 | |
| 57 | static struct platform_device smc91x_eth_device = { |
| 58 | .name = "smc91x", |
| 59 | .num_resources = ARRAY_SIZE(smc91x_eth_resources), |
| 60 | .resource = smc91x_eth_resources, |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 61 | .dev = { |
| 62 | .platform_data = &smc91x_info, |
| 63 | }, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 64 | }; |
| 65 | |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 66 | static 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 | |
| 79 | static 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 | |
| 91 | static struct platform_device sh_keysc_device = { |
| 92 | .name = "sh_keysc", |
Magnus Damm | 090d951 | 2008-10-31 20:21:23 +0900 | [diff] [blame] | 93 | .id = 0, /* "keysc0" clock */ |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 94 | .num_resources = ARRAY_SIZE(sh_keysc_resources), |
| 95 | .resource = sh_keysc_resources, |
| 96 | .dev = { |
| 97 | .platform_data = &sh_keysc_info, |
| 98 | }, |
| 99 | }; |
| 100 | |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 101 | static 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 | |
| 121 | static 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 | |
| 127 | static 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 | |
| 136 | static 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 Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 145 | static 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 | |
| 158 | static 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 | |
| 174 | static int migor_nand_flash_ready(struct mtd_info *mtd) |
| 175 | { |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 176 | return gpio_get_value(GPIO_PTA1); /* NAND_RBn */ |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | struct 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 | |
| 193 | static 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 | |
| 202 | static 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 Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 211 | static 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 Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 231 | .lcd_size_cfg = { /* 7.0 inch */ |
| 232 | .width = 152, |
| 233 | .height = 91, |
| 234 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 235 | } |
| 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 Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 256 | .lcd_size_cfg = { /* 2.4 inch */ |
| 257 | .width = 49, |
| 258 | .height = 37, |
| 259 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 260 | .board_cfg = { |
| 261 | .setup_sys = migor_lcd_qvga_setup, |
| 262 | }, |
| 263 | .sys_bus_cfg = { |
| 264 | .ldmt2r = 0x06000a09, |
| 265 | .ldmt3r = 0x180e3418, |
Magnus Damm | b5868e8 | 2008-12-19 15:34:50 +0900 | [diff] [blame] | 266 | /* set 1s delay to encourage fsync() */ |
| 267 | .deferred_io_msec = 1000, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 268 | }, |
| 269 | } |
| 270 | #endif |
| 271 | }; |
| 272 | |
| 273 | static 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 Damm | 0790555 | 2008-12-19 12:02:16 +0900 | [diff] [blame] | 280 | [1] = { |
| 281 | .start = 28, |
| 282 | .flags = IORESOURCE_IRQ, |
| 283 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 284 | }; |
| 285 | |
| 286 | static 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 Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 295 | static struct clk *camera_clk; |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 296 | static DEFINE_MUTEX(camera_lock); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 297 | |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 298 | static void camera_power_on(int is_tw) |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 299 | { |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 300 | mutex_lock(&camera_lock); |
| 301 | |
Magnus Damm | 22ee3ba | 2008-10-22 18:25:39 +0900 | [diff] [blame] | 302 | /* Use 10 MHz VIO_CKO instead of 24 MHz to work |
| 303 | * around signal quality issues on Panel Board V2.1. |
| 304 | */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 305 | camera_clk = clk_get(NULL, "video_clk"); |
Magnus Damm | 22ee3ba | 2008-10-22 18:25:39 +0900 | [diff] [blame] | 306 | clk_set_rate(camera_clk, 10000000); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 307 | clk_enable(camera_clk); /* start VIO_CKO */ |
| 308 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 309 | /* use VIO_RST to take camera out of reset */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 310 | mdelay(10); |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 311 | 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 Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 317 | gpio_set_value(GPIO_PTT3, 0); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 318 | mdelay(10); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 319 | gpio_set_value(GPIO_PTT3, 1); |
Magnus Damm | 4545bfa | 2008-12-10 17:02:13 +0900 | [diff] [blame] | 320 | mdelay(10); /* wait to let chip come out of reset */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | static void camera_power_off(void) |
| 324 | { |
| 325 | clk_disable(camera_clk); /* stop VIO_CKO */ |
| 326 | clk_put(camera_clk); |
| 327 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 328 | gpio_set_value(GPIO_PTT3, 0); |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 329 | mutex_unlock(&camera_lock); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 330 | } |
| 331 | |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 332 | static int ov7725_power(struct device *dev, int mode) |
| 333 | { |
| 334 | if (mode) |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 335 | camera_power_on(0); |
| 336 | else |
| 337 | camera_power_off(); |
| 338 | |
| 339 | return 0; |
| 340 | } |
| 341 | |
| 342 | static int tw9910_power(struct device *dev, int mode) |
| 343 | { |
| 344 | if (mode) |
| 345 | camera_power_on(1); |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 346 | else |
| 347 | camera_power_off(); |
| 348 | |
| 349 | return 0; |
| 350 | } |
| 351 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 352 | static 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 Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 355 | }; |
| 356 | |
| 357 | static 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 | |
| 373 | static struct platform_device migor_ceu_device = { |
| 374 | .name = "sh_mobile_ceu", |
Magnus Damm | a42b6dd | 2008-10-31 20:21:44 +0900 | [diff] [blame] | 375 | .id = 0, /* "ceu0" clock */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 376 | .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 Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 383 | static struct ov772x_camera_info ov7725_info = { |
| 384 | .buswidth = SOCAM_DATAWIDTH_8, |
| 385 | .link = { |
| 386 | .power = ov7725_power, |
| 387 | }, |
| 388 | }; |
| 389 | |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 390 | static 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 Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 398 | static struct platform_device *migor_devices[] __initdata = { |
| 399 | &smc91x_eth_device, |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 400 | &sh_keysc_device, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 401 | &migor_lcdc_device, |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 402 | &migor_ceu_device, |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 403 | &migor_nor_flash_device, |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 404 | &migor_nand_flash_device, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 405 | }; |
| 406 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 407 | static struct i2c_board_info migor_i2c_devices[] = { |
Magnus Damm | 5779586 | 2008-03-25 17:24:31 +0900 | [diff] [blame] | 408 | { |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 409 | I2C_BOARD_INFO("rs5c372b", 0x32), |
Magnus Damm | 5779586 | 2008-03-25 17:24:31 +0900 | [diff] [blame] | 410 | }, |
Magnus Damm | 67908ab | 2008-03-25 17:30:45 +0900 | [diff] [blame] | 411 | { |
| 412 | I2C_BOARD_INFO("migor_ts", 0x51), |
| 413 | .irq = 38, /* IRQ6 */ |
| 414 | }, |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 415 | { |
| 416 | I2C_BOARD_INFO("ov772x", 0x21), |
| 417 | .platform_data = &ov7725_info, |
| 418 | }, |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 419 | { |
| 420 | I2C_BOARD_INFO("tw9910", 0x45), |
| 421 | .platform_data = &tw9910_info, |
| 422 | }, |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 423 | }; |
| 424 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 425 | static int __init migor_devices_setup(void) |
| 426 | { |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 427 | /* 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 Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 437 | /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 438 | gpio_request(GPIO_FN_IRQ0, NULL); |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 439 | ctrl_outl(0x00003400, BSC_CS4BCR); |
| 440 | ctrl_outl(0x00110080, BSC_CS4WCR); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 441 | |
| 442 | /* KEYSC */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 443 | 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 Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 464 | #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 Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 516 | 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 Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 541 | |
| 542 | platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20); |
Magnus Damm | 6c7d826 | 2008-07-17 19:16:11 +0900 | [diff] [blame] | 543 | |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 544 | i2c_register_board_info(0, migor_i2c_devices, |
| 545 | ARRAY_SIZE(migor_i2c_devices)); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 546 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 547 | return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); |
| 548 | } |
| 549 | __initcall(migor_devices_setup); |