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