diff options
author | Beniamino Galvani <b.galvani@gmail.com> | 2016-05-08 08:30:16 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-05-27 15:39:47 -0400 |
commit | bfcef28ae4cf04e7c1fd3aea1d60a17bd046f153 (patch) | |
tree | f9724e688585d0b157c6ba532b2723a4dd45e9ec /arch/arm/Makefile | |
parent | 0e1a3e30deb089cba3f1c01a48443cf8a86b5398 (diff) | |
download | u-boot-bfcef28ae4cf04e7c1fd3aea1d60a17bd046f153.tar.gz u-boot-bfcef28ae4cf04e7c1fd3aea1d60a17bd046f153.tar.bz2 u-boot-bfcef28ae4cf04e7c1fd3aea1d60a17bd046f153.zip |
arm: add initial support for Amlogic Meson and ODROID-C2
This adds platform code for the Amlogic Meson GXBaby (S905) SoC and a
board definition for ODROID-C2. This initial submission only supports
UART and Ethernet (through the existing Designware driver). DTS files
are the ones submitted to Linux arm-soc for 4.7 [1].
[1] https://patchwork.ozlabs.org/patch/603583/
Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r-- | arch/arm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index d51634584b..ecd1887fe5 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -50,6 +50,7 @@ machine-$(CONFIG_ARCH_HIGHBANK) += highbank machine-$(CONFIG_ARCH_KEYSTONE) += keystone # TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD machine-$(CONFIG_KIRKWOOD) += kirkwood +machine-$(CONFIG_ARCH_MESON) += meson machine-$(CONFIG_ARCH_MVEBU) += mvebu # TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA # TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X |