diff options
author | Rohit Vaswani <rvaswani@codeaurora.org> | 2014-01-02 13:17:31 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-01-02 14:24:44 -0500 |
commit | 9857a7531ffcf35442f9ef707e4e0d94a7a7fb18 (patch) | |
tree | d31bf65723c019b99d7ffe474795388032c86ff4 /arch/arm/mach-msm | |
parent | 47c5a5d6fd5839946c948563573cd9de077a91bb (diff) |
ARM: msm: Add support for APQ8074 Dragonboard
This patch adds basic board support for APQ8074 Dragonboard
which belongs to the Snapdragon 800 family.
For now, just support a basic machine with device tree.
Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
Acked-by: Kumar Gala <galak@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
[olof: Split off SoC and board support in separate patches]
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-msm')
-rw-r--r-- | arch/arm/mach-msm/board-dt.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-msm/board-dt.c b/arch/arm/mach-msm/board-dt.c index 16e6183ac9f1..1f11d93e700e 100644 --- a/arch/arm/mach-msm/board-dt.c +++ b/arch/arm/mach-msm/board-dt.c | |||
@@ -26,7 +26,16 @@ static const char * const msm_dt_match[] __initconst = { | |||
26 | NULL | 26 | NULL |
27 | }; | 27 | }; |
28 | 28 | ||
29 | static const char * const apq8074_dt_match[] __initconst = { | ||
30 | "qcom,apq8074-dragonboard", | ||
31 | NULL | ||
32 | }; | ||
33 | |||
29 | DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)") | 34 | DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)") |
30 | .smp = smp_ops(msm_smp_ops), | 35 | .smp = smp_ops(msm_smp_ops), |
31 | .dt_compat = msm_dt_match, | 36 | .dt_compat = msm_dt_match, |
32 | MACHINE_END | 37 | MACHINE_END |
38 | |||
39 | DT_MACHINE_START(APQ_DT, "Qualcomm MSM (Flattened Device Tree)") | ||
40 | .dt_compat = apq8074_dt_match, | ||
41 | MACHINE_END | ||