]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/Makefile
ARM: prepare for including <mach/*.h>
[people/ms/u-boot.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_VERSATILE) += versatile
19
20 machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
21
22 PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
23
24 libs-y += $(machdirs)
25
26 head-y := arch/arm/cpu/$(CPU)/start.o
27
28 ifeq ($(CONFIG_SPL_BUILD),y)
29 ifneq ($(CONFIG_SPL_START_S_PATH),)
30 head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
31 endif
32 endif
33
34 libs-y += arch/arm/cpu/$(CPU)/
35 libs-y += arch/arm/cpu/
36 libs-y += arch/arm/lib/
37
38 ifeq ($(CONFIG_SPL_BUILD),y)
39 ifneq (,$(CONFIG_MX23)$(CONFIG_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
40 libs-y += arch/arm/imx-common/
41 endif
42 else
43 ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
44 libs-y += arch/arm/imx-common/
45 endif
46 endif
47
48 ifneq (,$(filter $(SOC), armada-xp kirkwood))
49 libs-y += arch/arm/mvebu-common/
50 endif
51
52 # deprecated
53 -include $(machdirs)/config.mk