diff options
author | Marcin Niestroj <m.niestroj@grinn-global.com> | 2016-12-07 16:46:32 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-12-16 10:31:04 +0100 |
commit | 727feafebbdfe23d86b8517aedcb4501d4c49ba9 (patch) | |
tree | 1361f8f68fd705d3c44f21cbc5ea77e67a1dc11b /arch/arm/Makefile | |
parent | a11e30f8c877ea9aaeef0e9e762b811a08d65bd1 (diff) | |
download | u-boot-727feafebbdfe23d86b8517aedcb4501d4c49ba9.tar.gz |
ARM: imx6ul: Add support for liteSOM
liteSOM is a System On Module (http://grinn-global.com/litesom/). It
can't exists on its own, but will be used as part of other boards.
Hardware specification:
* NXP i.MX6UL processor
* 256M or 512M DDR3 memory
* optional eMMC (uSDHC2)
Here we treat SOM similar to SOC, so we place it inside arch/arm/mach-*
directory and make it possible to reuse initialization code (i.e. DDR,
eMMC init) for all boards that use it.
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
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 236debb452..ef4f69d377 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -58,6 +58,7 @@ machine-$(CONFIG_ARCH_HIGHBANK) += highbank machine-$(CONFIG_ARCH_KEYSTONE) += keystone # TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD machine-$(CONFIG_KIRKWOOD) += kirkwood +machine-$(CONFIG_LITESOM) += litesom machine-$(CONFIG_ARCH_MESON) += meson machine-$(CONFIG_ARCH_MVEBU) += mvebu # TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA |