Skip to content

Commit

Permalink
Make sure the mpu_noexec_ram regions has the lowest priority
Browse files Browse the repository at this point in the history
From the ARMv7-M ARM section B3.5.3:

	Where there is an overlap between two regions, the register with
	the highest region number takes priority.

We want to make sure the mpu_noexec_ram region has the lowest
priority to allow the mpu_stack_guard region to overwrite the first N
bytes of it.

This change fixes using mpu_noexec_ram and mpu_stack_guard together.
  • Loading branch information
nmeum committed Feb 17, 2020
1 parent c94e7f2 commit 27f42de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ int __attribute__((used)) sched_run(void)

#ifdef MODULE_MPU_STACK_GUARD
mpu_configure(
1, /* MPU region 1 */
2, /* MPU region 2 */
(uintptr_t)sched_active_thread->stack_start + 31, /* Base Address (rounded up) */
MPU_ATTR(1, AP_RO_RO, 0, 1, 0, 1, MPU_SIZE_32B) /* Attributes and Size */
);
Expand Down
4 changes: 2 additions & 2 deletions cpu/cortexm_common/vectors_cortexm.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void reset_handler_default(void)
* executable. This is the Cortex-M SRAM region used for on-chip RAM.
*/
mpu_configure(
2, /* Region 0 and 1 are used by mpu_stack_guard */
0, /* Region 0 (lowest priority) */
(uintptr_t)&_sram, /* RAM base address */
MPU_ATTR(1, AP_RW_RW, 0, 1, 0, 1, MPU_SIZE_512M) /* Allow read/write but no exec */
);
Expand All @@ -161,7 +161,7 @@ void reset_handler_default(void)
#ifdef MODULE_MPU_STACK_GUARD
if (((uintptr_t)&_sstack) != SRAM_BASE) {
mpu_configure(
0, /* MPU region 0 */
1, /* MPU region 1 */
(uintptr_t)&_sstack + 31, /* Base Address (rounded up) */
MPU_ATTR(1, AP_RO_RO, 0, 1, 0, 1, MPU_SIZE_32B) /* Attributes and Size */
);
Expand Down

0 comments on commit 27f42de

Please sign in to comment.