]> git.sur5r.net Git - u-boot/blob - arch/arm/Makefile
arm: mvebu: Move mvebu-common into mach-mvebu
[u-boot] / arch / arm / Makefile
1 #
2 # SPDX-License-Identifier:      GPL-2.0+
3 #
4
5 ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TEGRA),yy)
6 CONFIG_CPU_V7=
7 CONFIG_CPU_ARM720T=y
8 endif
9
10 # This selects which instruction set is used.
11 arch-$(CONFIG_CPU_ARM720T)      =-march=armv4
12 arch-$(CONFIG_CPU_ARM920T)      =-march=armv4
13 arch-$(CONFIG_CPU_ARM926EJS)    =-march=armv5te
14 arch-$(CONFIG_CPU_ARM946ES)     =-march=armv4
15 arch-$(CONFIG_CPU_SA1100)       =-march=armv4
16 arch-$(CONFIG_CPU_PXA)          =
17 arch-$(CONFIG_CPU_ARM1136)      =-march=armv5
18 arch-$(CONFIG_CPU_ARM1176)      =-march=armv5t
19 arch-$(CONFIG_CPU_V7)           =$(call cc-option, -march=armv7-a, -march=armv5)
20 arch-$(CONFIG_ARM64)            =-march=armv8-a
21
22 # Evaluate arch cc-option calls now
23 arch-y := $(arch-y)
24
25 # This selects how we optimise for the processor.
26 tune-$(CONFIG_CPU_ARM720T)      =-mtune=arm7tdmi
27 tune-$(CONFIG_CPU_ARM920T)      =
28 tune-$(CONFIG_CPU_ARM926EJS)    =
29 tune-$(CONFIG_CPU_ARM946ES)     =
30 tune-$(CONFIG_CPU_SA1100)       =-mtune=strongarm1100
31 tune-$(CONFIG_CPU_PXA)          =-mcpu=xscale
32 tune-$(CONFIG_CPU_ARM1136)      =
33 tune-$(CONFIG_CPU_ARM1176)      =
34 tune-$(CONFIG_CPU_V7)           =
35 tune-$(CONFIG_ARM64)            =
36
37 # Evaluate tune cc-option calls now
38 tune-y := $(tune-y)
39
40 PLATFORM_CPPFLAGS += $(arch-y) $(tune-y)
41
42 # Machine directory name.  This list is sorted alphanumerically
43 # by CONFIG_* macro name.
44 machine-$(CONFIG_ARCH_AT91)             += at91
45 machine-$(CONFIG_ARCH_BCM283X)          += bcm283x
46 machine-$(CONFIG_ARCH_DAVINCI)          += davinci
47 machine-$(CONFIG_ARCH_HIGHBANK)         += highbank
48 machine-$(CONFIG_ARCH_KEYSTONE)         += keystone
49 # TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
50 machine-$(CONFIG_KIRKWOOD)              += kirkwood
51 machine-$(CONFIG_ARMADA_XP)             += mvebu
52 # TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
53 machine-$(CONFIG_ARCH_NOMADIK)          += nomadik
54 # TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X
55 machine-$(CONFIG_ORION5X)               += orion5x
56 machine-$(CONFIG_TEGRA)                 += tegra
57 machine-$(CONFIG_ARCH_UNIPHIER)         += uniphier
58 machine-$(CONFIG_ARCH_VERSATILE)        += versatile
59 machine-$(CONFIG_ARCH_ZYNQ)             += zynq
60
61 machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
62
63 PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
64
65 libs-y += $(machdirs)
66
67 head-y := arch/arm/cpu/$(CPU)/start.o
68
69 ifeq ($(CONFIG_SPL_BUILD),y)
70 ifneq ($(CONFIG_SPL_START_S_PATH),)
71 head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
72 endif
73 endif
74
75 libs-y += arch/arm/cpu/$(CPU)/
76 libs-y += arch/arm/cpu/
77 libs-y += arch/arm/lib/
78
79 ifeq ($(CONFIG_SPL_BUILD),y)
80 ifneq (,$(CONFIG_MX23)$(CONFIG_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
81 libs-y += arch/arm/imx-common/
82 endif
83 else
84 ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
85 libs-y += arch/arm/imx-common/
86 endif
87 endif
88
89 ifneq (,$(filter $(SOC), kirkwood))
90 libs-y += arch/arm/mach-mvebu/
91 endif
92
93 # deprecated
94 -include $(machdirs)/config.mk