1 /* 2 * Copyright (c) 2019 STMicroelectronics 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file SoC configuration macros for the STM32MP1 family processors. 9 * 10 * Based on reference manual: 11 * STM32MP157 advanced ARM(r)-based 32-bit MPUs 12 * 13 * Chapter 2.2.2: Memory map and register boundary addresses 14 */ 15 16 17 #ifndef _STM32MP1SOC_H_ 18 #define _STM32MP1SOC_H_ 19 20 #ifndef _ASMLANGUAGE 21 22 #include <stm32mp1xx.h> 23 24 #endif /* !_ASMLANGUAGE */ 25 26 #endif /* _STM32MP1SOC_H_ */ 27