mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 11:01:19 +00:00
Support protection of regions that aren't aligned to a power of 2 by using two MPU entries, and taking advantage of the sub-region feature. Also protect code RAM from being overwritten, on parts that use external storage. BUG=chromium:782244 BRANCH=None TEST=On kevin, call: mpu_protect_data_ram(); mpu_protect_code_ram(); mpu_enable(); Verify that first call results in the following update_region params: addr: 0x200c2000 size: 0xc01d Decoded: Protect 24K region Verify that second call results in the following params: addr: 0x100a8000 size: 0xc021 Decoded: Protect 96K region addr: 0x100c0000 size: 0xf01b Decoded: Protect remaining 8K region Also verify that writes to beginning and end of code ram region trigger data access violation after enabling protection. Also verify that sysjump fails. Change-Id: Ieb7a4ec3a089e8a2d29f231e1e3acf2e78e560a1 Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/757721 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
104 lines
3.0 KiB
C
104 lines
3.0 KiB
C
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* MPU module for Cortex-M3 */
|
|
|
|
#ifndef __CROS_EC_MPU_H
|
|
#define __CROS_EC_MPU_H
|
|
|
|
#include "common.h"
|
|
|
|
/*
|
|
* Region assignment. 7 as the highest, a higher index has a higher priority.
|
|
* For example, using 7 for .iram.text allows us to mark entire RAM XN except
|
|
* .iram.text, which is used for hibernation.
|
|
* Region assignment is currently wasteful and can be changed if more
|
|
* regions are needed in the future. For example, a second region may not
|
|
* be necessary for all types, and REGION_CODE_RAM / REGION_STORAGE can be
|
|
* made mutually exclusive.
|
|
*/
|
|
enum mpu_region {
|
|
REGION_DATA_RAM = 0, /* For internal data RAM */
|
|
REGION_DATA_RAM2 = 1, /* Second region for unaligned size */
|
|
REGION_CODE_RAM = 2, /* For internal code RAM */
|
|
REGION_CODE_RAM2 = 3, /* Second region for unaligned size */
|
|
REGION_STORAGE = 4, /* For mapped internal storage */
|
|
REGION_STORAGE2 = 5, /* Second region for unaligned size */
|
|
REGION_DATA_RAM_TEXT = 6, /* Exempt region of data RAM */
|
|
REGION_CHIP_RESERVED = 7, /* Reserved for use in chip/ */
|
|
};
|
|
|
|
#define MPU_TYPE REG32(0xe000ed90)
|
|
#define MPU_CTRL REG32(0xe000ed94)
|
|
#define MPU_NUMBER REG32(0xe000ed98)
|
|
#define MPU_BASE REG32(0xe000ed9c)
|
|
#define MPU_SIZE REG16(0xe000eda0)
|
|
#define MPU_ATTR REG16(0xe000eda2)
|
|
|
|
#define MPU_CTRL_PRIVDEFEN (1 << 2)
|
|
#define MPU_CTRL_HFNMIENA (1 << 1)
|
|
#define MPU_CTRL_ENABLE (1 << 0)
|
|
|
|
/*
|
|
* XN (execute never) bit. It's bit 12 if accessed by halfword.
|
|
* 0: XN off
|
|
* 1: XN on
|
|
*/
|
|
#define MPU_ATTR_XN (1 << 12)
|
|
|
|
/* AP bit. See table 3-5 of Stellaris LM4F232H5QC datasheet for details */
|
|
#define MPU_ATTR_NO_NO (0 << 8) /* previleged no access, unprev no access */
|
|
#define MPU_ATTR_RW_RW (3 << 8) /* previleged ReadWrite, unprev ReadWrite */
|
|
#define MPU_ATTR_RO_NO (5 << 8) /* previleged Read-only, unprev no access */
|
|
|
|
/* Suggested value for TEX S/C/B bit. See table 3-6 of Stellaris LM4F232H5QC
|
|
* datasheet and table 38 of STM32F10xxx Cortex-M3 programming manual. */
|
|
#define MPU_ATTR_INTERNAL_SRAM 6 /* for Internal SRAM */
|
|
#define MPU_ATTR_FLASH_MEMORY 2 /* for flash memory */
|
|
|
|
/**
|
|
* Enable MPU
|
|
*/
|
|
void mpu_enable(void);
|
|
|
|
/**
|
|
* Returns the value of MPU type register
|
|
*
|
|
* Bit fields:
|
|
* [15:8] Number of the data regions implemented or 0 if MPU is not present.
|
|
* [1] 0: unified (no distinction between instruction and data)
|
|
* 1: separated
|
|
*/
|
|
uint32_t mpu_get_type(void);
|
|
|
|
/* Location of iram.text */
|
|
extern char __iram_text_start;
|
|
extern char __iram_text_end;
|
|
|
|
/**
|
|
* Protect RAM from code execution
|
|
*/
|
|
int mpu_protect_data_ram(void);
|
|
|
|
/**
|
|
* Protect code RAM from being overwritten
|
|
*/
|
|
int mpu_protect_code_ram(void);
|
|
|
|
/**
|
|
* Protect internal mapped flash memory from code execution
|
|
*/
|
|
int mpu_lock_ro_flash(void);
|
|
int mpu_lock_rw_flash(void);
|
|
|
|
/**
|
|
* Initialize MPU.
|
|
* It disables all regions if MPU is implemented. Otherwise, returns
|
|
* EC_ERROR_UNIMPLEMENTED.
|
|
*/
|
|
int mpu_pre_init(void);
|
|
|
|
#endif /* __CROS_EC_MPU_H */
|