diff options
author | Thirupathaiah Annapureddy <thiruan@linux.microsoft.com> | 2020-09-01 13:42:45 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-09 17:05:11 -0400 |
commit | 97cd36a38cd9b2f9aceda815aa4ed92d1a3b0c2a (patch) | |
tree | 51f5a8d3bfcd37b289fb4d2807bd1d54a25ad15b | |
parent | f57a8b68dc12f166cbef7cdb1c26229fc96b7b6c (diff) | |
download | u-boot-WIP/2020-09-09-assorted-soc-updates.tar.gz |
arm: dts: fix ast2500-evb inclusion for the correct soc familyWIP/2020-09-09-assorted-soc-updates
Include ast2500-evb.dtb for CONFIG_ASPEED_AST2500 instead of
for all aspeed targets.
ast2400 is based on ARM926EJ-S processor (ARMv5-architecture).
ast2500 is based on ARM1176JZS processor (ARMv6-architecture).
ast2600 is based on Cortex A7 processor (ARMv7-A architecture).
Each of the above SOC is using a different ARM CPU(s) with different ARM
architecture revision. It is not possible to support all 3 of these
families in a single binary. So there is no need to build ast2500-evb.dtb
for other SOC families.
Signed-off-by: Thirupathaiah Annapureddy <thiruan@linux.microsoft.com>
-rw-r--r-- | arch/arm/dts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile index f8f529435b..72b6fe1a3e 100644 --- a/arch/arm/dts/Makefile +++ b/arch/arm/dts/Makefile @@ -938,7 +938,7 @@ dtb-$(CONFIG_ARCH_BCM6858) += \ dtb-$(CONFIG_TARGET_BCMNS3) += ns3-board.dtb -dtb-$(CONFIG_ARCH_ASPEED) += ast2500-evb.dtb +dtb-$(CONFIG_ASPEED_AST2500) += ast2500-evb.dtb dtb-$(CONFIG_ARCH_STI) += stih410-b2260.dtb |