diff options
author | Wang Long <long.wanglong@huawei.com> | 2014-12-24 03:09:57 +0000 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2015-01-21 14:31:06 -0800 |
commit | 82fd132c0d658b0d6ccd928a914b207d1862572f (patch) | |
tree | 412413897a39df6418acf139b3b914061418c885 /arch/arm/mach-hisi/hisilicon.c | |
parent | 27dafaa8dc64ddc5e969d5d865286750c6e493e2 (diff) |
ARM: hisi: enable HiP01 SoC
Enable Hisilicon HiP01 SoC. This HiP01 SoC series support both
one core or dual cores and quad cores. The core is Cortex A9.
Signed-off-by: Wang Long <long.wanglong@huawei.com>
Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-hisi/hisilicon.c')
-rw-r--r-- | arch/arm/mach-hisi/hisilicon.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-hisi/hisilicon.c b/arch/arm/mach-hisi/hisilicon.c index 7744c351bbfd..76b907078b58 100644 --- a/arch/arm/mach-hisi/hisilicon.c +++ b/arch/arm/mach-hisi/hisilicon.c @@ -72,3 +72,13 @@ static const char *hip04_compat[] __initconst = { DT_MACHINE_START(HIP04, "Hisilicon HiP04 (Flattened Device Tree)") .dt_compat = hip04_compat, MACHINE_END + +static const char *hip01_compat[] __initconst = { + "hisilicon,hip01", + "hisilicon,hip01-ca9x2", + NULL, +}; + +DT_MACHINE_START(HIP01, "Hisilicon HIP01 (Flattened Device Tree)") + .dt_compat = hip01_compat, +MACHINE_END |