diff options
author | Andrew Davis <afd@ti.com> | 2022-07-15 10:25:27 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-25 13:02:04 -0400 |
commit | 80b93bb71cfff8b0ba9bbb5704231216f7518998 (patch) | |
tree | 06fa61bbf56caa73ff14ef4458925d0ae534114a /board | |
parent | 46da163b723e5623b50df946aa5f9627567397bf (diff) | |
download | u-boot-80b93bb71cfff8b0ba9bbb5704231216f7518998.zip u-boot-80b93bb71cfff8b0ba9bbb5704231216f7518998.tar.gz u-boot-80b93bb71cfff8b0ba9bbb5704231216f7518998.tar.bz2 |
arm: mach-k3: Rename SOC_K3_AM6 to SOC_K3_AM654
The first AM6x device was the AM654x, but being the first we named it
just AM6, since more devices have come out with this same prefix we
should switch it to the normal convention of using the full name of the
first compatibility device the series. This makes what device we are
talking about more clear and matches all the K3 devices added since.
Signed-off-by: Andrew Davis <afd@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/siemens/iot2050/Kconfig | 2 | ||||
-rw-r--r-- | board/ti/am65x/Kconfig | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/siemens/iot2050/Kconfig b/board/siemens/iot2050/Kconfig index 8f634c1..063142a 100644 --- a/board/siemens/iot2050/Kconfig +++ b/board/siemens/iot2050/Kconfig @@ -9,7 +9,7 @@ config TARGET_IOT2050_A53 bool "IOT2050 running on A53" select ARM64 - select SOC_K3_AM6 + select SOC_K3_AM654 select BOARD_LATE_INIT select SYS_DISABLE_DCACHE_OPS select BINMAN diff --git a/board/ti/am65x/Kconfig b/board/ti/am65x/Kconfig index 16a7476..4765b13 100644 --- a/board/ti/am65x/Kconfig +++ b/board/ti/am65x/Kconfig @@ -10,7 +10,7 @@ choice config TARGET_AM654_A53_EVM bool "TI K3 based AM654 EVM running on A53" select ARM64 - select SOC_K3_AM6 + select SOC_K3_AM654 select SYS_DISABLE_DCACHE_OPS select BOARD_LATE_INIT imply TI_I2C_BOARD_DETECT @@ -19,7 +19,7 @@ config TARGET_AM654_R5_EVM bool "TI K3 based AM654 EVM running on R5" select CPU_V7R select SYS_THUMB_BUILD - select SOC_K3_AM6 + select SOC_K3_AM654 select K3_LOAD_SYSFW select K3_AM654_DDRSS imply SYS_K3_SPL_ATF |