diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-09-05 11:40:32 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-09-05 11:40:32 -0400 |
commit | 09d12ad7936df431ecbf0faf2b81c56cc4bb6392 (patch) | |
tree | 730eefd698dd59556f823952531fb675f1e40455 /arch/arm/mach-shmobile/setup-r8a7779.c | |
parent | e0ace5fc33e2046e83b0ebbe03b7489eabd6cc03 (diff) | |
parent | 9dddfcfacaadb5491b62233b893b510fa00da4e0 (diff) |
Merge tag 'renesas-dt-timers-for-v3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into next/soc
Merge "Renesas ARM Based SoC DT Timers Updates for v3.18" from Simon Horman:
* Enable timers using DT when booting boards without Legacy-C code
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
* tag 'renesas-dt-timers-for-v3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
ARM: shmobile: genmai-reference: Enable MTU2 in device tree
ARM: shmobile: r7s72100: Add MTU2 device to DT
ARM: shmobile: marzen-reference: Enable TMU0 in device tree
ARM: shmobile: koelsch-reference: Enable CMT0 in device tree
ARM: shmobile: lager-reference: Enable CMT0 in device tree
ARM: shmobile: r8a7779: Add TMU devices to DT
ARM: shmobile: r8a7791: Add CMT devices to DT
ARM: shmobile: r8a7790: Add CMT devices to DT
Conflicts:
arch/arm/mach-shmobile/setup-r8a7779.c
Diffstat (limited to 'arch/arm/mach-shmobile/setup-r8a7779.c')
-rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7779.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c index 6829cd19ea72..136078ab9407 100644 --- a/arch/arm/mach-shmobile/setup-r8a7779.c +++ b/arch/arm/mach-shmobile/setup-r8a7779.c | |||
@@ -641,7 +641,7 @@ static void __init r8a7779_register_hpb_dmae(void) | |||
641 | sizeof(dma_platform_data)); | 641 | sizeof(dma_platform_data)); |
642 | } | 642 | } |
643 | 643 | ||
644 | static struct platform_device *r8a7779_devices_dt[] __initdata = { | 644 | static struct platform_device *r8a7779_early_devices[] __initdata = { |
645 | &tmu0_device, | 645 | &tmu0_device, |
646 | }; | 646 | }; |
647 | 647 | ||
@@ -669,8 +669,8 @@ void __init r8a7779_add_standard_devices(void) | |||
669 | 669 | ||
670 | r8a7779_init_pm_domains(); | 670 | r8a7779_init_pm_domains(); |
671 | 671 | ||
672 | platform_add_devices(r8a7779_devices_dt, | 672 | platform_add_devices(r8a7779_early_devices, |
673 | ARRAY_SIZE(r8a7779_devices_dt)); | 673 | ARRAY_SIZE(r8a7779_early_devices)); |
674 | platform_add_devices(r8a7779_standard_devices, | 674 | platform_add_devices(r8a7779_standard_devices, |
675 | ARRAY_SIZE(r8a7779_standard_devices)); | 675 | ARRAY_SIZE(r8a7779_standard_devices)); |
676 | r8a7779_register_hpb_dmae(); | 676 | r8a7779_register_hpb_dmae(); |
@@ -678,8 +678,8 @@ void __init r8a7779_add_standard_devices(void) | |||
678 | 678 | ||
679 | void __init r8a7779_add_early_devices(void) | 679 | void __init r8a7779_add_early_devices(void) |
680 | { | 680 | { |
681 | early_platform_add_devices(r8a7779_devices_dt, | 681 | early_platform_add_devices(r8a7779_early_devices, |
682 | ARRAY_SIZE(r8a7779_devices_dt)); | 682 | ARRAY_SIZE(r8a7779_early_devices)); |
683 | 683 | ||
684 | /* Early serial console setup is not included here due to | 684 | /* Early serial console setup is not included here due to |
685 | * memory map collisions. The SCIF serial ports in r8a7779 | 685 | * memory map collisions. The SCIF serial ports in r8a7779 |
@@ -739,12 +739,6 @@ void __init r8a7779_init_irq_dt(void) | |||
739 | __raw_writel(0x003fee3f, INT2SMSKCR4); | 739 | __raw_writel(0x003fee3f, INT2SMSKCR4); |
740 | } | 740 | } |
741 | 741 | ||
742 | void __init r8a7779_add_standard_devices_dt(void) | ||
743 | { | ||
744 | platform_add_devices(r8a7779_devices_dt, | ||
745 | ARRAY_SIZE(r8a7779_devices_dt)); | ||
746 | } | ||
747 | |||
748 | #define MODEMR 0xffcc0020 | 742 | #define MODEMR 0xffcc0020 |
749 | 743 | ||
750 | u32 __init r8a7779_read_mode_pins(void) | 744 | u32 __init r8a7779_read_mode_pins(void) |
@@ -772,7 +766,6 @@ DT_MACHINE_START(R8A7779_DT, "Generic R8A7779 (Flattened Device Tree)") | |||
772 | .map_io = r8a7779_map_io, | 766 | .map_io = r8a7779_map_io, |
773 | .init_early = shmobile_init_delay, | 767 | .init_early = shmobile_init_delay, |
774 | .init_irq = r8a7779_init_irq_dt, | 768 | .init_irq = r8a7779_init_irq_dt, |
775 | .init_machine = r8a7779_add_standard_devices_dt, | ||
776 | .init_late = shmobile_init_late, | 769 | .init_late = shmobile_init_late, |
777 | .dt_compat = r8a7779_compat_dt, | 770 | .dt_compat = r8a7779_compat_dt, |
778 | MACHINE_END | 771 | MACHINE_END |