ARM: mach-shmobile: mackerel: Add touchscreen ST1232 support
[cascardo/linux.git] / arch / arm / mach-shmobile / board-mackerel.c
1 /*
2  * mackerel board support
3  *
4  * Copyright (C) 2010 Renesas Solutions Corp.
5  * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6  *
7  * based on ap4evb
8  * Copyright (C) 2010  Magnus Damm
9  * Copyright (C) 2008  Yoshihiro Shimoda
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; version 2 of the License.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23  */
24 #include <linux/delay.h>
25 #include <linux/kernel.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
28 #include <linux/irq.h>
29 #include <linux/platform_device.h>
30 #include <linux/gpio.h>
31 #include <linux/input.h>
32 #include <linux/io.h>
33 #include <linux/i2c.h>
34 #include <linux/leds.h>
35 #include <linux/mfd/sh_mobile_sdhi.h>
36 #include <linux/mfd/tmio.h>
37 #include <linux/mmc/host.h>
38 #include <linux/mmc/sh_mmcif.h>
39 #include <linux/mtd/mtd.h>
40 #include <linux/mtd/partitions.h>
41 #include <linux/mtd/physmap.h>
42 #include <linux/smsc911x.h>
43 #include <linux/sh_intc.h>
44 #include <linux/tca6416_keypad.h>
45 #include <linux/usb/r8a66597.h>
46
47 #include <video/sh_mobile_hdmi.h>
48 #include <video/sh_mobile_lcdc.h>
49 #include <media/sh_mobile_ceu.h>
50 #include <media/soc_camera.h>
51 #include <media/soc_camera_platform.h>
52 #include <sound/sh_fsi.h>
53
54 #include <mach/common.h>
55 #include <mach/sh7372.h>
56
57 #include <asm/mach/arch.h>
58 #include <asm/mach/time.h>
59 #include <asm/mach/map.h>
60 #include <asm/mach-types.h>
61
62 /*
63  * Address      Interface               BusWidth        note
64  * ------------------------------------------------------------------
65  * 0x0000_0000  NOR Flash ROM (MCP)     16bit           SW7 : bit1 = ON
66  * 0x0800_0000  user area               -
67  * 0x1000_0000  NOR Flash ROM (MCP)     16bit           SW7 : bit1 = OFF
68  * 0x1400_0000  Ether (LAN9220)         16bit
69  * 0x1600_0000  user area               -               cannot use with NAND
70  * 0x1800_0000  user area               -
71  * 0x1A00_0000  -
72  * 0x4000_0000  LPDDR2-SDRAM (POP)      32bit
73  */
74
75 /*
76  * CPU mode
77  *
78  * SW4                                     | Boot Area| Master   | Remarks
79  *  1  | 2   | 3   | 4   | 5   | 6   | 8   |          | Processor|
80  * ----+-----+-----+-----+-----+-----+-----+----------+----------+--------------
81  * ON  | ON  | OFF | ON  | ON  | OFF | OFF | External | System   | External ROM
82  * ON  | ON  | ON  | ON  | ON  | OFF | OFF | External | System   | ROM Debug
83  * ON  | ON  | X   | ON  | OFF | OFF | OFF | Built-in | System   | ROM Debug
84  * X   | OFF | X   | X   | X   | X   | OFF | Built-in | System   | MaskROM
85  * OFF | X   | X   | X   | X   | X   | OFF | Built-in | System   | MaskROM
86  * X   | X   | X   | OFF | X   | X   | OFF | Built-in | System   | MaskROM
87  * OFF | ON  | OFF | X   | X   | OFF | ON  | External | System   | Standalone
88  * ON  | OFF | OFF | X   | X   | OFF | ON  | External | Realtime | Standalone
89 */
90
91 /*
92  * NOR Flash ROM
93  *
94  *  SW1  |     SW2    | SW7  | NOR Flash ROM
95  *  bit1 | bit1  bit2 | bit1 | Memory allocation
96  * ------+------------+------+------------------
97  *  OFF  | ON     OFF | ON   |    Area 0
98  *  OFF  | ON     OFF | OFF  |    Area 4
99  */
100
101 /*
102  * SMSC 9220
103  *
104  *  SW1         SMSC 9220
105  * -----------------------
106  *  ON          access disable
107  *  OFF         access enable
108  */
109
110 /*
111  * NAND Flash ROM
112  *
113  *  SW1  |     SW2    | SW7  | NAND Flash ROM
114  *  bit1 | bit1  bit2 | bit2 | Memory allocation
115  * ------+------------+------+------------------
116  *  OFF  | ON     OFF | ON   |    FCE 0
117  *  OFF  | ON     OFF | OFF  |    FCE 1
118  */
119
120 /*
121  * External interrupt pin settings
122  *
123  * IRQX  | pin setting        | device             | level
124  * ------+--------------------+--------------------+-------
125  * IRQ0  | ICR1A.IRQ0SA=0010  | SDHI2 card detect  | Low
126  * IRQ6  | ICR1A.IRQ6SA=0011  | Ether(LAN9220)     | High
127  * IRQ7  | ICR1A.IRQ7SA=0010  | LCD Tuch Panel     | Low
128  * IRQ8  | ICR2A.IRQ8SA=0010  | MMC/SD card detect | Low
129  * IRQ9  | ICR2A.IRQ9SA=0010  | KEY(TCA6408)       | Low
130  * IRQ21 | ICR4A.IRQ21SA=0011 | Sensor(ADXL345)    | High
131  * IRQ22 | ICR4A.IRQ22SA=0011 | Sensor(AK8975)     | High
132  */
133
134 /*
135  * USB
136  *
137  * USB0 : CN22 : Function
138  * USB1 : CN31 : Function/Host *1
139  *
140  * J30 (for CN31) *1
141  * ----------+---------------+-------------
142  * 1-2 short | VBUS 5V       | Host
143  * open      | external VBUS | Function
144  *
145  * *1
146  * CN31 is used as Host in Linux.
147  */
148
149 /*
150  * SDHI0 (CN12)
151  *
152  * SW56 : OFF
153  *
154  */
155
156 /* MMC /SDHI1 (CN7)
157  *
158  * I/O voltage : 1.8v
159  *
160  * Power voltage : 1.8v or 3.3v
161  *  J22 : select power voltage *1
162  *      1-2 pin : 1.8v
163  *      2-3 pin : 3.3v
164  *
165  * *1
166  * Please change J22 depends the card to be used.
167  * MMC's OCR field set to support either voltage for the card inserted.
168  *
169  *      SW1     |       SW33
170  *              | bit1 | bit2 | bit3 | bit4
171  * -------------+------+------+------+-------
172  * MMC0   OFF   |  OFF |  ON  |  ON  |  X
173  * MMC1   ON    |  OFF |  ON  |  X   | ON
174  * SDHI1  OFF   |  ON  |   X  |  OFF | ON
175  *
176  */
177
178 /*
179  * SDHI2 (CN23)
180  *
181  * microSD card sloct
182  *
183  */
184
185 /*
186  * FIXME !!
187  *
188  * gpio_no_direction
189  * are quick_hack.
190  *
191  * current gpio frame work doesn't have
192  * the method to control only pull up/down/free.
193  * this function should be replaced by correct gpio function
194  */
195 static void __init gpio_no_direction(u32 addr)
196 {
197         __raw_writeb(0x00, addr);
198 }
199
200 /* MTD */
201 static struct mtd_partition nor_flash_partitions[] = {
202         {
203                 .name           = "loader",
204                 .offset         = 0x00000000,
205                 .size           = 512 * 1024,
206                 .mask_flags     = MTD_WRITEABLE,
207         },
208         {
209                 .name           = "bootenv",
210                 .offset         = MTDPART_OFS_APPEND,
211                 .size           = 512 * 1024,
212                 .mask_flags     = MTD_WRITEABLE,
213         },
214         {
215                 .name           = "kernel_ro",
216                 .offset         = MTDPART_OFS_APPEND,
217                 .size           = 8 * 1024 * 1024,
218                 .mask_flags     = MTD_WRITEABLE,
219         },
220         {
221                 .name           = "kernel",
222                 .offset         = MTDPART_OFS_APPEND,
223                 .size           = 8 * 1024 * 1024,
224         },
225         {
226                 .name           = "data",
227                 .offset         = MTDPART_OFS_APPEND,
228                 .size           = MTDPART_SIZ_FULL,
229         },
230 };
231
232 static struct physmap_flash_data nor_flash_data = {
233         .width          = 2,
234         .parts          = nor_flash_partitions,
235         .nr_parts       = ARRAY_SIZE(nor_flash_partitions),
236 };
237
238 static struct resource nor_flash_resources[] = {
239         [0]     = {
240                 .start  = 0x00000000,
241                 .end    = 0x08000000 - 1,
242                 .flags  = IORESOURCE_MEM,
243         }
244 };
245
246 static struct platform_device nor_flash_device = {
247         .name           = "physmap-flash",
248         .dev            = {
249                 .platform_data  = &nor_flash_data,
250         },
251         .num_resources  = ARRAY_SIZE(nor_flash_resources),
252         .resource       = nor_flash_resources,
253 };
254
255 /* SMSC */
256 static struct resource smc911x_resources[] = {
257         {
258                 .start  = 0x14000000,
259                 .end    = 0x16000000 - 1,
260                 .flags  = IORESOURCE_MEM,
261         }, {
262                 .start  = evt2irq(0x02c0) /* IRQ6A */,
263                 .flags  = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
264         },
265 };
266
267 static struct smsc911x_platform_config smsc911x_info = {
268         .flags          = SMSC911X_USE_16BIT | SMSC911X_SAVE_MAC_ADDRESS,
269         .irq_polarity   = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
270         .irq_type       = SMSC911X_IRQ_TYPE_PUSH_PULL,
271 };
272
273 static struct platform_device smc911x_device = {
274         .name           = "smsc911x",
275         .id             = -1,
276         .num_resources  = ARRAY_SIZE(smc911x_resources),
277         .resource       = smc911x_resources,
278         .dev            = {
279                 .platform_data = &smsc911x_info,
280         },
281 };
282
283 /* LCDC */
284 static struct fb_videomode mackerel_lcdc_modes[] = {
285         {
286                 .name           = "WVGA Panel",
287                 .xres           = 800,
288                 .yres           = 480,
289                 .left_margin    = 220,
290                 .right_margin   = 110,
291                 .hsync_len      = 70,
292                 .upper_margin   = 20,
293                 .lower_margin   = 5,
294                 .vsync_len      = 5,
295                 .sync           = 0,
296         },
297 };
298
299 static struct sh_mobile_lcdc_info lcdc_info = {
300         .clock_source = LCDC_CLK_BUS,
301         .ch[0] = {
302                 .chan = LCDC_CHAN_MAINLCD,
303                 .bpp = 16,
304                 .lcd_cfg = mackerel_lcdc_modes,
305                 .num_cfg = ARRAY_SIZE(mackerel_lcdc_modes),
306                 .interface_type         = RGB24,
307                 .clock_divider          = 2,
308                 .flags                  = 0,
309                 .lcd_size_cfg.width     = 152,
310                 .lcd_size_cfg.height    = 91,
311         }
312 };
313
314 static struct resource lcdc_resources[] = {
315         [0] = {
316                 .name   = "LCDC",
317                 .start  = 0xfe940000,
318                 .end    = 0xfe943fff,
319                 .flags  = IORESOURCE_MEM,
320         },
321         [1] = {
322                 .start  = intcs_evt2irq(0x580),
323                 .flags  = IORESOURCE_IRQ,
324         },
325 };
326
327 static struct platform_device lcdc_device = {
328         .name           = "sh_mobile_lcdc_fb",
329         .num_resources  = ARRAY_SIZE(lcdc_resources),
330         .resource       = lcdc_resources,
331         .dev    = {
332                 .platform_data  = &lcdc_info,
333                 .coherent_dma_mask = ~0,
334         },
335 };
336
337 /* HDMI */
338 static struct sh_mobile_lcdc_info hdmi_lcdc_info = {
339         .clock_source = LCDC_CLK_EXTERNAL,
340         .ch[0] = {
341                 .chan = LCDC_CHAN_MAINLCD,
342                 .bpp = 16,
343                 .interface_type = RGB24,
344                 .clock_divider = 1,
345                 .flags = LCDC_FLAGS_DWPOL,
346         }
347 };
348
349 static struct resource hdmi_lcdc_resources[] = {
350         [0] = {
351                 .name   = "LCDC1",
352                 .start  = 0xfe944000,
353                 .end    = 0xfe947fff,
354                 .flags  = IORESOURCE_MEM,
355         },
356         [1] = {
357                 .start  = intcs_evt2irq(0x1780),
358                 .flags  = IORESOURCE_IRQ,
359         },
360 };
361
362 static struct platform_device hdmi_lcdc_device = {
363         .name           = "sh_mobile_lcdc_fb",
364         .num_resources  = ARRAY_SIZE(hdmi_lcdc_resources),
365         .resource       = hdmi_lcdc_resources,
366         .id             = 1,
367         .dev    = {
368                 .platform_data  = &hdmi_lcdc_info,
369                 .coherent_dma_mask = ~0,
370         },
371 };
372
373 static struct sh_mobile_hdmi_info hdmi_info = {
374         .lcd_chan       = &hdmi_lcdc_info.ch[0],
375         .lcd_dev        = &hdmi_lcdc_device.dev,
376         .flags          = HDMI_SND_SRC_SPDIF,
377 };
378
379 static struct resource hdmi_resources[] = {
380         [0] = {
381                 .name   = "HDMI",
382                 .start  = 0xe6be0000,
383                 .end    = 0xe6be00ff,
384                 .flags  = IORESOURCE_MEM,
385         },
386         [1] = {
387                 /* There's also an HDMI interrupt on INTCS @ 0x18e0 */
388                 .start  = evt2irq(0x17e0),
389                 .flags  = IORESOURCE_IRQ,
390         },
391 };
392
393 static struct platform_device hdmi_device = {
394         .name           = "sh-mobile-hdmi",
395         .num_resources  = ARRAY_SIZE(hdmi_resources),
396         .resource       = hdmi_resources,
397         .id             = -1,
398         .dev    = {
399                 .platform_data  = &hdmi_info,
400         },
401 };
402
403 static int __init hdmi_init_pm_clock(void)
404 {
405         struct clk *hdmi_ick = clk_get(&hdmi_device.dev, "ick");
406         int ret;
407         long rate;
408
409         if (IS_ERR(hdmi_ick)) {
410                 ret = PTR_ERR(hdmi_ick);
411                 pr_err("Cannot get HDMI ICK: %d\n", ret);
412                 goto out;
413         }
414
415         ret = clk_set_parent(&sh7372_pllc2_clk, &sh7372_dv_clki_div2_clk);
416         if (ret < 0) {
417                 pr_err("Cannot set PLLC2 parent: %d, %d users\n",
418                        ret, sh7372_pllc2_clk.usecount);
419                 goto out;
420         }
421
422         pr_debug("PLLC2 initial frequency %lu\n",
423                  clk_get_rate(&sh7372_pllc2_clk));
424
425         rate = clk_round_rate(&sh7372_pllc2_clk, 594000000);
426         if (rate < 0) {
427                 pr_err("Cannot get suitable rate: %ld\n", rate);
428                 ret = rate;
429                 goto out;
430         }
431
432         ret = clk_set_rate(&sh7372_pllc2_clk, rate);
433         if (ret < 0) {
434                 pr_err("Cannot set rate %ld: %d\n", rate, ret);
435                 goto out;
436         }
437
438         ret = clk_enable(&sh7372_pllc2_clk);
439         if (ret < 0) {
440                 pr_err("Cannot enable pllc2 clock\n");
441                 goto out;
442         }
443
444         pr_debug("PLLC2 set frequency %lu\n", rate);
445
446         ret = clk_set_parent(hdmi_ick, &sh7372_pllc2_clk);
447         if (ret < 0) {
448                 pr_err("Cannot set HDMI parent: %d\n", ret);
449                 goto out;
450         }
451
452 out:
453         if (!IS_ERR(hdmi_ick))
454                 clk_put(hdmi_ick);
455         return ret;
456 }
457 device_initcall(hdmi_init_pm_clock);
458
459 /* USB1 (Host) */
460 static void usb1_host_port_power(int port, int power)
461 {
462         if (!power) /* only power-on is supported for now */
463                 return;
464
465         /* set VBOUT/PWEN and EXTLP1 in DVSTCTR */
466         __raw_writew(__raw_readw(0xE68B0008) | 0x600, 0xE68B0008);
467 }
468
469 static struct r8a66597_platdata usb1_host_data = {
470         .on_chip        = 1,
471         .port_power     = usb1_host_port_power,
472 };
473
474 static struct resource usb1_host_resources[] = {
475         [0] = {
476                 .name   = "USBHS",
477                 .start  = 0xE68B0000,
478                 .end    = 0xE68B00E6 - 1,
479                 .flags  = IORESOURCE_MEM,
480         },
481         [1] = {
482                 .start  = evt2irq(0x1ce0) /* USB1_USB1I0 */,
483                 .flags  = IORESOURCE_IRQ,
484         },
485 };
486
487 static struct platform_device usb1_host_device = {
488         .name   = "r8a66597_hcd",
489         .id     = 1,
490         .dev = {
491                 .dma_mask               = NULL,         /*  not use dma */
492                 .coherent_dma_mask      = 0xffffffff,
493                 .platform_data          = &usb1_host_data,
494         },
495         .num_resources  = ARRAY_SIZE(usb1_host_resources),
496         .resource       = usb1_host_resources,
497 };
498
499 /* LED */
500 static struct gpio_led mackerel_leds[] = {
501         {
502                 .name           = "led0",
503                 .gpio           = GPIO_PORT0,
504                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
505         },
506         {
507                 .name           = "led1",
508                 .gpio           = GPIO_PORT1,
509                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
510         },
511         {
512                 .name           = "led2",
513                 .gpio           = GPIO_PORT2,
514                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
515         },
516         {
517                 .name           = "led3",
518                 .gpio           = GPIO_PORT159,
519                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
520         }
521 };
522
523 static struct gpio_led_platform_data mackerel_leds_pdata = {
524         .leds = mackerel_leds,
525         .num_leds = ARRAY_SIZE(mackerel_leds),
526 };
527
528 static struct platform_device leds_device = {
529         .name = "leds-gpio",
530         .id = 0,
531         .dev = {
532                 .platform_data  = &mackerel_leds_pdata,
533         },
534 };
535
536 /* FSI */
537 #define IRQ_FSI evt2irq(0x1840)
538 static int __fsi_set_round_rate(struct clk *clk, long rate, int enable)
539 {
540         int ret;
541
542         if (rate <= 0)
543                 return 0;
544
545         if (!enable) {
546                 clk_disable(clk);
547                 return 0;
548         }
549
550         ret = clk_set_rate(clk, clk_round_rate(clk, rate));
551         if (ret < 0)
552                 return ret;
553
554         return clk_enable(clk);
555 }
556
557 static int fsi_set_rate(struct device *dev, int is_porta, int rate, int enable)
558 {
559         struct clk *fsib_clk;
560         struct clk *fdiv_clk = &sh7372_fsidivb_clk;
561         long fsib_rate = 0;
562         long fdiv_rate = 0;
563         int ackmd_bpfmd;
564         int ret;
565
566         /* FSIA is slave mode. nothing to do here */
567         if (is_porta)
568                 return 0;
569
570         /* clock start */
571         switch (rate) {
572         case 44100:
573                 fsib_rate       = rate * 256;
574                 ackmd_bpfmd     = SH_FSI_ACKMD_256 | SH_FSI_BPFMD_64;
575                 break;
576         case 48000:
577                 fsib_rate       = 85428000; /* around 48kHz x 256 x 7 */
578                 fdiv_rate       = rate * 256;
579                 ackmd_bpfmd     = SH_FSI_ACKMD_256 | SH_FSI_BPFMD_64;
580                 break;
581         default:
582                 pr_err("unsupported rate in FSI2 port B\n");
583                 return -EINVAL;
584         }
585
586         /* FSI B setting */
587         fsib_clk = clk_get(dev, "ickb");
588         if (IS_ERR(fsib_clk))
589                 return -EIO;
590
591         /* fsib */
592         ret = __fsi_set_round_rate(fsib_clk, fsib_rate, enable);
593         if (ret < 0)
594                 goto fsi_set_rate_end;
595
596         /* FSI DIV */
597         ret = __fsi_set_round_rate(fdiv_clk, fdiv_rate, enable);
598         if (ret < 0) {
599                 /* disable FSI B */
600                 if (enable)
601                         __fsi_set_round_rate(fsib_clk, fsib_rate, 0);
602                 goto fsi_set_rate_end;
603         }
604
605         ret = ackmd_bpfmd;
606
607 fsi_set_rate_end:
608         clk_put(fsib_clk);
609         return ret;
610 }
611
612 static struct sh_fsi_platform_info fsi_info = {
613         .porta_flags =  SH_FSI_BRS_INV          |
614                         SH_FSI_OUT_SLAVE_MODE   |
615                         SH_FSI_IN_SLAVE_MODE    |
616                         SH_FSI_OFMT(PCM)        |
617                         SH_FSI_IFMT(PCM),
618
619         .portb_flags =  SH_FSI_BRS_INV  |
620                         SH_FSI_BRM_INV  |
621                         SH_FSI_LRS_INV  |
622                         SH_FSI_OFMT(SPDIF),
623
624         .set_rate = fsi_set_rate,
625 };
626
627 static struct resource fsi_resources[] = {
628         [0] = {
629                 .name   = "FSI",
630                 .start  = 0xFE3C0000,
631                 .end    = 0xFE3C0400 - 1,
632                 .flags  = IORESOURCE_MEM,
633         },
634         [1] = {
635                 .start  = IRQ_FSI,
636                 .flags  = IORESOURCE_IRQ,
637         },
638 };
639
640 static struct platform_device fsi_device = {
641         .name           = "sh_fsi2",
642         .id             = -1,
643         .num_resources  = ARRAY_SIZE(fsi_resources),
644         .resource       = fsi_resources,
645         .dev    = {
646                 .platform_data  = &fsi_info,
647         },
648 };
649
650 static struct platform_device fsi_ak4643_device = {
651         .name           = "sh_fsi2_a_ak4643",
652 };
653
654 /*
655  * The card detect pin of the top SD/MMC slot (CN7) is active low and is
656  * connected to GPIO A22 of SH7372 (GPIO_PORT41).
657  */
658 static int slot_cn7_get_cd(struct platform_device *pdev)
659 {
660         if (gpio_is_valid(GPIO_PORT41))
661                 return !gpio_get_value(GPIO_PORT41);
662         else
663                 return -ENXIO;
664 }
665
666 /* SDHI0 */
667 static struct sh_mobile_sdhi_info sdhi0_info = {
668         .dma_slave_tx   = SHDMA_SLAVE_SDHI0_TX,
669         .dma_slave_rx   = SHDMA_SLAVE_SDHI0_RX,
670         .tmio_caps      = MMC_CAP_SD_HIGHSPEED,
671 };
672
673 static struct resource sdhi0_resources[] = {
674         [0] = {
675                 .name   = "SDHI0",
676                 .start  = 0xe6850000,
677                 .end    = 0xe68501ff,
678                 .flags  = IORESOURCE_MEM,
679         },
680         [1] = {
681                 .start  = evt2irq(0x0e00) /* SDHI0 */,
682                 .flags  = IORESOURCE_IRQ,
683         },
684 };
685
686 static struct platform_device sdhi0_device = {
687         .name           = "sh_mobile_sdhi",
688         .num_resources  = ARRAY_SIZE(sdhi0_resources),
689         .resource       = sdhi0_resources,
690         .id             = 0,
691         .dev    = {
692                 .platform_data  = &sdhi0_info,
693         },
694 };
695
696 #if !defined(CONFIG_MMC_SH_MMCIF)
697 /* SDHI1 */
698 static struct sh_mobile_sdhi_info sdhi1_info = {
699         .dma_slave_tx   = SHDMA_SLAVE_SDHI1_TX,
700         .dma_slave_rx   = SHDMA_SLAVE_SDHI1_RX,
701         .tmio_ocr_mask  = MMC_VDD_165_195,
702         .tmio_flags     = TMIO_MMC_WRPROTECT_DISABLE,
703         .tmio_caps      = MMC_CAP_SD_HIGHSPEED |
704                           MMC_CAP_NEEDS_POLL,
705         .get_cd         = slot_cn7_get_cd,
706 };
707
708 static struct resource sdhi1_resources[] = {
709         [0] = {
710                 .name   = "SDHI1",
711                 .start  = 0xe6860000,
712                 .end    = 0xe68601ff,
713                 .flags  = IORESOURCE_MEM,
714         },
715         [1] = {
716                 .start  = evt2irq(0x0e80),
717                 .flags  = IORESOURCE_IRQ,
718         },
719 };
720
721 static struct platform_device sdhi1_device = {
722         .name           = "sh_mobile_sdhi",
723         .num_resources  = ARRAY_SIZE(sdhi1_resources),
724         .resource       = sdhi1_resources,
725         .id             = 1,
726         .dev    = {
727                 .platform_data  = &sdhi1_info,
728         },
729 };
730 #endif
731
732 /*
733  * The card detect pin of the top SD/MMC slot (CN23) is active low and is
734  * connected to GPIO SCIFB_SCK of SH7372 (GPIO_PORT162).
735  */
736 static int slot_cn23_get_cd(struct platform_device *pdev)
737 {
738         return !gpio_get_value(GPIO_PORT162);
739 }
740
741 /* SDHI2 */
742 static struct sh_mobile_sdhi_info sdhi2_info = {
743         .dma_slave_tx   = SHDMA_SLAVE_SDHI2_TX,
744         .dma_slave_rx   = SHDMA_SLAVE_SDHI2_RX,
745         .tmio_flags     = TMIO_MMC_WRPROTECT_DISABLE,
746         .tmio_caps      = MMC_CAP_SD_HIGHSPEED |
747                           MMC_CAP_NEEDS_POLL,
748         .get_cd         = slot_cn23_get_cd,
749 };
750
751 static struct resource sdhi2_resources[] = {
752         [0] = {
753                 .name   = "SDHI2",
754                 .start  = 0xe6870000,
755                 .end    = 0xe68701ff,
756                 .flags  = IORESOURCE_MEM,
757         },
758         [1] = {
759                 .start  = evt2irq(0x1200),
760                 .flags  = IORESOURCE_IRQ,
761         },
762 };
763
764 static struct platform_device sdhi2_device = {
765         .name   = "sh_mobile_sdhi",
766         .num_resources  = ARRAY_SIZE(sdhi2_resources),
767         .resource       = sdhi2_resources,
768         .id             = 2,
769         .dev    = {
770                 .platform_data  = &sdhi2_info,
771         },
772 };
773
774 /* SH_MMCIF */
775 static struct resource sh_mmcif_resources[] = {
776         [0] = {
777                 .name   = "MMCIF",
778                 .start  = 0xE6BD0000,
779                 .end    = 0xE6BD00FF,
780                 .flags  = IORESOURCE_MEM,
781         },
782         [1] = {
783                 /* MMC ERR */
784                 .start  = evt2irq(0x1ac0),
785                 .flags  = IORESOURCE_IRQ,
786         },
787         [2] = {
788                 /* MMC NOR */
789                 .start  = evt2irq(0x1ae0),
790                 .flags  = IORESOURCE_IRQ,
791         },
792 };
793
794 static struct sh_mmcif_plat_data sh_mmcif_plat = {
795         .sup_pclk       = 0,
796         .ocr            = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34,
797         .caps           = MMC_CAP_4_BIT_DATA |
798                           MMC_CAP_8_BIT_DATA |
799                           MMC_CAP_NEEDS_POLL,
800         .get_cd         = slot_cn7_get_cd,
801 };
802
803 static struct platform_device sh_mmcif_device = {
804         .name           = "sh_mmcif",
805         .id             = 0,
806         .dev            = {
807                 .dma_mask               = NULL,
808                 .coherent_dma_mask      = 0xffffffff,
809                 .platform_data          = &sh_mmcif_plat,
810         },
811         .num_resources  = ARRAY_SIZE(sh_mmcif_resources),
812         .resource       = sh_mmcif_resources,
813 };
814
815
816 static int mackerel_camera_add(struct soc_camera_link *icl, struct device *dev);
817 static void mackerel_camera_del(struct soc_camera_link *icl);
818
819 static int camera_set_capture(struct soc_camera_platform_info *info,
820                               int enable)
821 {
822         return 0; /* camera sensor always enabled */
823 }
824
825 static struct soc_camera_platform_info camera_info = {
826         .format_name = "UYVY",
827         .format_depth = 16,
828         .format = {
829                 .code = V4L2_MBUS_FMT_UYVY8_2X8,
830                 .colorspace = V4L2_COLORSPACE_SMPTE170M,
831                 .field = V4L2_FIELD_NONE,
832                 .width = 640,
833                 .height = 480,
834         },
835         .bus_param = SOCAM_PCLK_SAMPLE_RISING | SOCAM_HSYNC_ACTIVE_HIGH |
836         SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_MASTER | SOCAM_DATAWIDTH_8 |
837         SOCAM_DATA_ACTIVE_HIGH,
838         .set_capture = camera_set_capture,
839 };
840
841 static struct soc_camera_link camera_link = {
842         .bus_id         = 0,
843         .add_device     = mackerel_camera_add,
844         .del_device     = mackerel_camera_del,
845         .module_name    = "soc_camera_platform",
846         .priv           = &camera_info,
847 };
848
849 static void dummy_release(struct device *dev)
850 {
851 }
852
853 static struct platform_device camera_device = {
854         .name           = "soc_camera_platform",
855         .dev            = {
856                 .platform_data  = &camera_info,
857                 .release        = dummy_release,
858         },
859 };
860
861 static int mackerel_camera_add(struct soc_camera_link *icl,
862                                struct device *dev)
863 {
864         if (icl != &camera_link)
865                 return -ENODEV;
866
867         camera_info.dev = dev;
868
869         return platform_device_register(&camera_device);
870 }
871
872 static void mackerel_camera_del(struct soc_camera_link *icl)
873 {
874         if (icl != &camera_link)
875                 return;
876
877         platform_device_unregister(&camera_device);
878         memset(&camera_device.dev.kobj, 0,
879                sizeof(camera_device.dev.kobj));
880 }
881
882 static struct sh_mobile_ceu_info sh_mobile_ceu_info = {
883         .flags = SH_CEU_FLAG_USE_8BIT_BUS,
884 };
885
886 static struct resource ceu_resources[] = {
887         [0] = {
888                 .name   = "CEU",
889                 .start  = 0xfe910000,
890                 .end    = 0xfe91009f,
891                 .flags  = IORESOURCE_MEM,
892         },
893         [1] = {
894                 .start  = intcs_evt2irq(0x880),
895                 .flags  = IORESOURCE_IRQ,
896         },
897         [2] = {
898                 /* place holder for contiguous memory */
899         },
900 };
901
902 static struct platform_device ceu_device = {
903         .name           = "sh_mobile_ceu",
904         .id             = 0, /* "ceu0" clock */
905         .num_resources  = ARRAY_SIZE(ceu_resources),
906         .resource       = ceu_resources,
907         .dev            = {
908                 .platform_data  = &sh_mobile_ceu_info,
909         },
910 };
911
912 static struct platform_device mackerel_camera = {
913         .name   = "soc-camera-pdrv",
914         .id     = 0,
915         .dev    = {
916                 .platform_data = &camera_link,
917         },
918 };
919
920 static struct platform_device *mackerel_devices[] __initdata = {
921         &nor_flash_device,
922         &smc911x_device,
923         &lcdc_device,
924         &usb1_host_device,
925         &leds_device,
926         &fsi_device,
927         &fsi_ak4643_device,
928         &sdhi0_device,
929 #if !defined(CONFIG_MMC_SH_MMCIF)
930         &sdhi1_device,
931 #endif
932         &sdhi2_device,
933         &sh_mmcif_device,
934         &ceu_device,
935         &mackerel_camera,
936         &hdmi_lcdc_device,
937         &hdmi_device,
938 };
939
940 /* Keypad Initialization */
941 #define KEYPAD_BUTTON(ev_type, ev_code, act_low) \
942 {                                                               \
943         .type           = ev_type,                              \
944         .code           = ev_code,                              \
945         .active_low     = act_low,                              \
946 }
947
948 #define KEYPAD_BUTTON_LOW(event_code) KEYPAD_BUTTON(EV_KEY, event_code, 1)
949
950 static struct tca6416_button mackerel_gpio_keys[] = {
951         KEYPAD_BUTTON_LOW(KEY_HOME),
952         KEYPAD_BUTTON_LOW(KEY_MENU),
953         KEYPAD_BUTTON_LOW(KEY_BACK),
954         KEYPAD_BUTTON_LOW(KEY_POWER),
955 };
956
957 static struct tca6416_keys_platform_data mackerel_tca6416_keys_info = {
958         .buttons        = mackerel_gpio_keys,
959         .nbuttons       = ARRAY_SIZE(mackerel_gpio_keys),
960         .rep            = 1,
961         .use_polling    = 0,
962         .pinmask        = 0x000F,
963 };
964
965 /* I2C */
966 #define IRQ7 evt2irq(0x02e0)
967 #define IRQ9 evt2irq(0x0320)
968
969 static struct i2c_board_info i2c0_devices[] = {
970         {
971                 I2C_BOARD_INFO("ak4643", 0x13),
972         },
973         /* Keypad */
974         {
975                 I2C_BOARD_INFO("tca6408-keys", 0x20),
976                 .platform_data = &mackerel_tca6416_keys_info,
977                 .irq = IRQ9,
978         },
979         /* Touchscreen */
980         {
981                 I2C_BOARD_INFO("st1232-ts", 0x55),
982                 .irq = IRQ7,
983         },
984 };
985
986 #define IRQ21 evt2irq(0x32a0)
987
988 static struct i2c_board_info i2c1_devices[] = {
989         /* Accelerometer */
990         {
991                 I2C_BOARD_INFO("adxl34x", 0x53),
992                 .irq = IRQ21,
993         },
994 };
995
996 static struct map_desc mackerel_io_desc[] __initdata = {
997         /* create a 1:1 entity map for 0xe6xxxxxx
998          * used by CPGA, INTC and PFC.
999          */
1000         {
1001                 .virtual        = 0xe6000000,
1002                 .pfn            = __phys_to_pfn(0xe6000000),
1003                 .length         = 256 << 20,
1004                 .type           = MT_DEVICE_NONSHARED
1005         },
1006 };
1007
1008 static void __init mackerel_map_io(void)
1009 {
1010         iotable_init(mackerel_io_desc, ARRAY_SIZE(mackerel_io_desc));
1011
1012         /* setup early devices and console here as well */
1013         sh7372_add_early_devices();
1014         shmobile_setup_console();
1015 }
1016
1017 #define GPIO_PORT9CR    0xE6051009
1018 #define GPIO_PORT10CR   0xE605100A
1019 #define SRCR4           0xe61580bc
1020 #define USCCR1          0xE6058144
1021 static void __init mackerel_init(void)
1022 {
1023         u32 srcr4;
1024         struct clk *clk;
1025
1026         sh7372_pinmux_init();
1027
1028         /* enable SCIFA0 */
1029         gpio_request(GPIO_FN_SCIFA0_TXD, NULL);
1030         gpio_request(GPIO_FN_SCIFA0_RXD, NULL);
1031
1032         /* enable SMSC911X */
1033         gpio_request(GPIO_FN_CS5A,      NULL);
1034         gpio_request(GPIO_FN_IRQ6_39,   NULL);
1035
1036         /* LCDC */
1037         gpio_request(GPIO_FN_LCDD23,   NULL);
1038         gpio_request(GPIO_FN_LCDD22,   NULL);
1039         gpio_request(GPIO_FN_LCDD21,   NULL);
1040         gpio_request(GPIO_FN_LCDD20,   NULL);
1041         gpio_request(GPIO_FN_LCDD19,   NULL);
1042         gpio_request(GPIO_FN_LCDD18,   NULL);
1043         gpio_request(GPIO_FN_LCDD17,   NULL);
1044         gpio_request(GPIO_FN_LCDD16,   NULL);
1045         gpio_request(GPIO_FN_LCDD15,   NULL);
1046         gpio_request(GPIO_FN_LCDD14,   NULL);
1047         gpio_request(GPIO_FN_LCDD13,   NULL);
1048         gpio_request(GPIO_FN_LCDD12,   NULL);
1049         gpio_request(GPIO_FN_LCDD11,   NULL);
1050         gpio_request(GPIO_FN_LCDD10,   NULL);
1051         gpio_request(GPIO_FN_LCDD9,    NULL);
1052         gpio_request(GPIO_FN_LCDD8,    NULL);
1053         gpio_request(GPIO_FN_LCDD7,    NULL);
1054         gpio_request(GPIO_FN_LCDD6,    NULL);
1055         gpio_request(GPIO_FN_LCDD5,    NULL);
1056         gpio_request(GPIO_FN_LCDD4,    NULL);
1057         gpio_request(GPIO_FN_LCDD3,    NULL);
1058         gpio_request(GPIO_FN_LCDD2,    NULL);
1059         gpio_request(GPIO_FN_LCDD1,    NULL);
1060         gpio_request(GPIO_FN_LCDD0,    NULL);
1061         gpio_request(GPIO_FN_LCDDISP,  NULL);
1062         gpio_request(GPIO_FN_LCDDCK,   NULL);
1063
1064         gpio_request(GPIO_PORT31, NULL); /* backlight */
1065         gpio_direction_output(GPIO_PORT31, 1);
1066
1067         gpio_request(GPIO_PORT151, NULL); /* LCDDON */
1068         gpio_direction_output(GPIO_PORT151, 1);
1069
1070         /* USB enable */
1071         gpio_request(GPIO_FN_VBUS0_1,    NULL);
1072         gpio_request(GPIO_FN_IDIN_1_18,  NULL);
1073         gpio_request(GPIO_FN_PWEN_1_115, NULL);
1074         gpio_request(GPIO_FN_OVCN_1_114, NULL);
1075         gpio_request(GPIO_FN_EXTLP_1,    NULL);
1076         gpio_request(GPIO_FN_OVCN2_1,    NULL);
1077
1078         /* setup USB phy */
1079         __raw_writew(0x8a0a, 0xE6058130);       /* USBCR4 */
1080
1081         /* enable FSI2 port A (ak4643) */
1082         gpio_request(GPIO_FN_FSIAIBT,   NULL);
1083         gpio_request(GPIO_FN_FSIAILR,   NULL);
1084         gpio_request(GPIO_FN_FSIAISLD,  NULL);
1085         gpio_request(GPIO_FN_FSIAOSLD,  NULL);
1086         gpio_request(GPIO_PORT161,      NULL);
1087         gpio_direction_output(GPIO_PORT161, 0); /* slave */
1088
1089         gpio_request(GPIO_PORT9,  NULL);
1090         gpio_request(GPIO_PORT10, NULL);
1091         gpio_no_direction(GPIO_PORT9CR);  /* FSIAOBT needs no direction */
1092         gpio_no_direction(GPIO_PORT10CR); /* FSIAOLR needs no direction */
1093
1094         intc_set_priority(IRQ_FSI, 3); /* irq priority FSI(3) > SMSC911X(2) */
1095
1096         /* setup FSI2 port B (HDMI) */
1097         gpio_request(GPIO_FN_FSIBCK, NULL);
1098         __raw_writew(__raw_readw(USCCR1) & ~(1 << 6), USCCR1); /* use SPDIF */
1099
1100         /* set SPU2 clock to 119.6 MHz */
1101         clk = clk_get(NULL, "spu_clk");
1102         if (!IS_ERR(clk)) {
1103                 clk_set_rate(clk, clk_round_rate(clk, 119600000));
1104                 clk_put(clk);
1105         }
1106
1107         /* enable Keypad */
1108         gpio_request(GPIO_FN_IRQ9_42,   NULL);
1109         set_irq_type(IRQ9, IRQ_TYPE_LEVEL_HIGH);
1110
1111         /* enable Touchscreen */
1112         gpio_request(GPIO_FN_IRQ7_40,   NULL);
1113         set_irq_type(IRQ7, IRQ_TYPE_LEVEL_LOW);
1114
1115         /* enable Accelerometer */
1116         gpio_request(GPIO_FN_IRQ21,     NULL);
1117         set_irq_type(IRQ21, IRQ_TYPE_LEVEL_HIGH);
1118
1119         /* enable SDHI0 */
1120         gpio_request(GPIO_FN_SDHICD0, NULL);
1121         gpio_request(GPIO_FN_SDHIWP0, NULL);
1122         gpio_request(GPIO_FN_SDHICMD0, NULL);
1123         gpio_request(GPIO_FN_SDHICLK0, NULL);
1124         gpio_request(GPIO_FN_SDHID0_3, NULL);
1125         gpio_request(GPIO_FN_SDHID0_2, NULL);
1126         gpio_request(GPIO_FN_SDHID0_1, NULL);
1127         gpio_request(GPIO_FN_SDHID0_0, NULL);
1128
1129 #if !defined(CONFIG_MMC_SH_MMCIF)
1130         /* enable SDHI1 */
1131         gpio_request(GPIO_FN_SDHICMD1, NULL);
1132         gpio_request(GPIO_FN_SDHICLK1, NULL);
1133         gpio_request(GPIO_FN_SDHID1_3, NULL);
1134         gpio_request(GPIO_FN_SDHID1_2, NULL);
1135         gpio_request(GPIO_FN_SDHID1_1, NULL);
1136         gpio_request(GPIO_FN_SDHID1_0, NULL);
1137 #endif
1138         /* card detect pin for MMC slot (CN7) */
1139         gpio_request(GPIO_PORT41, NULL);
1140         gpio_direction_input(GPIO_PORT41);
1141
1142         /* enable SDHI2 */
1143         gpio_request(GPIO_FN_SDHICMD2, NULL);
1144         gpio_request(GPIO_FN_SDHICLK2, NULL);
1145         gpio_request(GPIO_FN_SDHID2_3, NULL);
1146         gpio_request(GPIO_FN_SDHID2_2, NULL);
1147         gpio_request(GPIO_FN_SDHID2_1, NULL);
1148         gpio_request(GPIO_FN_SDHID2_0, NULL);
1149
1150         /* card detect pin for microSD slot (CN23) */
1151         gpio_request(GPIO_PORT162, NULL);
1152         gpio_direction_input(GPIO_PORT162);
1153
1154         /* MMCIF */
1155         gpio_request(GPIO_FN_MMCD0_0, NULL);
1156         gpio_request(GPIO_FN_MMCD0_1, NULL);
1157         gpio_request(GPIO_FN_MMCD0_2, NULL);
1158         gpio_request(GPIO_FN_MMCD0_3, NULL);
1159         gpio_request(GPIO_FN_MMCD0_4, NULL);
1160         gpio_request(GPIO_FN_MMCD0_5, NULL);
1161         gpio_request(GPIO_FN_MMCD0_6, NULL);
1162         gpio_request(GPIO_FN_MMCD0_7, NULL);
1163         gpio_request(GPIO_FN_MMCCMD0, NULL);
1164         gpio_request(GPIO_FN_MMCCLK0, NULL);
1165
1166         /* enable GPS module (GT-720F) */
1167         gpio_request(GPIO_FN_SCIFA2_TXD1, NULL);
1168         gpio_request(GPIO_FN_SCIFA2_RXD1, NULL);
1169
1170         /* CEU */
1171         gpio_request(GPIO_FN_VIO_CLK, NULL);
1172         gpio_request(GPIO_FN_VIO_VD, NULL);
1173         gpio_request(GPIO_FN_VIO_HD, NULL);
1174         gpio_request(GPIO_FN_VIO_FIELD, NULL);
1175         gpio_request(GPIO_FN_VIO_CKO, NULL);
1176         gpio_request(GPIO_FN_VIO_D7, NULL);
1177         gpio_request(GPIO_FN_VIO_D6, NULL);
1178         gpio_request(GPIO_FN_VIO_D5, NULL);
1179         gpio_request(GPIO_FN_VIO_D4, NULL);
1180         gpio_request(GPIO_FN_VIO_D3, NULL);
1181         gpio_request(GPIO_FN_VIO_D2, NULL);
1182         gpio_request(GPIO_FN_VIO_D1, NULL);
1183         gpio_request(GPIO_FN_VIO_D0, NULL);
1184
1185         /* HDMI */
1186         gpio_request(GPIO_FN_HDMI_HPD, NULL);
1187         gpio_request(GPIO_FN_HDMI_CEC, NULL);
1188
1189         /* Reset HDMI, must be held at least one EXTALR (32768Hz) period */
1190         srcr4 = __raw_readl(SRCR4);
1191         __raw_writel(srcr4 | (1 << 13), SRCR4);
1192         udelay(50);
1193         __raw_writel(srcr4 & ~(1 << 13), SRCR4);
1194
1195         i2c_register_board_info(0, i2c0_devices,
1196                                 ARRAY_SIZE(i2c0_devices));
1197         i2c_register_board_info(1, i2c1_devices,
1198                                 ARRAY_SIZE(i2c1_devices));
1199
1200         sh7372_add_standard_devices();
1201
1202         platform_add_devices(mackerel_devices, ARRAY_SIZE(mackerel_devices));
1203 }
1204
1205 static void __init mackerel_timer_init(void)
1206 {
1207         sh7372_clock_init();
1208         shmobile_timer.init();
1209
1210         /* External clock source */
1211         clk_set_rate(&sh7372_dv_clki_clk, 27000000);
1212 }
1213
1214 static struct sys_timer mackerel_timer = {
1215         .init           = mackerel_timer_init,
1216 };
1217
1218 MACHINE_START(MACKEREL, "mackerel")
1219         .map_io         = mackerel_map_io,
1220         .init_irq       = sh7372_init_irq,
1221         .handle_irq     = shmobile_handle_irq_intc,
1222         .init_machine   = mackerel_init,
1223         .timer          = &mackerel_timer,
1224 MACHINE_END