diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-11-24 06:08:27 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-11-28 09:06:38 -0500 |
commit | d9bfc86dc69af78fb42fe075f9f2576880fd22a4 (patch) | |
tree | 21116c62dee2f32ee485be6915894744b130f054 | |
parent | 32e049ad7997ef09af3fc1969325ce2326a5dd11 (diff) |
ARM: add mach-asm9260
it is low cost (?) SoC targeted for market in China and India which
trying to compete with AT91SAM9G25.
Here is some info:
http://www.alphascale.com/index.asp?ics/615.html
One of products:
http://www.aliexpress.com/store/product/2014-hot-sales-FREE-SHIPPING-new-Purple-core-ARM9-development-board-ASM9260T-SDRAM-power-line/433637_1931495721.html
In some cases this SoC looks similar to iMX23/iMX28. But currently it makes no
sense to merge mach code of this devices. Especially because most differences
are already collected mach-mxs folder.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/Kconfig | 2 | ||||
-rw-r--r-- | arch/arm/mach-asm9260/Kconfig | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 2075ebdccf5d..b9bde0c337b1 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -836,6 +836,8 @@ config ARCH_VIRT | |||
836 | # | 836 | # |
837 | source "arch/arm/mach-mvebu/Kconfig" | 837 | source "arch/arm/mach-mvebu/Kconfig" |
838 | 838 | ||
839 | source "arch/arm/mach-asm9260/Kconfig" | ||
840 | |||
839 | source "arch/arm/mach-at91/Kconfig" | 841 | source "arch/arm/mach-at91/Kconfig" |
840 | 842 | ||
841 | source "arch/arm/mach-axxia/Kconfig" | 843 | source "arch/arm/mach-axxia/Kconfig" |
diff --git a/arch/arm/mach-asm9260/Kconfig b/arch/arm/mach-asm9260/Kconfig new file mode 100644 index 000000000000..8423be76080e --- /dev/null +++ b/arch/arm/mach-asm9260/Kconfig | |||
@@ -0,0 +1,6 @@ | |||
1 | config MACH_ASM9260 | ||
2 | bool "Alphascale ASM9260" | ||
3 | depends on ARCH_MULTI_V5 | ||
4 | select CPU_ARM926T | ||
5 | help | ||
6 | Support for Alphascale ASM9260 based platform. | ||