1 // SPDX-License-Identifier: GPL-2.0+
3 * Cortex-R Memory Protection Unit specific code
5 * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
11 #include <asm/armv7.h>
12 #include <asm/system.h>
13 #include <asm/barriers.h>
14 #include <linux/bitops.h>
15 #include <linux/compiler.h>
17 #include <asm/armv7_mpu.h>
19 /* MPU Type register definitions */
20 #define MPUIR_S_SHIFT 0
21 #define MPUIR_S_MASK BIT(MPUIR_S_SHIFT)
22 #define MPUIR_DREGION_SHIFT 8
23 #define MPUIR_DREGION_MASK (0xff << 8)
27 * The Memory Protection Unit(MPU) allows to partition memory into regions
28 * and set individual protection attributes for each region. In absence
29 * of MPU a default map[1] will take effect. make sure to run this code
30 * from a region which has execution permissions by default.
31 * [1] http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0460d/I1002400.html
34 void disable_mpu(void)
58 return get_cr() & CR_M;
61 void mpu_config(struct mpu_region_config *rgn)
65 attr = get_attr_encoding(rgn->mr_attr);
67 /* MPU Region Number Register */
68 asm volatile ("mcr p15, 0, %0, c6, c2, 0" : : "r" (rgn->region_no));
70 /* MPU Region Base Address Register */
71 asm volatile ("mcr p15, 0, %0, c6, c1, 0" : : "r" (rgn->start_addr));
73 /* MPU Region Size and Enable Register */
75 val = (rgn->reg_size << REGION_SIZE_SHIFT) | ENABLE_REGION;
78 asm volatile ("mcr p15, 0, %0, c6, c1, 2" : : "r" (val));
80 /* MPU Region Access Control Register */
81 val = rgn->xn << XN_SHIFT | rgn->ap << AP_SHIFT | attr;
82 asm volatile ("mcr p15, 0, %0, c6, c1, 4" : : "r" (val));
85 void setup_mpu_regions(struct mpu_region_config *rgns, u32 num_rgns)
89 asm volatile ("mrc p15, 0, %0, c0, c0, 4" : "=r" (num));
90 num = (num & MPUIR_DREGION_MASK) >> MPUIR_DREGION_SHIFT;
91 /* Regions to be configured cannot be greater than available regions */
95 * Assuming dcache might not be enabled at this point, disabling
96 * and invalidating only icache.
99 invalidate_icache_all();
103 for (i = 0; i < num_rgns; i++)
104 mpu_config(&rgns[i]);
111 void enable_caches(void)
114 * setup_mpu_regions() might have enabled Icache. So add a check
115 * before enabling Icache
117 if (!icache_status())