104a7c7b1SInès Varhol /* 204a7c7b1SInès Varhol * STM32L4x5 SoC family 304a7c7b1SInès Varhol * 404a7c7b1SInès Varhol * Copyright (c) 2023 Arnaud Minier <arnaud.minier@telecom-paris.fr> 504a7c7b1SInès Varhol * Copyright (c) 2023 Inès Varhol <ines.varhol@telecom-paris.fr> 604a7c7b1SInès Varhol * 704a7c7b1SInès Varhol * SPDX-License-Identifier: GPL-2.0-or-later 804a7c7b1SInès Varhol * 904a7c7b1SInès Varhol * This work is licensed under the terms of the GNU GPL, version 2 or later. 1004a7c7b1SInès Varhol * See the COPYING file in the top-level directory. 1104a7c7b1SInès Varhol * 1204a7c7b1SInès Varhol * This work is heavily inspired by the stm32f405_soc by Alistair Francis. 1304a7c7b1SInès Varhol * Original code is licensed under the MIT License: 1404a7c7b1SInès Varhol * 1504a7c7b1SInès Varhol * Copyright (c) 2014 Alistair Francis <alistair@alistair23.me> 1604a7c7b1SInès Varhol */ 1704a7c7b1SInès Varhol 1804a7c7b1SInès Varhol /* 1904a7c7b1SInès Varhol * The reference used is the STMicroElectronics RM0351 Reference manual 2004a7c7b1SInès Varhol * for STM32L4x5 and STM32L4x6 advanced Arm ® -based 32-bit MCUs. 2104a7c7b1SInès Varhol * https://www.st.com/en/microcontrollers-microprocessors/stm32l4x5/documentation.html 2204a7c7b1SInès Varhol */ 2304a7c7b1SInès Varhol 2404a7c7b1SInès Varhol #ifndef HW_ARM_STM32L4x5_SOC_H 2504a7c7b1SInès Varhol #define HW_ARM_STM32L4x5_SOC_H 2604a7c7b1SInès Varhol 2704a7c7b1SInès Varhol #include "exec/memory.h" 2804a7c7b1SInès Varhol #include "hw/arm/armv7m.h" 29*52671f69SInès Varhol #include "hw/misc/stm32l4x5_exti.h" 3004a7c7b1SInès Varhol #include "qom/object.h" 3104a7c7b1SInès Varhol 3204a7c7b1SInès Varhol #define TYPE_STM32L4X5_SOC "stm32l4x5-soc" 3304a7c7b1SInès Varhol #define TYPE_STM32L4X5XC_SOC "stm32l4x5xc-soc" 3404a7c7b1SInès Varhol #define TYPE_STM32L4X5XE_SOC "stm32l4x5xe-soc" 3504a7c7b1SInès Varhol #define TYPE_STM32L4X5XG_SOC "stm32l4x5xg-soc" 3604a7c7b1SInès Varhol OBJECT_DECLARE_TYPE(Stm32l4x5SocState, Stm32l4x5SocClass, STM32L4X5_SOC) 3704a7c7b1SInès Varhol 3804a7c7b1SInès Varhol struct Stm32l4x5SocState { 3904a7c7b1SInès Varhol SysBusDevice parent_obj; 4004a7c7b1SInès Varhol 4104a7c7b1SInès Varhol ARMv7MState armv7m; 4204a7c7b1SInès Varhol 43*52671f69SInès Varhol Stm32l4x5ExtiState exti; 44*52671f69SInès Varhol 4504a7c7b1SInès Varhol MemoryRegion sram1; 4604a7c7b1SInès Varhol MemoryRegion sram2; 4704a7c7b1SInès Varhol MemoryRegion flash; 4804a7c7b1SInès Varhol MemoryRegion flash_alias; 4904a7c7b1SInès Varhol 5004a7c7b1SInès Varhol Clock *sysclk; 5104a7c7b1SInès Varhol Clock *refclk; 5204a7c7b1SInès Varhol }; 5304a7c7b1SInès Varhol 5404a7c7b1SInès Varhol struct Stm32l4x5SocClass { 5504a7c7b1SInès Varhol SysBusDeviceClass parent_class; 5604a7c7b1SInès Varhol 5704a7c7b1SInès Varhol size_t flash_size; 5804a7c7b1SInès Varhol }; 5904a7c7b1SInès Varhol 6004a7c7b1SInès Varhol #endif 61