diff options
author | Andrew Davis <afd@ti.com> | 2023-11-13 15:43:56 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-12-22 15:12:28 +0100 |
commit | 00e58c36d20aa011cb0e2f087d9422bf4c6da75d (patch) | |
tree | 5176fe1f9ac813bfbcc5874def0eb837b8f2eec1 /arch/arm/Makefile | |
parent | ARM: mach-moxart: Move MOXA ART support into Kconfig.platforms (diff) | |
download | linux-00e58c36d20aa011cb0e2f087d9422bf4c6da75d.tar.xz linux-00e58c36d20aa011cb0e2f087d9422bf4c6da75d.zip |
ARM: mach-airoha: Rework support and directory structure
Having a platform need a mach-* directory should be seen as a negative,
it means the platform needs special non-standard handling. ARM64 support
does not allow mach-* directories at all. While we may not get to that
given all the non-standard architectures we support, we should still try
to get as close as we can and reduce the number of mach directories.
The mach-airoha/ directory, and files within, provide just one "feature":
having the kernel print the machine name if the DTB does not also contain
a "model" string (which they always do). To reduce the number of mach-*
directories let's do without that feature and remove this directory.
It also seems there was a copy/paste error and the "MEDIATEK_DT"
name was re-used in the DT_MACHINE_START macro. This may have caused
conflicts if this was built in a multi-arch configuration.
NOTE: The default l2c_aux_mask is now ~0 but these devices never have
this type of cache controller so this is safe.
Signed-off-by: Andrew Davis <afd@ti.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r-- | arch/arm/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 826738b7c7a7..eb72b092d7b4 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -167,7 +167,6 @@ textofs-$(CONFIG_ARCH_AXXIA) := 0x00308000 # Machine directory name. This list is sorted alphanumerically # by CONFIG_* macro name. machine-$(CONFIG_ARCH_ACTIONS) += actions -machine-$(CONFIG_ARCH_AIROHA) += airoha machine-$(CONFIG_ARCH_ALPINE) += alpine machine-$(CONFIG_ARCH_ARTPEC) += artpec machine-$(CONFIG_ARCH_ASPEED) += aspeed |