]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/Makefile
ARM: rmobile: Move SoC headers to mach-rmobile/include/mach
[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
23# Evaluate arch cc-option calls now
24arch-y := $(arch-y)
25
26# This selects how we optimise for the processor.
27tune-$(CONFIG_CPU_ARM720T) =-mtune=arm7tdmi
28tune-$(CONFIG_CPU_ARM920T) =
29tune-$(CONFIG_CPU_ARM926EJS) =
30tune-$(CONFIG_CPU_ARM946ES) =
31tune-$(CONFIG_CPU_SA1100) =-mtune=strongarm1100
32tune-$(CONFIG_CPU_PXA) =-mcpu=xscale
33tune-$(CONFIG_CPU_ARM1136) =
34tune-$(CONFIG_CPU_ARM1176) =
35tune-$(CONFIG_CPU_V7) =
36tune-$(CONFIG_ARM64) =
37
38# Evaluate tune cc-option calls now
39tune-y := $(tune-y)
40
41PLATFORM_CPPFLAGS += $(arch-y) $(tune-y)
42
01f14456
MY
43# Machine directory name. This list is sorted alphanumerically
44# by CONFIG_* macro name.
62011840 45machine-$(CONFIG_ARCH_AT91) += at91
ddf6bd48 46machine-$(CONFIG_ARCH_BCM283X) += bcm283x
601fbec7 47machine-$(CONFIG_ARCH_DAVINCI) += davinci
77b55e8c 48machine-$(CONFIG_ARCH_EXYNOS) += exynos
72a8ff4b 49machine-$(CONFIG_ARCH_HIGHBANK) += highbank
39a72345 50machine-$(CONFIG_ARCH_KEYSTONE) += keystone
56f86e39
MY
51# TODO: rename CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
52machine-$(CONFIG_KIRKWOOD) += kirkwood
bfcef28a 53machine-$(CONFIG_ARCH_MESON) += meson
81e33f4b 54machine-$(CONFIG_ARCH_MVEBU) += mvebu
09f455dc 55# TODO: rename CONFIG_TEGRA -> CONFIG_ARCH_TEGRA
3e93b4e6
MY
56# TODO: rename CONFIG_ORION5X -> CONFIG_ARCH_ORION5X
57machine-$(CONFIG_ORION5X) += orion5x
225f5eec 58machine-$(CONFIG_ARCH_S5PC1XX) += s5pc1xx
e6e505b9 59machine-$(CONFIG_ARCH_SUNXI) += sunxi
08592136 60machine-$(CONFIG_ARCH_SNAPDRAGON) += snapdragon
05a21721 61machine-$(CONFIG_ARCH_SOCFPGA) += socfpga
badbb63c 62machine-$(CONFIG_RMOBILE) += rmobile
2444dae5 63machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
0a61ee88 64machine-$(CONFIG_STM32) += stm32
09f455dc 65machine-$(CONFIG_TEGRA) += tegra
4c425570 66machine-$(CONFIG_ARCH_UNIPHIER) += uniphier
5ca269a4 67machine-$(CONFIG_ARCH_ZYNQ) += zynq
01f14456
MY
68
69machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
70
30ebf88f
MY
71PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
72
01f14456
MY
73libs-y += $(machdirs)
74
e19db555
DS
75head-y := arch/arm/cpu/$(CPU)/start.o
76
77ifeq ($(CONFIG_SPL_BUILD),y)
78ifneq ($(CONFIG_SPL_START_S_PATH),)
79head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
80endif
81endif
82
83libs-y += arch/arm/cpu/$(CPU)/
84libs-y += arch/arm/cpu/
85libs-y += arch/arm/lib/
86
87ifeq ($(CONFIG_SPL_BUILD),y)
cd562c8d 88ifneq (,$(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx31 mx35))
e19db555
DS
89libs-y += arch/arm/imx-common/
90endif
91else
cd562c8d 92ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx31 mx35 mxs vf610))
e19db555
DS
93libs-y += arch/arm/imx-common/
94endif
95endif
96
d0787656
SR
97ifneq (,$(filter $(SOC), kirkwood))
98libs-y += arch/arm/mach-mvebu/
e19db555 99endif
01f14456
MY
100
101# deprecated
102-include $(machdirs)/config.mk