]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/Makefile
ARM: orion5x: move SoC sources to mach-orion5x
[karo-tx-uboot.git] / arch / arm / Makefile
1 #
2 # SPDX-License-Identifier:      GPL-2.0+
3 #
4
5 # Machine directory name.  This list is sorted alphanumerically
6 # by CONFIG_* macro name.
7 machine-$(CONFIG_ARCH_AT91)             += at91
8 machine-$(CONFIG_ARCH_DAVINCI)          += davinci
9 machine-$(CONFIG_ARCH_HIGHBANK)         += highbank
10 # TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
11 machine-$(CONFIG_KIRKWOOD)              += kirkwood
12 # TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
13 machine-$(CONFIG_ARCH_NOMADIK)          += nomadik
14 # TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X
15 machine-$(CONFIG_ORION5X)               += orion5x
16 machine-$(CONFIG_TEGRA)                 += tegra
17
18 machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
19
20 libs-y += $(machdirs)
21
22 head-y := arch/arm/cpu/$(CPU)/start.o
23
24 ifeq ($(CONFIG_SPL_BUILD),y)
25 ifneq ($(CONFIG_SPL_START_S_PATH),)
26 head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
27 endif
28 endif
29
30 libs-y += arch/arm/cpu/$(CPU)/
31 libs-y += arch/arm/cpu/
32 libs-y += arch/arm/lib/
33
34 ifeq ($(CONFIG_SPL_BUILD),y)
35 ifneq (,$(CONFIG_SOC_MX23)$(CONFIG_SOC_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
36 libs-y += arch/arm/imx-common/
37 endif
38 else
39 ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
40 libs-y += arch/arm/imx-common/
41 endif
42 endif
43
44 ifneq (,$(filter $(SOC), armada-xp kirkwood))
45 libs-y += arch/arm/mvebu-common/
46 endif
47
48 # deprecated
49 -include $(machdirs)/config.mk