blob: 254f2c66270362845524352e5ad73a1b6bdecf9b [file] [log] [blame]
Jacopo Mondi186c4462018-02-21 12:48:04 -05001// SPDX-License-Identifier: GPL-2.0
Magnus Damm70f784e2008-02-07 00:38:24 +09002/*
3 * Renesas System Solutions Asia Pte. Ltd - Migo-R
4 *
5 * Copyright (C) 2008 Magnus Damm
Magnus Damm70f784e2008-02-07 00:38:24 +09006 */
Jacopo Mondi186c4462018-02-21 12:48:04 -05007#include <linux/clkdev.h>
Magnus Damm70f784e2008-02-07 00:38:24 +09008#include <linux/init.h>
9#include <linux/platform_device.h>
10#include <linux/interrupt.h>
Magnus Damm92cfeb62008-03-04 15:23:45 -080011#include <linux/input.h>
Magnus Dammfc1d0032009-11-27 07:32:24 +000012#include <linux/input/sh_keysc.h>
Jacopo Mondi186c4462018-02-21 12:48:04 -050013#include <linux/memblock.h>
Arnd Hannemann464495e2010-12-28 22:22:35 +000014#include <linux/mmc/host.h>
Magnus Dammb8808782008-03-21 18:43:55 +090015#include <linux/mtd/physmap.h>
Kuninori Morimoto84f11d52015-02-24 02:07:07 +000016#include <linux/mfd/tmio.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020017#include <linux/mtd/rawnand.h>
Magnus Damm0c6111e2008-03-25 17:20:24 +090018#include <linux/i2c.h>
Guennadi Liakhovetski48aff642012-06-27 00:50:06 +020019#include <linux/regulator/fixed.h>
20#include <linux/regulator/machine.h>
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090021#include <linux/smc91x.h>
Magnus Damm17655342008-07-28 18:51:01 +090022#include <linux/delay.h>
23#include <linux/clk.h>
Magnus Damm91b6f3c2008-10-08 20:42:01 +090024#include <linux/gpio.h>
Jacopo Mondi186c4462018-02-21 12:48:04 -050025#include <linux/gpio/machine.h>
Guennadi Liakhovetskia1ad8032012-01-25 22:07:05 +010026#include <linux/videodev2.h>
Paul Mundt26819fc2012-05-18 17:07:09 +090027#include <linux/sh_intc.h>
Magnus Damm70e5c4f2009-01-07 20:36:10 +090028#include <video/sh_mobile_lcdc.h>
Jacopo Mondi186c4462018-02-21 12:48:04 -050029#include <media/drv-intf/renesas-ceu.h>
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020030#include <media/i2c/ov772x.h>
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020031#include <media/i2c/tw9910.h>
Magnus Damm6c7d8262008-07-17 19:16:11 +090032#include <asm/clock.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090033#include <asm/machvec.h>
34#include <asm/io.h>
Magnus Damm13fa5512009-10-29 10:52:31 +000035#include <asm/suspend.h>
Paul Mundt7639a452008-10-20 13:02:48 +090036#include <mach/migor.h>
Paul Mundtf7275652008-10-20 12:04:53 +090037#include <cpu/sh7722.h>
Magnus Damm70f784e2008-02-07 00:38:24 +090038
39/* Address IRQ Size Bus Description
40 * 0x00000000 64MB 16 NOR Flash (SP29PL256N)
41 * 0x0c000000 64MB 64 SDRAM (2xK4M563233G)
42 * 0x10000000 IRQ0 16 Ethernet (SMC91C111)
43 * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596)
44 * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A)
45 */
46
Jacopo Mondi186c4462018-02-21 12:48:04 -050047#define CEU_BUFFER_MEMORY_SIZE (4 << 20)
48static phys_addr_t ceu_dma_membase;
49
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090050static struct smc91x_platdata smc91x_info = {
Magnus Damma30c89a2008-10-09 18:41:34 +090051 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090052};
53
Magnus Damm70f784e2008-02-07 00:38:24 +090054static struct resource smc91x_eth_resources[] = {
55 [0] = {
Magnus Dammb026a232008-03-21 18:43:46 +090056 .name = "SMC91C111" ,
57 .start = 0x10000300,
58 .end = 0x1000030f,
Magnus Damm70f784e2008-02-07 00:38:24 +090059 .flags = IORESOURCE_MEM,
60 },
61 [1] = {
Paul Mundt26819fc2012-05-18 17:07:09 +090062 .start = evt2irq(0x600), /* IRQ0 */
Eric Miaod280ead2008-06-06 17:13:02 +080063 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
Magnus Damm70f784e2008-02-07 00:38:24 +090064 },
65};
66
67static struct platform_device smc91x_eth_device = {
68 .name = "smc91x",
69 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
70 .resource = smc91x_eth_resources,
Magnus Damm8a3ee0f2008-04-23 20:13:59 +090071 .dev = {
72 .platform_data = &smc91x_info,
73 },
Magnus Damm70f784e2008-02-07 00:38:24 +090074};
75
Magnus Damm92cfeb62008-03-04 15:23:45 -080076static struct sh_keysc_info sh_keysc_info = {
77 .mode = SH_KEYSC_MODE_2, /* KEYOUT0->4, KEYIN1->5 */
78 .scan_timing = 3,
79 .delay = 5,
80 .keycodes = {
81 0, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ENTER,
82 0, KEY_F, KEY_C, KEY_D, KEY_H, KEY_1,
83 0, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6,
84 0, KEY_7, KEY_8, KEY_9, KEY_S, KEY_0,
85 0, KEY_P, KEY_STOP, KEY_REWIND, KEY_PLAY, KEY_FASTFORWARD,
86 },
87};
88
89static struct resource sh_keysc_resources[] = {
90 [0] = {
91 .start = 0x044b0000,
92 .end = 0x044b000f,
93 .flags = IORESOURCE_MEM,
94 },
95 [1] = {
Paul Mundt26819fc2012-05-18 17:07:09 +090096 .start = evt2irq(0xbe0),
Magnus Damm92cfeb62008-03-04 15:23:45 -080097 .flags = IORESOURCE_IRQ,
98 },
99};
100
101static struct platform_device sh_keysc_device = {
102 .name = "sh_keysc",
Magnus Damm090d9512008-10-31 20:21:23 +0900103 .id = 0, /* "keysc0" clock */
Magnus Damm92cfeb62008-03-04 15:23:45 -0800104 .num_resources = ARRAY_SIZE(sh_keysc_resources),
105 .resource = sh_keysc_resources,
106 .dev = {
107 .platform_data = &sh_keysc_info,
108 },
109};
110
Magnus Dammb8808782008-03-21 18:43:55 +0900111static struct mtd_partition migor_nor_flash_partitions[] =
112{
113 {
114 .name = "uboot",
115 .offset = 0,
116 .size = (1 * 1024 * 1024),
117 .mask_flags = MTD_WRITEABLE, /* Read-only */
118 },
119 {
120 .name = "rootfs",
121 .offset = MTDPART_OFS_APPEND,
122 .size = (15 * 1024 * 1024),
123 },
124 {
125 .name = "other",
126 .offset = MTDPART_OFS_APPEND,
127 .size = MTDPART_SIZ_FULL,
128 },
129};
130
131static struct physmap_flash_data migor_nor_flash_data = {
132 .width = 2,
133 .parts = migor_nor_flash_partitions,
134 .nr_parts = ARRAY_SIZE(migor_nor_flash_partitions),
135};
136
137static struct resource migor_nor_flash_resources[] = {
138 [0] = {
139 .name = "NOR Flash",
140 .start = 0x00000000,
141 .end = 0x03ffffff,
142 .flags = IORESOURCE_MEM,
143 }
144};
145
146static struct platform_device migor_nor_flash_device = {
147 .name = "physmap-flash",
148 .resource = migor_nor_flash_resources,
149 .num_resources = ARRAY_SIZE(migor_nor_flash_resources),
150 .dev = {
151 .platform_data = &migor_nor_flash_data,
152 },
153};
154
Magnus Damm3c803a92008-03-21 18:44:04 +0900155static struct mtd_partition migor_nand_flash_partitions[] = {
156 {
157 .name = "nanddata1",
158 .offset = 0x0,
159 .size = 512 * 1024 * 1024,
160 },
161 {
162 .name = "nanddata2",
163 .offset = MTDPART_OFS_APPEND,
164 .size = 512 * 1024 * 1024,
165 },
166};
167
168static void migor_nand_flash_cmd_ctl(struct mtd_info *mtd, int cmd,
169 unsigned int ctrl)
170{
Boris BREZILLON7326ffe2015-12-01 12:03:02 +0100171 struct nand_chip *chip = mtd_to_nand(mtd);
Magnus Damm3c803a92008-03-21 18:44:04 +0900172
173 if (cmd == NAND_CMD_NONE)
174 return;
175
176 if (ctrl & NAND_CLE)
177 writeb(cmd, chip->IO_ADDR_W + 0x00400000);
178 else if (ctrl & NAND_ALE)
179 writeb(cmd, chip->IO_ADDR_W + 0x00800000);
180 else
181 writeb(cmd, chip->IO_ADDR_W);
182}
183
184static int migor_nand_flash_ready(struct mtd_info *mtd)
185{
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900186 return gpio_get_value(GPIO_PTA1); /* NAND_RBn */
Magnus Damm3c803a92008-03-21 18:44:04 +0900187}
188
Kuninori Morimoto30e0cc12010-06-02 00:27:46 +0000189static struct platform_nand_data migor_nand_flash_data = {
Magnus Damm3c803a92008-03-21 18:44:04 +0900190 .chip = {
191 .nr_chips = 1,
192 .partitions = migor_nand_flash_partitions,
193 .nr_partitions = ARRAY_SIZE(migor_nand_flash_partitions),
194 .chip_delay = 20,
Magnus Damm3c803a92008-03-21 18:44:04 +0900195 },
196 .ctrl = {
197 .dev_ready = migor_nand_flash_ready,
198 .cmd_ctrl = migor_nand_flash_cmd_ctl,
199 },
200};
201
202static struct resource migor_nand_flash_resources[] = {
203 [0] = {
204 .name = "NAND Flash",
205 .start = 0x18000000,
206 .end = 0x18ffffff,
207 .flags = IORESOURCE_MEM,
208 },
209};
210
211static struct platform_device migor_nand_flash_device = {
212 .name = "gen_nand",
213 .resource = migor_nand_flash_resources,
214 .num_resources = ARRAY_SIZE(migor_nand_flash_resources),
215 .dev = {
216 .platform_data = &migor_nand_flash_data,
217 }
218};
219
Jesper Juhle04008e2011-07-09 23:16:22 +0200220static const struct fb_videomode migor_lcd_modes[] = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000221 {
222#if defined(CONFIG_SH_MIGOR_RTA_WVGA)
223 .name = "LB070WV1",
224 .xres = 800,
225 .yres = 480,
226 .left_margin = 64,
227 .right_margin = 16,
228 .hsync_len = 120,
229 .sync = 0,
230#elif defined(CONFIG_SH_MIGOR_QVGA)
231 .name = "PH240320T",
232 .xres = 320,
233 .yres = 240,
234 .left_margin = 0,
235 .right_margin = 16,
236 .hsync_len = 8,
237 .sync = FB_SYNC_HOR_HIGH_ACT,
238#endif
239 .upper_margin = 1,
240 .lower_margin = 17,
241 .vsync_len = 2,
242 },
243};
244
Magnus Damm8b1285f2008-07-28 18:47:30 +0900245static struct sh_mobile_lcdc_info sh_mobile_lcdc_info = {
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000246#if defined(CONFIG_SH_MIGOR_RTA_WVGA)
Magnus Damm8b1285f2008-07-28 18:47:30 +0900247 .clock_source = LCDC_CLK_BUS,
248 .ch[0] = {
249 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100250 .fourcc = V4L2_PIX_FMT_RGB565,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900251 .interface_type = RGB16,
252 .clock_divider = 2,
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100253 .lcd_modes = migor_lcd_modes,
254 .num_modes = ARRAY_SIZE(migor_lcd_modes),
Laurent Pinchartafaad832011-09-11 22:59:04 +0200255 .panel_cfg = { /* 7.0 inch */
Magnus Dammce9c0082008-08-11 15:26:00 +0900256 .width = 152,
257 .height = 91,
258 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900259 }
Guennadi Liakhovetski44432402010-09-03 07:20:04 +0000260#elif defined(CONFIG_SH_MIGOR_QVGA)
Magnus Damm8b1285f2008-07-28 18:47:30 +0900261 .clock_source = LCDC_CLK_PERIPHERAL,
262 .ch[0] = {
263 .chan = LCDC_CHAN_MAINLCD,
Laurent Pinchartedd153a2011-12-13 14:02:28 +0100264 .fourcc = V4L2_PIX_FMT_RGB565,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900265 .interface_type = SYS16A,
266 .clock_divider = 10,
Laurent Pinchart93ff2592011-11-29 14:33:41 +0100267 .lcd_modes = migor_lcd_modes,
268 .num_modes = ARRAY_SIZE(migor_lcd_modes),
Laurent Pinchartafaad832011-09-11 22:59:04 +0200269 .panel_cfg = {
270 .width = 49, /* 2.4 inch */
Magnus Dammce9c0082008-08-11 15:26:00 +0900271 .height = 37,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900272 .setup_sys = migor_lcd_qvga_setup,
273 },
274 .sys_bus_cfg = {
275 .ldmt2r = 0x06000a09,
276 .ldmt3r = 0x180e3418,
Magnus Dammb5868e82008-12-19 15:34:50 +0900277 /* set 1s delay to encourage fsync() */
278 .deferred_io_msec = 1000,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900279 },
280 }
281#endif
282};
283
284static struct resource migor_lcdc_resources[] = {
285 [0] = {
286 .name = "LCDC",
287 .start = 0xfe940000, /* P4-only space */
Phil Edworthya6f15ad2009-09-15 12:00:30 +0000288 .end = 0xfe942fff,
Magnus Damm8b1285f2008-07-28 18:47:30 +0900289 .flags = IORESOURCE_MEM,
290 },
Magnus Damm07905552008-12-19 12:02:16 +0900291 [1] = {
Paul Mundt26819fc2012-05-18 17:07:09 +0900292 .start = evt2irq(0x580),
Magnus Damm07905552008-12-19 12:02:16 +0900293 .flags = IORESOURCE_IRQ,
294 },
Magnus Damm8b1285f2008-07-28 18:47:30 +0900295};
296
297static struct platform_device migor_lcdc_device = {
298 .name = "sh_mobile_lcdc_fb",
299 .num_resources = ARRAY_SIZE(migor_lcdc_resources),
300 .resource = migor_lcdc_resources,
301 .dev = {
302 .platform_data = &sh_mobile_lcdc_info,
303 },
304};
305
Jacopo Mondi186c4462018-02-21 12:48:04 -0500306static struct ceu_platform_data ceu_pdata = {
307 .num_subdevs = 2,
308 .subdevs = {
309 { /* [0] = ov772x */
310 .flags = 0,
311 .bus_width = 8,
312 .bus_shift = 0,
313 .i2c_adapter_id = 0,
314 .i2c_address = 0x21,
315 },
316 { /* [1] = tw9910 */
317 .flags = 0,
318 .bus_width = 8,
319 .bus_shift = 0,
320 .i2c_adapter_id = 0,
321 .i2c_address = 0x45,
322 },
323 },
Magnus Damm17655342008-07-28 18:51:01 +0900324};
325
326static struct resource migor_ceu_resources[] = {
327 [0] = {
328 .name = "CEU",
329 .start = 0xfe910000,
330 .end = 0xfe91009f,
331 .flags = IORESOURCE_MEM,
332 },
333 [1] = {
Paul Mundt26819fc2012-05-18 17:07:09 +0900334 .start = evt2irq(0x880),
Magnus Damm17655342008-07-28 18:51:01 +0900335 .flags = IORESOURCE_IRQ,
336 },
Magnus Damm17655342008-07-28 18:51:01 +0900337};
338
339static struct platform_device migor_ceu_device = {
Jacopo Mondi186c4462018-02-21 12:48:04 -0500340 .name = "renesas-ceu",
341 .id = 0, /* ceu.0 */
Magnus Damm17655342008-07-28 18:51:01 +0900342 .num_resources = ARRAY_SIZE(migor_ceu_resources),
343 .resource = migor_ceu_resources,
344 .dev = {
Jacopo Mondi186c4462018-02-21 12:48:04 -0500345 .platform_data = &ceu_pdata,
346 },
347};
348
349/* Powerdown/reset gpios for CEU image sensors */
350static struct gpiod_lookup_table ov7725_gpios = {
351 .dev_id = "0-0021",
352 .table = {
Akinobu Mita40519d52018-05-06 10:19:21 -0400353 GPIO_LOOKUP("sh7722_pfc", GPIO_PTT0, "powerdown",
354 GPIO_ACTIVE_HIGH),
355 GPIO_LOOKUP("sh7722_pfc", GPIO_PTT3, "reset", GPIO_ACTIVE_LOW),
Jacopo Mondi186c4462018-02-21 12:48:04 -0500356 },
357};
358
359static struct gpiod_lookup_table tw9910_gpios = {
360 .dev_id = "0-0045",
361 .table = {
Jacopo Mondi2b787b62018-05-30 05:13:24 -0400362 GPIO_LOOKUP("sh7722_pfc", GPIO_PTT2, "pdn", GPIO_ACTIVE_LOW),
Jacopo Mondi186c4462018-02-21 12:48:04 -0500363 GPIO_LOOKUP("sh7722_pfc", GPIO_PTT3, "rstb", GPIO_ACTIVE_LOW),
Magnus Damm17655342008-07-28 18:51:01 +0900364 },
365};
366
Guennadi Liakhovetski48aff642012-06-27 00:50:06 +0200367/* Fixed 3.3V regulator to be used by SDHI0 */
368static struct regulator_consumer_supply fixed3v3_power_consumers[] =
369{
370 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
371 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
372};
373
Magnus Damm2e3fc562009-10-02 02:22:43 +0000374static struct resource sdhi_cn9_resources[] = {
375 [0] = {
376 .name = "SDHI",
377 .start = 0x04ce0000,
Guennadi Liakhovetskid80e9222011-03-09 13:42:42 +0100378 .end = 0x04ce00ff,
Magnus Damm2e3fc562009-10-02 02:22:43 +0000379 .flags = IORESOURCE_MEM,
380 },
381 [1] = {
Paul Mundt26819fc2012-05-18 17:07:09 +0900382 .start = evt2irq(0xe80),
Magnus Damm2e3fc562009-10-02 02:22:43 +0000383 .flags = IORESOURCE_IRQ,
384 },
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900385};
386
Kuninori Morimoto84f11d52015-02-24 02:07:07 +0000387static struct tmio_mmc_data sh7724_sdhi_data = {
388 .chan_priv_tx = (void *)SHDMA_SLAVE_SDHI0_TX,
389 .chan_priv_rx = (void *)SHDMA_SLAVE_SDHI0_RX,
390 .capabilities = MMC_CAP_SDIO_IRQ,
Guennadi Liakhovetski65a1b032010-05-19 18:34:39 +0000391};
392
Magnus Damm2e3fc562009-10-02 02:22:43 +0000393static struct platform_device sdhi_cn9_device = {
394 .name = "sh_mobile_sdhi",
395 .num_resources = ARRAY_SIZE(sdhi_cn9_resources),
396 .resource = sdhi_cn9_resources,
Guennadi Liakhovetski65a1b032010-05-19 18:34:39 +0000397 .dev = {
398 .platform_data = &sh7724_sdhi_data,
399 },
Magnus Damm70e5c4f2009-01-07 20:36:10 +0900400};
401
Jacopo Mondi186c4462018-02-21 12:48:04 -0500402static struct ov772x_camera_info ov7725_info = {
403 .flags = 0,
404};
405
406static struct tw9910_video_info tw9910_info = {
407 .buswidth = 8,
408 .mpout = TW9910_MPO_FIELD,
409};
410
Magnus Damm17655342008-07-28 18:51:01 +0900411static struct i2c_board_info migor_i2c_devices[] = {
Magnus Damm57795862008-03-25 17:24:31 +0900412 {
Jean Delvare3760f732008-04-29 23:11:40 +0200413 I2C_BOARD_INFO("rs5c372b", 0x32),
Magnus Damm57795862008-03-25 17:24:31 +0900414 },
Magnus Damm67908ab2008-03-25 17:30:45 +0900415 {
416 I2C_BOARD_INFO("migor_ts", 0x51),
Paul Mundt26819fc2012-05-18 17:07:09 +0900417 .irq = evt2irq(0x6c0), /* IRQ6 */
Magnus Damm67908ab2008-03-25 17:30:45 +0900418 },
Guennadi Liakhovetski920925f2010-01-19 08:09:10 +0000419 {
420 I2C_BOARD_INFO("wm8978", 0x1a),
421 },
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900422 {
423 I2C_BOARD_INFO("ov772x", 0x21),
Jacopo Mondi186c4462018-02-21 12:48:04 -0500424 .platform_data = &ov7725_info,
Kuninori Morimotoff04ea42008-12-02 16:38:34 +0900425 },
Kuninori Morimotodeae7b82009-01-05 16:25:16 +0900426 {
427 I2C_BOARD_INFO("tw9910", 0x45),
Jacopo Mondi186c4462018-02-21 12:48:04 -0500428 .platform_data = &tw9910_info,
Guennadi Liakhovetski2cb582c2009-05-12 15:13:40 +0000429 },
430};
431
432static struct platform_device *migor_devices[] __initdata = {
433 &smc91x_eth_device,
434 &sh_keysc_device,
435 &migor_lcdc_device,
Guennadi Liakhovetski2cb582c2009-05-12 15:13:40 +0000436 &migor_nor_flash_device,
437 &migor_nand_flash_device,
Magnus Damm2e3fc562009-10-02 02:22:43 +0000438 &sdhi_cn9_device,
Guennadi Liakhovetski2cb582c2009-05-12 15:13:40 +0000439};
440
Magnus Damm13fa5512009-10-29 10:52:31 +0000441extern char migor_sdram_enter_start;
442extern char migor_sdram_enter_end;
443extern char migor_sdram_leave_start;
444extern char migor_sdram_leave_end;
445
Magnus Damm70f784e2008-02-07 00:38:24 +0900446static int __init migor_devices_setup(void)
447{
Jacopo Mondi186c4462018-02-21 12:48:04 -0500448 struct clk *video_clk;
449
Magnus Damm13fa5512009-10-29 10:52:31 +0000450 /* register board specific self-refresh code */
451 sh_mobile_register_self_refresh(SUSP_SH_STANDBY | SUSP_SH_SF,
452 &migor_sdram_enter_start,
453 &migor_sdram_enter_end,
454 &migor_sdram_leave_start,
455 &migor_sdram_leave_end);
Guennadi Liakhovetski48aff642012-06-27 00:50:06 +0200456
457 regulator_register_always_on(0, "fixed-3.3V", fixed3v3_power_consumers,
458 ARRAY_SIZE(fixed3v3_power_consumers), 3300000);
459
Magnus Damm50840712009-03-10 06:13:22 +0000460 /* Let D11 LED show STATUS0 */
461 gpio_request(GPIO_FN_STATUS0, NULL);
462
463 /* Lit D12 LED show PDSTATUS */
464 gpio_request(GPIO_FN_PDSTATUS, NULL);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900465
Magnus Damma30c89a2008-10-09 18:41:34 +0900466 /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900467 gpio_request(GPIO_FN_IRQ0, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +0900468 __raw_writel(0x00003400, BSC_CS4BCR);
469 __raw_writel(0x00110080, BSC_CS4WCR);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900470
471 /* KEYSC */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900472 gpio_request(GPIO_FN_KEYOUT0, NULL);
473 gpio_request(GPIO_FN_KEYOUT1, NULL);
474 gpio_request(GPIO_FN_KEYOUT2, NULL);
475 gpio_request(GPIO_FN_KEYOUT3, NULL);
476 gpio_request(GPIO_FN_KEYOUT4_IN6, NULL);
477 gpio_request(GPIO_FN_KEYIN1, NULL);
478 gpio_request(GPIO_FN_KEYIN2, NULL);
479 gpio_request(GPIO_FN_KEYIN3, NULL);
480 gpio_request(GPIO_FN_KEYIN4, NULL);
481 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
482
483 /* NAND Flash */
484 gpio_request(GPIO_FN_CS6A_CE2B, NULL);
Paul Mundt9d56dd32010-01-26 12:58:40 +0900485 __raw_writel((__raw_readl(BSC_CS6ABCR) & ~0x0600) | 0x0200, BSC_CS6ABCR);
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900486 gpio_request(GPIO_PTA1, NULL);
487 gpio_direction_input(GPIO_PTA1);
488
Magnus Damm2e3fc562009-10-02 02:22:43 +0000489 /* SDHI */
490 gpio_request(GPIO_FN_SDHICD, NULL);
491 gpio_request(GPIO_FN_SDHIWP, NULL);
492 gpio_request(GPIO_FN_SDHID3, NULL);
493 gpio_request(GPIO_FN_SDHID2, NULL);
494 gpio_request(GPIO_FN_SDHID1, NULL);
495 gpio_request(GPIO_FN_SDHID0, NULL);
496 gpio_request(GPIO_FN_SDHICMD, NULL);
497 gpio_request(GPIO_FN_SDHICLK, NULL);
498
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900499 /* Touch Panel */
500 gpio_request(GPIO_FN_IRQ6, NULL);
501
502 /* LCD Panel */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900503#ifdef CONFIG_SH_MIGOR_QVGA /* LCDC - QVGA - Enable SYS Interface signals */
504 gpio_request(GPIO_FN_LCDD17, NULL);
505 gpio_request(GPIO_FN_LCDD16, NULL);
506 gpio_request(GPIO_FN_LCDD15, NULL);
507 gpio_request(GPIO_FN_LCDD14, NULL);
508 gpio_request(GPIO_FN_LCDD13, NULL);
509 gpio_request(GPIO_FN_LCDD12, NULL);
510 gpio_request(GPIO_FN_LCDD11, NULL);
511 gpio_request(GPIO_FN_LCDD10, NULL);
512 gpio_request(GPIO_FN_LCDD8, NULL);
513 gpio_request(GPIO_FN_LCDD7, NULL);
514 gpio_request(GPIO_FN_LCDD6, NULL);
515 gpio_request(GPIO_FN_LCDD5, NULL);
516 gpio_request(GPIO_FN_LCDD4, NULL);
517 gpio_request(GPIO_FN_LCDD3, NULL);
518 gpio_request(GPIO_FN_LCDD2, NULL);
519 gpio_request(GPIO_FN_LCDD1, NULL);
520 gpio_request(GPIO_FN_LCDRS, NULL);
521 gpio_request(GPIO_FN_LCDCS, NULL);
522 gpio_request(GPIO_FN_LCDRD, NULL);
523 gpio_request(GPIO_FN_LCDWR, NULL);
524 gpio_request(GPIO_PTH2, NULL); /* LCD_DON */
525 gpio_direction_output(GPIO_PTH2, 1);
526#endif
527#ifdef CONFIG_SH_MIGOR_RTA_WVGA /* LCDC - WVGA - Enable RGB Interface signals */
528 gpio_request(GPIO_FN_LCDD15, NULL);
529 gpio_request(GPIO_FN_LCDD14, NULL);
530 gpio_request(GPIO_FN_LCDD13, NULL);
531 gpio_request(GPIO_FN_LCDD12, NULL);
532 gpio_request(GPIO_FN_LCDD11, NULL);
533 gpio_request(GPIO_FN_LCDD10, NULL);
534 gpio_request(GPIO_FN_LCDD9, NULL);
535 gpio_request(GPIO_FN_LCDD8, NULL);
536 gpio_request(GPIO_FN_LCDD7, NULL);
537 gpio_request(GPIO_FN_LCDD6, NULL);
538 gpio_request(GPIO_FN_LCDD5, NULL);
539 gpio_request(GPIO_FN_LCDD4, NULL);
540 gpio_request(GPIO_FN_LCDD3, NULL);
541 gpio_request(GPIO_FN_LCDD2, NULL);
542 gpio_request(GPIO_FN_LCDD1, NULL);
543 gpio_request(GPIO_FN_LCDD0, NULL);
544 gpio_request(GPIO_FN_LCDLCLK, NULL);
545 gpio_request(GPIO_FN_LCDDCK, NULL);
546 gpio_request(GPIO_FN_LCDVEPWC, NULL);
547 gpio_request(GPIO_FN_LCDVCPWC, NULL);
548 gpio_request(GPIO_FN_LCDVSYN, NULL);
549 gpio_request(GPIO_FN_LCDHSYN, NULL);
550 gpio_request(GPIO_FN_LCDDISP, NULL);
551 gpio_request(GPIO_FN_LCDDON, NULL);
552#endif
553
554 /* CEU */
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900555 gpio_request(GPIO_FN_VIO_CLK2, NULL);
556 gpio_request(GPIO_FN_VIO_VD2, NULL);
557 gpio_request(GPIO_FN_VIO_HD2, NULL);
558 gpio_request(GPIO_FN_VIO_FLD, NULL);
559 gpio_request(GPIO_FN_VIO_CKO, NULL);
560 gpio_request(GPIO_FN_VIO_D15, NULL);
561 gpio_request(GPIO_FN_VIO_D14, NULL);
562 gpio_request(GPIO_FN_VIO_D13, NULL);
563 gpio_request(GPIO_FN_VIO_D12, NULL);
564 gpio_request(GPIO_FN_VIO_D11, NULL);
565 gpio_request(GPIO_FN_VIO_D10, NULL);
566 gpio_request(GPIO_FN_VIO_D9, NULL);
567 gpio_request(GPIO_FN_VIO_D8, NULL);
568
Paul Mundt9d56dd32010-01-26 12:58:40 +0900569 __raw_writew(__raw_readw(PORT_MSELCRB) | 0x2000, PORT_MSELCRB); /* D15->D8 */
Magnus Damm17655342008-07-28 18:51:01 +0900570
Guennadi Liakhovetski920925f2010-01-19 08:09:10 +0000571 /* SIU: Port B */
572 gpio_request(GPIO_FN_SIUBOLR, NULL);
573 gpio_request(GPIO_FN_SIUBOBT, NULL);
574 gpio_request(GPIO_FN_SIUBISLD, NULL);
575 gpio_request(GPIO_FN_SIUBOSLD, NULL);
576 gpio_request(GPIO_FN_SIUMCKB, NULL);
577
578 /*
579 * The original driver sets SIUB OLR/OBT, ILR/IBT, and SIUA OLR/OBT to
580 * output. Need only SIUB, set to output for master mode (table 34.2)
581 */
Paul Mundt7d0b0a42010-03-02 11:52:28 +0900582 __raw_writew(__raw_readw(PORT_MSELCRA) | 1, PORT_MSELCRA);
Guennadi Liakhovetski920925f2010-01-19 08:09:10 +0000583
Jacopo Mondi186c4462018-02-21 12:48:04 -0500584 /*
585 * Use 10 MHz VIO_CKO instead of 24 MHz to work around signal quality
586 * issues on Panel Board V2.1.
587 */
588 video_clk = clk_get(NULL, "video_clk");
589 if (!IS_ERR(video_clk)) {
590 clk_set_rate(video_clk, clk_round_rate(video_clk, 10000000));
591 clk_put(video_clk);
592 }
593
594 /* Add a clock alias for ov7725 xclk source. */
Akinobu Mita89ce93f2018-05-06 10:19:22 -0400595 clk_add_alias(NULL, "0-0021", "video_clk", NULL);
Jacopo Mondi186c4462018-02-21 12:48:04 -0500596
597 /* Register GPIOs for video sources. */
598 gpiod_add_lookup_table(&ov7725_gpios);
599 gpiod_add_lookup_table(&tw9910_gpios);
600
Magnus Damm0c6111e2008-03-25 17:20:24 +0900601 i2c_register_board_info(0, migor_i2c_devices,
602 ARRAY_SIZE(migor_i2c_devices));
Magnus Damm91b6f3c2008-10-08 20:42:01 +0900603
Jacopo Mondi186c4462018-02-21 12:48:04 -0500604 /* Initialize CEU platform device separately to map memory first */
605 device_initialize(&migor_ceu_device.dev);
606 arch_setup_pdev_archdata(&migor_ceu_device);
607 dma_declare_coherent_memory(&migor_ceu_device.dev,
608 ceu_dma_membase, ceu_dma_membase,
609 ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1,
610 DMA_MEMORY_EXCLUSIVE);
611
612 platform_device_add(&migor_ceu_device);
613
Magnus Damm70f784e2008-02-07 00:38:24 +0900614 return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices));
615}
Magnus Dammba3a1702009-08-13 11:39:02 +0900616arch_initcall(migor_devices_setup);
Magnus Damm0ec80fdd2009-06-03 08:22:50 +0000617
618/* Return the board specific boot mode pin configuration */
619static int migor_mode_pins(void)
620{
621 /* MD0=1, MD1=1, MD2=0: Clock Mode 3
622 * MD3=0: 16-bit Area0 Bus Width
623 * MD5=1: Little Endian
624 * TSTMD=1, MD8=0: Test Mode Disabled
625 */
626 return MODE_PIN0 | MODE_PIN1 | MODE_PIN5;
627}
628
Jacopo Mondi186c4462018-02-21 12:48:04 -0500629/* Reserve a portion of memory for CEU buffers */
630static void __init migor_mv_mem_reserve(void)
631{
632 phys_addr_t phys;
633 phys_addr_t size = CEU_BUFFER_MEMORY_SIZE;
634
635 phys = memblock_alloc_base(size, PAGE_SIZE, MEMBLOCK_ALLOC_ANYWHERE);
636 memblock_free(phys, size);
637 memblock_remove(phys, size);
638
639 ceu_dma_membase = phys;
640}
641
Magnus Damm0ec80fdd2009-06-03 08:22:50 +0000642/*
643 * The Machine Vector
644 */
645static struct sh_machine_vector mv_migor __initmv = {
646 .mv_name = "Migo-R",
647 .mv_mode_pins = migor_mode_pins,
Jacopo Mondi186c4462018-02-21 12:48:04 -0500648 .mv_mem_reserve = migor_mv_mem_reserve,
Magnus Damm0ec80fdd2009-06-03 08:22:50 +0000649};