mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
f2ef204312
The Memory Protection Unit(MPU) allows to partition memory into regions and set individual protection attributes for each region. In absence of MPU a default map[1] will take effect. Add support for configuring MPU on Cortex-R, by reusing the existing support for Cortex-M processor. [1] http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0460d/I1002400.html Tested-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
extra-y := start.o
|
|
|
|
obj-y += cache_v7.o cache_v7_asm.o
|
|
|
|
obj-y += cpu.o cp15.o
|
|
obj-y += syslib.o
|
|
|
|
obj-$(CONFIG_SYS_ARM_MPU) += mpu_v7r.o
|
|
|
|
ifneq ($(CONFIG_SKIP_LOWLEVEL_INIT),y)
|
|
obj-y += lowlevel_init.o
|
|
endif
|
|
|
|
obj-$(CONFIG_ARM_SMCCC) += smccc-call.o
|
|
obj-$(CONFIG_ARMV7_NONSEC) += nonsec_virt.o virt-v7.o virt-dt.o
|
|
obj-$(CONFIG_ARMV7_PSCI) += psci.o psci-common.o
|
|
|
|
obj-$(CONFIG_IPROC) += iproc-common/
|
|
obj-$(CONFIG_KONA) += kona-common/
|
|
obj-$(CONFIG_SYS_ARCH_TIMER) += arch_timer.o
|
|
|
|
ifneq (,$(filter s5pc1xx exynos,$(SOC)))
|
|
obj-y += s5p-common/
|
|
endif
|
|
|
|
obj-$(if $(filter bcm235xx,$(SOC)),y) += bcm235xx/
|
|
obj-$(if $(filter bcm281xx,$(SOC)),y) += bcm281xx/
|
|
obj-$(if $(filter bcmcygnus,$(SOC)),y) += bcmcygnus/
|
|
obj-$(if $(filter bcmnsp,$(SOC)),y) += bcmnsp/
|
|
obj-$(if $(filter ls102xa,$(SOC)),y) += ls102xa/
|
|
obj-$(CONFIG_RMOBILE) += rmobile/
|
|
obj-$(if $(filter stv0991,$(SOC)),y) += stv0991/
|
|
obj-$(CONFIG_ARCH_SUNXI) += sunxi/
|
|
obj-$(CONFIG_VF610) += vf610/
|