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