blob: 15ffb4cac42438536a686b4b52b07b7e01ef5597 [file] [log] [blame]
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001/*
2 * armadillo 800 eva board support
3 *
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Copyright (C) 2012 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
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 */
21
22#include <linux/clk.h>
Kuninori Morimoto1c962932012-04-24 02:09:08 -070023#include <linux/delay.h>
Kuninori Morimoto4d22e562012-04-06 01:28:59 -070024#include <linux/err.h>
25#include <linux/kernel.h>
Kuninori Morimotof7e7d312012-04-06 01:31:33 -070026#include <linux/input.h>
Kuninori Morimoto1c962932012-04-24 02:09:08 -070027#include <linux/irq.h>
Kuninori Morimoto4d22e562012-04-06 01:28:59 -070028#include <linux/platform_device.h>
29#include <linux/gpio.h>
Kuninori Morimotof7e7d312012-04-06 01:31:33 -070030#include <linux/gpio_keys.h>
Guennadi Liakhovetskif65ad7e2012-06-29 08:33:11 +020031#include <linux/regulator/fixed.h>
32#include <linux/regulator/machine.h>
Kuninori Morimotod8fed1e2012-04-06 01:32:02 -070033#include <linux/sh_eth.h>
Kuninori Morimotodad29d12012-04-06 01:30:09 -070034#include <linux/videodev2.h>
Kuninori Morimoto1c962932012-04-24 02:09:08 -070035#include <linux/usb/renesas_usbhs.h>
Kuninori Morimoto49c01112012-04-24 02:09:19 -070036#include <linux/mfd/tmio.h>
37#include <linux/mmc/host.h>
Kuninori Morimoto0a4266b2012-04-24 02:09:42 -070038#include <linux/mmc/sh_mmcif.h>
Kuninori Morimoto49c01112012-04-24 02:09:19 -070039#include <linux/mmc/sh_mobile_sdhi.h>
Kuninori Morimoto4d22e562012-04-06 01:28:59 -070040#include <mach/common.h>
41#include <mach/irqs.h>
Kuninori Morimoto3760e792012-06-12 02:40:07 -070042#include <mach/r8a7740.h>
43#include <media/mt9t112.h>
44#include <media/sh_mobile_ceu.h>
45#include <media/soc_camera.h>
Kuninori Morimoto4d22e562012-04-06 01:28:59 -070046#include <asm/page.h>
47#include <asm/mach-types.h>
48#include <asm/mach/arch.h>
49#include <asm/mach/map.h>
50#include <asm/mach/time.h>
51#include <asm/hardware/cache-l2x0.h>
Kuninori Morimotodad29d12012-04-06 01:30:09 -070052#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto910c14d2012-06-12 02:39:11 -070053#include <video/sh_mobile_hdmi.h>
Kuninori Morimoto5389bf72012-06-25 03:32:50 -070054#include <sound/sh_fsi.h>
55#include <sound/simple_card.h>
Kuninori Morimoto4d22e562012-04-06 01:28:59 -070056
Rob Herring66791852012-08-28 12:54:42 -050057#include "sh-gpio.h"
58
Kuninori Morimoto4d22e562012-04-06 01:28:59 -070059/*
60 * CON1 Camera Module
61 * CON2 Extension Bus
62 * CON3 HDMI Output
63 * CON4 Composite Video Output
64 * CON5 H-UDI JTAG
65 * CON6 ARM JTAG
66 * CON7 SD1
67 * CON8 SD2
68 * CON9 RTC BackUp
69 * CON10 Monaural Mic Input
70 * CON11 Stereo Headphone Output
71 * CON12 Audio Line Output(L)
72 * CON13 Audio Line Output(R)
73 * CON14 AWL13 Module
74 * CON15 Extension
75 * CON16 LCD1
76 * CON17 LCD2
77 * CON19 Power Input
78 * CON20 USB1
79 * CON21 USB2
80 * CON22 Serial
81 * CON23 LAN
82 * CON24 USB3
83 * LED1 Camera LED(Yellow)
84 * LED2 Power LED (Green)
85 * ED3-LED6 User LED(Yellow)
86 * LED7 LAN link LED(Green)
87 * LED8 LAN activity LED(Yellow)
88 */
89
90/*
91 * DipSwitch
92 *
93 * SW1
94 *
95 * -12345678-+---------------+----------------------------
96 * 1 | boot | hermit
97 * 0 | boot | OS auto boot
98 * -12345678-+---------------+----------------------------
99 * 00 | boot device | eMMC
100 * 10 | boot device | SDHI0 (CON7)
101 * 01 | boot device | -
102 * 11 | boot device | Extension Buss (CS0)
103 * -12345678-+---------------+----------------------------
104 * 0 | Extension Bus | D8-D15 disable, eMMC enable
105 * 1 | Extension Bus | D8-D15 enable, eMMC disable
106 * -12345678-+---------------+----------------------------
Kuninori Morimoto2e3a5ef2012-04-24 02:09:31 -0700107 * 0 | SDHI1 | COM8 disable, COM14 enable
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700108 * 1 | SDHI1 | COM8 enable, COM14 disable
109 * -12345678-+---------------+----------------------------
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700110 * 0 | USB0 | COM20 enable, COM24 disable
111 * 1 | USB0 | COM20 disable, COM24 enable
112 * -12345678-+---------------+----------------------------
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700113 * 00 | JTAG | SH-X2
114 * 10 | JTAG | ARM
115 * 01 | JTAG | -
116 * 11 | JTAG | Boundary Scan
117 *-----------+---------------+----------------------------
118 */
119
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700120/*
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700121 * FSI-WM8978
122 *
123 * this command is required when playback.
124 *
125 * # amixer set "Headphone" 50
126 */
127
128/*
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700129 * USB function
130 *
131 * When you use USB Function,
132 * set SW1.6 ON, and connect cable to CN24.
133 *
134 * USBF needs workaround on R8A7740 chip.
135 * These are a little bit complex.
136 * see
137 * usbhsf_power_ctrl()
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700138 */
Kuninori Morimotod483b982012-07-05 01:27:14 -0700139#define IRQ7 evt2irq(0x02e0)
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700140#define USBCR1 0xe605810a
141#define USBH 0xC6700000
142#define USBH_USBCTR 0x10834
143
144struct usbhsf_private {
145 struct clk *phy;
146 struct clk *usb24;
147 struct clk *pci;
148 struct clk *func;
149 struct clk *host;
150 void __iomem *usbh_base;
151 struct renesas_usbhs_platform_info info;
152};
153
154#define usbhsf_get_priv(pdev) \
155 container_of(renesas_usbhs_get_info(pdev), \
156 struct usbhsf_private, info)
157
158static int usbhsf_get_id(struct platform_device *pdev)
159{
160 return USBHS_GADGET;
161}
162
163static void usbhsf_power_ctrl(struct platform_device *pdev,
164 void __iomem *base, int enable)
165{
166 struct usbhsf_private *priv = usbhsf_get_priv(pdev);
167
168 /*
169 * Work around for USB Function.
170 * It needs USB host clock, and settings
171 */
172 if (enable) {
173 /*
174 * enable all the related usb clocks
175 * for usb workaround
176 */
177 clk_enable(priv->usb24);
178 clk_enable(priv->pci);
179 clk_enable(priv->host);
180 clk_enable(priv->func);
181 clk_enable(priv->phy);
182
183 /*
184 * set USBCR1
185 *
186 * Port1 is driven by USB function,
187 * Port2 is driven by USB HOST
188 * One HOST (Port1 or Port2 is HOST)
189 * USB PLL input clock = 24MHz
190 */
191 __raw_writew(0xd750, USBCR1);
192 mdelay(1);
193
194 /*
195 * start USB Host
196 */
197 __raw_writel(0x0000000c, priv->usbh_base + USBH_USBCTR);
198 __raw_writel(0x00000008, priv->usbh_base + USBH_USBCTR);
199 mdelay(10);
200
201 /*
202 * USB PHY Power ON
203 */
204 __raw_writew(0xd770, USBCR1);
205 __raw_writew(0x4000, base + 0x102); /* USBF :: SUSPMODE */
206
207 } else {
208 __raw_writel(0x0000010f, priv->usbh_base + USBH_USBCTR);
209 __raw_writew(0xd7c0, USBCR1); /* GPIO */
210
211 clk_disable(priv->phy);
212 clk_disable(priv->func); /* usb work around */
213 clk_disable(priv->host); /* usb work around */
214 clk_disable(priv->pci); /* usb work around */
215 clk_disable(priv->usb24); /* usb work around */
216 }
217}
218
Kuninori Morimotod483b982012-07-05 01:27:14 -0700219static int usbhsf_get_vbus(struct platform_device *pdev)
220{
221 return gpio_get_value(GPIO_PORT209);
222}
223
224static irqreturn_t usbhsf_interrupt(int irq, void *data)
225{
226 struct platform_device *pdev = data;
227
228 renesas_usbhs_call_notify_hotplug(pdev);
229
230 return IRQ_HANDLED;
231}
232
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700233static void usbhsf_hardware_exit(struct platform_device *pdev)
234{
235 struct usbhsf_private *priv = usbhsf_get_priv(pdev);
236
237 if (!IS_ERR(priv->phy))
238 clk_put(priv->phy);
239 if (!IS_ERR(priv->usb24))
240 clk_put(priv->usb24);
241 if (!IS_ERR(priv->pci))
242 clk_put(priv->pci);
243 if (!IS_ERR(priv->host))
244 clk_put(priv->host);
245 if (!IS_ERR(priv->func))
246 clk_put(priv->func);
247 if (priv->usbh_base)
248 iounmap(priv->usbh_base);
249
250 priv->phy = NULL;
251 priv->usb24 = NULL;
252 priv->pci = NULL;
253 priv->host = NULL;
254 priv->func = NULL;
255 priv->usbh_base = NULL;
Kuninori Morimotod483b982012-07-05 01:27:14 -0700256
257 free_irq(IRQ7, pdev);
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700258}
259
260static int usbhsf_hardware_init(struct platform_device *pdev)
261{
262 struct usbhsf_private *priv = usbhsf_get_priv(pdev);
Kuninori Morimotod483b982012-07-05 01:27:14 -0700263 int ret;
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700264
265 priv->phy = clk_get(&pdev->dev, "phy");
266 priv->usb24 = clk_get(&pdev->dev, "usb24");
267 priv->pci = clk_get(&pdev->dev, "pci");
268 priv->func = clk_get(&pdev->dev, "func");
269 priv->host = clk_get(&pdev->dev, "host");
270 priv->usbh_base = ioremap_nocache(USBH, 0x20000);
271
272 if (IS_ERR(priv->phy) ||
273 IS_ERR(priv->usb24) ||
274 IS_ERR(priv->pci) ||
275 IS_ERR(priv->host) ||
276 IS_ERR(priv->func) ||
277 !priv->usbh_base) {
278 dev_err(&pdev->dev, "USB clock setting failed\n");
279 usbhsf_hardware_exit(pdev);
280 return -EIO;
281 }
282
Kuninori Morimotod483b982012-07-05 01:27:14 -0700283 ret = request_irq(IRQ7, usbhsf_interrupt, IRQF_TRIGGER_NONE,
284 dev_name(&pdev->dev), pdev);
285 if (ret) {
286 dev_err(&pdev->dev, "request_irq err\n");
287 return ret;
288 }
289 irq_set_irq_type(IRQ7, IRQ_TYPE_EDGE_BOTH);
290
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700291 /* usb24 use 1/1 of parent clock (= usb24s = 24MHz) */
292 clk_set_rate(priv->usb24,
293 clk_get_rate(clk_get_parent(priv->usb24)));
294
295 return 0;
296}
297
298static struct usbhsf_private usbhsf_private = {
299 .info = {
300 .platform_callback = {
301 .get_id = usbhsf_get_id,
Kuninori Morimotod483b982012-07-05 01:27:14 -0700302 .get_vbus = usbhsf_get_vbus,
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700303 .hardware_init = usbhsf_hardware_init,
304 .hardware_exit = usbhsf_hardware_exit,
305 .power_ctrl = usbhsf_power_ctrl,
306 },
307 .driver_param = {
308 .buswait_bwait = 5,
309 .detection_delay = 5,
Kuninori Morimotof7e566f2012-06-25 03:37:47 -0700310 .d0_rx_id = SHDMA_SLAVE_USBHS_RX,
311 .d1_tx_id = SHDMA_SLAVE_USBHS_TX,
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700312 },
313 }
314};
315
316static struct resource usbhsf_resources[] = {
317 {
318 .name = "USBHS",
319 .start = 0xe6890000,
320 .end = 0xe6890104 - 1,
321 .flags = IORESOURCE_MEM,
322 },
323 {
324 .start = evt2irq(0x0A20),
325 .flags = IORESOURCE_IRQ,
326 },
327};
328
329static struct platform_device usbhsf_device = {
330 .name = "renesas_usbhs",
331 .dev = {
332 .platform_data = &usbhsf_private.info,
333 },
334 .id = -1,
335 .num_resources = ARRAY_SIZE(usbhsf_resources),
336 .resource = usbhsf_resources,
337};
338
Kuninori Morimotod8fed1e2012-04-06 01:32:02 -0700339/* Ether */
340static struct sh_eth_plat_data sh_eth_platdata = {
341 .phy = 0x00, /* LAN8710A */
342 .edmac_endian = EDMAC_LITTLE_ENDIAN,
343 .register_type = SH_ETH_REG_GIGABIT,
344 .phy_interface = PHY_INTERFACE_MODE_MII,
345};
346
347static struct resource sh_eth_resources[] = {
348 {
349 .start = 0xe9a00000,
350 .end = 0xe9a00800 - 1,
351 .flags = IORESOURCE_MEM,
352 }, {
353 .start = 0xe9a01800,
354 .end = 0xe9a02000 - 1,
355 .flags = IORESOURCE_MEM,
356 }, {
357 .start = evt2irq(0x0500),
358 .flags = IORESOURCE_IRQ,
359 },
360};
361
362static struct platform_device sh_eth_device = {
363 .name = "sh-eth",
Kuninori Morimoto9c18f232012-05-06 22:58:41 -0700364 .id = -1,
Kuninori Morimotod8fed1e2012-04-06 01:32:02 -0700365 .dev = {
366 .platform_data = &sh_eth_platdata,
367 },
368 .resource = sh_eth_resources,
369 .num_resources = ARRAY_SIZE(sh_eth_resources),
370};
371
Kuninori Morimotodad29d12012-04-06 01:30:09 -0700372/* LCDC */
373static struct fb_videomode lcdc0_mode = {
374 .name = "AMPIER/AM-800480",
375 .xres = 800,
376 .yres = 480,
377 .left_margin = 88,
378 .right_margin = 40,
379 .hsync_len = 128,
380 .upper_margin = 20,
381 .lower_margin = 5,
382 .vsync_len = 5,
383 .sync = 0,
384};
385
386static struct sh_mobile_lcdc_info lcdc0_info = {
387 .clock_source = LCDC_CLK_BUS,
388 .ch[0] = {
389 .chan = LCDC_CHAN_MAINLCD,
390 .fourcc = V4L2_PIX_FMT_RGB565,
391 .interface_type = RGB24,
392 .clock_divider = 5,
393 .flags = 0,
394 .lcd_modes = &lcdc0_mode,
395 .num_modes = 1,
396 .panel_cfg = {
397 .width = 111,
398 .height = 68,
399 },
400 },
401};
402
403static struct resource lcdc0_resources[] = {
404 [0] = {
405 .name = "LCD0",
406 .start = 0xfe940000,
407 .end = 0xfe943fff,
408 .flags = IORESOURCE_MEM,
409 },
410 [1] = {
411 .start = intcs_evt2irq(0x580),
412 .flags = IORESOURCE_IRQ,
413 },
414};
415
416static struct platform_device lcdc0_device = {
417 .name = "sh_mobile_lcdc_fb",
418 .num_resources = ARRAY_SIZE(lcdc0_resources),
419 .resource = lcdc0_resources,
420 .id = 0,
421 .dev = {
422 .platform_data = &lcdc0_info,
423 .coherent_dma_mask = ~0,
424 },
425};
426
Kuninori Morimoto910c14d2012-06-12 02:39:11 -0700427/*
428 * LCDC1/HDMI
429 */
430static struct sh_mobile_hdmi_info hdmi_info = {
431 .flags = HDMI_OUTPUT_PUSH_PULL |
432 HDMI_OUTPUT_POLARITY_HI |
433 HDMI_32BIT_REG |
434 HDMI_HAS_HTOP1 |
435 HDMI_SND_SRC_SPDIF,
436};
437
438static struct resource hdmi_resources[] = {
439 [0] = {
440 .name = "HDMI",
441 .start = 0xe6be0000,
442 .end = 0xe6be03ff,
443 .flags = IORESOURCE_MEM,
444 },
445 [1] = {
446 .start = evt2irq(0x1700),
447 .flags = IORESOURCE_IRQ,
448 },
449 [2] = {
450 .name = "HDMI emma3pf",
451 .start = 0xe6be4000,
452 .end = 0xe6be43ff,
453 .flags = IORESOURCE_MEM,
454 },
455};
456
457static struct platform_device hdmi_device = {
458 .name = "sh-mobile-hdmi",
459 .num_resources = ARRAY_SIZE(hdmi_resources),
460 .resource = hdmi_resources,
461 .id = -1,
462 .dev = {
463 .platform_data = &hdmi_info,
464 },
465};
466
467static const struct fb_videomode lcdc1_mode = {
468 .name = "HDMI 720p",
469 .xres = 1280,
470 .yres = 720,
471 .pixclock = 13468,
472 .left_margin = 220,
473 .right_margin = 110,
474 .hsync_len = 40,
475 .upper_margin = 20,
476 .lower_margin = 5,
477 .vsync_len = 5,
478 .refresh = 60,
479 .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
480};
481
482static struct sh_mobile_lcdc_info hdmi_lcdc_info = {
483 .clock_source = LCDC_CLK_PERIPHERAL, /* HDMI clock */
484 .ch[0] = {
485 .chan = LCDC_CHAN_MAINLCD,
486 .fourcc = V4L2_PIX_FMT_RGB565,
487 .interface_type = RGB24,
488 .clock_divider = 1,
489 .flags = LCDC_FLAGS_DWPOL,
490 .lcd_modes = &lcdc1_mode,
491 .num_modes = 1,
492 .tx_dev = &hdmi_device,
493 .panel_cfg = {
494 .width = 1280,
495 .height = 720,
496 },
497 },
498};
499
500static struct resource hdmi_lcdc_resources[] = {
501 [0] = {
502 .name = "LCDC1",
503 .start = 0xfe944000,
504 .end = 0xfe948000 - 1,
505 .flags = IORESOURCE_MEM,
506 },
507 [1] = {
508 .start = intcs_evt2irq(0x1780),
509 .flags = IORESOURCE_IRQ,
510 },
511};
512
513static struct platform_device hdmi_lcdc_device = {
514 .name = "sh_mobile_lcdc_fb",
515 .num_resources = ARRAY_SIZE(hdmi_lcdc_resources),
516 .resource = hdmi_lcdc_resources,
517 .id = 1,
518 .dev = {
519 .platform_data = &hdmi_lcdc_info,
520 .coherent_dma_mask = ~0,
521 },
522};
523
Kuninori Morimotof7e7d312012-04-06 01:31:33 -0700524/* GPIO KEY */
525#define GPIO_KEY(c, g, d) { .code = c, .gpio = g, .desc = d, .active_low = 1 }
526
527static struct gpio_keys_button gpio_buttons[] = {
528 GPIO_KEY(KEY_POWER, GPIO_PORT99, "SW1"),
529 GPIO_KEY(KEY_BACK, GPIO_PORT100, "SW2"),
530 GPIO_KEY(KEY_MENU, GPIO_PORT97, "SW3"),
531 GPIO_KEY(KEY_HOME, GPIO_PORT98, "SW4"),
532};
533
534static struct gpio_keys_platform_data gpio_key_info = {
535 .buttons = gpio_buttons,
536 .nbuttons = ARRAY_SIZE(gpio_buttons),
537};
538
539static struct platform_device gpio_keys_device = {
540 .name = "gpio-keys",
541 .id = -1,
542 .dev = {
543 .platform_data = &gpio_key_info,
544 },
545};
546
Guennadi Liakhovetskif65ad7e2012-06-29 08:33:11 +0200547/* Fixed 3.3V regulator to be used by SDHI0, SDHI1, MMCIF */
548static struct regulator_consumer_supply fixed3v3_power_consumers[] =
549{
550 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
551 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
552 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
553 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.1"),
554 REGULATOR_SUPPLY("vmmc", "sh_mmcif"),
555 REGULATOR_SUPPLY("vqmmc", "sh_mmcif"),
556};
557
Kuninori Morimoto49c01112012-04-24 02:09:19 -0700558/* SDHI0 */
559/*
560 * FIXME
561 *
562 * It use polling mode here, since
563 * CD (= Card Detect) pin is not connected to SDHI0_CD.
564 * We can use IRQ31 as card detect irq,
565 * but it needs chattering removal operation
566 */
567#define IRQ31 evt2irq(0x33E0)
568static struct sh_mobile_sdhi_info sdhi0_info = {
Kuninori Morimoto95798e32012-06-25 03:37:38 -0700569 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
570 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
Kuninori Morimoto49c01112012-04-24 02:09:19 -0700571 .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |\
572 MMC_CAP_NEEDS_POLL,
573 .tmio_ocr_mask = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34,
574 .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT,
575};
576
577static struct resource sdhi0_resources[] = {
578 {
579 .name = "SDHI0",
580 .start = 0xe6850000,
581 .end = 0xe6850100 - 1,
582 .flags = IORESOURCE_MEM,
583 },
584 /*
585 * no SH_MOBILE_SDHI_IRQ_CARD_DETECT here
586 */
587 {
588 .name = SH_MOBILE_SDHI_IRQ_SDCARD,
589 .start = evt2irq(0x0E20),
590 .flags = IORESOURCE_IRQ,
591 },
592 {
593 .name = SH_MOBILE_SDHI_IRQ_SDIO,
594 .start = evt2irq(0x0E40),
595 .flags = IORESOURCE_IRQ,
596 },
597};
598
599static struct platform_device sdhi0_device = {
600 .name = "sh_mobile_sdhi",
601 .id = 0,
602 .dev = {
603 .platform_data = &sdhi0_info,
604 },
605 .num_resources = ARRAY_SIZE(sdhi0_resources),
606 .resource = sdhi0_resources,
607};
608
Kuninori Morimoto2e3a5ef2012-04-24 02:09:31 -0700609/* SDHI1 */
610static struct sh_mobile_sdhi_info sdhi1_info = {
Kuninori Morimoto95798e32012-06-25 03:37:38 -0700611 .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX,
612 .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX,
Kuninori Morimoto2e3a5ef2012-04-24 02:09:31 -0700613 .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ,
614 .tmio_ocr_mask = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34,
615 .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT,
616};
617
618static struct resource sdhi1_resources[] = {
619 [0] = {
620 .name = "SDHI1",
621 .start = 0xe6860000,
622 .end = 0xe6860100 - 1,
623 .flags = IORESOURCE_MEM,
624 },
625 [1] = {
626 .start = evt2irq(0x0E80),
627 .flags = IORESOURCE_IRQ,
628 },
629 [2] = {
630 .start = evt2irq(0x0EA0),
631 .flags = IORESOURCE_IRQ,
632 },
633 [3] = {
634 .start = evt2irq(0x0EC0),
635 .flags = IORESOURCE_IRQ,
636 },
637};
638
639static struct platform_device sdhi1_device = {
640 .name = "sh_mobile_sdhi",
641 .id = 1,
642 .dev = {
643 .platform_data = &sdhi1_info,
644 },
645 .num_resources = ARRAY_SIZE(sdhi1_resources),
646 .resource = sdhi1_resources,
647};
648
Kuninori Morimoto0a4266b2012-04-24 02:09:42 -0700649/* MMCIF */
650static struct sh_mmcif_plat_data sh_mmcif_plat = {
651 .sup_pclk = 0,
652 .ocr = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34,
653 .caps = MMC_CAP_4_BIT_DATA |
654 MMC_CAP_8_BIT_DATA |
655 MMC_CAP_NONREMOVABLE,
656};
657
658static struct resource sh_mmcif_resources[] = {
659 [0] = {
660 .name = "MMCIF",
661 .start = 0xe6bd0000,
662 .end = 0xe6bd0100 - 1,
663 .flags = IORESOURCE_MEM,
664 },
665 [1] = {
666 /* MMC ERR */
667 .start = evt2irq(0x1AC0),
668 .flags = IORESOURCE_IRQ,
669 },
670 [2] = {
671 /* MMC NOR */
672 .start = evt2irq(0x1AE0),
673 .flags = IORESOURCE_IRQ,
674 },
675};
676
677static struct platform_device sh_mmcif_device = {
678 .name = "sh_mmcif",
679 .id = -1,
680 .dev = {
681 .platform_data = &sh_mmcif_plat,
682 },
683 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
684 .resource = sh_mmcif_resources,
685};
686
Kuninori Morimoto3760e792012-06-12 02:40:07 -0700687/* Camera */
688static int mt9t111_power(struct device *dev, int mode)
689{
690 struct clk *mclk = clk_get(NULL, "video1");
691
692 if (IS_ERR(mclk)) {
693 dev_err(dev, "can't get video1 clock\n");
694 return -EINVAL;
695 }
696
697 if (mode) {
698 /* video1 (= CON1 camera) expect 24MHz */
699 clk_set_rate(mclk, clk_round_rate(mclk, 24000000));
700 clk_enable(mclk);
701 gpio_direction_output(GPIO_PORT158, 1);
702 } else {
703 gpio_direction_output(GPIO_PORT158, 0);
704 clk_disable(mclk);
705 }
706
707 clk_put(mclk);
708
709 return 0;
710}
711
712static struct i2c_board_info i2c_camera_mt9t111 = {
713 I2C_BOARD_INFO("mt9t112", 0x3d),
714};
715
716static struct mt9t112_camera_info mt9t111_info = {
717 .divider = { 16, 0, 0, 7, 0, 10, 14, 7, 7 },
718};
719
720static struct soc_camera_link mt9t111_link = {
721 .i2c_adapter_id = 0,
722 .bus_id = 0,
723 .board_info = &i2c_camera_mt9t111,
724 .power = mt9t111_power,
725 .priv = &mt9t111_info,
726};
727
728static struct platform_device camera_device = {
729 .name = "soc-camera-pdrv",
730 .id = 0,
731 .dev = {
732 .platform_data = &mt9t111_link,
733 },
734};
735
736/* CEU0 */
737static struct sh_mobile_ceu_info sh_mobile_ceu0_info = {
738 .flags = SH_CEU_FLAG_LOWER_8BIT,
739};
740
741static struct resource ceu0_resources[] = {
742 [0] = {
743 .name = "CEU",
744 .start = 0xfe910000,
745 .end = 0xfe91009f,
746 .flags = IORESOURCE_MEM,
747 },
748 [1] = {
749 .start = intcs_evt2irq(0x0500),
750 .flags = IORESOURCE_IRQ,
751 },
752 [2] = {
753 /* place holder for contiguous memory */
754 },
755};
756
757static struct platform_device ceu0_device = {
758 .name = "sh_mobile_ceu",
759 .id = 0,
760 .num_resources = ARRAY_SIZE(ceu0_resources),
761 .resource = ceu0_resources,
762 .dev = {
763 .platform_data = &sh_mobile_ceu0_info,
764 .coherent_dma_mask = 0xffffffff,
765 },
766};
767
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700768/* FSI */
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700769static int fsi_hdmi_set_rate(struct device *dev, int rate, int enable)
770{
771 struct clk *fsib;
772 int ret;
773
774 /* it support 48KHz only */
775 if (48000 != rate)
776 return -EINVAL;
777
778 fsib = clk_get(dev, "ickb");
779 if (IS_ERR(fsib))
780 return -EINVAL;
781
782 if (enable) {
783 ret = SH_FSI_ACKMD_256 | SH_FSI_BPFMD_64;
784 clk_enable(fsib);
785 } else {
786 ret = 0;
787 clk_disable(fsib);
788 }
789
790 clk_put(fsib);
791
792 return ret;
793}
794
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700795static struct sh_fsi_platform_info fsi_info = {
796 /* FSI-WM8978 */
797 .port_a = {
Kuninori Morimotodc7dd582012-06-25 03:37:20 -0700798 .tx_id = SHDMA_SLAVE_FSIA_TX,
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700799 },
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700800 /* FSI-HDMI */
801 .port_b = {
802 .flags = SH_FSI_FMT_SPDIF |
803 SH_FSI_ENABLE_STREAM_MODE,
804 .set_rate = fsi_hdmi_set_rate,
Kuninori Morimotodc7dd582012-06-25 03:37:20 -0700805 .tx_id = SHDMA_SLAVE_FSIB_TX,
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700806 }
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700807};
808
809static struct resource fsi_resources[] = {
810 [0] = {
811 .name = "FSI",
812 .start = 0xfe1f0000,
813 .end = 0xfe1f8400 - 1,
814 .flags = IORESOURCE_MEM,
815 },
816 [1] = {
817 .start = evt2irq(0x1840),
818 .flags = IORESOURCE_IRQ,
819 },
820};
821
822static struct platform_device fsi_device = {
823 .name = "sh_fsi2",
824 .id = -1,
825 .num_resources = ARRAY_SIZE(fsi_resources),
826 .resource = fsi_resources,
827 .dev = {
828 .platform_data = &fsi_info,
829 },
830};
831
832/* FSI-WM8978 */
833static struct asoc_simple_dai_init_info fsi_wm8978_init_info = {
834 .fmt = SND_SOC_DAIFMT_I2S,
835 .codec_daifmt = SND_SOC_DAIFMT_CBM_CFM | SND_SOC_DAIFMT_NB_NF,
836 .cpu_daifmt = SND_SOC_DAIFMT_CBS_CFS,
837 .sysclk = 12288000,
838};
839
840static struct asoc_simple_card_info fsi_wm8978_info = {
841 .name = "wm8978",
842 .card = "FSI2A-WM8978",
843 .cpu_dai = "fsia-dai",
844 .codec = "wm8978.0-001a",
845 .platform = "sh_fsi2",
846 .codec_dai = "wm8978-hifi",
847 .init = &fsi_wm8978_init_info,
848};
849
850static struct platform_device fsi_wm8978_device = {
851 .name = "asoc-simple-card",
852 .id = 0,
853 .dev = {
854 .platform_data = &fsi_wm8978_info,
855 },
856};
857
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700858/* FSI-HDMI */
859static struct asoc_simple_dai_init_info fsi2_hdmi_init_info = {
860 .cpu_daifmt = SND_SOC_DAIFMT_CBM_CFM,
861};
862
863static struct asoc_simple_card_info fsi2_hdmi_info = {
864 .name = "HDMI",
865 .card = "FSI2B-HDMI",
866 .cpu_dai = "fsib-dai",
867 .codec = "sh-mobile-hdmi",
868 .platform = "sh_fsi2",
869 .codec_dai = "sh_mobile_hdmi-hifi",
870 .init = &fsi2_hdmi_init_info,
871};
872
873static struct platform_device fsi_hdmi_device = {
874 .name = "asoc-simple-card",
875 .id = 1,
876 .dev = {
877 .platform_data = &fsi2_hdmi_info,
878 },
879};
880
Kuninori Morimoto46cf6682012-04-06 01:30:42 -0700881/* I2C */
882static struct i2c_board_info i2c0_devices[] = {
883 {
884 I2C_BOARD_INFO("st1232-ts", 0x55),
885 .irq = evt2irq(0x0340),
886 },
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700887 {
888 I2C_BOARD_INFO("wm8978", 0x1a),
889 },
Kuninori Morimoto46cf6682012-04-06 01:30:42 -0700890};
891
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700892/*
893 * board devices
894 */
895static struct platform_device *eva_devices[] __initdata = {
Kuninori Morimotodad29d12012-04-06 01:30:09 -0700896 &lcdc0_device,
Kuninori Morimotof7e7d312012-04-06 01:31:33 -0700897 &gpio_keys_device,
Kuninori Morimotod8fed1e2012-04-06 01:32:02 -0700898 &sh_eth_device,
Kuninori Morimoto49c01112012-04-24 02:09:19 -0700899 &sdhi0_device,
Kuninori Morimoto0a4266b2012-04-24 02:09:42 -0700900 &sh_mmcif_device,
Kuninori Morimoto910c14d2012-06-12 02:39:11 -0700901 &hdmi_device,
902 &hdmi_lcdc_device,
Kuninori Morimoto3760e792012-06-12 02:40:07 -0700903 &camera_device,
904 &ceu0_device,
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700905 &fsi_device,
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700906 &fsi_hdmi_device,
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700907 &fsi_wm8978_device,
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700908};
909
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700910static void __init eva_clock_init(void)
911{
912 struct clk *system = clk_get(NULL, "system_clk");
913 struct clk *xtal1 = clk_get(NULL, "extal1");
914 struct clk *usb24s = clk_get(NULL, "usb24s");
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700915 struct clk *fsibck = clk_get(NULL, "fsibck");
916 struct clk *fsib = clk_get(&fsi_device.dev, "ickb");
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700917
918 if (IS_ERR(system) ||
919 IS_ERR(xtal1) ||
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700920 IS_ERR(usb24s) ||
921 IS_ERR(fsibck) ||
922 IS_ERR(fsib)) {
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700923 pr_err("armadillo800eva board clock init failed\n");
924 goto clock_error;
925 }
926
927 /* armadillo 800 eva extal1 is 24MHz */
928 clk_set_rate(xtal1, 24000000);
929
930 /* usb24s use extal1 (= system) clock (= 24MHz) */
931 clk_set_parent(usb24s, system);
932
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700933 /* FSIBCK is 12.288MHz, and it is parent of FSI-B */
934 clk_set_parent(fsib, fsibck);
935 clk_set_rate(fsibck, 12288000);
936 clk_set_rate(fsib, 12288000);
937
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700938clock_error:
939 if (!IS_ERR(system))
940 clk_put(system);
941 if (!IS_ERR(xtal1))
942 clk_put(xtal1);
943 if (!IS_ERR(usb24s))
944 clk_put(usb24s);
Kuninori Morimoto0676c052012-06-25 03:33:04 -0700945 if (!IS_ERR(fsibck))
946 clk_put(fsibck);
947 if (!IS_ERR(fsib))
948 clk_put(fsib);
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700949}
950
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700951/*
952 * board init
953 */
Kuninori Morimoto5389bf72012-06-25 03:32:50 -0700954#define GPIO_PORT7CR 0xe6050007
955#define GPIO_PORT8CR 0xe6050008
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700956static void __init eva_init(void)
957{
Kuninori Morimoto0f547882012-07-05 01:28:00 -0700958 struct platform_device *usb = NULL;
959
Guennadi Liakhovetskif65ad7e2012-06-29 08:33:11 +0200960 regulator_register_always_on(0, "fixed-3.3V", fixed3v3_power_consumers,
961 ARRAY_SIZE(fixed3v3_power_consumers), 3300000);
Kuninori Morimoto1c962932012-04-24 02:09:08 -0700962
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700963 r8a7740_pinmux_init();
Kuninori Morimotod49679e2012-06-12 02:36:21 -0700964 r8a7740_meram_workaround();
Kuninori Morimoto4d22e562012-04-06 01:28:59 -0700965
966 /* SCIFA1 */
967 gpio_request(GPIO_FN_SCIFA1_RXD, NULL);
968 gpio_request(GPIO_FN_SCIFA1_TXD, NULL);
969
Kuninori Morimotodad29d12012-04-06 01:30:09 -0700970 /* LCDC0 */
971 gpio_request(GPIO_FN_LCDC0_SELECT, NULL);
972 gpio_request(GPIO_FN_LCD0_D0, NULL);
973 gpio_request(GPIO_FN_LCD0_D1, NULL);
974 gpio_request(GPIO_FN_LCD0_D2, NULL);
975 gpio_request(GPIO_FN_LCD0_D3, NULL);
976 gpio_request(GPIO_FN_LCD0_D4, NULL);
977 gpio_request(GPIO_FN_LCD0_D5, NULL);
978 gpio_request(GPIO_FN_LCD0_D6, NULL);
979 gpio_request(GPIO_FN_LCD0_D7, NULL);
980 gpio_request(GPIO_FN_LCD0_D8, NULL);
981 gpio_request(GPIO_FN_LCD0_D9, NULL);
982 gpio_request(GPIO_FN_LCD0_D10, NULL);
983 gpio_request(GPIO_FN_LCD0_D11, NULL);
984 gpio_request(GPIO_FN_LCD0_D12, NULL);
985 gpio_request(GPIO_FN_LCD0_D13, NULL);
986 gpio_request(GPIO_FN_LCD0_D14, NULL);
987 gpio_request(GPIO_FN_LCD0_D15, NULL);
988 gpio_request(GPIO_FN_LCD0_D16, NULL);
989 gpio_request(GPIO_FN_LCD0_D17, NULL);
990 gpio_request(GPIO_FN_LCD0_D18_PORT40, NULL);
991 gpio_request(GPIO_FN_LCD0_D19_PORT4, NULL);
992 gpio_request(GPIO_FN_LCD0_D20_PORT3, NULL);
993 gpio_request(GPIO_FN_LCD0_D21_PORT2, NULL);
994 gpio_request(GPIO_FN_LCD0_D22_PORT0, NULL);
995 gpio_request(GPIO_FN_LCD0_D23_PORT1, NULL);
996 gpio_request(GPIO_FN_LCD0_DCK, NULL);
997 gpio_request(GPIO_FN_LCD0_VSYN, NULL);
998 gpio_request(GPIO_FN_LCD0_HSYN, NULL);
999 gpio_request(GPIO_FN_LCD0_DISP, NULL);
1000 gpio_request(GPIO_FN_LCD0_LCLK_PORT165, NULL);
1001
1002 gpio_request(GPIO_PORT61, NULL); /* LCDDON */
1003 gpio_direction_output(GPIO_PORT61, 1);
1004
1005 gpio_request(GPIO_PORT202, NULL); /* LCD0_LED_CONT */
1006 gpio_direction_output(GPIO_PORT202, 0);
1007
Kuninori Morimoto46cf6682012-04-06 01:30:42 -07001008 /* Touchscreen */
1009 gpio_request(GPIO_FN_IRQ10, NULL); /* TP_INT */
1010 gpio_request(GPIO_PORT166, NULL); /* TP_RST_B */
1011 gpio_direction_output(GPIO_PORT166, 1);
1012
Kuninori Morimotod8fed1e2012-04-06 01:32:02 -07001013 /* GETHER */
1014 gpio_request(GPIO_FN_ET_CRS, NULL);
1015 gpio_request(GPIO_FN_ET_MDC, NULL);
1016 gpio_request(GPIO_FN_ET_MDIO, NULL);
1017 gpio_request(GPIO_FN_ET_TX_ER, NULL);
1018 gpio_request(GPIO_FN_ET_RX_ER, NULL);
1019 gpio_request(GPIO_FN_ET_ERXD0, NULL);
1020 gpio_request(GPIO_FN_ET_ERXD1, NULL);
1021 gpio_request(GPIO_FN_ET_ERXD2, NULL);
1022 gpio_request(GPIO_FN_ET_ERXD3, NULL);
1023 gpio_request(GPIO_FN_ET_TX_CLK, NULL);
1024 gpio_request(GPIO_FN_ET_TX_EN, NULL);
1025 gpio_request(GPIO_FN_ET_ETXD0, NULL);
1026 gpio_request(GPIO_FN_ET_ETXD1, NULL);
1027 gpio_request(GPIO_FN_ET_ETXD2, NULL);
1028 gpio_request(GPIO_FN_ET_ETXD3, NULL);
1029 gpio_request(GPIO_FN_ET_PHY_INT, NULL);
1030 gpio_request(GPIO_FN_ET_COL, NULL);
1031 gpio_request(GPIO_FN_ET_RX_DV, NULL);
1032 gpio_request(GPIO_FN_ET_RX_CLK, NULL);
1033
1034 gpio_request(GPIO_PORT18, NULL); /* PHY_RST */
1035 gpio_direction_output(GPIO_PORT18, 1);
1036
Kuninori Morimoto1c962932012-04-24 02:09:08 -07001037 /* USB */
1038 gpio_request(GPIO_PORT159, NULL); /* USB_DEVICE_MODE */
1039 gpio_direction_input(GPIO_PORT159);
1040
1041 if (gpio_get_value(GPIO_PORT159)) {
1042 /* USB Host */
1043 } else {
1044 /* USB Func */
Kuninori Morimotod483b982012-07-05 01:27:14 -07001045 /*
1046 * A1 chip has 2 IRQ7 pin and it was controled by MSEL register.
1047 * OTOH, usbhs interrupt needs its value (HI/LOW) to decide
1048 * USB connection/disconnection (usbhsf_get_vbus()).
1049 * This means we needs to select GPIO_FN_IRQ7_PORT209 first,
1050 * and select GPIO_PORT209 here
1051 */
1052 gpio_request(GPIO_FN_IRQ7_PORT209, NULL);
1053 gpio_request(GPIO_PORT209, NULL);
1054 gpio_direction_input(GPIO_PORT209);
1055
Kuninori Morimoto1c962932012-04-24 02:09:08 -07001056 platform_device_register(&usbhsf_device);
Kuninori Morimoto0f547882012-07-05 01:28:00 -07001057 usb = &usbhsf_device;
Kuninori Morimoto1c962932012-04-24 02:09:08 -07001058 }
1059
Kuninori Morimoto49c01112012-04-24 02:09:19 -07001060 /* SDHI0 */
1061 gpio_request(GPIO_FN_SDHI0_CMD, NULL);
1062 gpio_request(GPIO_FN_SDHI0_CLK, NULL);
1063 gpio_request(GPIO_FN_SDHI0_D0, NULL);
1064 gpio_request(GPIO_FN_SDHI0_D1, NULL);
1065 gpio_request(GPIO_FN_SDHI0_D2, NULL);
1066 gpio_request(GPIO_FN_SDHI0_D3, NULL);
1067 gpio_request(GPIO_FN_SDHI0_WP, NULL);
1068
1069 gpio_request(GPIO_PORT17, NULL); /* SDHI0_18/33_B */
1070 gpio_request(GPIO_PORT74, NULL); /* SDHI0_PON */
1071 gpio_request(GPIO_PORT75, NULL); /* SDSLOT1_PON */
1072 gpio_direction_output(GPIO_PORT17, 0);
1073 gpio_direction_output(GPIO_PORT74, 1);
1074 gpio_direction_output(GPIO_PORT75, 1);
1075
1076 /* we can use GPIO_FN_IRQ31_PORT167 here for SDHI0 CD irq */
1077
Kuninori Morimotodad29d12012-04-06 01:30:09 -07001078 /*
Kuninori Morimoto0a4266b2012-04-24 02:09:42 -07001079 * MMCIF
1080 *
1081 * Here doesn't care SW1.4 status,
1082 * since CON2 is not mounted.
1083 */
1084 gpio_request(GPIO_FN_MMC1_CLK_PORT103, NULL);
1085 gpio_request(GPIO_FN_MMC1_CMD_PORT104, NULL);
1086 gpio_request(GPIO_FN_MMC1_D0_PORT149, NULL);
1087 gpio_request(GPIO_FN_MMC1_D1_PORT148, NULL);
1088 gpio_request(GPIO_FN_MMC1_D2_PORT147, NULL);
1089 gpio_request(GPIO_FN_MMC1_D3_PORT146, NULL);
1090 gpio_request(GPIO_FN_MMC1_D4_PORT145, NULL);
1091 gpio_request(GPIO_FN_MMC1_D5_PORT144, NULL);
1092 gpio_request(GPIO_FN_MMC1_D6_PORT143, NULL);
1093 gpio_request(GPIO_FN_MMC1_D7_PORT142, NULL);
1094
Kuninori Morimoto3760e792012-06-12 02:40:07 -07001095 /* CEU0 */
1096 gpio_request(GPIO_FN_VIO0_D7, NULL);
1097 gpio_request(GPIO_FN_VIO0_D6, NULL);
1098 gpio_request(GPIO_FN_VIO0_D5, NULL);
1099 gpio_request(GPIO_FN_VIO0_D4, NULL);
1100 gpio_request(GPIO_FN_VIO0_D3, NULL);
1101 gpio_request(GPIO_FN_VIO0_D2, NULL);
1102 gpio_request(GPIO_FN_VIO0_D1, NULL);
1103 gpio_request(GPIO_FN_VIO0_D0, NULL);
1104 gpio_request(GPIO_FN_VIO0_CLK, NULL);
1105 gpio_request(GPIO_FN_VIO0_HD, NULL);
1106 gpio_request(GPIO_FN_VIO0_VD, NULL);
1107 gpio_request(GPIO_FN_VIO0_FIELD, NULL);
1108 gpio_request(GPIO_FN_VIO_CKO, NULL);
1109
1110 /* CON1/CON15 Camera */
1111 gpio_request(GPIO_PORT173, NULL); /* STANDBY */
1112 gpio_request(GPIO_PORT172, NULL); /* RST */
1113 gpio_request(GPIO_PORT158, NULL); /* CAM_PON */
1114 gpio_direction_output(GPIO_PORT173, 0);
1115 gpio_direction_output(GPIO_PORT172, 1);
1116 gpio_direction_output(GPIO_PORT158, 0); /* see mt9t111_power() */
1117
Kuninori Morimoto5389bf72012-06-25 03:32:50 -07001118 /* FSI-WM8978 */
1119 gpio_request(GPIO_FN_FSIAIBT, NULL);
1120 gpio_request(GPIO_FN_FSIAILR, NULL);
1121 gpio_request(GPIO_FN_FSIAOMC, NULL);
1122 gpio_request(GPIO_FN_FSIAOSLD, NULL);
1123 gpio_request(GPIO_FN_FSIAISLD_PORT5, NULL);
1124
1125 gpio_request(GPIO_PORT7, NULL);
1126 gpio_request(GPIO_PORT8, NULL);
Kuninori Morimotoa01366b2012-06-25 03:41:45 -07001127 gpio_direction_none(GPIO_PORT7CR); /* FSIAOBT needs no direction */
1128 gpio_direction_none(GPIO_PORT8CR); /* FSIAOLR needs no direction */
Kuninori Morimoto5389bf72012-06-25 03:32:50 -07001129
Kuninori Morimoto0676c052012-06-25 03:33:04 -07001130 /* FSI-HDMI */
1131 gpio_request(GPIO_FN_FSIBCK, NULL);
1132
1133 /* HDMI */
1134 gpio_request(GPIO_FN_HDMI_HPD, NULL);
1135 gpio_request(GPIO_FN_HDMI_CEC, NULL);
1136
Kuninori Morimoto0a4266b2012-04-24 02:09:42 -07001137 /*
Kuninori Morimotodad29d12012-04-06 01:30:09 -07001138 * CAUTION
1139 *
1140 * DBGMD/LCDC0/FSIA MUX
1141 * DBGMD_SELECT_B should be set after setting PFC Function.
1142 */
1143 gpio_request(GPIO_PORT176, NULL);
1144 gpio_direction_output(GPIO_PORT176, 1);
1145
Kuninori Morimoto2e3a5ef2012-04-24 02:09:31 -07001146 /*
1147 * We can switch CON8/CON14 by SW1.5,
1148 * but it needs after DBGMD_SELECT_B
1149 */
1150 gpio_request(GPIO_PORT6, NULL);
1151 gpio_direction_input(GPIO_PORT6);
1152 if (gpio_get_value(GPIO_PORT6)) {
1153 /* CON14 enable */
1154 } else {
1155 /* CON8 (SDHI1) enable */
1156 gpio_request(GPIO_FN_SDHI1_CLK, NULL);
1157 gpio_request(GPIO_FN_SDHI1_CMD, NULL);
1158 gpio_request(GPIO_FN_SDHI1_D0, NULL);
1159 gpio_request(GPIO_FN_SDHI1_D1, NULL);
1160 gpio_request(GPIO_FN_SDHI1_D2, NULL);
1161 gpio_request(GPIO_FN_SDHI1_D3, NULL);
1162 gpio_request(GPIO_FN_SDHI1_CD, NULL);
1163 gpio_request(GPIO_FN_SDHI1_WP, NULL);
1164
1165 gpio_request(GPIO_PORT16, NULL); /* SDSLOT2_PON */
1166 gpio_direction_output(GPIO_PORT16, 1);
1167
1168 platform_device_register(&sdhi1_device);
1169 }
1170
1171
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001172#ifdef CONFIG_CACHE_L2X0
1173 /* Early BRESP enable, Shared attribute override enable, 32K*8way */
1174 l2x0_init(__io(0xf0002000), 0x40440000, 0x82000fff);
1175#endif
1176
Kuninori Morimoto46cf6682012-04-06 01:30:42 -07001177 i2c_register_board_info(0, i2c0_devices, ARRAY_SIZE(i2c0_devices));
1178
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001179 r8a7740_add_standard_devices();
1180
1181 platform_add_devices(eva_devices,
1182 ARRAY_SIZE(eva_devices));
Kuninori Morimoto0676c052012-06-25 03:33:04 -07001183
1184 eva_clock_init();
Kuninori Morimoto10000762012-07-05 01:27:37 -07001185
1186 rmobile_add_device_to_domain(&r8a7740_pd_a4lc, &lcdc0_device);
1187 rmobile_add_device_to_domain(&r8a7740_pd_a4lc, &hdmi_lcdc_device);
Kuninori Morimoto0f547882012-07-05 01:28:00 -07001188 if (usb)
1189 rmobile_add_device_to_domain(&r8a7740_pd_a3sp, usb);
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001190}
1191
1192static void __init eva_earlytimer_init(void)
1193{
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001194 r8a7740_clock_init(MD_CK0 | MD_CK2);
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001195 shmobile_earlytimer_init();
1196}
1197
1198static void __init eva_add_early_devices(void)
1199{
1200 r8a7740_add_early_devices();
1201
1202 /* override timer setup with board-specific code */
1203 shmobile_timer.init = eva_earlytimer_init;
1204}
1205
Magnus Damme6bf7052012-05-14 19:54:41 +09001206static const char *eva_boards_compat_dt[] __initdata = {
1207 "renesas,armadillo800eva",
1208 NULL,
1209};
1210
1211DT_MACHINE_START(ARMADILLO800EVA_DT, "armadillo800eva")
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001212 .map_io = r8a7740_map_io,
1213 .init_early = eva_add_early_devices,
1214 .init_irq = r8a7740_init_irq,
1215 .handle_irq = shmobile_handle_irq_intc,
1216 .init_machine = eva_init,
Laurent Pinchart37f971b2012-06-20 12:53:25 +02001217 .init_late = shmobile_init_late,
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001218 .timer = &shmobile_timer,
Magnus Damme6bf7052012-05-14 19:54:41 +09001219 .dt_compat = eva_boards_compat_dt,
Kuninori Morimoto4d22e562012-04-06 01:28:59 -07001220MACHINE_END