2 * r8a7779 processor support
4 * Copyright (C) 2011, 2013 Renesas Solutions Corp.
5 * Copyright (C) 2011 Magnus Damm
6 * Copyright (C) 2013 Cogent Embedded, Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/interrupt.h>
24 #include <linux/irq.h>
25 #include <linux/irqchip.h>
26 #include <linux/irqchip/arm-gic.h>
27 #include <linux/of_platform.h>
28 #include <linux/platform_data/dma-rcar-hpbdma.h>
29 #include <linux/platform_data/gpio-rcar.h>
30 #include <linux/platform_data/irq-renesas-intc-irqpin.h>
31 #include <linux/platform_device.h>
32 #include <linux/delay.h>
33 #include <linux/input.h>
35 #include <linux/serial_sci.h>
36 #include <linux/sh_timer.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/usb/otg.h>
39 #include <linux/usb/hcd.h>
40 #include <linux/usb/ehci_pdriver.h>
41 #include <linux/usb/ohci_pdriver.h>
42 #include <linux/pm_runtime.h>
43 #include <mach/irqs.h>
44 #include <mach/r8a7779.h>
45 #include <mach/common.h>
46 #include <asm/mach-types.h>
47 #include <asm/mach/arch.h>
48 #include <asm/mach/time.h>
49 #include <asm/mach/map.h>
50 #include <asm/hardware/cache-l2x0.h>
52 static struct map_desc r8a7779_io_desc
[] __initdata
= {
53 /* 2M entity map for 0xf0000000 (MPCORE) */
55 .virtual = 0xf0000000,
56 .pfn
= __phys_to_pfn(0xf0000000),
58 .type
= MT_DEVICE_NONSHARED
60 /* 16M entity map for 0xfexxxxxx (DMAC-S/HPBREG/INTC2/LRAM/DBSC) */
62 .virtual = 0xfe000000,
63 .pfn
= __phys_to_pfn(0xfe000000),
65 .type
= MT_DEVICE_NONSHARED
69 void __init
r8a7779_map_io(void)
71 iotable_init(r8a7779_io_desc
, ARRAY_SIZE(r8a7779_io_desc
));
75 #define INT2SMSKCR0 IOMEM(0xfe7822a0)
76 #define INT2SMSKCR1 IOMEM(0xfe7822a4)
77 #define INT2SMSKCR2 IOMEM(0xfe7822a8)
78 #define INT2SMSKCR3 IOMEM(0xfe7822ac)
79 #define INT2SMSKCR4 IOMEM(0xfe7822b0)
81 #define INT2NTSR0 IOMEM(0xfe700060)
82 #define INT2NTSR1 IOMEM(0xfe700064)
84 static struct renesas_intc_irqpin_config irqpin0_platform_data __initdata
= {
85 .irq_base
= irq_pin(0), /* IRQ0 -> IRQ3 */
86 .sense_bitfield_width
= 2,
89 static struct resource irqpin0_resources
[] __initdata
= {
90 DEFINE_RES_MEM(0xfe78001c, 4), /* ICR1 */
91 DEFINE_RES_MEM(0xfe780010, 4), /* INTPRI */
92 DEFINE_RES_MEM(0xfe780024, 4), /* INTREQ */
93 DEFINE_RES_MEM(0xfe780044, 4), /* INTMSK0 */
94 DEFINE_RES_MEM(0xfe780064, 4), /* INTMSKCLR0 */
95 DEFINE_RES_IRQ(gic_spi(27)), /* IRQ0 */
96 DEFINE_RES_IRQ(gic_spi(28)), /* IRQ1 */
97 DEFINE_RES_IRQ(gic_spi(29)), /* IRQ2 */
98 DEFINE_RES_IRQ(gic_spi(30)), /* IRQ3 */
101 void __init
r8a7779_init_irq_extpin_dt(int irlm
)
103 void __iomem
*icr0
= ioremap_nocache(0xfe780000, PAGE_SIZE
);
107 pr_warn("r8a7779: unable to setup external irq pin mode\n");
111 tmp
= ioread32(icr0
);
113 tmp
|= 1 << 23; /* IRQ0 -> IRQ3 as individual pins */
115 tmp
&= ~(1 << 23); /* IRL mode - not supported */
116 tmp
|= (1 << 21); /* LVLMODE = 1 */
117 iowrite32(tmp
, icr0
);
121 void __init
r8a7779_init_irq_extpin(int irlm
)
123 r8a7779_init_irq_extpin_dt(irlm
);
125 platform_device_register_resndata(
126 &platform_bus
, "renesas_intc_irqpin", -1,
127 irqpin0_resources
, ARRAY_SIZE(irqpin0_resources
),
128 &irqpin0_platform_data
, sizeof(irqpin0_platform_data
));
132 static struct resource r8a7779_pfc_resources
[] = {
133 DEFINE_RES_MEM(0xfffc0000, 0x023c),
136 static struct platform_device r8a7779_pfc_device
= {
137 .name
= "pfc-r8a7779",
139 .resource
= r8a7779_pfc_resources
,
140 .num_resources
= ARRAY_SIZE(r8a7779_pfc_resources
),
143 #define R8A7779_GPIO(idx, npins) \
144 static struct resource r8a7779_gpio##idx##_resources[] = { \
145 DEFINE_RES_MEM(0xffc40000 + (0x1000 * (idx)), 0x002c), \
146 DEFINE_RES_IRQ(gic_iid(0xad + (idx))), \
149 static struct gpio_rcar_config r8a7779_gpio##idx##_platform_data = { \
150 .gpio_base = 32 * (idx), \
152 .number_of_pins = npins, \
153 .pctl_name = "pfc-r8a7779", \
156 static struct platform_device r8a7779_gpio##idx##_device = { \
157 .name = "gpio_rcar", \
159 .resource = r8a7779_gpio##idx##_resources, \
160 .num_resources = ARRAY_SIZE(r8a7779_gpio##idx##_resources), \
162 .platform_data = &r8a7779_gpio##idx##_platform_data, \
174 static struct platform_device
*r8a7779_pinctrl_devices
[] __initdata
= {
176 &r8a7779_gpio0_device
,
177 &r8a7779_gpio1_device
,
178 &r8a7779_gpio2_device
,
179 &r8a7779_gpio3_device
,
180 &r8a7779_gpio4_device
,
181 &r8a7779_gpio5_device
,
182 &r8a7779_gpio6_device
,
185 void __init
r8a7779_pinmux_init(void)
187 platform_add_devices(r8a7779_pinctrl_devices
,
188 ARRAY_SIZE(r8a7779_pinctrl_devices
));
192 #define R8A7779_SCIF(index, baseaddr, irq) \
193 static struct plat_sci_port scif##index##_platform_data = { \
195 .flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP, \
196 .scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE1, \
199 static struct resource scif##index##_resources[] = { \
200 DEFINE_RES_MEM(baseaddr, 0x100), \
201 DEFINE_RES_IRQ(irq), \
204 static struct platform_device scif##index##_device = { \
207 .resource = scif##index##_resources, \
208 .num_resources = ARRAY_SIZE(scif##index##_resources), \
210 .platform_data = &scif##index##_platform_data, \
214 R8A7779_SCIF(0, 0xffe40000, gic_iid(0x78));
215 R8A7779_SCIF(1, 0xffe41000, gic_iid(0x79));
216 R8A7779_SCIF(2, 0xffe42000, gic_iid(0x7a));
217 R8A7779_SCIF(3, 0xffe43000, gic_iid(0x7b));
218 R8A7779_SCIF(4, 0xffe44000, gic_iid(0x7c));
219 R8A7779_SCIF(5, 0xffe45000, gic_iid(0x7d));
222 static struct sh_timer_config tmu00_platform_data
= {
224 .channel_offset
= 0x4,
226 .clockevent_rating
= 200,
229 static struct resource tmu00_resources
[] = {
234 .flags
= IORESOURCE_MEM
,
237 .start
= gic_iid(0x40),
238 .flags
= IORESOURCE_IRQ
,
242 static struct platform_device tmu00_device
= {
246 .platform_data
= &tmu00_platform_data
,
248 .resource
= tmu00_resources
,
249 .num_resources
= ARRAY_SIZE(tmu00_resources
),
252 static struct sh_timer_config tmu01_platform_data
= {
254 .channel_offset
= 0x10,
256 .clocksource_rating
= 200,
259 static struct resource tmu01_resources
[] = {
264 .flags
= IORESOURCE_MEM
,
267 .start
= gic_iid(0x41),
268 .flags
= IORESOURCE_IRQ
,
272 static struct platform_device tmu01_device
= {
276 .platform_data
= &tmu01_platform_data
,
278 .resource
= tmu01_resources
,
279 .num_resources
= ARRAY_SIZE(tmu01_resources
),
283 static struct resource rcar_i2c0_res
[] = {
287 .flags
= IORESOURCE_MEM
,
289 .start
= gic_iid(0x6f),
290 .flags
= IORESOURCE_IRQ
,
294 static struct platform_device i2c0_device
= {
297 .resource
= rcar_i2c0_res
,
298 .num_resources
= ARRAY_SIZE(rcar_i2c0_res
),
301 static struct resource rcar_i2c1_res
[] = {
305 .flags
= IORESOURCE_MEM
,
307 .start
= gic_iid(0x72),
308 .flags
= IORESOURCE_IRQ
,
312 static struct platform_device i2c1_device
= {
315 .resource
= rcar_i2c1_res
,
316 .num_resources
= ARRAY_SIZE(rcar_i2c1_res
),
319 static struct resource rcar_i2c2_res
[] = {
323 .flags
= IORESOURCE_MEM
,
325 .start
= gic_iid(0x70),
326 .flags
= IORESOURCE_IRQ
,
330 static struct platform_device i2c2_device
= {
333 .resource
= rcar_i2c2_res
,
334 .num_resources
= ARRAY_SIZE(rcar_i2c2_res
),
337 static struct resource rcar_i2c3_res
[] = {
341 .flags
= IORESOURCE_MEM
,
343 .start
= gic_iid(0x71),
344 .flags
= IORESOURCE_IRQ
,
348 static struct platform_device i2c3_device
= {
351 .resource
= rcar_i2c3_res
,
352 .num_resources
= ARRAY_SIZE(rcar_i2c3_res
),
355 static struct resource sata_resources
[] = {
360 .flags
= IORESOURCE_MEM
,
363 .start
= gic_iid(0x84),
364 .flags
= IORESOURCE_IRQ
,
368 static struct platform_device sata_device
= {
371 .resource
= sata_resources
,
372 .num_resources
= ARRAY_SIZE(sata_resources
),
374 .dma_mask
= &sata_device
.dev
.coherent_dma_mask
,
375 .coherent_dma_mask
= DMA_BIT_MASK(32),
380 static struct usb_phy
*phy
;
382 static int usb_power_on(struct platform_device
*pdev
)
387 pm_runtime_enable(&pdev
->dev
);
388 pm_runtime_get_sync(&pdev
->dev
);
395 static void usb_power_off(struct platform_device
*pdev
)
400 usb_phy_shutdown(phy
);
402 pm_runtime_put_sync(&pdev
->dev
);
403 pm_runtime_disable(&pdev
->dev
);
406 static int ehci_init_internal_buffer(struct usb_hcd
*hcd
)
409 * Below are recommended values from the datasheet;
410 * see [USB :: Setting of EHCI Internal Buffer].
412 /* EHCI IP internal buffer setting */
413 iowrite32(0x00ff0040, hcd
->regs
+ 0x0094);
414 /* EHCI IP internal buffer enable */
415 iowrite32(0x00000001, hcd
->regs
+ 0x009C);
420 static struct usb_ehci_pdata ehcix_pdata
= {
421 .power_on
= usb_power_on
,
422 .power_off
= usb_power_off
,
423 .power_suspend
= usb_power_off
,
424 .pre_setup
= ehci_init_internal_buffer
,
427 static struct resource ehci0_resources
[] = {
430 .end
= 0xffe70400 - 1,
431 .flags
= IORESOURCE_MEM
,
434 .start
= gic_iid(0x4c),
435 .flags
= IORESOURCE_IRQ
,
439 static struct platform_device ehci0_device
= {
440 .name
= "ehci-platform",
443 .dma_mask
= &ehci0_device
.dev
.coherent_dma_mask
,
444 .coherent_dma_mask
= 0xffffffff,
445 .platform_data
= &ehcix_pdata
,
447 .num_resources
= ARRAY_SIZE(ehci0_resources
),
448 .resource
= ehci0_resources
,
451 static struct resource ehci1_resources
[] = {
454 .end
= 0xfff70400 - 1,
455 .flags
= IORESOURCE_MEM
,
458 .start
= gic_iid(0x4d),
459 .flags
= IORESOURCE_IRQ
,
463 static struct platform_device ehci1_device
= {
464 .name
= "ehci-platform",
467 .dma_mask
= &ehci1_device
.dev
.coherent_dma_mask
,
468 .coherent_dma_mask
= 0xffffffff,
469 .platform_data
= &ehcix_pdata
,
471 .num_resources
= ARRAY_SIZE(ehci1_resources
),
472 .resource
= ehci1_resources
,
475 static struct usb_ohci_pdata ohcix_pdata
= {
476 .power_on
= usb_power_on
,
477 .power_off
= usb_power_off
,
478 .power_suspend
= usb_power_off
,
481 static struct resource ohci0_resources
[] = {
484 .end
= 0xffe70800 - 1,
485 .flags
= IORESOURCE_MEM
,
488 .start
= gic_iid(0x4c),
489 .flags
= IORESOURCE_IRQ
,
493 static struct platform_device ohci0_device
= {
494 .name
= "ohci-platform",
497 .dma_mask
= &ohci0_device
.dev
.coherent_dma_mask
,
498 .coherent_dma_mask
= 0xffffffff,
499 .platform_data
= &ohcix_pdata
,
501 .num_resources
= ARRAY_SIZE(ohci0_resources
),
502 .resource
= ohci0_resources
,
505 static struct resource ohci1_resources
[] = {
508 .end
= 0xfff70800 - 1,
509 .flags
= IORESOURCE_MEM
,
512 .start
= gic_iid(0x4d),
513 .flags
= IORESOURCE_IRQ
,
517 static struct platform_device ohci1_device
= {
518 .name
= "ohci-platform",
521 .dma_mask
= &ohci1_device
.dev
.coherent_dma_mask
,
522 .coherent_dma_mask
= 0xffffffff,
523 .platform_data
= &ohcix_pdata
,
525 .num_resources
= ARRAY_SIZE(ohci1_resources
),
526 .resource
= ohci1_resources
,
531 /* Asynchronous mode register bits */
532 #define HPB_DMAE_ASYNCMDR_ASMD43_MASK BIT(23) /* MMC1 */
533 #define HPB_DMAE_ASYNCMDR_ASMD43_SINGLE BIT(23) /* MMC1 */
534 #define HPB_DMAE_ASYNCMDR_ASMD43_MULTI 0 /* MMC1 */
535 #define HPB_DMAE_ASYNCMDR_ASBTMD43_MASK BIT(22) /* MMC1 */
536 #define HPB_DMAE_ASYNCMDR_ASBTMD43_BURST BIT(22) /* MMC1 */
537 #define HPB_DMAE_ASYNCMDR_ASBTMD43_NBURST 0 /* MMC1 */
538 #define HPB_DMAE_ASYNCMDR_ASMD24_MASK BIT(21) /* MMC0 */
539 #define HPB_DMAE_ASYNCMDR_ASMD24_SINGLE BIT(21) /* MMC0 */
540 #define HPB_DMAE_ASYNCMDR_ASMD24_MULTI 0 /* MMC0 */
541 #define HPB_DMAE_ASYNCMDR_ASBTMD24_MASK BIT(20) /* MMC0 */
542 #define HPB_DMAE_ASYNCMDR_ASBTMD24_BURST BIT(20) /* MMC0 */
543 #define HPB_DMAE_ASYNCMDR_ASBTMD24_NBURST 0 /* MMC0 */
544 #define HPB_DMAE_ASYNCMDR_ASMD41_MASK BIT(19) /* SDHI3 */
545 #define HPB_DMAE_ASYNCMDR_ASMD41_SINGLE BIT(19) /* SDHI3 */
546 #define HPB_DMAE_ASYNCMDR_ASMD41_MULTI 0 /* SDHI3 */
547 #define HPB_DMAE_ASYNCMDR_ASBTMD41_MASK BIT(18) /* SDHI3 */
548 #define HPB_DMAE_ASYNCMDR_ASBTMD41_BURST BIT(18) /* SDHI3 */
549 #define HPB_DMAE_ASYNCMDR_ASBTMD41_NBURST 0 /* SDHI3 */
550 #define HPB_DMAE_ASYNCMDR_ASMD40_MASK BIT(17) /* SDHI3 */
551 #define HPB_DMAE_ASYNCMDR_ASMD40_SINGLE BIT(17) /* SDHI3 */
552 #define HPB_DMAE_ASYNCMDR_ASMD40_MULTI 0 /* SDHI3 */
553 #define HPB_DMAE_ASYNCMDR_ASBTMD40_MASK BIT(16) /* SDHI3 */
554 #define HPB_DMAE_ASYNCMDR_ASBTMD40_BURST BIT(16) /* SDHI3 */
555 #define HPB_DMAE_ASYNCMDR_ASBTMD40_NBURST 0 /* SDHI3 */
556 #define HPB_DMAE_ASYNCMDR_ASMD39_MASK BIT(15) /* SDHI3 */
557 #define HPB_DMAE_ASYNCMDR_ASMD39_SINGLE BIT(15) /* SDHI3 */
558 #define HPB_DMAE_ASYNCMDR_ASMD39_MULTI 0 /* SDHI3 */
559 #define HPB_DMAE_ASYNCMDR_ASBTMD39_MASK BIT(14) /* SDHI3 */
560 #define HPB_DMAE_ASYNCMDR_ASBTMD39_BURST BIT(14) /* SDHI3 */
561 #define HPB_DMAE_ASYNCMDR_ASBTMD39_NBURST 0 /* SDHI3 */
562 #define HPB_DMAE_ASYNCMDR_ASMD27_MASK BIT(13) /* SDHI2 */
563 #define HPB_DMAE_ASYNCMDR_ASMD27_SINGLE BIT(13) /* SDHI2 */
564 #define HPB_DMAE_ASYNCMDR_ASMD27_MULTI 0 /* SDHI2 */
565 #define HPB_DMAE_ASYNCMDR_ASBTMD27_MASK BIT(12) /* SDHI2 */
566 #define HPB_DMAE_ASYNCMDR_ASBTMD27_BURST BIT(12) /* SDHI2 */
567 #define HPB_DMAE_ASYNCMDR_ASBTMD27_NBURST 0 /* SDHI2 */
568 #define HPB_DMAE_ASYNCMDR_ASMD26_MASK BIT(11) /* SDHI2 */
569 #define HPB_DMAE_ASYNCMDR_ASMD26_SINGLE BIT(11) /* SDHI2 */
570 #define HPB_DMAE_ASYNCMDR_ASMD26_MULTI 0 /* SDHI2 */
571 #define HPB_DMAE_ASYNCMDR_ASBTMD26_MASK BIT(10) /* SDHI2 */
572 #define HPB_DMAE_ASYNCMDR_ASBTMD26_BURST BIT(10) /* SDHI2 */
573 #define HPB_DMAE_ASYNCMDR_ASBTMD26_NBURST 0 /* SDHI2 */
574 #define HPB_DMAE_ASYNCMDR_ASMD25_MASK BIT(9) /* SDHI2 */
575 #define HPB_DMAE_ASYNCMDR_ASMD25_SINGLE BIT(9) /* SDHI2 */
576 #define HPB_DMAE_ASYNCMDR_ASMD25_MULTI 0 /* SDHI2 */
577 #define HPB_DMAE_ASYNCMDR_ASBTMD25_MASK BIT(8) /* SDHI2 */
578 #define HPB_DMAE_ASYNCMDR_ASBTMD25_BURST BIT(8) /* SDHI2 */
579 #define HPB_DMAE_ASYNCMDR_ASBTMD25_NBURST 0 /* SDHI2 */
580 #define HPB_DMAE_ASYNCMDR_ASMD23_MASK BIT(7) /* SDHI0 */
581 #define HPB_DMAE_ASYNCMDR_ASMD23_SINGLE BIT(7) /* SDHI0 */
582 #define HPB_DMAE_ASYNCMDR_ASMD23_MULTI 0 /* SDHI0 */
583 #define HPB_DMAE_ASYNCMDR_ASBTMD23_MASK BIT(6) /* SDHI0 */
584 #define HPB_DMAE_ASYNCMDR_ASBTMD23_BURST BIT(6) /* SDHI0 */
585 #define HPB_DMAE_ASYNCMDR_ASBTMD23_NBURST 0 /* SDHI0 */
586 #define HPB_DMAE_ASYNCMDR_ASMD22_MASK BIT(5) /* SDHI0 */
587 #define HPB_DMAE_ASYNCMDR_ASMD22_SINGLE BIT(5) /* SDHI0 */
588 #define HPB_DMAE_ASYNCMDR_ASMD22_MULTI 0 /* SDHI0 */
589 #define HPB_DMAE_ASYNCMDR_ASBTMD22_MASK BIT(4) /* SDHI0 */
590 #define HPB_DMAE_ASYNCMDR_ASBTMD22_BURST BIT(4) /* SDHI0 */
591 #define HPB_DMAE_ASYNCMDR_ASBTMD22_NBURST 0 /* SDHI0 */
592 #define HPB_DMAE_ASYNCMDR_ASMD21_MASK BIT(3) /* SDHI0 */
593 #define HPB_DMAE_ASYNCMDR_ASMD21_SINGLE BIT(3) /* SDHI0 */
594 #define HPB_DMAE_ASYNCMDR_ASMD21_MULTI 0 /* SDHI0 */
595 #define HPB_DMAE_ASYNCMDR_ASBTMD21_MASK BIT(2) /* SDHI0 */
596 #define HPB_DMAE_ASYNCMDR_ASBTMD21_BURST BIT(2) /* SDHI0 */
597 #define HPB_DMAE_ASYNCMDR_ASBTMD21_NBURST 0 /* SDHI0 */
598 #define HPB_DMAE_ASYNCMDR_ASMD20_MASK BIT(1) /* SDHI1 */
599 #define HPB_DMAE_ASYNCMDR_ASMD20_SINGLE BIT(1) /* SDHI1 */
600 #define HPB_DMAE_ASYNCMDR_ASMD20_MULTI 0 /* SDHI1 */
601 #define HPB_DMAE_ASYNCMDR_ASBTMD20_MASK BIT(0) /* SDHI1 */
602 #define HPB_DMAE_ASYNCMDR_ASBTMD20_BURST BIT(0) /* SDHI1 */
603 #define HPB_DMAE_ASYNCMDR_ASBTMD20_NBURST 0 /* SDHI1 */
605 static const struct hpb_dmae_slave_config hpb_dmae_slaves
[] = {
607 .id
= HPBDMA_SLAVE_SDHI0_TX
,
608 .addr
= 0xffe4c000 + 0x30,
609 .dcr
= HPB_DMAE_DCR_SPDS_16BIT
|
611 HPB_DMAE_DCR_DPDS_16BIT
,
612 .rstr
= HPB_DMAE_ASYNCRSTR_ASRST21
|
613 HPB_DMAE_ASYNCRSTR_ASRST22
|
614 HPB_DMAE_ASYNCRSTR_ASRST23
,
615 .mdr
= HPB_DMAE_ASYNCMDR_ASMD21_SINGLE
|
616 HPB_DMAE_ASYNCMDR_ASBTMD21_NBURST
,
617 .mdm
= HPB_DMAE_ASYNCMDR_ASMD21_MASK
|
618 HPB_DMAE_ASYNCMDR_ASBTMD21_MASK
,
620 .flags
= HPB_DMAE_SET_ASYNC_RESET
| HPB_DMAE_SET_ASYNC_MODE
,
623 .id
= HPBDMA_SLAVE_SDHI0_RX
,
624 .addr
= 0xffe4c000 + 0x30,
625 .dcr
= HPB_DMAE_DCR_SMDL
|
626 HPB_DMAE_DCR_SPDS_16BIT
|
627 HPB_DMAE_DCR_DPDS_16BIT
,
628 .rstr
= HPB_DMAE_ASYNCRSTR_ASRST21
|
629 HPB_DMAE_ASYNCRSTR_ASRST22
|
630 HPB_DMAE_ASYNCRSTR_ASRST23
,
631 .mdr
= HPB_DMAE_ASYNCMDR_ASMD22_SINGLE
|
632 HPB_DMAE_ASYNCMDR_ASBTMD22_NBURST
,
633 .mdm
= HPB_DMAE_ASYNCMDR_ASMD22_MASK
|
634 HPB_DMAE_ASYNCMDR_ASBTMD22_MASK
,
636 .flags
= HPB_DMAE_SET_ASYNC_RESET
| HPB_DMAE_SET_ASYNC_MODE
,
641 static const struct hpb_dmae_channel hpb_dmae_channels
[] = {
642 HPB_DMAE_CHANNEL(0x93, HPBDMA_SLAVE_SDHI0_TX
), /* ch. 21 */
643 HPB_DMAE_CHANNEL(0x93, HPBDMA_SLAVE_SDHI0_RX
), /* ch. 22 */
646 static struct hpb_dmae_pdata dma_platform_data __initdata
= {
647 .slaves
= hpb_dmae_slaves
,
648 .num_slaves
= ARRAY_SIZE(hpb_dmae_slaves
),
649 .channels
= hpb_dmae_channels
,
650 .num_channels
= ARRAY_SIZE(hpb_dmae_channels
),
656 .num_hw_channels
= 44,
659 static struct resource hpb_dmae_resources
[] __initdata
= {
660 /* Channel registers */
661 DEFINE_RES_MEM(0xffc08000, 0x1000),
662 /* Common registers */
663 DEFINE_RES_MEM(0xffc09000, 0x170),
664 /* Asynchronous reset registers */
665 DEFINE_RES_MEM(0xffc00300, 4),
666 /* Asynchronous mode registers */
667 DEFINE_RES_MEM(0xffc00400, 4),
668 /* IRQ for DMA channels */
669 DEFINE_RES_NAMED(gic_iid(0x8e), 12, NULL
, IORESOURCE_IRQ
),
672 static void __init
r8a7779_register_hpb_dmae(void)
674 platform_device_register_resndata(&platform_bus
, "hpb-dma-engine", -1,
676 ARRAY_SIZE(hpb_dmae_resources
),
678 sizeof(dma_platform_data
));
681 static struct platform_device
*r8a7779_devices_dt
[] __initdata
= {
692 static struct platform_device
*r8a7779_standard_devices
[] __initdata
= {
700 void __init
r8a7779_add_standard_devices(void)
702 #ifdef CONFIG_CACHE_L2X0
703 /* Early BRESP enable, Shared attribute override enable, 64K*16way */
704 l2x0_init(IOMEM(0xf0100000), 0x40470000, 0x82000fff);
708 r8a7779_init_pm_domains();
710 platform_add_devices(r8a7779_devices_dt
,
711 ARRAY_SIZE(r8a7779_devices_dt
));
712 platform_add_devices(r8a7779_standard_devices
,
713 ARRAY_SIZE(r8a7779_standard_devices
));
714 r8a7779_register_hpb_dmae();
717 /* do nothing for !CONFIG_SMP or !CONFIG_HAVE_TWD */
718 void __init __weak
r8a7779_register_twd(void) { }
720 void __init
r8a7779_earlytimer_init(void)
722 r8a7779_clock_init();
723 r8a7779_register_twd();
724 shmobile_earlytimer_init();
727 void __init
r8a7779_add_early_devices(void)
729 early_platform_add_devices(r8a7779_devices_dt
,
730 ARRAY_SIZE(r8a7779_devices_dt
));
732 /* Early serial console setup is not included here due to
733 * memory map collisions. The SCIF serial ports in r8a7779
734 * are difficult to entity map 1:1 due to collision with the
735 * virtual memory range used by the coherent DMA code on ARM.
737 * Anyone wanting to debug early can remove UPF_IOREMAP from
738 * the sh-sci serial console platform data, adjust mapbase
739 * to a static M:N virt:phys mapping that needs to be added to
740 * the mappings passed with iotable_init() above.
742 * Then add a call to shmobile_setup_console() from this function.
744 * As a final step pass earlyprint=sh-sci.2,115200 on the kernel
745 * command line in case of the marzen board.
749 static struct platform_device
*r8a7779_late_devices
[] __initdata
= {
756 void __init
r8a7779_init_late(void)
759 phy
= usb_get_phy(USB_PHY_TYPE_USB2
);
761 shmobile_init_late();
762 platform_add_devices(r8a7779_late_devices
,
763 ARRAY_SIZE(r8a7779_late_devices
));
767 static int r8a7779_set_wake(struct irq_data
*data
, unsigned int on
)
769 return 0; /* always allow wakeup */
772 void __init
r8a7779_init_irq_dt(void)
774 gic_arch_extn
.irq_set_wake
= r8a7779_set_wake
;
778 /* route all interrupts to ARM */
779 __raw_writel(0xffffffff, INT2NTSR0
);
780 __raw_writel(0x3fffffff, INT2NTSR1
);
782 /* unmask all known interrupts in INTCS2 */
783 __raw_writel(0xfffffff0, INT2SMSKCR0
);
784 __raw_writel(0xfff7ffff, INT2SMSKCR1
);
785 __raw_writel(0xfffbffdf, INT2SMSKCR2
);
786 __raw_writel(0xbffffffc, INT2SMSKCR3
);
787 __raw_writel(0x003fee3f, INT2SMSKCR4
);
790 void __init
r8a7779_init_delay(void)
792 shmobile_setup_delay(1000, 2, 4); /* Cortex-A9 @ 1000MHz */
795 void __init
r8a7779_add_standard_devices_dt(void)
797 /* clocks are setup late during boot in the case of DT */
798 r8a7779_clock_init();
800 platform_add_devices(r8a7779_devices_dt
,
801 ARRAY_SIZE(r8a7779_devices_dt
));
802 of_platform_populate(NULL
, of_default_bus_match_table
, NULL
, NULL
);
805 static const char *r8a7779_compat_dt
[] __initdata
= {
810 DT_MACHINE_START(R8A7779_DT
, "Generic R8A7779 (Flattened Device Tree)")
811 .map_io
= r8a7779_map_io
,
812 .init_early
= r8a7779_init_delay
,
813 .nr_irqs
= NR_IRQS_LEGACY
,
814 .init_irq
= r8a7779_init_irq_dt
,
815 .init_machine
= r8a7779_add_standard_devices_dt
,
816 .init_late
= r8a7779_init_late
,
817 .dt_compat
= r8a7779_compat_dt
,
819 #endif /* CONFIG_USE_OF */