diff options
author | Josh Wu <josh.wu@atmel.com> | 2013-11-06 18:01:11 +0800 |
---|---|---|
committer | Kevin Hilman <khilman@linaro.org> | 2013-12-10 09:56:14 -0800 |
commit | 7f457160dae592b71b4aac03258237b0f2a67a3e (patch) | |
tree | 369ea3967c70c277a2f7d9b6eb19aa503e9c9e6c /arch/arm/mach-at91/setup.c | |
parent | b8969ef5cfa7859dbe6ac74debfd2d884d9fe14c (diff) | |
download | op-kernel-dev-7f457160dae592b71b4aac03258237b0f2a67a3e.zip op-kernel-dev-7f457160dae592b71b4aac03258237b0f2a67a3e.tar.gz |
ARM: at91: sama5d3: add support for sama5d36 chip
The SAMA5D36 chip is the superset product of SAMA5D3x family.
For detail information please refer to:
http://www.atmel.com/Microsite/sama5d3/default.aspx
Signed-off-by: Josh Wu <josh.wu@atmel.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Kevin Hilman <khilman@linaro.org>
Diffstat (limited to 'arch/arm/mach-at91/setup.c')
-rw-r--r-- | arch/arm/mach-at91/setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/setup.c b/arch/arm/mach-at91/setup.c index 094b345..eb6468d 100644 --- a/arch/arm/mach-at91/setup.c +++ b/arch/arm/mach-at91/setup.c @@ -233,6 +233,9 @@ static void __init soc_detect(u32 dbgu_base) case ARCH_EXID_SAMA5D35: at91_soc_initdata.subtype = AT91_SOC_SAMA5D35; break; + case ARCH_EXID_SAMA5D36: + at91_soc_initdata.subtype = AT91_SOC_SAMA5D36; + break; } } } @@ -275,6 +278,7 @@ static const char *soc_subtype_name[] = { [AT91_SOC_SAMA5D33] = "sama5d33", [AT91_SOC_SAMA5D34] = "sama5d34", [AT91_SOC_SAMA5D35] = "sama5d35", + [AT91_SOC_SAMA5D36] = "sama5d36", [AT91_SOC_SUBTYPE_NONE] = "None", [AT91_SOC_SUBTYPE_UNKNOWN] = "Unknown", }; |