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 | fc1d003 | 2009-11-27 07:32:24 +0000 | [diff] [blame] | 14 | #include <linux/input/sh_keysc.h> |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 15 | #include <linux/mtd/physmap.h> |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 16 | #include <linux/mtd/nand.h> |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 17 | #include <linux/i2c.h> |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 18 | #include <linux/smc91x.h> |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 19 | #include <linux/delay.h> |
| 20 | #include <linux/clk.h> |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 21 | #include <linux/gpio.h> |
Magnus Damm | 70e5c4f | 2009-01-07 20:36:10 +0900 | [diff] [blame] | 22 | #include <video/sh_mobile_lcdc.h> |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 23 | #include <media/sh_mobile_ceu.h> |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 24 | #include <media/ov772x.h> |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 25 | #include <media/tw9910.h> |
Magnus Damm | 6c7d826 | 2008-07-17 19:16:11 +0900 | [diff] [blame] | 26 | #include <asm/clock.h> |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 27 | #include <asm/machvec.h> |
| 28 | #include <asm/io.h> |
Magnus Damm | 13fa551 | 2009-10-29 10:52:31 +0000 | [diff] [blame] | 29 | #include <asm/suspend.h> |
Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 30 | #include <mach/migor.h> |
Paul Mundt | f727565 | 2008-10-20 12:04:53 +0900 | [diff] [blame] | 31 | #include <cpu/sh7722.h> |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 32 | |
| 33 | /* Address IRQ Size Bus Description |
| 34 | * 0x00000000 64MB 16 NOR Flash (SP29PL256N) |
| 35 | * 0x0c000000 64MB 64 SDRAM (2xK4M563233G) |
| 36 | * 0x10000000 IRQ0 16 Ethernet (SMC91C111) |
| 37 | * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596) |
| 38 | * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A) |
| 39 | */ |
| 40 | |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 41 | static struct smc91x_platdata smc91x_info = { |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 42 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 43 | }; |
| 44 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 45 | static struct resource smc91x_eth_resources[] = { |
| 46 | [0] = { |
Magnus Damm | b026a23 | 2008-03-21 18:43:46 +0900 | [diff] [blame] | 47 | .name = "SMC91C111" , |
| 48 | .start = 0x10000300, |
| 49 | .end = 0x1000030f, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 50 | .flags = IORESOURCE_MEM, |
| 51 | }, |
| 52 | [1] = { |
| 53 | .start = 32, /* IRQ0 */ |
Eric Miao | d280ead | 2008-06-06 17:13:02 +0800 | [diff] [blame] | 54 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 55 | }, |
| 56 | }; |
| 57 | |
| 58 | static struct platform_device smc91x_eth_device = { |
| 59 | .name = "smc91x", |
| 60 | .num_resources = ARRAY_SIZE(smc91x_eth_resources), |
| 61 | .resource = smc91x_eth_resources, |
Magnus Damm | 8a3ee0f | 2008-04-23 20:13:59 +0900 | [diff] [blame] | 62 | .dev = { |
| 63 | .platform_data = &smc91x_info, |
| 64 | }, |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 65 | }; |
| 66 | |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 67 | static struct sh_keysc_info sh_keysc_info = { |
| 68 | .mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */ |
| 69 | .scan_timing = 3, |
| 70 | .delay = 5, |
| 71 | .keycodes = { |
| 72 | 0, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER, |
| 73 | 0, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1, |
| 74 | 0, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, |
| 75 | 0, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0, |
| 76 | 0, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD, |
| 77 | }, |
| 78 | }; |
| 79 | |
| 80 | static struct resource sh_keysc_resources[] = { |
| 81 | [0] = { |
| 82 | .start = 0x044b0000, |
| 83 | .end = 0x044b000f, |
| 84 | .flags = IORESOURCE_MEM, |
| 85 | }, |
| 86 | [1] = { |
| 87 | .start = 79, |
| 88 | .flags = IORESOURCE_IRQ, |
| 89 | }, |
| 90 | }; |
| 91 | |
| 92 | static struct platform_device sh_keysc_device = { |
| 93 | .name = "sh_keysc", |
Magnus Damm | 090d951 | 2008-10-31 20:21:23 +0900 | [diff] [blame] | 94 | .id = 0, /* "keysc0" clock */ |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 95 | .num_resources = ARRAY_SIZE(sh_keysc_resources), |
| 96 | .resource = sh_keysc_resources, |
| 97 | .dev = { |
| 98 | .platform_data = &sh_keysc_info, |
| 99 | }, |
Magnus Damm | 2de63cf | 2009-07-31 07:47:35 +0000 | [diff] [blame] | 100 | .archdata = { |
| 101 | .hwblk_id = HWBLK_KEYSC, |
| 102 | }, |
Magnus Damm | 92cfeb6 | 2008-03-04 15:23:45 -0800 | [diff] [blame] | 103 | }; |
| 104 | |
Magnus Damm | b880878 | 2008-03-21 18:43:55 +0900 | [diff] [blame] | 105 | static struct mtd_partition migor_nor_flash_partitions[] = |
| 106 | { |
| 107 | { |
| 108 | .name = "uboot", |
| 109 | .offset = 0, |
| 110 | .size = (1 * 1024 * 1024), |
| 111 | .mask_flags = MTD_WRITEABLE, /* Read-only */ |
| 112 | }, |
| 113 | { |
| 114 | .name = "rootfs", |
| 115 | .offset = MTDPART_OFS_APPEND, |
| 116 | .size = (15 * 1024 * 1024), |
| 117 | }, |
| 118 | { |
| 119 | .name = "other", |
| 120 | .offset = MTDPART_OFS_APPEND, |
| 121 | .size = MTDPART_SIZ_FULL, |
| 122 | }, |
| 123 | }; |
| 124 | |
| 125 | static struct physmap_flash_data migor_nor_flash_data = { |
| 126 | .width = 2, |
| 127 | .parts = migor_nor_flash_partitions, |
| 128 | .nr_parts = ARRAY_SIZE(migor_nor_flash_partitions), |
| 129 | }; |
| 130 | |
| 131 | static struct resource migor_nor_flash_resources[] = { |
| 132 | [0] = { |
| 133 | .name = "NOR Flash", |
| 134 | .start = 0x00000000, |
| 135 | .end = 0x03ffffff, |
| 136 | .flags = IORESOURCE_MEM, |
| 137 | } |
| 138 | }; |
| 139 | |
| 140 | static struct platform_device migor_nor_flash_device = { |
| 141 | .name = "physmap-flash", |
| 142 | .resource = migor_nor_flash_resources, |
| 143 | .num_resources = ARRAY_SIZE(migor_nor_flash_resources), |
| 144 | .dev = { |
| 145 | .platform_data = &migor_nor_flash_data, |
| 146 | }, |
| 147 | }; |
| 148 | |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 149 | static struct mtd_partition migor_nand_flash_partitions[] = { |
| 150 | { |
| 151 | .name = "nanddata1", |
| 152 | .offset = 0x0, |
| 153 | .size = 512 * 1024 * 1024, |
| 154 | }, |
| 155 | { |
| 156 | .name = "nanddata2", |
| 157 | .offset = MTDPART_OFS_APPEND, |
| 158 | .size = 512 * 1024 * 1024, |
| 159 | }, |
| 160 | }; |
| 161 | |
| 162 | static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd, |
| 163 | unsigned int ctrl) |
| 164 | { |
| 165 | struct nand_chip *chip = mtd->priv; |
| 166 | |
| 167 | if (cmd == NAND_CMD_NONE) |
| 168 | return; |
| 169 | |
| 170 | if (ctrl & NAND_CLE) |
| 171 | writeb(cmd, chip->IO_ADDR_W + 0x00400000); |
| 172 | else if (ctrl & NAND_ALE) |
| 173 | writeb(cmd, chip->IO_ADDR_W + 0x00800000); |
| 174 | else |
| 175 | writeb(cmd, chip->IO_ADDR_W); |
| 176 | } |
| 177 | |
| 178 | static int migor_nand_flash_ready(struct mtd_info *mtd) |
| 179 | { |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 180 | return gpio_get_value(GPIO_PTA1); /* NAND_RBn */ |
Magnus Damm | 3c803a9 | 2008-03-21 18:44:04 +0900 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | struct platform_nand_data migor_nand_flash_data = { |
| 184 | .chip = { |
| 185 | .nr_chips = 1, |
| 186 | .partitions = migor_nand_flash_partitions, |
| 187 | .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions), |
| 188 | .chip_delay = 20, |
| 189 | .part_probe_types = (const char *[]) { "cmdlinepart", NULL }, |
| 190 | }, |
| 191 | .ctrl = { |
| 192 | .dev_ready = migor_nand_flash_ready, |
| 193 | .cmd_ctrl = migor_nand_flash_cmd_ctl, |
| 194 | }, |
| 195 | }; |
| 196 | |
| 197 | static struct resource migor_nand_flash_resources[] = { |
| 198 | [0] = { |
| 199 | .name = "NAND Flash", |
| 200 | .start = 0x18000000, |
| 201 | .end = 0x18ffffff, |
| 202 | .flags = IORESOURCE_MEM, |
| 203 | }, |
| 204 | }; |
| 205 | |
| 206 | static struct platform_device migor_nand_flash_device = { |
| 207 | .name = "gen_nand", |
| 208 | .resource = migor_nand_flash_resources, |
| 209 | .num_resources = ARRAY_SIZE(migor_nand_flash_resources), |
| 210 | .dev = { |
| 211 | .platform_data = &migor_nand_flash_data, |
| 212 | } |
| 213 | }; |
| 214 | |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 215 | static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = { |
| 216 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA |
| 217 | .clock_source = LCDC_CLK_BUS, |
| 218 | .ch[0] = { |
| 219 | .chan = LCDC_CHAN_MAINLCD, |
| 220 | .bpp = 16, |
| 221 | .interface_type = RGB16, |
| 222 | .clock_divider = 2, |
| 223 | .lcd_cfg = { |
| 224 | .name = "LB070WV1", |
| 225 | .xres = 800, |
| 226 | .yres = 480, |
| 227 | .left_margin = 64, |
| 228 | .right_margin = 16, |
| 229 | .hsync_len = 120, |
| 230 | .upper_margin = 1, |
| 231 | .lower_margin = 17, |
| 232 | .vsync_len = 2, |
| 233 | .sync = 0, |
| 234 | }, |
Magnus Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 235 | .lcd_size_cfg = { /* 7.0 inch */ |
| 236 | .width = 152, |
| 237 | .height = 91, |
| 238 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 239 | } |
| 240 | #endif |
| 241 | #ifdef CONFIG_SH_MIGOR_QVGA |
| 242 | .clock_source = LCDC_CLK_PERIPHERAL, |
| 243 | .ch[0] = { |
| 244 | .chan = LCDC_CHAN_MAINLCD, |
| 245 | .bpp = 16, |
| 246 | .interface_type = SYS16A, |
| 247 | .clock_divider = 10, |
| 248 | .lcd_cfg = { |
| 249 | .name = "PH240320T", |
| 250 | .xres = 320, |
| 251 | .yres = 240, |
| 252 | .left_margin = 0, |
| 253 | .right_margin = 16, |
| 254 | .hsync_len = 8, |
| 255 | .upper_margin = 1, |
| 256 | .lower_margin = 17, |
| 257 | .vsync_len = 2, |
| 258 | .sync = FB_SYNC_HOR_HIGH_ACT, |
| 259 | }, |
Magnus Damm | ce9c008 | 2008-08-11 15:26:00 +0900 | [diff] [blame] | 260 | .lcd_size_cfg = { /* 2.4 inch */ |
| 261 | .width = 49, |
| 262 | .height = 37, |
| 263 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 264 | .board_cfg = { |
| 265 | .setup_sys = migor_lcd_qvga_setup, |
| 266 | }, |
| 267 | .sys_bus_cfg = { |
| 268 | .ldmt2r = 0x06000a09, |
| 269 | .ldmt3r = 0x180e3418, |
Magnus Damm | b5868e8 | 2008-12-19 15:34:50 +0900 | [diff] [blame] | 270 | /* set 1s delay to encourage fsync() */ |
| 271 | .deferred_io_msec = 1000, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 272 | }, |
| 273 | } |
| 274 | #endif |
| 275 | }; |
| 276 | |
| 277 | static struct resource migor_lcdc_resources[] = { |
| 278 | [0] = { |
| 279 | .name = "LCDC", |
| 280 | .start = 0xfe940000, /* P4-only space */ |
Phil Edworthy | a6f15ad | 2009-09-15 12:00:30 +0000 | [diff] [blame] | 281 | .end = 0xfe942fff, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 282 | .flags = IORESOURCE_MEM, |
| 283 | }, |
Magnus Damm | 0790555 | 2008-12-19 12:02:16 +0900 | [diff] [blame] | 284 | [1] = { |
| 285 | .start = 28, |
| 286 | .flags = IORESOURCE_IRQ, |
| 287 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 288 | }; |
| 289 | |
| 290 | static struct platform_device migor_lcdc_device = { |
| 291 | .name = "sh_mobile_lcdc_fb", |
| 292 | .num_resources = ARRAY_SIZE(migor_lcdc_resources), |
| 293 | .resource = migor_lcdc_resources, |
| 294 | .dev = { |
| 295 | .platform_data = &sh_mobile_lcdc_info, |
| 296 | }, |
Magnus Damm | 2de63cf | 2009-07-31 07:47:35 +0000 | [diff] [blame] | 297 | .archdata = { |
| 298 | .hwblk_id = HWBLK_LCDC, |
| 299 | }, |
Magnus Damm | 8b1285f | 2008-07-28 18:47:30 +0900 | [diff] [blame] | 300 | }; |
| 301 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 302 | static struct clk *camera_clk; |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 303 | static DEFINE_MUTEX(camera_lock); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 304 | |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 305 | static void camera_power_on(int is_tw) |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 306 | { |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 307 | mutex_lock(&camera_lock); |
| 308 | |
Magnus Damm | 22ee3ba | 2008-10-22 18:25:39 +0900 | [diff] [blame] | 309 | /* Use 10 MHz VIO_CKO instead of 24 MHz to work |
| 310 | * around signal quality issues on Panel Board V2.1. |
| 311 | */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 312 | camera_clk = clk_get(NULL, "video_clk"); |
Magnus Damm | 22ee3ba | 2008-10-22 18:25:39 +0900 | [diff] [blame] | 313 | clk_set_rate(camera_clk, 10000000); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 314 | clk_enable(camera_clk); /* start VIO_CKO */ |
| 315 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 316 | /* use VIO_RST to take camera out of reset */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 317 | mdelay(10); |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 318 | if (is_tw) { |
| 319 | gpio_set_value(GPIO_PTT2, 0); |
| 320 | gpio_set_value(GPIO_PTT0, 0); |
| 321 | } else { |
| 322 | gpio_set_value(GPIO_PTT0, 1); |
| 323 | } |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 324 | gpio_set_value(GPIO_PTT3, 0); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 325 | mdelay(10); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 326 | gpio_set_value(GPIO_PTT3, 1); |
Magnus Damm | 4545bfa | 2008-12-10 17:02:13 +0900 | [diff] [blame] | 327 | mdelay(10); /* wait to let chip come out of reset */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | static void camera_power_off(void) |
| 331 | { |
| 332 | clk_disable(camera_clk); /* stop VIO_CKO */ |
| 333 | clk_put(camera_clk); |
| 334 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 335 | gpio_set_value(GPIO_PTT3, 0); |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 336 | mutex_unlock(&camera_lock); |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 337 | } |
| 338 | |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 339 | static int ov7725_power(struct device *dev, int mode) |
| 340 | { |
| 341 | if (mode) |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 342 | camera_power_on(0); |
| 343 | else |
| 344 | camera_power_off(); |
| 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | static int tw9910_power(struct device *dev, int mode) |
| 350 | { |
| 351 | if (mode) |
| 352 | camera_power_on(1); |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 353 | else |
| 354 | camera_power_off(); |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 359 | static struct sh_mobile_ceu_info sh_mobile_ceu_info = { |
Paul Mundt | 6493505 | 2009-04-02 11:25:12 +0900 | [diff] [blame] | 360 | .flags = SH_CEU_FLAG_USE_8BIT_BUS, |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 361 | }; |
| 362 | |
| 363 | static struct resource migor_ceu_resources[] = { |
| 364 | [0] = { |
| 365 | .name = "CEU", |
| 366 | .start = 0xfe910000, |
| 367 | .end = 0xfe91009f, |
| 368 | .flags = IORESOURCE_MEM, |
| 369 | }, |
| 370 | [1] = { |
| 371 | .start = 52, |
| 372 | .flags = IORESOURCE_IRQ, |
| 373 | }, |
| 374 | [2] = { |
| 375 | /* place holder for contiguous memory */ |
| 376 | }, |
| 377 | }; |
| 378 | |
| 379 | static struct platform_device migor_ceu_device = { |
| 380 | .name = "sh_mobile_ceu", |
Magnus Damm | a42b6dd | 2008-10-31 20:21:44 +0900 | [diff] [blame] | 381 | .id = 0, /* "ceu0" clock */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 382 | .num_resources = ARRAY_SIZE(migor_ceu_resources), |
| 383 | .resource = migor_ceu_resources, |
| 384 | .dev = { |
| 385 | .platform_data = &sh_mobile_ceu_info, |
| 386 | }, |
Magnus Damm | 2de63cf | 2009-07-31 07:47:35 +0000 | [diff] [blame] | 387 | .archdata = { |
| 388 | .hwblk_id = HWBLK_CEU, |
| 389 | }, |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 390 | }; |
| 391 | |
Magnus Damm | 2e3fc56 | 2009-10-02 02:22:43 +0000 | [diff] [blame] | 392 | static struct resource sdhi_cn9_resources[] = { |
| 393 | [0] = { |
| 394 | .name = "SDHI", |
| 395 | .start = 0x04ce0000, |
| 396 | .end = 0x04ce01ff, |
| 397 | .flags = IORESOURCE_MEM, |
| 398 | }, |
| 399 | [1] = { |
| 400 | .start = 101, |
| 401 | .flags = IORESOURCE_IRQ, |
| 402 | }, |
Magnus Damm | 70e5c4f | 2009-01-07 20:36:10 +0900 | [diff] [blame] | 403 | }; |
| 404 | |
Magnus Damm | 2e3fc56 | 2009-10-02 02:22:43 +0000 | [diff] [blame] | 405 | static struct platform_device sdhi_cn9_device = { |
| 406 | .name = "sh_mobile_sdhi", |
| 407 | .num_resources = ARRAY_SIZE(sdhi_cn9_resources), |
| 408 | .resource = sdhi_cn9_resources, |
| 409 | .archdata = { |
| 410 | .hwblk_id = HWBLK_SDHI, |
Magnus Damm | 70e5c4f | 2009-01-07 20:36:10 +0900 | [diff] [blame] | 411 | }, |
| 412 | }; |
| 413 | |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 414 | static struct i2c_board_info migor_i2c_devices[] = { |
Magnus Damm | 5779586 | 2008-03-25 17:24:31 +0900 | [diff] [blame] | 415 | { |
Jean Delvare | 3760f73 | 2008-04-29 23:11:40 +0200 | [diff] [blame] | 416 | I2C_BOARD_INFO("rs5c372b", 0x32), |
Magnus Damm | 5779586 | 2008-03-25 17:24:31 +0900 | [diff] [blame] | 417 | }, |
Magnus Damm | 67908ab | 2008-03-25 17:30:45 +0900 | [diff] [blame] | 418 | { |
| 419 | I2C_BOARD_INFO("migor_ts", 0x51), |
| 420 | .irq = 38, /* IRQ6 */ |
| 421 | }, |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 422 | }; |
| 423 | |
| 424 | static struct i2c_board_info migor_i2c_camera[] = { |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 425 | { |
| 426 | I2C_BOARD_INFO("ov772x", 0x21), |
Kuninori Morimoto | ff04ea4 | 2008-12-02 16:38:34 +0900 | [diff] [blame] | 427 | }, |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 428 | { |
| 429 | I2C_BOARD_INFO("tw9910", 0x45), |
Kuninori Morimoto | deae7b8 | 2009-01-05 16:25:16 +0900 | [diff] [blame] | 430 | }, |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 431 | }; |
| 432 | |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 433 | static struct ov772x_camera_info ov7725_info = { |
| 434 | .buswidth = SOCAM_DATAWIDTH_8, |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 435 | }; |
| 436 | |
| 437 | static struct soc_camera_link ov7725_link = { |
| 438 | .power = ov7725_power, |
| 439 | .board_info = &migor_i2c_camera[0], |
| 440 | .i2c_adapter_id = 0, |
| 441 | .module_name = "ov772x", |
| 442 | .priv = &ov7725_info, |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 443 | }; |
| 444 | |
| 445 | static struct tw9910_video_info tw9910_info = { |
| 446 | .buswidth = SOCAM_DATAWIDTH_8, |
| 447 | .mpout = TW9910_MPO_FIELD, |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 448 | }; |
| 449 | |
| 450 | static struct soc_camera_link tw9910_link = { |
| 451 | .power = tw9910_power, |
| 452 | .board_info = &migor_i2c_camera[1], |
| 453 | .i2c_adapter_id = 0, |
| 454 | .module_name = "tw9910", |
| 455 | .priv = &tw9910_info, |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 456 | }; |
| 457 | |
| 458 | static struct platform_device migor_camera[] = { |
| 459 | { |
| 460 | .name = "soc-camera-pdrv", |
| 461 | .id = 0, |
| 462 | .dev = { |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 463 | .platform_data = &ov7725_link, |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 464 | }, |
| 465 | }, { |
| 466 | .name = "soc-camera-pdrv", |
| 467 | .id = 1, |
| 468 | .dev = { |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 469 | .platform_data = &tw9910_link, |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 470 | }, |
| 471 | }, |
| 472 | }; |
| 473 | |
| 474 | static struct platform_device *migor_devices[] __initdata = { |
| 475 | &smc91x_eth_device, |
| 476 | &sh_keysc_device, |
| 477 | &migor_lcdc_device, |
| 478 | &migor_ceu_device, |
| 479 | &migor_nor_flash_device, |
| 480 | &migor_nand_flash_device, |
Magnus Damm | 2e3fc56 | 2009-10-02 02:22:43 +0000 | [diff] [blame] | 481 | &sdhi_cn9_device, |
Guennadi Liakhovetski | 2cb582c | 2009-05-12 15:13:40 +0000 | [diff] [blame] | 482 | &migor_camera[0], |
| 483 | &migor_camera[1], |
| 484 | }; |
| 485 | |
Magnus Damm | 13fa551 | 2009-10-29 10:52:31 +0000 | [diff] [blame] | 486 | extern char migor_sdram_enter_start; |
| 487 | extern char migor_sdram_enter_end; |
| 488 | extern char migor_sdram_leave_start; |
| 489 | extern char migor_sdram_leave_end; |
| 490 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 491 | static int __init migor_devices_setup(void) |
| 492 | { |
Magnus Damm | 13fa551 | 2009-10-29 10:52:31 +0000 | [diff] [blame] | 493 | /* register board specific self-refresh code */ |
| 494 | sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF, |
| 495 | &migor_sdram_enter_start, |
| 496 | &migor_sdram_enter_end, |
| 497 | &migor_sdram_leave_start, |
| 498 | &migor_sdram_leave_end); |
Magnus Damm | 5084071 | 2009-03-10 06:13:22 +0000 | [diff] [blame] | 499 | #ifdef CONFIG_PM |
| 500 | /* Let D11 LED show STATUS0 */ |
| 501 | gpio_request(GPIO_FN_STATUS0, NULL); |
| 502 | |
| 503 | /* Lit D12 LED show PDSTATUS */ |
| 504 | gpio_request(GPIO_FN_PDSTATUS, NULL); |
| 505 | #else |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 506 | /* Lit D11 LED */ |
| 507 | gpio_request(GPIO_PTJ7, NULL); |
| 508 | gpio_direction_output(GPIO_PTJ7, 1); |
| 509 | gpio_export(GPIO_PTJ7, 0); |
| 510 | |
| 511 | /* Lit D12 LED */ |
| 512 | gpio_request(GPIO_PTJ5, NULL); |
| 513 | gpio_direction_output(GPIO_PTJ5, 1); |
| 514 | gpio_export(GPIO_PTJ5, 0); |
Magnus Damm | 5084071 | 2009-03-10 06:13:22 +0000 | [diff] [blame] | 515 | #endif |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 516 | |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 517 | /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 518 | gpio_request(GPIO_FN_IRQ0, NULL); |
Magnus Damm | a30c89a | 2008-10-09 18:41:34 +0900 | [diff] [blame] | 519 | ctrl_outl(0x00003400, BSC_CS4BCR); |
| 520 | ctrl_outl(0x00110080, BSC_CS4WCR); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 521 | |
| 522 | /* KEYSC */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 523 | gpio_request(GPIO_FN_KEYOUT0, NULL); |
| 524 | gpio_request(GPIO_FN_KEYOUT1, NULL); |
| 525 | gpio_request(GPIO_FN_KEYOUT2, NULL); |
| 526 | gpio_request(GPIO_FN_KEYOUT3, NULL); |
| 527 | gpio_request(GPIO_FN_KEYOUT4_IN6, NULL); |
| 528 | gpio_request(GPIO_FN_KEYIN1, NULL); |
| 529 | gpio_request(GPIO_FN_KEYIN2, NULL); |
| 530 | gpio_request(GPIO_FN_KEYIN3, NULL); |
| 531 | gpio_request(GPIO_FN_KEYIN4, NULL); |
| 532 | gpio_request(GPIO_FN_KEYOUT5_IN5, NULL); |
| 533 | |
| 534 | /* NAND Flash */ |
| 535 | gpio_request(GPIO_FN_CS6A_CE2B, NULL); |
| 536 | ctrl_outl((ctrl_inl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR); |
| 537 | gpio_request(GPIO_PTA1, NULL); |
| 538 | gpio_direction_input(GPIO_PTA1); |
| 539 | |
Magnus Damm | 2e3fc56 | 2009-10-02 02:22:43 +0000 | [diff] [blame] | 540 | /* SDHI */ |
| 541 | gpio_request(GPIO_FN_SDHICD, NULL); |
| 542 | gpio_request(GPIO_FN_SDHIWP, NULL); |
| 543 | gpio_request(GPIO_FN_SDHID3, NULL); |
| 544 | gpio_request(GPIO_FN_SDHID2, NULL); |
| 545 | gpio_request(GPIO_FN_SDHID1, NULL); |
| 546 | gpio_request(GPIO_FN_SDHID0, NULL); |
| 547 | gpio_request(GPIO_FN_SDHICMD, NULL); |
| 548 | gpio_request(GPIO_FN_SDHICLK, NULL); |
| 549 | |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 550 | /* Touch Panel */ |
| 551 | gpio_request(GPIO_FN_IRQ6, NULL); |
| 552 | |
| 553 | /* LCD Panel */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 554 | #ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */ |
| 555 | gpio_request(GPIO_FN_LCDD17, NULL); |
| 556 | gpio_request(GPIO_FN_LCDD16, NULL); |
| 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_LCDD8, NULL); |
| 564 | gpio_request(GPIO_FN_LCDD7, NULL); |
| 565 | gpio_request(GPIO_FN_LCDD6, NULL); |
| 566 | gpio_request(GPIO_FN_LCDD5, NULL); |
| 567 | gpio_request(GPIO_FN_LCDD4, NULL); |
| 568 | gpio_request(GPIO_FN_LCDD3, NULL); |
| 569 | gpio_request(GPIO_FN_LCDD2, NULL); |
| 570 | gpio_request(GPIO_FN_LCDD1, NULL); |
| 571 | gpio_request(GPIO_FN_LCDRS, NULL); |
| 572 | gpio_request(GPIO_FN_LCDCS, NULL); |
| 573 | gpio_request(GPIO_FN_LCDRD, NULL); |
| 574 | gpio_request(GPIO_FN_LCDWR, NULL); |
| 575 | gpio_request(GPIO_PTH2, NULL); /* LCD_DON */ |
| 576 | gpio_direction_output(GPIO_PTH2, 1); |
| 577 | #endif |
| 578 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */ |
| 579 | gpio_request(GPIO_FN_LCDD15, NULL); |
| 580 | gpio_request(GPIO_FN_LCDD14, NULL); |
| 581 | gpio_request(GPIO_FN_LCDD13, NULL); |
| 582 | gpio_request(GPIO_FN_LCDD12, NULL); |
| 583 | gpio_request(GPIO_FN_LCDD11, NULL); |
| 584 | gpio_request(GPIO_FN_LCDD10, NULL); |
| 585 | gpio_request(GPIO_FN_LCDD9, NULL); |
| 586 | gpio_request(GPIO_FN_LCDD8, NULL); |
| 587 | gpio_request(GPIO_FN_LCDD7, NULL); |
| 588 | gpio_request(GPIO_FN_LCDD6, NULL); |
| 589 | gpio_request(GPIO_FN_LCDD5, NULL); |
| 590 | gpio_request(GPIO_FN_LCDD4, NULL); |
| 591 | gpio_request(GPIO_FN_LCDD3, NULL); |
| 592 | gpio_request(GPIO_FN_LCDD2, NULL); |
| 593 | gpio_request(GPIO_FN_LCDD1, NULL); |
| 594 | gpio_request(GPIO_FN_LCDD0, NULL); |
| 595 | gpio_request(GPIO_FN_LCDLCLK, NULL); |
| 596 | gpio_request(GPIO_FN_LCDDCK, NULL); |
| 597 | gpio_request(GPIO_FN_LCDVEPWC, NULL); |
| 598 | gpio_request(GPIO_FN_LCDVCPWC, NULL); |
| 599 | gpio_request(GPIO_FN_LCDVSYN, NULL); |
| 600 | gpio_request(GPIO_FN_LCDHSYN, NULL); |
| 601 | gpio_request(GPIO_FN_LCDDISP, NULL); |
| 602 | gpio_request(GPIO_FN_LCDDON, NULL); |
| 603 | #endif |
| 604 | |
| 605 | /* CEU */ |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 606 | gpio_request(GPIO_FN_VIO_CLK2, NULL); |
| 607 | gpio_request(GPIO_FN_VIO_VD2, NULL); |
| 608 | gpio_request(GPIO_FN_VIO_HD2, NULL); |
| 609 | gpio_request(GPIO_FN_VIO_FLD, NULL); |
| 610 | gpio_request(GPIO_FN_VIO_CKO, NULL); |
| 611 | gpio_request(GPIO_FN_VIO_D15, NULL); |
| 612 | gpio_request(GPIO_FN_VIO_D14, NULL); |
| 613 | gpio_request(GPIO_FN_VIO_D13, NULL); |
| 614 | gpio_request(GPIO_FN_VIO_D12, NULL); |
| 615 | gpio_request(GPIO_FN_VIO_D11, NULL); |
| 616 | gpio_request(GPIO_FN_VIO_D10, NULL); |
| 617 | gpio_request(GPIO_FN_VIO_D9, NULL); |
| 618 | gpio_request(GPIO_FN_VIO_D8, NULL); |
| 619 | |
| 620 | gpio_request(GPIO_PTT3, NULL); /* VIO_RST */ |
| 621 | gpio_direction_output(GPIO_PTT3, 0); |
| 622 | gpio_request(GPIO_PTT2, NULL); /* TV_IN_EN */ |
| 623 | gpio_direction_output(GPIO_PTT2, 1); |
| 624 | gpio_request(GPIO_PTT0, NULL); /* CAM_EN */ |
| 625 | #ifdef CONFIG_SH_MIGOR_RTA_WVGA |
| 626 | gpio_direction_output(GPIO_PTT0, 0); |
| 627 | #else |
| 628 | gpio_direction_output(GPIO_PTT0, 1); |
| 629 | #endif |
| 630 | ctrl_outw(ctrl_inw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */ |
Magnus Damm | 1765534 | 2008-07-28 18:51:01 +0900 | [diff] [blame] | 631 | |
| 632 | platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20); |
Magnus Damm | 6c7d826 | 2008-07-17 19:16:11 +0900 | [diff] [blame] | 633 | |
Magnus Damm | 0c6111e | 2008-03-25 17:20:24 +0900 | [diff] [blame] | 634 | i2c_register_board_info(0, migor_i2c_devices, |
| 635 | ARRAY_SIZE(migor_i2c_devices)); |
Magnus Damm | 91b6f3c | 2008-10-08 20:42:01 +0900 | [diff] [blame] | 636 | |
Magnus Damm | 70f784e | 2008-02-07 00:38:24 +0900 | [diff] [blame] | 637 | return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); |
| 638 | } |
Magnus Damm | ba3a170 | 2009-08-13 11:39:02 +0900 | [diff] [blame] | 639 | arch_initcall(migor_devices_setup); |
Magnus Damm | 0ec80fdd | 2009-06-03 08:22:50 +0000 | [diff] [blame] | 640 | |
| 641 | /* Return the board specific boot mode pin configuration */ |
| 642 | static int migor_mode_pins(void) |
| 643 | { |
| 644 | /* MD0=1, MD1=1, MD2=0: Clock Mode 3 |
| 645 | * MD3=0: 16-bit Area0 Bus Width |
| 646 | * MD5=1: Little Endian |
| 647 | * TSTMD=1, MD8=0: Test Mode Disabled |
| 648 | */ |
| 649 | return MODE_PIN0 | MODE_PIN1 | MODE_PIN5; |
| 650 | } |
| 651 | |
| 652 | /* |
| 653 | * The Machine Vector |
| 654 | */ |
| 655 | static struct sh_machine_vector mv_migor __initmv = { |
| 656 | .mv_name = "Migo-R", |
| 657 | .mv_mode_pins = migor_mode_pins, |
| 658 | }; |