36 lines
892 B
C
36 lines
892 B
C
/*
|
|
* Copyright 2022-2023 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#define SDRAM_BASE_ADDR 0x80000000
|
|
|
|
#include <zephyr/devicetree.h>
|
|
#include <zephyr/arch/arm/cortex_m/arm_mpu_mem_cfg.h>
|
|
|
|
static const struct arm_mpu_region mpu_regions[] = {
|
|
/* Region 0 */
|
|
MPU_REGION_ENTRY("FLASH_0",
|
|
CONFIG_FLASH_BASE_ADDRESS,
|
|
REGION_FLASH_ATTR(REGION_FLASH_SIZE)),
|
|
/* Region 1 */
|
|
MPU_REGION_ENTRY("SRAM_0",
|
|
CONFIG_SRAM_BASE_ADDRESS,
|
|
REGION_RAM_ATTR(REGION_SRAM_SIZE)),
|
|
|
|
#ifndef CONFIG_NXP_IMX_EXTERNAL_SDRAM
|
|
/*
|
|
* Region 2 - mark SDRAM0 as device type memory to prevent core
|
|
* from executing speculative prefetches against this region when
|
|
* no SDRAM is present.
|
|
*/
|
|
MPU_REGION_ENTRY("SDRAM0", SDRAM_BASE_ADDR, REGION_IO_ATTR(REGION_512M)),
|
|
#endif
|
|
};
|
|
|
|
const struct arm_mpu_config mpu_config = {
|
|
.num_regions = ARRAY_SIZE(mpu_regions),
|
|
.mpu_regions = mpu_regions,
|
|
};
|