]> Git Repo - J-u-boot.git/blame_incremental - arch/arm/Makefile
ARM: mediatek: Add MT8183 support
[J-u-boot.git] / arch / arm / Makefile
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0+
2
3ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_ARCH_TEGRA),yy)
4CONFIG_CPU_V7A=
5CONFIG_CPU_ARM720T=y
6endif
7
8# This selects which instruction set is used.
9arch-$(CONFIG_CPU_ARM720T) =-march=armv4
10arch-$(CONFIG_CPU_ARM920T) =-march=armv4t
11arch-$(CONFIG_CPU_ARM926EJS) =-march=armv5te
12arch-$(CONFIG_CPU_ARM946ES) =-march=armv5te
13arch-$(CONFIG_CPU_SA1100) =-march=armv4
14arch-$(CONFIG_CPU_PXA) =
15arch-$(CONFIG_CPU_ARM1136) =-march=armv5t
16arch-$(CONFIG_CPU_ARM1176) =-march=armv5t
17arch-$(CONFIG_CPU_V7A) =$(call cc-option, -march=armv7-a, \
18 $(call cc-option, -march=armv7))
19arch-$(CONFIG_CPU_V7M) =-march=armv7-m
20arch-$(CONFIG_CPU_V7R) =-march=armv7-r
21arch-$(CONFIG_ARM64) =-march=armv8-a
22
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_ARCH_TEGRA),yy)
26arch-y += -D__LINUX_ARM_ARCH__=4
27else
28arch-y += -D__LINUX_ARM_ARCH__=$(CONFIG_SYS_ARM_ARCH)
29endif
30
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_V7A) =-mtune=generic-armv7-a
44tune-$(CONFIG_CPU_V7R) =
45tune-$(CONFIG_ARM64) =
46
47# Evaluate tune cc-option calls now
48tune-y := $(tune-y)
49
50PLATFORM_CPPFLAGS += $(arch-y) $(tune-y)
51
52# Machine directory name. This list is sorted alphanumerically
53# by CONFIG_* macro name.
54machine-$(CONFIG_ARCH_ASPEED) += aspeed
55machine-$(CONFIG_ARCH_AT91) += at91
56machine-$(CONFIG_ARCH_BCM283X) += bcm283x
57machine-$(CONFIG_ARCH_BCMSTB) += bcmstb
58machine-$(CONFIG_ARCH_DAVINCI) += davinci
59machine-$(CONFIG_ARCH_EXYNOS) += exynos
60machine-$(CONFIG_ARCH_HIGHBANK) += highbank
61machine-$(CONFIG_ARCH_IPQ40XX) += ipq40xx
62machine-$(CONFIG_ARCH_K3) += k3
63machine-$(CONFIG_ARCH_KEYSTONE) += keystone
64machine-$(CONFIG_ARCH_KIRKWOOD) += kirkwood
65machine-$(CONFIG_ARCH_LPC32XX) += lpc32xx
66machine-$(CONFIG_ARCH_MEDIATEK) += mediatek
67machine-$(CONFIG_ARCH_MESON) += meson
68machine-$(CONFIG_ARCH_MVEBU) += mvebu
69machine-$(CONFIG_ARCH_NEXELL) += nexell
70machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2
71machine-$(CONFIG_ARCH_ORION5X) += orion5x
72machine-$(CONFIG_ARCH_OWL) += owl
73machine-$(CONFIG_ARCH_RMOBILE) += rmobile
74machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
75machine-$(CONFIG_ARCH_S5PC1XX) += s5pc1xx
76machine-$(CONFIG_ARCH_SNAPDRAGON) += snapdragon
77machine-$(CONFIG_ARCH_SOCFPGA) += socfpga
78machine-$(CONFIG_ARCH_STM32) += stm32
79machine-$(CONFIG_ARCH_STM32MP) += stm32mp
80machine-$(CONFIG_ARCH_SUNXI) += sunxi
81machine-$(CONFIG_ARCH_TEGRA) += tegra
82machine-$(CONFIG_ARCH_U8500) += u8500
83machine-$(CONFIG_ARCH_OCTEONTX) += octeontx
84machine-$(CONFIG_ARCH_OCTEONTX2) += octeontx2
85machine-$(CONFIG_ARCH_UNIPHIER) += uniphier
86machine-$(CONFIG_ARCH_VERSAL) += versal
87machine-$(CONFIG_ARCH_ZYNQ) += zynq
88machine-$(CONFIG_ARCH_ZYNQMP) += zynqmp
89machine-$(CONFIG_ARCH_ZYNQMP_R5) += zynqmp-r5
90
91machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
92
93PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
94
95libs-y += $(machdirs)
96
97head-y := arch/arm/cpu/$(CPU)/start.o
98
99ifeq ($(CONFIG_SPL_BUILD),y)
100ifneq ($(CONFIG_SPL_START_S_PATH),)
101head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
102endif
103endif
104
105libs-y += arch/arm/cpu/$(CPU)/
106libs-y += arch/arm/cpu/
107libs-y += arch/arm/lib/
108
109ifeq ($(CONFIG_SPL_BUILD),y)
110ifneq (,$(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_MX35)$(filter $(SOC), mx25 mx5 mx6 mx7 mx35 imx8m imx8 imxrt))
111libs-y += arch/arm/mach-imx/
112endif
113else
114ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx7ulp mx31 mx35 mxs imx8m imx8 imxrt vf610))
115libs-y += arch/arm/mach-imx/
116endif
117endif
118
119ifneq (,$(filter $(SOC), kirkwood))
120libs-y += arch/arm/mach-mvebu/
121endif
122
123# deprecated
124-include $(machdirs)/config.mk
This page took 0.024957 seconds and 4 git commands to generate.