]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/Makefile
ARM: UniPhier: move SoC sources to mach-uniphier
[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 machine-$(CONFIG_ARCH_KEYSTONE)         += keystone
11 # TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
12 machine-$(CONFIG_KIRKWOOD)              += kirkwood
13 # TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
14 machine-$(CONFIG_ARCH_NOMADIK)          += nomadik
15 # TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X
16 machine-$(CONFIG_ORION5X)               += orion5x
17 machine-$(CONFIG_TEGRA)                 += tegra
18 machine-$(CONFIG_ARCH_UNIPHIER)         += uniphier
19 machine-$(CONFIG_ARCH_VERSATILE)        += versatile
20
21 machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
22
23 PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
24
25 libs-y += $(machdirs)
26
27 head-y := arch/arm/cpu/$(CPU)/start.o
28
29 ifeq ($(CONFIG_SPL_BUILD),y)
30 ifneq ($(CONFIG_SPL_START_S_PATH),)
31 head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
32 endif
33 endif
34
35 libs-y += arch/arm/cpu/$(CPU)/
36 libs-y += arch/arm/cpu/
37 libs-y += arch/arm/lib/
38
39 ifeq ($(CONFIG_SPL_BUILD),y)
40 ifneq (,$(CONFIG_SOC_MX23)$(CONFIG_SOC_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
41 libs-y += arch/arm/imx-common/
42 endif
43 else
44 ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
45 libs-y += arch/arm/imx-common/
46 endif
47 endif
48
49 ifneq (,$(filter $(SOC), armada-xp kirkwood))
50 libs-y += arch/arm/mvebu-common/
51 endif
52
53 # deprecated
54 -include $(machdirs)/config.mk