xref: /openbmc/u-boot/arch/arm/mach-stm32/soc.c (revision 704744f8)
1 /*
2  * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
3  * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 #include <asm/io.h>
10 #include <asm/armv7m_mpu.h>
11 
12 int arch_cpu_init(void)
13 {
14 	int i;
15 
16 	struct mpu_region_config stm32_region_config[] = {
17 		/*
18 		 * Make SDRAM area cacheable & executable.
19 		 */
20 #if defined(CONFIG_STM32F4)
21 		{ 0x00000000, REGION_0, XN_DIS, PRIV_RW_USR_RW,
22 		O_I_WB_RD_WR_ALLOC, REGION_16MB },
23 #endif
24 
25 #if defined(CONFIG_STM32F7)
26 		{ 0xC0000000, REGION_0, XN_DIS, PRIV_RW_USR_RW,
27 		O_I_WB_RD_WR_ALLOC, REGION_16MB },
28 #endif
29 
30 #if defined(CONFIG_STM32H7)
31 		{ 0xD0000000, REGION_0, XN_DIS, PRIV_RW_USR_RW,
32 		O_I_WB_RD_WR_ALLOC, REGION_32MB },
33 #endif
34 	};
35 
36 	disable_mpu();
37 	for (i = 0; i < ARRAY_SIZE(stm32_region_config); i++)
38 		mpu_config(&stm32_region_config[i]);
39 	enable_mpu();
40 
41 	return 0;
42 }
43