blob: e4c81195929c3f8b485d5d3eb9995cb03968affc [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 Dammfc1d0032009-11-27 07:32:24 +000014#include <linux/input/sh_keysc.h>
Arnd Hannemann464495e2010-12-28 22:22:35 +000015#include <linux/mmc/host.h>
Guennadi Liakhovetski960b9e72011-03-09 11:29:48 +010016#include <linux/mmc/sh_mobile_sdhi.h>
Magnus Dammb8808782008-03-21 18:43:55 +090017#include <linux/mtd/physmap.h>
Magnus Damm3c803a92008-03-21 18:44:04 +090018#include <linux/mtd/nand.h>
Magnus Damm0c6111e2008-03-25 17:20:24 +090019#include <linux/i2c.h>
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090020#include <linux/smc91x.h>
Magnus Damm17655342008-07-28 18:51:01 +090021#include <linux/delay.h>
22#include <linux/clk.h>
Magnus Damm91b6f3c2008-10-08 20:42:01 +090023#include <linux/gpio.h>
Magnus Damm70e5c4f2009-01-07 20:36:10 +090024#include <video/sh_mobile_lcdc.h>
Magnus Damm17655342008-07-28 18:51:01 +090025#include <media/sh_mobile_ceu.h>
Kuninori Morimotoff04ea42008-12-02 16:38:34 +090026#include <media/ov772x.h>
Kuninori Morimotodeae7b82009-01-05 16:25:16 +090027#include <media/tw9910.h>
Magnus Damm6c7d8262008-07-17 19:16:11 +090028#include <asm/clock.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090029#include <asm/machvec.h>
30#include <asm/io.h>
Magnus Damm13fa5512009-10-29 10:52:31 +000031#include <asm/suspend.h>
Paul Mundt7639a452008-10-20 13:02:48 +090032#include <mach/migor.h>
Paul Mundtf7275652008-10-20 12:04:53 +090033#include <cpu/sh7722.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090034
35/* Address IRQ Size Bus Description
36 * 0x00000000 64MB 16 NOR Flash (SP29PL256N)
37 * 0x0c000000 64MB 64 SDRAM (2xK4M563233G)
38 * 0x10000000 IRQ0 16 Ethernet (SMC91C111)
39 * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596)
40 * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A)
41 */
42
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090043static struct smc91x_platdata smc91x_info = {
Magnus Damma30c89a2008-10-09 18:41:34 +090044 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090045};
46
Magnus Damm70f784e2008-02-07 00:38:24 +090047static struct resource smc91x_eth_resources[] = {
48 [0] = {
Magnus Dammb026a232008-03-21 18:43:46 +090049 .name = "SMC91C111" ,
50 .start = 0x10000300,
51 .end = 0x1000030f,
Magnus Damm70f784e2008-02-07 00:38:24 +090052 .flags = IORESOURCE_MEM,
53 },
54 [1] = {
55 .start = 32, /* IRQ0 */
Eric Miaod280ead2008-06-06 17:13:02 +080056 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
Magnus Damm70f784e2008-02-07 00:38:24 +090057 },
58};
59
60static struct platform_device smc91x_eth_device = {
61 .name = "smc91x",
62 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
63 .resource = smc91x_eth_resources,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090064 .dev = {
65 .platform_data = &smc91x_info,
66 },
Magnus Damm70f784e2008-02-07 00:38:24 +090067};
68
Magnus Damm92cfeb62008-03-04 15:23:45 -080069static struct sh_keysc_info sh_keysc_info = {
70 .mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */
71 .scan_timing = 3,
72 .delay = 5,
73 .keycodes = {
74 0, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER,
75 0, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1,
76 0, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6,
77 0, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0,
78 0, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD,
79 },
80};
81
82static struct resource sh_keysc_resources[] = {
83 [0] = {
84 .start = 0x044b0000,
85 .end = 0x044b000f,
86 .flags = IORESOURCE_MEM,
87 },
88 [1] = {
89 .start = 79,
90 .flags = IORESOURCE_IRQ,
91 },
92};
93
94static struct platform_device sh_keysc_device = {
95 .name = "sh_keysc",
Magnus Damm090d9512008-10-31 20:21:23 +090096 .id = 0, /* "keysc0" clock */
Magnus Damm92cfeb62008-03-04 15:23:45 -080097 .num_resources = ARRAY_SIZE(sh_keysc_resources),
98 .resource = sh_keysc_resources,
99 .dev = {
100 .platform_data = &sh_keysc_info,
101 },
Magnus Damm2de63cf2009-07-31 07:47:35 +0000102 .archdata = {
103 .hwblk_id = HWBLK_KEYSC,
104 },
Magnus Damm92cfeb62008-03-04 15:23:45 -0800105};
106
Magnus Dammb8808782008-03-21 18:43:55 +0900107static struct mtd_partition migor_nor_flash_partitions[] =
108{
109 {
110 .name = "uboot",
111 .offset = 0,
112 .size = (1 * 1024 * 1024),
113 .mask_flags = MTD_WRITEABLE, /* Read-only */
114 },
115 {
116 .name = "rootfs",
117 .offset = MTDPART_OFS_APPEND,
118 .size = (15 * 1024 * 1024),
119 },
120 {
121 .name = "other",
122 .offset = MTDPART_OFS_APPEND,
123 .size = MTDPART_SIZ_FULL,
124 },
125};
126
127static struct physmap_flash_data migor_nor_flash_data = {
128 .width = 2,
129 .parts = migor_nor_flash_partitions,
130 .nr_parts = ARRAY_SIZE(migor_nor_flash_partitions),
131};
132
133static struct resource migor_nor_flash_resources[] = {
134 [0] = {
135 .name = "NOR Flash",
136 .start = 0x00000000,
137 .end = 0x03ffffff,
138 .flags = IORESOURCE_MEM,
139 }
140};
141
142static struct platform_device migor_nor_flash_device = {
143 .name = "physmap-flash",
144 .resource = migor_nor_flash_resources,
145 .num_resources = ARRAY_SIZE(migor_nor_flash_resources),
146 .dev = {
147 .platform_data = &migor_nor_flash_data,
148 },
149};
150
Magnus Damm3c803a92008-03-21 18:44:04 +0900151static struct mtd_partition migor_nand_flash_partitions[] = {
152 {
153 .name = "nanddata1",
154 .offset = 0x0,
155 .size = 512 * 1024 * 1024,
156 },
157 {
158 .name = "nanddata2",
159 .offset = MTDPART_OFS_APPEND,
160 .size = 512 * 1024 * 1024,
161 },
162};
163
164static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd,
165 unsigned int ctrl)
166{
167 struct nand_chip *chip = mtd->priv;
168
169 if (cmd == NAND_CMD_NONE)
170 return;
171
172 if (ctrl & NAND_CLE)
173 writeb(cmd, chip->IO_ADDR_W + 0x00400000);
174 else if (ctrl & NAND_ALE)
175 writeb(cmd, chip->IO_ADDR_W + 0x00800000);
176 else
177 writeb(cmd, chip->IO_ADDR_W);
178}
179
180static int migor_nand_flash_ready(struct mtd_info *mtd)
181{
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900182 return gpio_get_value(GPIO_PTA1); /* NAND_RBn */
Magnus Damm3c803a92008-03-21 18:44:04 +0900183}
184
Kuninori Morimoto30e0cc12010-06-02 00:27:46 +0000185static struct platform_nand_data migor_nand_flash_data = {
Magnus Damm3c803a92008-03-21 18:44:04 +0900186 .chip = {
187 .nr_chips = 1,
188 .partitions = migor_nand_flash_partitions,
189 .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions),
190 .chip_delay = 20,
191 .part_probe_types = (const char *[]) { "cmdlinepart", NULL },
192 },
193 .ctrl = {
194 .dev_ready = migor_nand_flash_ready,
195 .cmd_ctrl = migor_nand_flash_cmd_ctl,
196 },
197};
198
199static struct resource migor_nand_flash_resources[] = {
200 [0] = {
201 .name = "NAND Flash",
202 .start = 0x18000000,
203 .end = 0x18ffffff,
204 .flags = IORESOURCE_MEM,
205 },
206};
207
208static struct platform_device migor_nand_flash_device = {
209 .name = "gen_nand",
210 .resource = migor_nand_flash_resources,
211 .num_resources = ARRAY_SIZE(migor_nand_flash_resources),
212 .dev = {
213 .platform_data = &migor_nand_flash_data,
214 }
215};
216
Jesper Juhle04008e2011-07-09 23:16:22 +0200217static const struct fb_videomode migor_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000218 {
219#if defined(CONFIG_SH_MIGOR_RTA_WVGA)
220 .name = "LB070WV1",
221 .xres = 800,
222 .yres = 480,
223 .left_margin = 64,
224 .right_margin = 16,
225 .hsync_len = 120,
226 .sync = 0,
227#elif defined(CONFIG_SH_MIGOR_QVGA)
228 .name = "PH240320T",
229 .xres = 320,
230 .yres = 240,
231 .left_margin = 0,
232 .right_margin = 16,
233 .hsync_len = 8,
234 .sync = FB_SYNC_HOR_HIGH_ACT,
235#endif
236 .upper_margin = 1,
237 .lower_margin = 17,
238 .vsync_len = 2,
239 },
240};
241
Magnus Damm8b1285f2008-07-28 18:47:30 +0900242static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000243#if defined(CONFIG_SH_MIGOR_RTA_WVGA)
Magnus Damm8b1285f2008-07-28 18:47:30 +0900244 .clock_source = LCDC_CLK_BUS,
245 .ch[0] = {
246 .chan = LCDC_CHAN_MAINLCD,
247 .bpp = 16,
248 .interface_type = RGB16,
249 .clock_divider = 2,
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000250 .lcd_cfg = migor_lcd_modes,
251 .num_cfg = ARRAY_SIZE(migor_lcd_modes),
Magnus Dammce9c0082008-08-11 15:26:00 +0900252 .lcd_size_cfg = { /* 7.0 inch */
253 .width = 152,
254 .height = 91,
255 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900256 }
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000257#elif defined(CONFIG_SH_MIGOR_QVGA)
Magnus Damm8b1285f2008-07-28 18:47:30 +0900258 .clock_source = LCDC_CLK_PERIPHERAL,
259 .ch[0] = {
260 .chan = LCDC_CHAN_MAINLCD,
261 .bpp = 16,
262 .interface_type = SYS16A,
263 .clock_divider = 10,
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000264 .lcd_cfg = migor_lcd_modes,
265 .num_cfg = ARRAY_SIZE(migor_lcd_modes),
Magnus Dammce9c0082008-08-11 15:26:00 +0900266 .lcd_size_cfg = { /* 2.4 inch */
267 .width = 49,
268 .height = 37,
269 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900270 .board_cfg = {
271 .setup_sys = migor_lcd_qvga_setup,
272 },
273 .sys_bus_cfg = {
274 .ldmt2r = 0x06000a09,
275 .ldmt3r = 0x180e3418,
Magnus Dammb5868e82008-12-19 15:34:50 +0900276 /* set 1s delay to encourage fsync() */
277 .deferred_io_msec = 1000,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900278 },
279 }
280#endif
281};
282
283static struct resource migor_lcdc_resources[] = {
284 [0] = {
285 .name = "LCDC",
286 .start = 0xfe940000, /* P4-only space */
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000287 .end = 0xfe942fff,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900288 .flags = IORESOURCE_MEM,
289 },
Magnus Damm07905552008-12-19 12:02:16 +0900290 [1] = {
291 .start = 28,
292 .flags = IORESOURCE_IRQ,
293 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900294};
295
296static struct platform_device migor_lcdc_device = {
297 .name = "sh_mobile_lcdc_fb",
298 .num_resources = ARRAY_SIZE(migor_lcdc_resources),
299 .resource = migor_lcdc_resources,
300 .dev = {
301 .platform_data = &sh_mobile_lcdc_info,
302 },
Magnus Damm2de63cf2009-07-31 07:47:35 +0000303 .archdata = {
304 .hwblk_id = HWBLK_LCDC,
305 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900306};
307
Magnus Damm17655342008-07-28 18:51:01 +0900308static struct clk *camera_clk;
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900309static DEFINE_MUTEX(camera_lock);
Magnus Damm17655342008-07-28 18:51:01 +0900310
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900311static void camera_power_on(int is_tw)
Magnus Damm17655342008-07-28 18:51:01 +0900312{
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900313 mutex_lock(&camera_lock);
314
Magnus Damm22ee3ba2008-10-22 18:25:39 +0900315 /* Use 10 MHz VIO_CKO instead of 24 MHz to work
316 * around signal quality issues on Panel Board V2.1.
317 */
Magnus Damm17655342008-07-28 18:51:01 +0900318 camera_clk = clk_get(NULL, "video_clk");
Magnus Damm22ee3ba2008-10-22 18:25:39 +0900319 clk_set_rate(camera_clk, 10000000);
Magnus Damm17655342008-07-28 18:51:01 +0900320 clk_enable(camera_clk); /* start VIO_CKO */
321
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900322 /* use VIO_RST to take camera out of reset */
Magnus Damm17655342008-07-28 18:51:01 +0900323 mdelay(10);
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900324 if (is_tw) {
325 gpio_set_value(GPIO_PTT2, 0);
326 gpio_set_value(GPIO_PTT0, 0);
327 } else {
328 gpio_set_value(GPIO_PTT0, 1);
329 }
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900330 gpio_set_value(GPIO_PTT3, 0);
Magnus Damm17655342008-07-28 18:51:01 +0900331 mdelay(10);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900332 gpio_set_value(GPIO_PTT3, 1);
Magnus Damm4545bfa2008-12-10 17:02:13 +0900333 mdelay(10); /* wait to let chip come out of reset */
Magnus Damm17655342008-07-28 18:51:01 +0900334}
335
336static void camera_power_off(void)
337{
338 clk_disable(camera_clk); /* stop VIO_CKO */
339 clk_put(camera_clk);
340
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900341 gpio_set_value(GPIO_PTT3, 0);
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900342 mutex_unlock(&camera_lock);
Magnus Damm17655342008-07-28 18:51:01 +0900343}
344
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900345static int ov7725_power(struct device *dev, int mode)
346{
347 if (mode)
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900348 camera_power_on(0);
349 else
350 camera_power_off();
351
352 return 0;
353}
354
355static int tw9910_power(struct device *dev, int mode)
356{
357 if (mode)
358 camera_power_on(1);
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900359 else
360 camera_power_off();
361
362 return 0;
363}
364
Magnus Damm17655342008-07-28 18:51:01 +0900365static struct sh_mobile_ceu_info sh_mobile_ceu_info = {
Paul Mundt64935052009-04-02 11:25:12 +0900366 .flags = SH_CEU_FLAG_USE_8BIT_BUS,
Magnus Damm17655342008-07-28 18:51:01 +0900367};
368
369static struct resource migor_ceu_resources[] = {
370 [0] = {
371 .name = "CEU",
372 .start = 0xfe910000,
373 .end = 0xfe91009f,
374 .flags = IORESOURCE_MEM,
375 },
376 [1] = {
377 .start = 52,
378 .flags = IORESOURCE_IRQ,
379 },
380 [2] = {
381 /* place holder for contiguous memory */
382 },
383};
384
385static struct platform_device migor_ceu_device = {
386 .name = "sh_mobile_ceu",
Magnus Damma42b6dd2008-10-31 20:21:44 +0900387 .id = 0, /* "ceu0" clock */
Magnus Damm17655342008-07-28 18:51:01 +0900388 .num_resources = ARRAY_SIZE(migor_ceu_resources),
389 .resource = migor_ceu_resources,
390 .dev = {
391 .platform_data = &sh_mobile_ceu_info,
392 },
Magnus Damm2de63cf2009-07-31 07:47:35 +0000393 .archdata = {
394 .hwblk_id = HWBLK_CEU,
395 },
Magnus Damm17655342008-07-28 18:51:01 +0900396};
397
Magnus Damm2e3fc562009-10-02 02:22:43 +0000398static struct resource sdhi_cn9_resources[] = {
399 [0] = {
400 .name = "SDHI",
401 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100402 .end = 0x04ce00ff,
Magnus Damm2e3fc562009-10-02 02:22:43 +0000403 .flags = IORESOURCE_MEM,
404 },
405 [1] = {
Magnus Damm8d9adab2010-02-09 06:49:48 +0000406 .start = 100,
Magnus Damm2e3fc562009-10-02 02:22:43 +0000407 .flags = IORESOURCE_IRQ,
408 },
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900409};
410
Guennadi Liakhovetski65a1b032010-05-19 18:34:39 +0000411static struct sh_mobile_sdhi_info sh7724_sdhi_data = {
412 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
413 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
Arnd Hannemann464495e2010-12-28 22:22:35 +0000414 .tmio_caps = MMC_CAP_SDIO_IRQ,
Guennadi Liakhovetski65a1b032010-05-19 18:34:39 +0000415};
416
Magnus Damm2e3fc562009-10-02 02:22:43 +0000417static struct platform_device sdhi_cn9_device = {
418 .name = "sh_mobile_sdhi",
419 .num_resources = ARRAY_SIZE(sdhi_cn9_resources),
420 .resource = sdhi_cn9_resources,
Guennadi Liakhovetski65a1b032010-05-19 18:34:39 +0000421 .dev = {
422 .platform_data = &sh7724_sdhi_data,
423 },
Magnus Damm2e3fc562009-10-02 02:22:43 +0000424 .archdata = {
425 .hwblk_id = HWBLK_SDHI,
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900426 },
427};
428
Magnus Damm17655342008-07-28 18:51:01 +0900429static struct i2c_board_info migor_i2c_devices[] = {
Magnus Damm57795862008-03-25 17:24:31 +0900430 {
Jean Delvare3760f732008-04-29 23:11:40 +0200431 I2C_BOARD_INFO("rs5c372b", 0x32),
Magnus Damm57795862008-03-25 17:24:31 +0900432 },
Magnus Damm67908ab2008-03-25 17:30:45 +0900433 {
434 I2C_BOARD_INFO("migor_ts", 0x51),
435 .irq = 38, /* IRQ6 */
436 },
Guennadi Liakhovetski920925f2010-01-19 08:09:10 +0000437 {
438 I2C_BOARD_INFO("wm8978", 0x1a),
439 },
Guennadi Liakhovetski2cb582ca2009-05-12 15:13:40 +0000440};
441
442static struct i2c_board_info migor_i2c_camera[] = {
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900443 {
444 I2C_BOARD_INFO("ov772x", 0x21),
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900445 },
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900446 {
447 I2C_BOARD_INFO("tw9910", 0x45),
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900448 },
Magnus Damm0c6111e2008-03-25 17:20:24 +0900449};
450
Guennadi Liakhovetskicb626372011-07-28 18:29:01 -0300451static struct ov772x_camera_info ov7725_info;
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300452
453static struct soc_camera_link ov7725_link = {
454 .power = ov7725_power,
455 .board_info = &migor_i2c_camera[0],
456 .i2c_adapter_id = 0,
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300457 .priv = &ov7725_info,
Guennadi Liakhovetski2cb582ca2009-05-12 15:13:40 +0000458};
459
460static struct tw9910_video_info tw9910_info = {
461 .buswidth = SOCAM_DATAWIDTH_8,
462 .mpout = TW9910_MPO_FIELD,
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300463};
464
465static struct soc_camera_link tw9910_link = {
466 .power = tw9910_power,
467 .board_info = &migor_i2c_camera[1],
468 .i2c_adapter_id = 0,
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300469 .priv = &tw9910_info,
Guennadi Liakhovetski2cb582ca2009-05-12 15:13:40 +0000470};
471
472static struct platform_device migor_camera[] = {
473 {
474 .name = "soc-camera-pdrv",
475 .id = 0,
476 .dev = {
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300477 .platform_data = &ov7725_link,
Guennadi Liakhovetski2cb582ca2009-05-12 15:13:40 +0000478 },
479 }, {
480 .name = "soc-camera-pdrv",
481 .id = 1,
482 .dev = {
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300483 .platform_data = &tw9910_link,
Guennadi Liakhovetski2cb582ca2009-05-12 15:13:40 +0000484 },
485 },
486};
487
488static struct platform_device *migor_devices[] __initdata = {
489 &smc91x_eth_device,
490 &sh_keysc_device,
491 &migor_lcdc_device,
492 &migor_ceu_device,
493 &migor_nor_flash_device,
494 &migor_nand_flash_device,
Magnus Damm2e3fc562009-10-02 02:22:43 +0000495 &sdhi_cn9_device,
Guennadi Liakhovetski2cb582ca2009-05-12 15:13:40 +0000496 &migor_camera[0],
497 &migor_camera[1],
498};
499
Magnus Damm13fa5512009-10-29 10:52:31 +0000500extern char migor_sdram_enter_start;
501extern char migor_sdram_enter_end;
502extern char migor_sdram_leave_start;
503extern char migor_sdram_leave_end;
504
Magnus Damm70f784e2008-02-07 00:38:24 +0900505static int __init migor_devices_setup(void)
506{
Magnus Damm13fa5512009-10-29 10:52:31 +0000507 /* register board specific self-refresh code */
508 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF,
509 &migor_sdram_enter_start,
510 &migor_sdram_enter_end,
511 &migor_sdram_leave_start,
512 &migor_sdram_leave_end);
Magnus Damm50840712009-03-10 06:13:22 +0000513 /* Let D11 LED show STATUS0 */
514 gpio_request(GPIO_FN_STATUS0, NULL);
515
516 /* Lit D12 LED show PDSTATUS */
517 gpio_request(GPIO_FN_PDSTATUS, NULL);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900518
Magnus Damma30c89a2008-10-09 18:41:34 +0900519 /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900520 gpio_request(GPIO_FN_IRQ0, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +0900521 __raw_writel(0x00003400, BSC_CS4BCR);
522 __raw_writel(0x00110080, BSC_CS4WCR);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900523
524 /* KEYSC */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900525 gpio_request(GPIO_FN_KEYOUT0, NULL);
526 gpio_request(GPIO_FN_KEYOUT1, NULL);
527 gpio_request(GPIO_FN_KEYOUT2, NULL);
528 gpio_request(GPIO_FN_KEYOUT3, NULL);
529 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
530 gpio_request(GPIO_FN_KEYIN1, NULL);
531 gpio_request(GPIO_FN_KEYIN2, NULL);
532 gpio_request(GPIO_FN_KEYIN3, NULL);
533 gpio_request(GPIO_FN_KEYIN4, NULL);
534 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
535
536 /* NAND Flash */
537 gpio_request(GPIO_FN_CS6A_CE2B, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +0900538 __raw_writel((__raw_readl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900539 gpio_request(GPIO_PTA1, NULL);
540 gpio_direction_input(GPIO_PTA1);
541
Magnus Damm2e3fc562009-10-02 02:22:43 +0000542 /* SDHI */
543 gpio_request(GPIO_FN_SDHICD, NULL);
544 gpio_request(GPIO_FN_SDHIWP, NULL);
545 gpio_request(GPIO_FN_SDHID3, NULL);
546 gpio_request(GPIO_FN_SDHID2, NULL);
547 gpio_request(GPIO_FN_SDHID1, NULL);
548 gpio_request(GPIO_FN_SDHID0, NULL);
549 gpio_request(GPIO_FN_SDHICMD, NULL);
550 gpio_request(GPIO_FN_SDHICLK, NULL);
551
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900552 /* Touch Panel */
553 gpio_request(GPIO_FN_IRQ6, NULL);
554
555 /* LCD Panel */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900556#ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */
557 gpio_request(GPIO_FN_LCDD17, NULL);
558 gpio_request(GPIO_FN_LCDD16, NULL);
559 gpio_request(GPIO_FN_LCDD15, NULL);
560 gpio_request(GPIO_FN_LCDD14, NULL);
561 gpio_request(GPIO_FN_LCDD13, NULL);
562 gpio_request(GPIO_FN_LCDD12, NULL);
563 gpio_request(GPIO_FN_LCDD11, NULL);
564 gpio_request(GPIO_FN_LCDD10, NULL);
565 gpio_request(GPIO_FN_LCDD8, NULL);
566 gpio_request(GPIO_FN_LCDD7, NULL);
567 gpio_request(GPIO_FN_LCDD6, NULL);
568 gpio_request(GPIO_FN_LCDD5, NULL);
569 gpio_request(GPIO_FN_LCDD4, NULL);
570 gpio_request(GPIO_FN_LCDD3, NULL);
571 gpio_request(GPIO_FN_LCDD2, NULL);
572 gpio_request(GPIO_FN_LCDD1, NULL);
573 gpio_request(GPIO_FN_LCDRS, NULL);
574 gpio_request(GPIO_FN_LCDCS, NULL);
575 gpio_request(GPIO_FN_LCDRD, NULL);
576 gpio_request(GPIO_FN_LCDWR, NULL);
577 gpio_request(GPIO_PTH2, NULL); /* LCD_DON */
578 gpio_direction_output(GPIO_PTH2, 1);
579#endif
580#ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */
581 gpio_request(GPIO_FN_LCDD15, NULL);
582 gpio_request(GPIO_FN_LCDD14, NULL);
583 gpio_request(GPIO_FN_LCDD13, NULL);
584 gpio_request(GPIO_FN_LCDD12, NULL);
585 gpio_request(GPIO_FN_LCDD11, NULL);
586 gpio_request(GPIO_FN_LCDD10, NULL);
587 gpio_request(GPIO_FN_LCDD9, NULL);
588 gpio_request(GPIO_FN_LCDD8, NULL);
589 gpio_request(GPIO_FN_LCDD7, NULL);
590 gpio_request(GPIO_FN_LCDD6, NULL);
591 gpio_request(GPIO_FN_LCDD5, NULL);
592 gpio_request(GPIO_FN_LCDD4, NULL);
593 gpio_request(GPIO_FN_LCDD3, NULL);
594 gpio_request(GPIO_FN_LCDD2, NULL);
595 gpio_request(GPIO_FN_LCDD1, NULL);
596 gpio_request(GPIO_FN_LCDD0, NULL);
597 gpio_request(GPIO_FN_LCDLCLK, NULL);
598 gpio_request(GPIO_FN_LCDDCK, NULL);
599 gpio_request(GPIO_FN_LCDVEPWC, NULL);
600 gpio_request(GPIO_FN_LCDVCPWC, NULL);
601 gpio_request(GPIO_FN_LCDVSYN, NULL);
602 gpio_request(GPIO_FN_LCDHSYN, NULL);
603 gpio_request(GPIO_FN_LCDDISP, NULL);
604 gpio_request(GPIO_FN_LCDDON, NULL);
605#endif
606
607 /* CEU */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900608 gpio_request(GPIO_FN_VIO_CLK2, NULL);
609 gpio_request(GPIO_FN_VIO_VD2, NULL);
610 gpio_request(GPIO_FN_VIO_HD2, NULL);
611 gpio_request(GPIO_FN_VIO_FLD, NULL);
612 gpio_request(GPIO_FN_VIO_CKO, NULL);
613 gpio_request(GPIO_FN_VIO_D15, NULL);
614 gpio_request(GPIO_FN_VIO_D14, NULL);
615 gpio_request(GPIO_FN_VIO_D13, NULL);
616 gpio_request(GPIO_FN_VIO_D12, NULL);
617 gpio_request(GPIO_FN_VIO_D11, NULL);
618 gpio_request(GPIO_FN_VIO_D10, NULL);
619 gpio_request(GPIO_FN_VIO_D9, NULL);
620 gpio_request(GPIO_FN_VIO_D8, NULL);
621
622 gpio_request(GPIO_PTT3, NULL); /* VIO_RST */
623 gpio_direction_output(GPIO_PTT3, 0);
624 gpio_request(GPIO_PTT2, NULL); /* TV_IN_EN */
625 gpio_direction_output(GPIO_PTT2, 1);
626 gpio_request(GPIO_PTT0, NULL); /* CAM_EN */
627#ifdef CONFIG_SH_MIGOR_RTA_WVGA
628 gpio_direction_output(GPIO_PTT0, 0);
629#else
630 gpio_direction_output(GPIO_PTT0, 1);
631#endif
Paul Mundt9d56dd32010-01-26 12:58:40 +0900632 __raw_writew(__raw_readw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */
Magnus Damm17655342008-07-28 18:51:01 +0900633
634 platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20);
Magnus Damm6c7d8262008-07-17 19:16:11 +0900635
Guennadi Liakhovetski920925f2010-01-19 08:09:10 +0000636 /* SIU: Port B */
637 gpio_request(GPIO_FN_SIUBOLR, NULL);
638 gpio_request(GPIO_FN_SIUBOBT, NULL);
639 gpio_request(GPIO_FN_SIUBISLD, NULL);
640 gpio_request(GPIO_FN_SIUBOSLD, NULL);
641 gpio_request(GPIO_FN_SIUMCKB, NULL);
642
643 /*
644 * The original driver sets SIUB OLR/OBT, ILR/IBT, and SIUA OLR/OBT to
645 * output. Need only SIUB, set to output for master mode (table 34.2)
646 */
Paul Mundt7d0b0a42010-03-02 11:52:28 +0900647 __raw_writew(__raw_readw(PORT_MSELCRA) | 1, PORT_MSELCRA);
Guennadi Liakhovetski920925f2010-01-19 08:09:10 +0000648
Magnus Damm0c6111e2008-03-25 17:20:24 +0900649 i2c_register_board_info(0, migor_i2c_devices,
650 ARRAY_SIZE(migor_i2c_devices));
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900651
Magnus Damm70f784e2008-02-07 00:38:24 +0900652 return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices));
653}
Magnus Dammba3a1702009-08-13 11:39:02 +0900654arch_initcall(migor_devices_setup);
Magnus Damm0ec80fdd2009-06-03 08:22:50 +0000655
656/* Return the board specific boot mode pin configuration */
657static int migor_mode_pins(void)
658{
659 /* MD0=1, MD1=1, MD2=0: Clock Mode 3
660 * MD3=0: 16-bit Area0 Bus Width
661 * MD5=1: Little Endian
662 * TSTMD=1, MD8=0: Test Mode Disabled
663 */
664 return MODE_PIN0 | MODE_PIN1 | MODE_PIN5;
665}
666
667/*
668 * The Machine Vector
669 */
670static struct sh_machine_vector mv_migor __initmv = {
671 .mv_name = "Migo-R",
672 .mv_mode_pins = migor_mode_pins,
673};