]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/Makefile
ARM: tegra: collect SoC sources into mach-tegra
[karo-tx-uboot.git] / 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 # TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
46 machine-$(CONFIG_TEGRA)                 += tegra
47
48 machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
49
50 PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
51
52 libs-y += $(machdirs)
53
54 head-y := arch/arm/cpu/$(CPU)/start.o
55
56 ifeq ($(CONFIG_SPL_BUILD),y)
57 ifneq ($(CONFIG_SPL_START_S_PATH),)
58 head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
59 endif
60 endif
61
62 libs-y += arch/arm/cpu/$(CPU)/
63 libs-y += arch/arm/cpu/
64 libs-y += arch/arm/lib/
65
66 ifeq ($(CONFIG_SPL_BUILD),y)
67 ifneq (,$(CONFIG_SOC_MX23)$(CONFIG_SOC_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
68 libs-y += arch/arm/imx-common/
69 endif
70 else
71 ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
72 libs-y += arch/arm/imx-common/
73 endif
74 endif
75
76 ifneq (,$(filter $(SOC), armada-xp kirkwood))
77 libs-y += arch/arm/mvebu-common/
78 endif
79
80 # deprecated
81 -include $(machdirs)/config.mk