]> Git Repo - J-u-boot.git/blame - arch/arm/Makefile
rockchip: rk3399: Add Nanopi M4 2GB board support
[J-u-boot.git] / arch / arm / Makefile
CommitLineData
83d290c5 1# SPDX-License-Identifier: GPL-2.0+
e19db555 2
bf71a29c 3ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TEGRA),yy)
acf15001 4CONFIG_CPU_V7A=
bf71a29c
MY
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) =
0c5c3f29
HS
15arch-$(CONFIG_CPU_ARM1136) =-march=armv5t
16arch-$(CONFIG_CPU_ARM1176) =-march=armv5t
acf15001 17arch-$(CONFIG_CPU_V7A) =$(call cc-option, -march=armv7-a, \
de39dc71 18 $(call cc-option, -march=armv7))
ea37f0b3 19arch-$(CONFIG_CPU_V7M) =-march=armv7-m
4bbd6b1d 20arch-$(CONFIG_CPU_V7R) =-march=armv7-r
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) =
de39dc71 43tune-$(CONFIG_CPU_V7A) =-mtune=generic-armv7-a
4bbd6b1d 44tune-$(CONFIG_CPU_V7R) =
79d75d75
MY
45tune-$(CONFIG_ARM64) =
46
47# Evaluate tune cc-option calls now
48tune-y := $(tune-y)
49
50PLATFORM_CPPFLAGS += $(arch-y) $(tune-y)
51
01f14456
MY
52# Machine directory name. This list is sorted alphanumerically
53# by CONFIG_* macro name.
4697abea 54machine-$(CONFIG_ARCH_ASPEED) += aspeed
62011840 55machine-$(CONFIG_ARCH_AT91) += at91
ddf6bd48 56machine-$(CONFIG_ARCH_BCM283X) += bcm283x
894c3ad2 57machine-$(CONFIG_ARCH_BCMSTB) += bcmstb
601fbec7 58machine-$(CONFIG_ARCH_DAVINCI) += davinci
77b55e8c 59machine-$(CONFIG_ARCH_EXYNOS) += exynos
72a8ff4b 60machine-$(CONFIG_ARCH_HIGHBANK) += highbank
586bde93 61machine-$(CONFIG_ARCH_K3) += k3
39a72345 62machine-$(CONFIG_ARCH_KEYSTONE) += keystone
56f86e39
MY
63# TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
64machine-$(CONFIG_KIRKWOOD) += kirkwood
cbd2fba1 65machine-$(CONFIG_ARCH_MEDIATEK) += mediatek
bfcef28a 66machine-$(CONFIG_ARCH_MESON) += meson
81e33f4b 67machine-$(CONFIG_ARCH_MVEBU) += mvebu
09f455dc 68# TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
3e93b4e6
MY
69# TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X
70machine-$(CONFIG_ORION5X) += orion5x
a93fbf4a 71machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2
97775d26 72machine-$(CONFIG_ARCH_OWL) += owl
225f5eec 73machine-$(CONFIG_ARCH_S5PC1XX) += s5pc1xx
e6e505b9 74machine-$(CONFIG_ARCH_SUNXI) += sunxi
08592136 75machine-$(CONFIG_ARCH_SNAPDRAGON) += snapdragon
05a21721 76machine-$(CONFIG_ARCH_SOCFPGA) += socfpga
1cc95f6e 77machine-$(CONFIG_ARCH_RMOBILE) += rmobile
2444dae5 78machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
0a61ee88 79machine-$(CONFIG_STM32) += stm32
2514c2d0 80machine-$(CONFIG_ARCH_STM32MP) += stm32mp
09f455dc 81machine-$(CONFIG_TEGRA) += tegra
689088f9 82machine-$(CONFIG_ARCH_U8500) += u8500
4c425570 83machine-$(CONFIG_ARCH_UNIPHIER) += uniphier
5ca269a4 84machine-$(CONFIG_ARCH_ZYNQ) += zynq
274ccb5b 85machine-$(CONFIG_ARCH_ZYNQMP) += zynqmp
ec48b6c9 86machine-$(CONFIG_ARCH_VERSAL) += versal
1d6c54ec 87machine-$(CONFIG_ARCH_ZYNQMP_R5) += zynqmp-r5
01f14456
MY
88
89machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
90
30ebf88f
MY
91PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
92
01f14456
MY
93libs-y += $(machdirs)
94
e19db555
DS
95head-y := arch/arm/cpu/$(CPU)/start.o
96
97ifeq ($(CONFIG_SPL_BUILD),y)
98ifneq ($(CONFIG_SPL_START_S_PATH),)
99head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
100endif
101endif
102
103libs-y += arch/arm/cpu/$(CPU)/
104libs-y += arch/arm/cpu/
105libs-y += arch/arm/lib/
106
107ifeq ($(CONFIG_SPL_BUILD),y)
77eb9a90 108ifneq (,$(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_MX35)$(filter $(SOC), mx25 mx5 mx6 mx7 mx35 imx8m imx8 imxrt))
552a848e 109libs-y += arch/arm/mach-imx/
e19db555
DS
110endif
111else
77eb9a90 112ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx7ulp mx31 mx35 mxs imx8m imx8 imxrt vf610))
552a848e 113libs-y += arch/arm/mach-imx/
e19db555
DS
114endif
115endif
116
d0787656
SR
117ifneq (,$(filter $(SOC), kirkwood))
118libs-y += arch/arm/mach-mvebu/
e19db555 119endif
01f14456
MY
120
121# deprecated
122-include $(machdirs)/config.mk
This page took 0.320824 seconds and 4 git commands to generate.