diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2012-09-05 15:28:58 -0400 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2012-09-13 14:16:47 -0400 |
commit | c446407c09ce0b339a84931f3d45f3dabb9f0b17 (patch) | |
tree | d3280103fb3e54d07753927e3363db34e9416dfc /arch | |
parent | 85a9f0f576372e033f0aa15485109aa0ee05fef3 (diff) |
ARM: msm: Add DT support for 8960
Add basic support to boot 8960 with device tree. For now just
support a basic machine with a uart device.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
[davidb@codeaurora.org: Remove leading zeros]
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/msm8960-cdp.dts | 41 | ||||
-rw-r--r-- | arch/arm/mach-msm/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/mach-msm/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/mach-msm/Makefile.boot | 1 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-dt-8960.c | 49 |
5 files changed, 93 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/msm8960-cdp.dts b/arch/arm/boot/dts/msm8960-cdp.dts new file mode 100644 index 000000000000..9e621b5ad3dd --- /dev/null +++ b/arch/arm/boot/dts/msm8960-cdp.dts | |||
@@ -0,0 +1,41 @@ | |||
1 | /dts-v1/; | ||
2 | |||
3 | /include/ "skeleton.dtsi" | ||
4 | |||
5 | / { | ||
6 | model = "Qualcomm MSM8960 CDP"; | ||
7 | compatible = "qcom,msm8960-cdp", "qcom,msm8960"; | ||
8 | interrupt-parent = <&intc>; | ||
9 | |||
10 | intc: interrupt-controller@2000000 { | ||
11 | compatible = "qcom,msm-qgic2"; | ||
12 | interrupt-controller; | ||
13 | #interrupt-cells = <3>; | ||
14 | reg = < 0x02000000 0x1000 >, | ||
15 | < 0x02002000 0x1000 >; | ||
16 | }; | ||
17 | |||
18 | timer@200a004 { | ||
19 | compatible = "qcom,msm-gpt", "qcom,msm-timer"; | ||
20 | interrupts = <1 2 0x301>; | ||
21 | reg = <0x0200a004 0x10>; | ||
22 | clock-frequency = <32768>; | ||
23 | cpu-offset = <0x80000>; | ||
24 | }; | ||
25 | |||
26 | timer@200a024 { | ||
27 | compatible = "qcom,msm-dgt", "qcom,msm-timer"; | ||
28 | interrupts = <1 1 0x301>; | ||
29 | reg = <0x0200a024 0x10>, | ||
30 | <0x0200a034 0x4>; | ||
31 | clock-frequency = <6750000>; | ||
32 | cpu-offset = <0x80000>; | ||
33 | }; | ||
34 | |||
35 | serial@19c400000 { | ||
36 | compatible = "qcom,msm-hsuart", "qcom,msm-uart"; | ||
37 | reg = <0x16440000 0x1000>, | ||
38 | <0x16400000 0x1000>; | ||
39 | interrupts = <0 154 0x0>; | ||
40 | }; | ||
41 | }; | ||
diff --git a/arch/arm/mach-msm/Kconfig b/arch/arm/mach-msm/Kconfig index cd7842794e4b..2e5a27ecbdce 100644 --- a/arch/arm/mach-msm/Kconfig +++ b/arch/arm/mach-msm/Kconfig | |||
@@ -56,6 +56,7 @@ config ARCH_MSM8960 | |||
56 | select MSM_V2_TLMM | 56 | select MSM_V2_TLMM |
57 | select MSM_GPIOMUX | 57 | select MSM_GPIOMUX |
58 | select MSM_SCM if SMP | 58 | select MSM_SCM if SMP |
59 | select USE_OF | ||
59 | 60 | ||
60 | endchoice | 61 | endchoice |
61 | 62 | ||
diff --git a/arch/arm/mach-msm/Makefile b/arch/arm/mach-msm/Makefile index c4f5169a684d..bc2a3cc8ab8d 100644 --- a/arch/arm/mach-msm/Makefile +++ b/arch/arm/mach-msm/Makefile | |||
@@ -27,6 +27,7 @@ obj-$(CONFIG_ARCH_MSM7X30) += board-msm7x30.o devices-msm7x30.o | |||
27 | obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o | 27 | obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o |
28 | obj-$(CONFIG_ARCH_MSM8X60) += board-dt-8660.o | 28 | obj-$(CONFIG_ARCH_MSM8X60) += board-dt-8660.o |
29 | obj-$(CONFIG_ARCH_MSM8960) += board-msm8960.o devices-msm8960.o | 29 | obj-$(CONFIG_ARCH_MSM8960) += board-msm8960.o devices-msm8960.o |
30 | obj-$(CONFIG_ARCH_MSM8960) += board-dt-8960.o | ||
30 | 31 | ||
31 | obj-$(CONFIG_ARCH_MSM7X30) += gpiomux-v1.o gpiomux.o | 32 | obj-$(CONFIG_ARCH_MSM7X30) += gpiomux-v1.o gpiomux.o |
32 | obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o gpiomux-v1.o gpiomux.o | 33 | obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o gpiomux-v1.o gpiomux.o |
diff --git a/arch/arm/mach-msm/Makefile.boot b/arch/arm/mach-msm/Makefile.boot index 8de06781c6df..f7d6ae9c3487 100644 --- a/arch/arm/mach-msm/Makefile.boot +++ b/arch/arm/mach-msm/Makefile.boot | |||
@@ -3,3 +3,4 @@ params_phys-y := 0x10000100 | |||
3 | initrd_phys-y := 0x10800000 | 3 | initrd_phys-y := 0x10800000 |
4 | 4 | ||
5 | dtb-$(CONFIG_ARCH_MSM8X60) += msm8660-surf.dtb | 5 | dtb-$(CONFIG_ARCH_MSM8X60) += msm8660-surf.dtb |
6 | dtb-$(CONFIG_ARCH_MSM8960) += msm8960-cdp.dtb | ||
diff --git a/arch/arm/mach-msm/board-dt-8960.c b/arch/arm/mach-msm/board-dt-8960.c new file mode 100644 index 000000000000..8df99b8f3c92 --- /dev/null +++ b/arch/arm/mach-msm/board-dt-8960.c | |||
@@ -0,0 +1,49 @@ | |||
1 | /* Copyright (c) 2012, The Linux Foundation. All rights reserved. | ||
2 | * | ||
3 | * This program is free software; you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License version 2 and | ||
5 | * only version 2 as published by the Free Software Foundation. | ||
6 | * | ||
7 | * This program is distributed in the hope that it will be useful, | ||
8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | * GNU General Public License for more details. | ||
11 | */ | ||
12 | |||
13 | #include <linux/init.h> | ||
14 | #include <linux/of_irq.h> | ||
15 | #include <linux/of_platform.h> | ||
16 | |||
17 | #include <asm/hardware/gic.h> | ||
18 | #include <asm/mach/arch.h> | ||
19 | |||
20 | #include "common.h" | ||
21 | |||
22 | static const struct of_device_id msm_dt_gic_match[] __initconst = { | ||
23 | { .compatible = "qcom,msm-qgic2", .data = gic_of_init }, | ||
24 | { } | ||
25 | }; | ||
26 | |||
27 | static void __init msm_dt_init_irq(void) | ||
28 | { | ||
29 | of_irq_init(msm_dt_gic_match); | ||
30 | } | ||
31 | |||
32 | static void __init msm_dt_init(void) | ||
33 | { | ||
34 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | ||
35 | } | ||
36 | |||
37 | static const char * const msm8960_dt_match[] __initconst = { | ||
38 | "qcom,msm8960-cdp", | ||
39 | NULL | ||
40 | }; | ||
41 | |||
42 | DT_MACHINE_START(MSM8960_DT, "Qualcomm MSM (Flattened Device Tree)") | ||
43 | .map_io = msm_map_msm8960_io, | ||
44 | .init_irq = msm_dt_init_irq, | ||
45 | .timer = &msm_dt_timer, | ||
46 | .init_machine = msm_dt_init, | ||
47 | .dt_compat = msm8960_dt_match, | ||
48 | .handle_irq = gic_handle_irq, | ||
49 | MACHINE_END | ||