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