]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/Makefile
ARM: omap2+: rename config to ARCH_OMAP2PLUS and consolidate Kconfig
[people/ms/u-boot.git] / arch / arm / Makefile
CommitLineData
e19db555
DS
1#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
bf71a29c
MY
5ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TEGRA),yy)
6CONFIG_CPU_V7=
7CONFIG_CPU_ARM720T=y
8endif
9
79d75d75
MY
10# This selects which instruction set is used.
11arch-$(CONFIG_CPU_ARM720T) =-march=armv4
02499e4e 12arch-$(CONFIG_CPU_ARM920T) =-march=armv4t
79d75d75 13arch-$(CONFIG_CPU_ARM926EJS) =-march=armv5te
626f6e4f 14arch-$(CONFIG_CPU_ARM946ES) =-march=armv5te
79d75d75
MY
15arch-$(CONFIG_CPU_SA1100) =-march=armv4
16arch-$(CONFIG_CPU_PXA) =
17arch-$(CONFIG_CPU_ARM1136) =-march=armv5
18arch-$(CONFIG_CPU_ARM1176) =-march=armv5t
b745e828
TR
19arch-$(CONFIG_CPU_V7) =$(call cc-option, -march=armv7-a, \
20 $(call cc-option, -march=armv7, -march=armv5))
79d75d75
MY
21arch-$(CONFIG_ARM64) =-march=armv8-a
22
a78cd861
TR
23# On Tegra systems we must build SPL for the armv4 core on the device
24# but otherwise we can use the value in CONFIG_SYS_ARM_ARCH
25ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TEGRA),yy)
26arch-y += -D__LINUX_ARM_ARCH__=4
27else
28arch-y += -D__LINUX_ARM_ARCH__=$(CONFIG_SYS_ARM_ARCH)
29endif
30
79d75d75
MY
31# Evaluate arch cc-option calls now
32arch-y := $(arch-y)
33
34# This selects how we optimise for the processor.
35tune-$(CONFIG_CPU_ARM720T) =-mtune=arm7tdmi
36tune-$(CONFIG_CPU_ARM920T) =
37tune-$(CONFIG_CPU_ARM926EJS) =
38tune-$(CONFIG_CPU_ARM946ES) =
39tune-$(CONFIG_CPU_SA1100) =-mtune=strongarm1100
40tune-$(CONFIG_CPU_PXA) =-mcpu=xscale
41tune-$(CONFIG_CPU_ARM1136) =
42tune-$(CONFIG_CPU_ARM1176) =
43tune-$(CONFIG_CPU_V7) =
44tune-$(CONFIG_ARM64) =
45
46# Evaluate tune cc-option calls now
47tune-y := $(tune-y)
48
49PLATFORM_CPPFLAGS += $(arch-y) $(tune-y)
50
01f14456
MY
51# Machine directory name. This list is sorted alphanumerically
52# by CONFIG_* macro name.
4697abea 53machine-$(CONFIG_ARCH_ASPEED) += aspeed
62011840 54machine-$(CONFIG_ARCH_AT91) += at91
ddf6bd48 55machine-$(CONFIG_ARCH_BCM283X) += bcm283x
601fbec7 56machine-$(CONFIG_ARCH_DAVINCI) += davinci
77b55e8c 57machine-$(CONFIG_ARCH_EXYNOS) += exynos
72a8ff4b 58machine-$(CONFIG_ARCH_HIGHBANK) += highbank
39a72345 59machine-$(CONFIG_ARCH_KEYSTONE) += keystone
56f86e39
MY
60# TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
61machine-$(CONFIG_KIRKWOOD) += kirkwood
bfcef28a 62machine-$(CONFIG_ARCH_MESON) += meson
81e33f4b 63machine-$(CONFIG_ARCH_MVEBU) += mvebu
09f455dc 64# TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
3e93b4e6
MY
65# TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X
66machine-$(CONFIG_ORION5X) += orion5x
a93fbf4a 67machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2
225f5eec 68machine-$(CONFIG_ARCH_S5PC1XX) += s5pc1xx
e6e505b9 69machine-$(CONFIG_ARCH_SUNXI) += sunxi
08592136 70machine-$(CONFIG_ARCH_SNAPDRAGON) += snapdragon
05a21721 71machine-$(CONFIG_ARCH_SOCFPGA) += socfpga
1cc95f6e 72machine-$(CONFIG_ARCH_RMOBILE) += rmobile
2444dae5 73machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
0a61ee88 74machine-$(CONFIG_STM32) += stm32
09f455dc 75machine-$(CONFIG_TEGRA) += tegra
4c425570 76machine-$(CONFIG_ARCH_UNIPHIER) += uniphier
5ca269a4 77machine-$(CONFIG_ARCH_ZYNQ) += zynq
01f14456
MY
78
79machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
80
30ebf88f
MY
81PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
82
01f14456
MY
83libs-y += $(machdirs)
84
e19db555
DS
85head-y := arch/arm/cpu/$(CPU)/start.o
86
87ifeq ($(CONFIG_SPL_BUILD),y)
88ifneq ($(CONFIG_SPL_START_S_PATH),)
89head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
90endif
91endif
92
93libs-y += arch/arm/cpu/$(CPU)/
94libs-y += arch/arm/cpu/
95libs-y += arch/arm/lib/
96
97ifeq ($(CONFIG_SPL_BUILD),y)
99f49fdd 98ifneq (,$(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_MX35)$(filter $(SOC), mx25 mx5 mx6 mx7 mx35))
e19db555
DS
99libs-y += arch/arm/imx-common/
100endif
101else
1b409828 102ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx7ulp mx31 mx35 mxs vf610))
e19db555
DS
103libs-y += arch/arm/imx-common/
104endif
105endif
106
d0787656
SR
107ifneq (,$(filter $(SOC), kirkwood))
108libs-y += arch/arm/mach-mvebu/
e19db555 109endif
01f14456
MY
110
111# deprecated
112-include $(machdirs)/config.mk