Merge branch 'pgt' (early part) into devel
[pandora-kernel.git] / arch / arm / mach-shmobile / board-ap4evb.c
1 /*
2  * AP4EVB board support
3  *
4  * Copyright (C) 2010  Magnus Damm
5  * Copyright (C) 2008  Yoshihiro Shimoda
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20 #include <linux/clk.h>
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
25 #include <linux/platform_device.h>
26 #include <linux/delay.h>
27 #include <linux/mfd/sh_mobile_sdhi.h>
28 #include <linux/mfd/tmio.h>
29 #include <linux/mmc/host.h>
30 #include <linux/mtd/mtd.h>
31 #include <linux/mtd/partitions.h>
32 #include <linux/mtd/physmap.h>
33 #include <linux/mmc/sh_mmcif.h>
34 #include <linux/i2c.h>
35 #include <linux/i2c/tsc2007.h>
36 #include <linux/io.h>
37 #include <linux/smsc911x.h>
38 #include <linux/sh_intc.h>
39 #include <linux/sh_clk.h>
40 #include <linux/gpio.h>
41 #include <linux/input.h>
42 #include <linux/leds.h>
43 #include <linux/input/sh_keysc.h>
44 #include <linux/usb/r8a66597.h>
45
46 #include <media/sh_mobile_ceu.h>
47 #include <media/sh_mobile_csi2.h>
48 #include <media/soc_camera.h>
49
50 #include <sound/sh_fsi.h>
51
52 #include <video/sh_mobile_hdmi.h>
53 #include <video/sh_mobile_lcdc.h>
54 #include <video/sh_mipi_dsi.h>
55
56 #include <mach/common.h>
57 #include <mach/irqs.h>
58 #include <mach/sh7372.h>
59
60 #include <asm/mach-types.h>
61 #include <asm/mach/arch.h>
62 #include <asm/mach/map.h>
63 #include <asm/mach/time.h>
64 #include <asm/setup.h>
65
66 /*
67  * Address      Interface               BusWidth        note
68  * ------------------------------------------------------------------
69  * 0x0000_0000  NOR Flash ROM (MCP)     16bit           SW7 : bit1 = ON
70  * 0x0800_0000  user area               -
71  * 0x1000_0000  NOR Flash ROM (MCP)     16bit           SW7 : bit1 = OFF
72  * 0x1400_0000  Ether (LAN9220)         16bit
73  * 0x1600_0000  user area               -               cannot use with NAND
74  * 0x1800_0000  user area               -
75  * 0x1A00_0000  -
76  * 0x4000_0000  LPDDR2-SDRAM (POP)      32bit
77  */
78
79 /*
80  * NOR Flash ROM
81  *
82  *  SW1  |     SW2    | SW7  | NOR Flash ROM
83  *  bit1 | bit1  bit2 | bit1 | Memory allocation
84  * ------+------------+------+------------------
85  *  OFF  | ON     OFF | ON   |    Area 0
86  *  OFF  | ON     OFF | OFF  |    Area 4
87  */
88
89 /*
90  * NAND Flash ROM
91  *
92  *  SW1  |     SW2    | SW7  | NAND Flash ROM
93  *  bit1 | bit1  bit2 | bit2 | Memory allocation
94  * ------+------------+------+------------------
95  *  OFF  | ON     OFF | ON   |    FCE 0
96  *  OFF  | ON     OFF | OFF  |    FCE 1
97  */
98
99 /*
100  * SMSC 9220
101  *
102  *  SW1         SMSC 9220
103  * -----------------------
104  *  ON          access disable
105  *  OFF         access enable
106  */
107
108 /*
109  * LCD / IRQ / KEYSC / IrDA
110  *
111  * IRQ = IRQ26 (TS), IRQ27 (VIO), IRQ28 (QHD-TouchScreen)
112  * LCD = 2nd LCDC (WVGA)
113  *
114  *              |               SW43                    |
115  * SW3          |       ON              |       OFF     |
116  * -------------+-----------------------+---------------+
117  * ON           | KEY / IrDA            | LCD           |
118  * OFF          | KEY / IrDA / IRQ      | IRQ           |
119  *
120  *
121  * QHD / WVGA display
122  *
123  * You can choice display type on menuconfig.
124  * Then, check above dip-switch.
125  */
126
127 /*
128  * USB
129  *
130  * J7 : 1-2  MAX3355E VBUS
131  *      2-3  DC 5.0V
132  *
133  * S39: bit2: off
134  */
135
136 /*
137  * FSI/FSMI
138  *
139  * SW41 :  ON : SH-Mobile AP4 Audio Mode
140  *      : OFF : Bluetooth Audio Mode
141  */
142
143 /*
144  * MMC0/SDHI1 (CN7)
145  *
146  * J22 : select card voltage
147  *       1-2 pin : 1.8v
148  *       2-3 pin : 3.3v
149  *
150  *        SW1  |             SW33
151  *             | bit1 | bit2 | bit3 | bit4
152  * ------------+------+------+------+-------
153  * MMC0   OFF  |  OFF |  ON  |  ON  |  X
154  * SDHI1  OFF  |  ON  |   X  |  OFF | ON
155  *
156  * voltage lebel
157  * CN7 : 1.8v
158  * CN12: 3.3v
159  */
160
161 /* MTD */
162 static struct mtd_partition nor_flash_partitions[] = {
163         {
164                 .name           = "loader",
165                 .offset         = 0x00000000,
166                 .size           = 512 * 1024,
167                 .mask_flags     = MTD_WRITEABLE,
168         },
169         {
170                 .name           = "bootenv",
171                 .offset         = MTDPART_OFS_APPEND,
172                 .size           = 512 * 1024,
173                 .mask_flags     = MTD_WRITEABLE,
174         },
175         {
176                 .name           = "kernel_ro",
177                 .offset         = MTDPART_OFS_APPEND,
178                 .size           = 8 * 1024 * 1024,
179                 .mask_flags     = MTD_WRITEABLE,
180         },
181         {
182                 .name           = "kernel",
183                 .offset         = MTDPART_OFS_APPEND,
184                 .size           = 8 * 1024 * 1024,
185         },
186         {
187                 .name           = "data",
188                 .offset         = MTDPART_OFS_APPEND,
189                 .size           = MTDPART_SIZ_FULL,
190         },
191 };
192
193 static struct physmap_flash_data nor_flash_data = {
194         .width          = 2,
195         .parts          = nor_flash_partitions,
196         .nr_parts       = ARRAY_SIZE(nor_flash_partitions),
197 };
198
199 static struct resource nor_flash_resources[] = {
200         [0]     = {
201                 .start  = 0x00000000,
202                 .end    = 0x08000000 - 1,
203                 .flags  = IORESOURCE_MEM,
204         }
205 };
206
207 static struct platform_device nor_flash_device = {
208         .name           = "physmap-flash",
209         .dev            = {
210                 .platform_data  = &nor_flash_data,
211         },
212         .num_resources  = ARRAY_SIZE(nor_flash_resources),
213         .resource       = nor_flash_resources,
214 };
215
216 /* SMSC 9220 */
217 static struct resource smc911x_resources[] = {
218         {
219                 .start  = 0x14000000,
220                 .end    = 0x16000000 - 1,
221                 .flags  = IORESOURCE_MEM,
222         }, {
223                 .start  = evt2irq(0x02c0) /* IRQ6A */,
224                 .flags  = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
225         },
226 };
227
228 static struct smsc911x_platform_config smsc911x_info = {
229         .flags          = SMSC911X_USE_16BIT | SMSC911X_SAVE_MAC_ADDRESS,
230         .irq_polarity   = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
231         .irq_type       = SMSC911X_IRQ_TYPE_PUSH_PULL,
232 };
233
234 static struct platform_device smc911x_device = {
235         .name           = "smsc911x",
236         .id             = -1,
237         .num_resources  = ARRAY_SIZE(smc911x_resources),
238         .resource       = smc911x_resources,
239         .dev            = {
240                 .platform_data = &smsc911x_info,
241         },
242 };
243
244 /*
245  * The card detect pin of the top SD/MMC slot (CN7) is active low and is
246  * connected to GPIO A22 of SH7372 (GPIO_PORT41).
247  */
248 static int slot_cn7_get_cd(struct platform_device *pdev)
249 {
250         if (gpio_is_valid(GPIO_PORT41))
251                 return !gpio_get_value(GPIO_PORT41);
252         else
253                 return -ENXIO;
254 }
255
256 /* SH_MMCIF */
257 static struct resource sh_mmcif_resources[] = {
258         [0] = {
259                 .name   = "MMCIF",
260                 .start  = 0xE6BD0000,
261                 .end    = 0xE6BD00FF,
262                 .flags  = IORESOURCE_MEM,
263         },
264         [1] = {
265                 /* MMC ERR */
266                 .start  = evt2irq(0x1ac0),
267                 .flags  = IORESOURCE_IRQ,
268         },
269         [2] = {
270                 /* MMC NOR */
271                 .start  = evt2irq(0x1ae0),
272                 .flags  = IORESOURCE_IRQ,
273         },
274 };
275
276 static struct sh_mmcif_plat_data sh_mmcif_plat = {
277         .sup_pclk       = 0,
278         .ocr            = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34,
279         .caps           = MMC_CAP_4_BIT_DATA |
280                           MMC_CAP_8_BIT_DATA |
281                           MMC_CAP_NEEDS_POLL,
282         .get_cd         = slot_cn7_get_cd,
283 };
284
285 static struct platform_device sh_mmcif_device = {
286         .name           = "sh_mmcif",
287         .id             = 0,
288         .dev            = {
289                 .dma_mask               = NULL,
290                 .coherent_dma_mask      = 0xffffffff,
291                 .platform_data          = &sh_mmcif_plat,
292         },
293         .num_resources  = ARRAY_SIZE(sh_mmcif_resources),
294         .resource       = sh_mmcif_resources,
295 };
296
297 /* SDHI0 */
298 static struct sh_mobile_sdhi_info sdhi0_info = {
299         .dma_slave_tx   = SHDMA_SLAVE_SDHI0_TX,
300         .dma_slave_rx   = SHDMA_SLAVE_SDHI0_RX,
301 };
302
303 static struct resource sdhi0_resources[] = {
304         [0] = {
305                 .name   = "SDHI0",
306                 .start  = 0xe6850000,
307                 .end    = 0xe68501ff,
308                 .flags  = IORESOURCE_MEM,
309         },
310         [1] = {
311                 .start  = evt2irq(0x0e00) /* SDHI0 */,
312                 .flags  = IORESOURCE_IRQ,
313         },
314 };
315
316 static struct platform_device sdhi0_device = {
317         .name           = "sh_mobile_sdhi",
318         .num_resources  = ARRAY_SIZE(sdhi0_resources),
319         .resource       = sdhi0_resources,
320         .id             = 0,
321         .dev    = {
322                 .platform_data  = &sdhi0_info,
323         },
324 };
325
326 /* SDHI1 */
327 static struct sh_mobile_sdhi_info sdhi1_info = {
328         .dma_slave_tx   = SHDMA_SLAVE_SDHI1_TX,
329         .dma_slave_rx   = SHDMA_SLAVE_SDHI1_RX,
330         .tmio_ocr_mask  = MMC_VDD_165_195,
331         .tmio_flags     = TMIO_MMC_WRPROTECT_DISABLE,
332         .tmio_caps      = MMC_CAP_NEEDS_POLL,
333         .get_cd         = slot_cn7_get_cd,
334 };
335
336 static struct resource sdhi1_resources[] = {
337         [0] = {
338                 .name   = "SDHI1",
339                 .start  = 0xe6860000,
340                 .end    = 0xe68601ff,
341                 .flags  = IORESOURCE_MEM,
342         },
343         [1] = {
344                 .start  = evt2irq(0x0e80),
345                 .flags  = IORESOURCE_IRQ,
346         },
347 };
348
349 static struct platform_device sdhi1_device = {
350         .name           = "sh_mobile_sdhi",
351         .num_resources  = ARRAY_SIZE(sdhi1_resources),
352         .resource       = sdhi1_resources,
353         .id             = 1,
354         .dev    = {
355                 .platform_data  = &sdhi1_info,
356         },
357 };
358
359 /* USB1 */
360 static void usb1_host_port_power(int port, int power)
361 {
362         if (!power) /* only power-on supported for now */
363                 return;
364
365         /* set VBOUT/PWEN and EXTLP1 in DVSTCTR */
366         __raw_writew(__raw_readw(0xE68B0008) | 0x600, 0xE68B0008);
367 }
368
369 static struct r8a66597_platdata usb1_host_data = {
370         .on_chip        = 1,
371         .port_power     = usb1_host_port_power,
372 };
373
374 static struct resource usb1_host_resources[] = {
375         [0] = {
376                 .name   = "USBHS",
377                 .start  = 0xE68B0000,
378                 .end    = 0xE68B00E6 - 1,
379                 .flags  = IORESOURCE_MEM,
380         },
381         [1] = {
382                 .start  = evt2irq(0x1ce0) /* USB1_USB1I0 */,
383                 .flags  = IORESOURCE_IRQ,
384         },
385 };
386
387 static struct platform_device usb1_host_device = {
388         .name   = "r8a66597_hcd",
389         .id     = 1,
390         .dev = {
391                 .dma_mask               = NULL,         /*  not use dma */
392                 .coherent_dma_mask      = 0xffffffff,
393                 .platform_data          = &usb1_host_data,
394         },
395         .num_resources  = ARRAY_SIZE(usb1_host_resources),
396         .resource       = usb1_host_resources,
397 };
398
399 const static struct fb_videomode ap4evb_lcdc_modes[] = {
400         {
401 #ifdef CONFIG_AP4EVB_QHD
402                 .name           = "R63302(QHD)",
403                 .xres           = 544,
404                 .yres           = 961,
405                 .left_margin    = 72,
406                 .right_margin   = 600,
407                 .hsync_len      = 16,
408                 .upper_margin   = 8,
409                 .lower_margin   = 8,
410                 .vsync_len      = 2,
411                 .sync           = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
412 #else
413                 .name           = "WVGA Panel",
414                 .xres           = 800,
415                 .yres           = 480,
416                 .left_margin    = 220,
417                 .right_margin   = 110,
418                 .hsync_len      = 70,
419                 .upper_margin   = 20,
420                 .lower_margin   = 5,
421                 .vsync_len      = 5,
422                 .sync           = 0,
423 #endif
424         },
425 };
426
427 static struct sh_mobile_lcdc_info lcdc_info = {
428         .ch[0] = {
429                 .chan = LCDC_CHAN_MAINLCD,
430                 .bpp = 16,
431                 .lcd_cfg = ap4evb_lcdc_modes,
432                 .num_cfg = ARRAY_SIZE(ap4evb_lcdc_modes),
433         }
434 };
435
436 static struct resource lcdc_resources[] = {
437         [0] = {
438                 .name   = "LCDC",
439                 .start  = 0xfe940000, /* P4-only space */
440                 .end    = 0xfe943fff,
441                 .flags  = IORESOURCE_MEM,
442         },
443         [1] = {
444                 .start  = intcs_evt2irq(0x580),
445                 .flags  = IORESOURCE_IRQ,
446         },
447 };
448
449 static struct platform_device lcdc_device = {
450         .name           = "sh_mobile_lcdc_fb",
451         .num_resources  = ARRAY_SIZE(lcdc_resources),
452         .resource       = lcdc_resources,
453         .dev    = {
454                 .platform_data  = &lcdc_info,
455                 .coherent_dma_mask = ~0,
456         },
457 };
458
459 /*
460  * QHD display
461  */
462 #ifdef CONFIG_AP4EVB_QHD
463
464 /* KEYSC (Needs SW43 set to ON) */
465 static struct sh_keysc_info keysc_info = {
466         .mode           = SH_KEYSC_MODE_1,
467         .scan_timing    = 3,
468         .delay          = 2500,
469         .keycodes = {
470                 KEY_0, KEY_1, KEY_2, KEY_3, KEY_4,
471                 KEY_5, KEY_6, KEY_7, KEY_8, KEY_9,
472                 KEY_A, KEY_B, KEY_C, KEY_D, KEY_E,
473                 KEY_F, KEY_G, KEY_H, KEY_I, KEY_J,
474                 KEY_K, KEY_L, KEY_M, KEY_N, KEY_O,
475         },
476 };
477
478 static struct resource keysc_resources[] = {
479         [0] = {
480                 .name   = "KEYSC",
481                 .start  = 0xe61b0000,
482                 .end    = 0xe61b0063,
483                 .flags  = IORESOURCE_MEM,
484         },
485         [1] = {
486                 .start  = evt2irq(0x0be0), /* KEYSC_KEY */
487                 .flags  = IORESOURCE_IRQ,
488         },
489 };
490
491 static struct platform_device keysc_device = {
492         .name           = "sh_keysc",
493         .id             = 0, /* "keysc0" clock */
494         .num_resources  = ARRAY_SIZE(keysc_resources),
495         .resource       = keysc_resources,
496         .dev    = {
497                 .platform_data  = &keysc_info,
498         },
499 };
500
501 /* MIPI-DSI */
502 static struct resource mipidsi0_resources[] = {
503         [0] = {
504                 .start  = 0xffc60000,
505                 .end    = 0xffc68fff,
506                 .flags  = IORESOURCE_MEM,
507         },
508 };
509
510 static struct sh_mipi_dsi_info mipidsi0_info = {
511         .data_format    = MIPI_RGB888,
512         .lcd_chan       = &lcdc_info.ch[0],
513 };
514
515 static struct platform_device mipidsi0_device = {
516         .name           = "sh-mipi-dsi",
517         .num_resources  = ARRAY_SIZE(mipidsi0_resources),
518         .resource       = mipidsi0_resources,
519         .id             = 0,
520         .dev    = {
521                 .platform_data  = &mipidsi0_info,
522         },
523 };
524
525 /* This function will disappear when we switch to (runtime) PM */
526 static int __init ap4evb_init_display_clk(void)
527 {
528         struct clk *lcdc_clk;
529         struct clk *dsitx_clk;
530         int ret;
531
532         lcdc_clk = clk_get(&lcdc_device.dev, "sh_mobile_lcdc_fb.0");
533         if (IS_ERR(lcdc_clk))
534                 return PTR_ERR(lcdc_clk);
535
536         dsitx_clk = clk_get(&mipidsi0_device.dev, "sh-mipi-dsi.0");
537         if (IS_ERR(dsitx_clk)) {
538                 ret = PTR_ERR(dsitx_clk);
539                 goto eclkdsitxget;
540         }
541
542         ret = clk_enable(lcdc_clk);
543         if (ret < 0)
544                 goto eclklcdcon;
545
546         ret = clk_enable(dsitx_clk);
547         if (ret < 0)
548                 goto eclkdsitxon;
549
550         return 0;
551
552 eclkdsitxon:
553         clk_disable(lcdc_clk);
554 eclklcdcon:
555         clk_put(dsitx_clk);
556 eclkdsitxget:
557         clk_put(lcdc_clk);
558
559         return ret;
560 }
561 device_initcall(ap4evb_init_display_clk);
562
563 static struct platform_device *qhd_devices[] __initdata = {
564         &mipidsi0_device,
565         &keysc_device,
566 };
567 #endif /* CONFIG_AP4EVB_QHD */
568
569 /* FSI */
570 #define IRQ_FSI         evt2irq(0x1840)
571 static int __fsi_set_rate(struct clk *clk, long rate, int enable)
572 {
573         int ret = 0;
574
575         if (rate <= 0)
576                 return ret;
577
578         if (enable) {
579                 ret = clk_set_rate(clk, rate);
580                 if (0 == ret)
581                         ret = clk_enable(clk);
582         } else {
583                 clk_disable(clk);
584         }
585
586         return ret;
587 }
588
589 static int __fsi_set_round_rate(struct clk *clk, long rate, int enable)
590 {
591         return __fsi_set_rate(clk, clk_round_rate(clk, rate), enable);
592 }
593
594 static int fsi_ak4642_set_rate(struct device *dev, int rate, int enable)
595 {
596         struct clk *fsia_ick;
597         struct clk *fsiack;
598         int ret = -EIO;
599
600         fsia_ick = clk_get(dev, "icka");
601         if (IS_ERR(fsia_ick))
602                 return PTR_ERR(fsia_ick);
603
604         /*
605          * FSIACK is connected to AK4642,
606          * and use external clock pin from it.
607          * it is parent of fsia_ick now.
608          */
609         fsiack = clk_get_parent(fsia_ick);
610         if (!fsiack)
611                 goto fsia_ick_out;
612
613         /*
614          * we get 1/1 divided clock by setting same rate to fsiack and fsia_ick
615          *
616          ** FIXME **
617          * Because the freq_table of external clk (fsiack) are all 0,
618          * the return value of clk_round_rate became 0.
619          * So, it use __fsi_set_rate here.
620          */
621         ret = __fsi_set_rate(fsiack, rate, enable);
622         if (ret < 0)
623                 goto fsiack_out;
624
625         ret = __fsi_set_round_rate(fsia_ick, rate, enable);
626         if ((ret < 0) && enable)
627                 __fsi_set_round_rate(fsiack, rate, 0); /* disable FSI ACK */
628
629 fsiack_out:
630         clk_put(fsiack);
631
632 fsia_ick_out:
633         clk_put(fsia_ick);
634
635         return 0;
636 }
637
638 static int fsi_hdmi_set_rate(struct device *dev, int rate, int enable)
639 {
640         struct clk *fsib_clk;
641         struct clk *fdiv_clk = &sh7372_fsidivb_clk;
642         long fsib_rate = 0;
643         long fdiv_rate = 0;
644         int ackmd_bpfmd;
645         int ret;
646
647         switch (rate) {
648         case 44100:
649                 fsib_rate       = rate * 256;
650                 ackmd_bpfmd     = SH_FSI_ACKMD_256 | SH_FSI_BPFMD_64;
651                 break;
652         case 48000:
653                 fsib_rate       = 85428000; /* around 48kHz x 256 x 7 */
654                 fdiv_rate       = rate * 256;
655                 ackmd_bpfmd     = SH_FSI_ACKMD_256 | SH_FSI_BPFMD_64;
656                 break;
657         default:
658                 pr_err("unsupported rate in FSI2 port B\n");
659                 return -EINVAL;
660         }
661
662         /* FSI B setting */
663         fsib_clk = clk_get(dev, "ickb");
664         if (IS_ERR(fsib_clk))
665                 return -EIO;
666
667         ret = __fsi_set_round_rate(fsib_clk, fsib_rate, enable);
668         clk_put(fsib_clk);
669         if (ret < 0)
670                 return ret;
671
672         /* FSI DIV setting */
673         ret = __fsi_set_round_rate(fdiv_clk, fdiv_rate, enable);
674         if (ret < 0) {
675                 /* disable FSI B */
676                 if (enable)
677                         __fsi_set_round_rate(fsib_clk, fsib_rate, 0);
678                 return ret;
679         }
680
681         return ackmd_bpfmd;
682 }
683
684 static int fsi_set_rate(struct device *dev, int is_porta, int rate, int enable)
685 {
686         int ret;
687
688         if (is_porta)
689                 ret = fsi_ak4642_set_rate(dev, rate, enable);
690         else
691                 ret = fsi_hdmi_set_rate(dev, rate, enable);
692
693         return ret;
694 }
695
696 static struct sh_fsi_platform_info fsi_info = {
697         .porta_flags = SH_FSI_BRS_INV |
698                        SH_FSI_OUT_SLAVE_MODE |
699                        SH_FSI_IN_SLAVE_MODE |
700                        SH_FSI_OFMT(PCM) |
701                        SH_FSI_IFMT(PCM),
702
703         .portb_flags = SH_FSI_BRS_INV |
704                        SH_FSI_BRM_INV |
705                        SH_FSI_LRS_INV |
706                        SH_FSI_OFMT(SPDIF),
707         .set_rate = fsi_set_rate,
708 };
709
710 static struct resource fsi_resources[] = {
711         [0] = {
712                 .name   = "FSI",
713                 .start  = 0xFE3C0000,
714                 .end    = 0xFE3C0400 - 1,
715                 .flags  = IORESOURCE_MEM,
716         },
717         [1] = {
718                 .start  = IRQ_FSI,
719                 .flags  = IORESOURCE_IRQ,
720         },
721 };
722
723 static struct platform_device fsi_device = {
724         .name           = "sh_fsi2",
725         .id             = -1,
726         .num_resources  = ARRAY_SIZE(fsi_resources),
727         .resource       = fsi_resources,
728         .dev    = {
729                 .platform_data  = &fsi_info,
730         },
731 };
732
733 static struct sh_mobile_lcdc_info sh_mobile_lcdc1_info = {
734         .clock_source = LCDC_CLK_EXTERNAL,
735         .ch[0] = {
736                 .chan = LCDC_CHAN_MAINLCD,
737                 .bpp = 16,
738                 .interface_type = RGB24,
739                 .clock_divider = 1,
740                 .flags = LCDC_FLAGS_DWPOL,
741         }
742 };
743
744 static struct resource lcdc1_resources[] = {
745         [0] = {
746                 .name   = "LCDC1",
747                 .start  = 0xfe944000,
748                 .end    = 0xfe947fff,
749                 .flags  = IORESOURCE_MEM,
750         },
751         [1] = {
752                 .start  = intcs_evt2irq(0x1780),
753                 .flags  = IORESOURCE_IRQ,
754         },
755 };
756
757 static struct platform_device lcdc1_device = {
758         .name           = "sh_mobile_lcdc_fb",
759         .num_resources  = ARRAY_SIZE(lcdc1_resources),
760         .resource       = lcdc1_resources,
761         .id             = 1,
762         .dev    = {
763                 .platform_data  = &sh_mobile_lcdc1_info,
764                 .coherent_dma_mask = ~0,
765         },
766 };
767
768 static struct sh_mobile_hdmi_info hdmi_info = {
769         .lcd_chan = &sh_mobile_lcdc1_info.ch[0],
770         .lcd_dev = &lcdc1_device.dev,
771         .flags = HDMI_SND_SRC_SPDIF,
772 };
773
774 static struct resource hdmi_resources[] = {
775         [0] = {
776                 .name   = "HDMI",
777                 .start  = 0xe6be0000,
778                 .end    = 0xe6be00ff,
779                 .flags  = IORESOURCE_MEM,
780         },
781         [1] = {
782                 /* There's also an HDMI interrupt on INTCS @ 0x18e0 */
783                 .start  = evt2irq(0x17e0),
784                 .flags  = IORESOURCE_IRQ,
785         },
786 };
787
788 static struct platform_device hdmi_device = {
789         .name           = "sh-mobile-hdmi",
790         .num_resources  = ARRAY_SIZE(hdmi_resources),
791         .resource       = hdmi_resources,
792         .id             = -1,
793         .dev    = {
794                 .platform_data  = &hdmi_info,
795         },
796 };
797
798 static struct gpio_led ap4evb_leds[] = {
799         {
800                 .name                   = "led4",
801                 .gpio                   = GPIO_PORT185,
802                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
803         },
804         {
805                 .name                   = "led2",
806                 .gpio                   = GPIO_PORT186,
807                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
808         },
809         {
810                 .name                   = "led3",
811                 .gpio                   = GPIO_PORT187,
812                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
813         },
814         {
815                 .name                   = "led1",
816                 .gpio                   = GPIO_PORT188,
817                 .default_state  = LEDS_GPIO_DEFSTATE_ON,
818         }
819 };
820
821 static struct gpio_led_platform_data ap4evb_leds_pdata = {
822         .num_leds = ARRAY_SIZE(ap4evb_leds),
823         .leds = ap4evb_leds,
824 };
825
826 static struct platform_device leds_device = {
827         .name = "leds-gpio",
828         .id = 0,
829         .dev = {
830                 .platform_data  = &ap4evb_leds_pdata,
831         },
832 };
833
834 static struct i2c_board_info imx074_info = {
835         I2C_BOARD_INFO("imx074", 0x1a),
836 };
837
838 struct soc_camera_link imx074_link = {
839         .bus_id         = 0,
840         .board_info     = &imx074_info,
841         .i2c_adapter_id = 0,
842         .module_name    = "imx074",
843 };
844
845 static struct platform_device ap4evb_camera = {
846         .name   = "soc-camera-pdrv",
847         .id     = 0,
848         .dev    = {
849                 .platform_data = &imx074_link,
850         },
851 };
852
853 static struct sh_csi2_client_config csi2_clients[] = {
854         {
855                 .phy            = SH_CSI2_PHY_MAIN,
856                 .lanes          = 3,
857                 .channel        = 0,
858                 .pdev           = &ap4evb_camera,
859         },
860 };
861
862 static struct sh_csi2_pdata csi2_info = {
863         .type           = SH_CSI2C,
864         .clients        = csi2_clients,
865         .num_clients    = ARRAY_SIZE(csi2_clients),
866         .flags          = SH_CSI2_ECC | SH_CSI2_CRC,
867 };
868
869 static struct resource csi2_resources[] = {
870         [0] = {
871                 .name   = "CSI2",
872                 .start  = 0xffc90000,
873                 .end    = 0xffc90fff,
874                 .flags  = IORESOURCE_MEM,
875         },
876         [1] = {
877                 .start  = intcs_evt2irq(0x17a0),
878                 .flags  = IORESOURCE_IRQ,
879         },
880 };
881
882 static struct platform_device csi2_device = {
883         .name   = "sh-mobile-csi2",
884         .id     = 0,
885         .num_resources  = ARRAY_SIZE(csi2_resources),
886         .resource       = csi2_resources,
887         .dev    = {
888                 .platform_data = &csi2_info,
889         },
890 };
891
892 static struct sh_mobile_ceu_info sh_mobile_ceu_info = {
893         .flags = SH_CEU_FLAG_USE_8BIT_BUS,
894         .csi2_dev = &csi2_device.dev,
895 };
896
897 static struct resource ceu_resources[] = {
898         [0] = {
899                 .name   = "CEU",
900                 .start  = 0xfe910000,
901                 .end    = 0xfe91009f,
902                 .flags  = IORESOURCE_MEM,
903         },
904         [1] = {
905                 .start  = intcs_evt2irq(0x880),
906                 .flags  = IORESOURCE_IRQ,
907         },
908         [2] = {
909                 /* place holder for contiguous memory */
910         },
911 };
912
913 static struct platform_device ceu_device = {
914         .name           = "sh_mobile_ceu",
915         .id             = 0, /* "ceu0" clock */
916         .num_resources  = ARRAY_SIZE(ceu_resources),
917         .resource       = ceu_resources,
918         .dev    = {
919                 .platform_data  = &sh_mobile_ceu_info,
920         },
921 };
922
923 static struct platform_device *ap4evb_devices[] __initdata = {
924         &leds_device,
925         &nor_flash_device,
926         &smc911x_device,
927         &sdhi0_device,
928         &sdhi1_device,
929         &usb1_host_device,
930         &fsi_device,
931         &sh_mmcif_device,
932         &lcdc1_device,
933         &lcdc_device,
934         &hdmi_device,
935         &csi2_device,
936         &ceu_device,
937         &ap4evb_camera,
938 };
939
940 static int __init hdmi_init_pm_clock(void)
941 {
942         struct clk *hdmi_ick = clk_get(&hdmi_device.dev, "ick");
943         int ret;
944         long rate;
945
946         if (IS_ERR(hdmi_ick)) {
947                 ret = PTR_ERR(hdmi_ick);
948                 pr_err("Cannot get HDMI ICK: %d\n", ret);
949                 goto out;
950         }
951
952         ret = clk_set_parent(&sh7372_pllc2_clk, &sh7372_dv_clki_div2_clk);
953         if (ret < 0) {
954                 pr_err("Cannot set PLLC2 parent: %d, %d users\n", ret, sh7372_pllc2_clk.usecount);
955                 goto out;
956         }
957
958         pr_debug("PLLC2 initial frequency %lu\n", clk_get_rate(&sh7372_pllc2_clk));
959
960         rate = clk_round_rate(&sh7372_pllc2_clk, 594000000);
961         if (rate < 0) {
962                 pr_err("Cannot get suitable rate: %ld\n", rate);
963                 ret = rate;
964                 goto out;
965         }
966
967         ret = clk_set_rate(&sh7372_pllc2_clk, rate);
968         if (ret < 0) {
969                 pr_err("Cannot set rate %ld: %d\n", rate, ret);
970                 goto out;
971         }
972
973         ret = clk_enable(&sh7372_pllc2_clk);
974         if (ret < 0) {
975                 pr_err("Cannot enable pllc2 clock\n");
976                 goto out;
977         }
978         pr_debug("PLLC2 set frequency %lu\n", rate);
979
980         ret = clk_set_parent(hdmi_ick, &sh7372_pllc2_clk);
981         if (ret < 0) {
982                 pr_err("Cannot set HDMI parent: %d\n", ret);
983                 goto out;
984         }
985
986 out:
987         if (!IS_ERR(hdmi_ick))
988                 clk_put(hdmi_ick);
989         return ret;
990 }
991
992 device_initcall(hdmi_init_pm_clock);
993
994 static int __init fsi_init_pm_clock(void)
995 {
996         struct clk *fsia_ick;
997         int ret;
998
999         fsia_ick = clk_get(&fsi_device.dev, "icka");
1000         if (IS_ERR(fsia_ick)) {
1001                 ret = PTR_ERR(fsia_ick);
1002                 pr_err("Cannot get FSI ICK: %d\n", ret);
1003                 return ret;
1004         }
1005
1006         ret = clk_set_parent(fsia_ick, &sh7372_fsiack_clk);
1007         if (ret < 0)
1008                 pr_err("Cannot set FSI-A parent: %d\n", ret);
1009
1010         clk_put(fsia_ick);
1011
1012         return ret;
1013 }
1014 device_initcall(fsi_init_pm_clock);
1015
1016 /*
1017  * FIXME !!
1018  *
1019  * gpio_no_direction
1020  * are quick_hack.
1021  *
1022  * current gpio frame work doesn't have
1023  * the method to control only pull up/down/free.
1024  * this function should be replaced by correct gpio function
1025  */
1026 static void __init gpio_no_direction(u32 addr)
1027 {
1028         __raw_writeb(0x00, addr);
1029 }
1030
1031 /* TouchScreen */
1032 #ifdef CONFIG_AP4EVB_QHD
1033 # define GPIO_TSC_IRQ   GPIO_FN_IRQ28_123
1034 # define GPIO_TSC_PORT  GPIO_PORT123
1035 #else /* WVGA */
1036 # define GPIO_TSC_IRQ   GPIO_FN_IRQ7_40
1037 # define GPIO_TSC_PORT  GPIO_PORT40
1038 #endif
1039
1040 #define IRQ28   evt2irq(0x3380) /* IRQ28A */
1041 #define IRQ7    evt2irq(0x02e0) /* IRQ7A */
1042 static int ts_get_pendown_state(void)
1043 {
1044         int val;
1045
1046         gpio_free(GPIO_TSC_IRQ);
1047
1048         gpio_request(GPIO_TSC_PORT, NULL);
1049
1050         gpio_direction_input(GPIO_TSC_PORT);
1051
1052         val = gpio_get_value(GPIO_TSC_PORT);
1053
1054         gpio_request(GPIO_TSC_IRQ, NULL);
1055
1056         return !val;
1057 }
1058
1059 static int ts_init(void)
1060 {
1061         gpio_request(GPIO_TSC_IRQ, NULL);
1062
1063         return 0;
1064 }
1065
1066 static struct tsc2007_platform_data tsc2007_info = {
1067         .model                  = 2007,
1068         .x_plate_ohms           = 180,
1069         .get_pendown_state      = ts_get_pendown_state,
1070         .init_platform_hw       = ts_init,
1071 };
1072
1073 static struct i2c_board_info tsc_device = {
1074         I2C_BOARD_INFO("tsc2007", 0x48),
1075         .type           = "tsc2007",
1076         .platform_data  = &tsc2007_info,
1077         /*.irq is selected on ap4evb_init */
1078 };
1079
1080 /* I2C */
1081 static struct i2c_board_info i2c0_devices[] = {
1082         {
1083                 I2C_BOARD_INFO("ak4643", 0x13),
1084         },
1085 };
1086
1087 static struct i2c_board_info i2c1_devices[] = {
1088         {
1089                 I2C_BOARD_INFO("r2025sd", 0x32),
1090         },
1091 };
1092
1093 static struct map_desc ap4evb_io_desc[] __initdata = {
1094         /* create a 1:1 entity map for 0xe6xxxxxx
1095          * used by CPGA, INTC and PFC.
1096          */
1097         {
1098                 .virtual        = 0xe6000000,
1099                 .pfn            = __phys_to_pfn(0xe6000000),
1100                 .length         = 256 << 20,
1101                 .type           = MT_DEVICE_NONSHARED
1102         },
1103 };
1104
1105 static void __init ap4evb_map_io(void)
1106 {
1107         iotable_init(ap4evb_io_desc, ARRAY_SIZE(ap4evb_io_desc));
1108
1109         /* setup early devices and console here as well */
1110         sh7372_add_early_devices();
1111         shmobile_setup_console();
1112 }
1113
1114 #define GPIO_PORT9CR    0xE6051009
1115 #define GPIO_PORT10CR   0xE605100A
1116 #define USCCR1          0xE6058144
1117 static void __init ap4evb_init(void)
1118 {
1119         u32 srcr4;
1120         struct clk *clk;
1121
1122         sh7372_pinmux_init();
1123
1124         /* enable SCIFA0 */
1125         gpio_request(GPIO_FN_SCIFA0_TXD, NULL);
1126         gpio_request(GPIO_FN_SCIFA0_RXD, NULL);
1127
1128         /* enable SMSC911X */
1129         gpio_request(GPIO_FN_CS5A,      NULL);
1130         gpio_request(GPIO_FN_IRQ6_39,   NULL);
1131
1132         /* enable Debug switch (S6) */
1133         gpio_request(GPIO_PORT32, NULL);
1134         gpio_request(GPIO_PORT33, NULL);
1135         gpio_request(GPIO_PORT34, NULL);
1136         gpio_request(GPIO_PORT35, NULL);
1137         gpio_direction_input(GPIO_PORT32);
1138         gpio_direction_input(GPIO_PORT33);
1139         gpio_direction_input(GPIO_PORT34);
1140         gpio_direction_input(GPIO_PORT35);
1141         gpio_export(GPIO_PORT32, 0);
1142         gpio_export(GPIO_PORT33, 0);
1143         gpio_export(GPIO_PORT34, 0);
1144         gpio_export(GPIO_PORT35, 0);
1145
1146         /* SDHI0 */
1147         gpio_request(GPIO_FN_SDHICD0, NULL);
1148         gpio_request(GPIO_FN_SDHIWP0, NULL);
1149         gpio_request(GPIO_FN_SDHICMD0, NULL);
1150         gpio_request(GPIO_FN_SDHICLK0, NULL);
1151         gpio_request(GPIO_FN_SDHID0_3, NULL);
1152         gpio_request(GPIO_FN_SDHID0_2, NULL);
1153         gpio_request(GPIO_FN_SDHID0_1, NULL);
1154         gpio_request(GPIO_FN_SDHID0_0, NULL);
1155
1156         /* SDHI1 */
1157         gpio_request(GPIO_FN_SDHICMD1, NULL);
1158         gpio_request(GPIO_FN_SDHICLK1, NULL);
1159         gpio_request(GPIO_FN_SDHID1_3, NULL);
1160         gpio_request(GPIO_FN_SDHID1_2, NULL);
1161         gpio_request(GPIO_FN_SDHID1_1, NULL);
1162         gpio_request(GPIO_FN_SDHID1_0, NULL);
1163
1164         /* MMCIF */
1165         gpio_request(GPIO_FN_MMCD0_0, NULL);
1166         gpio_request(GPIO_FN_MMCD0_1, NULL);
1167         gpio_request(GPIO_FN_MMCD0_2, NULL);
1168         gpio_request(GPIO_FN_MMCD0_3, NULL);
1169         gpio_request(GPIO_FN_MMCD0_4, NULL);
1170         gpio_request(GPIO_FN_MMCD0_5, NULL);
1171         gpio_request(GPIO_FN_MMCD0_6, NULL);
1172         gpio_request(GPIO_FN_MMCD0_7, NULL);
1173         gpio_request(GPIO_FN_MMCCMD0, NULL);
1174         gpio_request(GPIO_FN_MMCCLK0, NULL);
1175
1176         /* USB enable */
1177         gpio_request(GPIO_FN_VBUS0_1,    NULL);
1178         gpio_request(GPIO_FN_IDIN_1_18,  NULL);
1179         gpio_request(GPIO_FN_PWEN_1_115, NULL);
1180         gpio_request(GPIO_FN_OVCN_1_114, NULL);
1181         gpio_request(GPIO_FN_EXTLP_1,    NULL);
1182         gpio_request(GPIO_FN_OVCN2_1,    NULL);
1183
1184         /* setup USB phy */
1185         __raw_writew(0x8a0a, 0xE6058130);       /* USBCR2 */
1186
1187         /* enable FSI2 port A (ak4643) */
1188         gpio_request(GPIO_FN_FSIAIBT,   NULL);
1189         gpio_request(GPIO_FN_FSIAILR,   NULL);
1190         gpio_request(GPIO_FN_FSIAISLD,  NULL);
1191         gpio_request(GPIO_FN_FSIAOSLD,  NULL);
1192         gpio_request(GPIO_PORT161,      NULL);
1193         gpio_direction_output(GPIO_PORT161, 0); /* slave */
1194
1195         gpio_request(GPIO_PORT9, NULL);
1196         gpio_request(GPIO_PORT10, NULL);
1197         gpio_no_direction(GPIO_PORT9CR);  /* FSIAOBT needs no direction */
1198         gpio_no_direction(GPIO_PORT10CR); /* FSIAOLR needs no direction */
1199
1200         /* card detect pin for MMC slot (CN7) */
1201         gpio_request(GPIO_PORT41, NULL);
1202         gpio_direction_input(GPIO_PORT41);
1203
1204         /* setup FSI2 port B (HDMI) */
1205         gpio_request(GPIO_FN_FSIBCK, NULL);
1206         __raw_writew(__raw_readw(USCCR1) & ~(1 << 6), USCCR1); /* use SPDIF */
1207
1208         /* set SPU2 clock to 119.6 MHz */
1209         clk = clk_get(NULL, "spu_clk");
1210         if (!IS_ERR(clk)) {
1211                 clk_set_rate(clk, clk_round_rate(clk, 119600000));
1212                 clk_put(clk);
1213         }
1214
1215         /*
1216          * set irq priority, to avoid sound chopping
1217          * when NFS rootfs is used
1218          *  FSI(3) > SMSC911X(2)
1219          */
1220         intc_set_priority(IRQ_FSI, 3);
1221
1222         i2c_register_board_info(0, i2c0_devices,
1223                                 ARRAY_SIZE(i2c0_devices));
1224
1225         i2c_register_board_info(1, i2c1_devices,
1226                                 ARRAY_SIZE(i2c1_devices));
1227
1228 #ifdef CONFIG_AP4EVB_QHD
1229
1230         /*
1231          * For QHD Panel (MIPI-DSI, CONFIG_AP4EVB_QHD=y) and
1232          * IRQ28 for Touch Panel, set dip switches S3, S43 as OFF, ON.
1233          */
1234
1235         /* enable KEYSC */
1236         gpio_request(GPIO_FN_KEYOUT0, NULL);
1237         gpio_request(GPIO_FN_KEYOUT1, NULL);
1238         gpio_request(GPIO_FN_KEYOUT2, NULL);
1239         gpio_request(GPIO_FN_KEYOUT3, NULL);
1240         gpio_request(GPIO_FN_KEYOUT4, NULL);
1241         gpio_request(GPIO_FN_KEYIN0_136, NULL);
1242         gpio_request(GPIO_FN_KEYIN1_135, NULL);
1243         gpio_request(GPIO_FN_KEYIN2_134, NULL);
1244         gpio_request(GPIO_FN_KEYIN3_133, NULL);
1245         gpio_request(GPIO_FN_KEYIN4,     NULL);
1246
1247         /* enable TouchScreen */
1248         set_irq_type(IRQ28, IRQ_TYPE_LEVEL_LOW);
1249
1250         tsc_device.irq = IRQ28;
1251         i2c_register_board_info(1, &tsc_device, 1);
1252
1253         /* LCDC0 */
1254         lcdc_info.clock_source                  = LCDC_CLK_PERIPHERAL;
1255         lcdc_info.ch[0].interface_type          = RGB24;
1256         lcdc_info.ch[0].clock_divider           = 1;
1257         lcdc_info.ch[0].flags                   = LCDC_FLAGS_DWPOL;
1258         lcdc_info.ch[0].lcd_size_cfg.width      = 44;
1259         lcdc_info.ch[0].lcd_size_cfg.height     = 79;
1260
1261         platform_add_devices(qhd_devices, ARRAY_SIZE(qhd_devices));
1262
1263 #else
1264         /*
1265          * For WVGA Panel (18-bit RGB, CONFIG_AP4EVB_WVGA=y) and
1266          * IRQ7 for Touch Panel, set dip switches S3, S43 to ON, OFF.
1267          */
1268
1269         gpio_request(GPIO_FN_LCDD17,   NULL);
1270         gpio_request(GPIO_FN_LCDD16,   NULL);
1271         gpio_request(GPIO_FN_LCDD15,   NULL);
1272         gpio_request(GPIO_FN_LCDD14,   NULL);
1273         gpio_request(GPIO_FN_LCDD13,   NULL);
1274         gpio_request(GPIO_FN_LCDD12,   NULL);
1275         gpio_request(GPIO_FN_LCDD11,   NULL);
1276         gpio_request(GPIO_FN_LCDD10,   NULL);
1277         gpio_request(GPIO_FN_LCDD9,    NULL);
1278         gpio_request(GPIO_FN_LCDD8,    NULL);
1279         gpio_request(GPIO_FN_LCDD7,    NULL);
1280         gpio_request(GPIO_FN_LCDD6,    NULL);
1281         gpio_request(GPIO_FN_LCDD5,    NULL);
1282         gpio_request(GPIO_FN_LCDD4,    NULL);
1283         gpio_request(GPIO_FN_LCDD3,    NULL);
1284         gpio_request(GPIO_FN_LCDD2,    NULL);
1285         gpio_request(GPIO_FN_LCDD1,    NULL);
1286         gpio_request(GPIO_FN_LCDD0,    NULL);
1287         gpio_request(GPIO_FN_LCDDISP,  NULL);
1288         gpio_request(GPIO_FN_LCDDCK,   NULL);
1289
1290         gpio_request(GPIO_PORT189, NULL); /* backlight */
1291         gpio_direction_output(GPIO_PORT189, 1);
1292
1293         gpio_request(GPIO_PORT151, NULL); /* LCDDON */
1294         gpio_direction_output(GPIO_PORT151, 1);
1295
1296         lcdc_info.clock_source                  = LCDC_CLK_BUS;
1297         lcdc_info.ch[0].interface_type          = RGB18;
1298         lcdc_info.ch[0].clock_divider           = 2;
1299         lcdc_info.ch[0].flags                   = 0;
1300         lcdc_info.ch[0].lcd_size_cfg.width      = 152;
1301         lcdc_info.ch[0].lcd_size_cfg.height     = 91;
1302
1303         /* enable TouchScreen */
1304         set_irq_type(IRQ7, IRQ_TYPE_LEVEL_LOW);
1305
1306         tsc_device.irq = IRQ7;
1307         i2c_register_board_info(0, &tsc_device, 1);
1308 #endif /* CONFIG_AP4EVB_QHD */
1309
1310         /* CEU */
1311
1312         /*
1313          * TODO: reserve memory for V4L2 DMA buffers, when a suitable API
1314          * becomes available
1315          */
1316
1317         /* MIPI-CSI stuff */
1318         gpio_request(GPIO_FN_VIO_CKO, NULL);
1319
1320         clk = clk_get(NULL, "vck1_clk");
1321         if (!IS_ERR(clk)) {
1322                 clk_set_rate(clk, clk_round_rate(clk, 13000000));
1323                 clk_enable(clk);
1324                 clk_put(clk);
1325         }
1326
1327         sh7372_add_standard_devices();
1328
1329         /* HDMI */
1330         gpio_request(GPIO_FN_HDMI_HPD, NULL);
1331         gpio_request(GPIO_FN_HDMI_CEC, NULL);
1332
1333         /* Reset HDMI, must be held at least one EXTALR (32768Hz) period */
1334 #define SRCR4 0xe61580bc
1335         srcr4 = __raw_readl(SRCR4);
1336         __raw_writel(srcr4 | (1 << 13), SRCR4);
1337         udelay(50);
1338         __raw_writel(srcr4 & ~(1 << 13), SRCR4);
1339
1340         platform_add_devices(ap4evb_devices, ARRAY_SIZE(ap4evb_devices));
1341 }
1342
1343 static void __init ap4evb_timer_init(void)
1344 {
1345         sh7372_clock_init();
1346         shmobile_timer.init();
1347
1348         /* External clock source */
1349         clk_set_rate(&sh7372_dv_clki_clk, 27000000);
1350 }
1351
1352 static struct sys_timer ap4evb_timer = {
1353         .init           = ap4evb_timer_init,
1354 };
1355
1356 MACHINE_START(AP4EVB, "ap4evb")
1357         .map_io         = ap4evb_map_io,
1358         .init_irq       = sh7372_init_irq,
1359         .init_machine   = ap4evb_init,
1360         .timer          = &ap4evb_timer,
1361 MACHINE_END