xref: /openbmc/qemu/hw/arm/stm32l4x5_soc.c (revision 4a04655c)
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 #include "qemu/osdep.h"
2504a7c7b1SInès Varhol #include "qemu/units.h"
2604a7c7b1SInès Varhol #include "qapi/error.h"
2704a7c7b1SInès Varhol #include "exec/address-spaces.h"
2804a7c7b1SInès Varhol #include "sysemu/sysemu.h"
2904a7c7b1SInès Varhol #include "hw/arm/stm32l4x5_soc.h"
3004a7c7b1SInès Varhol #include "hw/qdev-clock.h"
3104a7c7b1SInès Varhol #include "hw/misc/unimp.h"
3204a7c7b1SInès Varhol 
3304a7c7b1SInès Varhol #define FLASH_BASE_ADDRESS 0x08000000
3404a7c7b1SInès Varhol #define SRAM1_BASE_ADDRESS 0x20000000
3504a7c7b1SInès Varhol #define SRAM1_SIZE (96 * KiB)
3604a7c7b1SInès Varhol #define SRAM2_BASE_ADDRESS 0x10000000
3704a7c7b1SInès Varhol #define SRAM2_SIZE (32 * KiB)
3804a7c7b1SInès Varhol 
3904a7c7b1SInès Varhol static void stm32l4x5_soc_initfn(Object *obj)
4004a7c7b1SInès Varhol {
4104a7c7b1SInès Varhol     Stm32l4x5SocState *s = STM32L4X5_SOC(obj);
4204a7c7b1SInès Varhol 
4304a7c7b1SInès Varhol     s->sysclk = qdev_init_clock_in(DEVICE(s), "sysclk", NULL, NULL, 0);
4404a7c7b1SInès Varhol     s->refclk = qdev_init_clock_in(DEVICE(s), "refclk", NULL, NULL, 0);
4504a7c7b1SInès Varhol }
4604a7c7b1SInès Varhol 
4704a7c7b1SInès Varhol static void stm32l4x5_soc_realize(DeviceState *dev_soc, Error **errp)
4804a7c7b1SInès Varhol {
4904a7c7b1SInès Varhol     ERRP_GUARD();
5004a7c7b1SInès Varhol     Stm32l4x5SocState *s = STM32L4X5_SOC(dev_soc);
5104a7c7b1SInès Varhol     const Stm32l4x5SocClass *sc = STM32L4X5_SOC_GET_CLASS(dev_soc);
5204a7c7b1SInès Varhol     MemoryRegion *system_memory = get_system_memory();
5304a7c7b1SInès Varhol     DeviceState *armv7m;
5404a7c7b1SInès Varhol 
5504a7c7b1SInès Varhol     /*
5604a7c7b1SInès Varhol      * We use s->refclk internally and only define it with qdev_init_clock_in()
5704a7c7b1SInès Varhol      * so it is correctly parented and not leaked on an init/deinit; it is not
5804a7c7b1SInès Varhol      * intended as an externally exposed clock.
5904a7c7b1SInès Varhol      */
6004a7c7b1SInès Varhol     if (clock_has_source(s->refclk)) {
6104a7c7b1SInès Varhol         error_setg(errp, "refclk clock must not be wired up by the board code");
6204a7c7b1SInès Varhol         return;
6304a7c7b1SInès Varhol     }
6404a7c7b1SInès Varhol 
6504a7c7b1SInès Varhol     if (!clock_has_source(s->sysclk)) {
6604a7c7b1SInès Varhol         error_setg(errp, "sysclk clock must be wired up by the board code");
6704a7c7b1SInès Varhol         return;
6804a7c7b1SInès Varhol     }
6904a7c7b1SInès Varhol 
7004a7c7b1SInès Varhol     /*
7104a7c7b1SInès Varhol      * TODO: ideally we should model the SoC RCC and its ability to
7204a7c7b1SInès Varhol      * change the sysclk frequency and define different sysclk sources.
7304a7c7b1SInès Varhol      */
7404a7c7b1SInès Varhol 
7504a7c7b1SInès Varhol     /* The refclk always runs at frequency HCLK / 8 */
7604a7c7b1SInès Varhol     clock_set_mul_div(s->refclk, 8, 1);
7704a7c7b1SInès Varhol     clock_set_source(s->refclk, s->sysclk);
7804a7c7b1SInès Varhol 
7904a7c7b1SInès Varhol     if (!memory_region_init_rom(&s->flash, OBJECT(dev_soc), "flash",
8004a7c7b1SInès Varhol                                 sc->flash_size, errp)) {
8104a7c7b1SInès Varhol         return;
8204a7c7b1SInès Varhol     }
8304a7c7b1SInès Varhol     memory_region_init_alias(&s->flash_alias, OBJECT(dev_soc),
8404a7c7b1SInès Varhol                              "flash_boot_alias", &s->flash, 0,
8504a7c7b1SInès Varhol                              sc->flash_size);
8604a7c7b1SInès Varhol 
8704a7c7b1SInès Varhol     memory_region_add_subregion(system_memory, FLASH_BASE_ADDRESS, &s->flash);
8804a7c7b1SInès Varhol     memory_region_add_subregion(system_memory, 0, &s->flash_alias);
8904a7c7b1SInès Varhol 
9004a7c7b1SInès Varhol     if (!memory_region_init_ram(&s->sram1, OBJECT(dev_soc), "SRAM1", SRAM1_SIZE,
9104a7c7b1SInès Varhol                                 errp)) {
9204a7c7b1SInès Varhol         return;
9304a7c7b1SInès Varhol     }
9404a7c7b1SInès Varhol     memory_region_add_subregion(system_memory, SRAM1_BASE_ADDRESS, &s->sram1);
9504a7c7b1SInès Varhol 
9604a7c7b1SInès Varhol     if (!memory_region_init_ram(&s->sram2, OBJECT(dev_soc), "SRAM2", SRAM2_SIZE,
9704a7c7b1SInès Varhol                                 errp)) {
9804a7c7b1SInès Varhol         return;
9904a7c7b1SInès Varhol     }
10004a7c7b1SInès Varhol     memory_region_add_subregion(system_memory, SRAM2_BASE_ADDRESS, &s->sram2);
10104a7c7b1SInès Varhol 
10204a7c7b1SInès Varhol     object_initialize_child(OBJECT(dev_soc), "armv7m", &s->armv7m, TYPE_ARMV7M);
10304a7c7b1SInès Varhol     armv7m = DEVICE(&s->armv7m);
10404a7c7b1SInès Varhol     qdev_prop_set_uint32(armv7m, "num-irq", 96);
105*4a04655cSSamuel Tardieu     qdev_prop_set_uint32(armv7m, "num-prio-bits", 4);
10604a7c7b1SInès Varhol     qdev_prop_set_string(armv7m, "cpu-type", ARM_CPU_TYPE_NAME("cortex-m4"));
10704a7c7b1SInès Varhol     qdev_prop_set_bit(armv7m, "enable-bitband", true);
10804a7c7b1SInès Varhol     qdev_connect_clock_in(armv7m, "cpuclk", s->sysclk);
10904a7c7b1SInès Varhol     qdev_connect_clock_in(armv7m, "refclk", s->refclk);
11004a7c7b1SInès Varhol     object_property_set_link(OBJECT(&s->armv7m), "memory",
11104a7c7b1SInès Varhol                              OBJECT(system_memory), &error_abort);
11204a7c7b1SInès Varhol     if (!sysbus_realize(SYS_BUS_DEVICE(&s->armv7m), errp)) {
11304a7c7b1SInès Varhol         return;
11404a7c7b1SInès Varhol     }
11504a7c7b1SInès Varhol 
11604a7c7b1SInès Varhol     /* APB1 BUS */
11704a7c7b1SInès Varhol     create_unimplemented_device("TIM2",      0x40000000, 0x400);
11804a7c7b1SInès Varhol     create_unimplemented_device("TIM3",      0x40000400, 0x400);
11904a7c7b1SInès Varhol     create_unimplemented_device("TIM4",      0x40000800, 0x400);
12004a7c7b1SInès Varhol     create_unimplemented_device("TIM5",      0x40000C00, 0x400);
12104a7c7b1SInès Varhol     create_unimplemented_device("TIM6",      0x40001000, 0x400);
12204a7c7b1SInès Varhol     create_unimplemented_device("TIM7",      0x40001400, 0x400);
12304a7c7b1SInès Varhol     /* RESERVED:    0x40001800, 0x1000 */
12404a7c7b1SInès Varhol     create_unimplemented_device("RTC",       0x40002800, 0x400);
12504a7c7b1SInès Varhol     create_unimplemented_device("WWDG",      0x40002C00, 0x400);
12604a7c7b1SInès Varhol     create_unimplemented_device("IWDG",      0x40003000, 0x400);
12704a7c7b1SInès Varhol     /* RESERVED:    0x40001800, 0x400 */
12804a7c7b1SInès Varhol     create_unimplemented_device("SPI2",      0x40003800, 0x400);
12904a7c7b1SInès Varhol     create_unimplemented_device("SPI3",      0x40003C00, 0x400);
13004a7c7b1SInès Varhol     /* RESERVED:    0x40004000, 0x400 */
13104a7c7b1SInès Varhol     create_unimplemented_device("USART2",    0x40004400, 0x400);
13204a7c7b1SInès Varhol     create_unimplemented_device("USART3",    0x40004800, 0x400);
13304a7c7b1SInès Varhol     create_unimplemented_device("UART4",     0x40004C00, 0x400);
13404a7c7b1SInès Varhol     create_unimplemented_device("UART5",     0x40005000, 0x400);
13504a7c7b1SInès Varhol     create_unimplemented_device("I2C1",      0x40005400, 0x400);
13604a7c7b1SInès Varhol     create_unimplemented_device("I2C2",      0x40005800, 0x400);
13704a7c7b1SInès Varhol     create_unimplemented_device("I2C3",      0x40005C00, 0x400);
13804a7c7b1SInès Varhol     /* RESERVED:    0x40006000, 0x400 */
13904a7c7b1SInès Varhol     create_unimplemented_device("CAN1",      0x40006400, 0x400);
14004a7c7b1SInès Varhol     /* RESERVED:    0x40006800, 0x400 */
14104a7c7b1SInès Varhol     create_unimplemented_device("PWR",       0x40007000, 0x400);
14204a7c7b1SInès Varhol     create_unimplemented_device("DAC1",      0x40007400, 0x400);
14304a7c7b1SInès Varhol     create_unimplemented_device("OPAMP",     0x40007800, 0x400);
14404a7c7b1SInès Varhol     create_unimplemented_device("LPTIM1",    0x40007C00, 0x400);
14504a7c7b1SInès Varhol     create_unimplemented_device("LPUART1",   0x40008000, 0x400);
14604a7c7b1SInès Varhol     /* RESERVED:    0x40008400, 0x400 */
14704a7c7b1SInès Varhol     create_unimplemented_device("SWPMI1",    0x40008800, 0x400);
14804a7c7b1SInès Varhol     /* RESERVED:    0x40008C00, 0x800 */
14904a7c7b1SInès Varhol     create_unimplemented_device("LPTIM2",    0x40009400, 0x400);
15004a7c7b1SInès Varhol     /* RESERVED:    0x40009800, 0x6800 */
15104a7c7b1SInès Varhol 
15204a7c7b1SInès Varhol     /* APB2 BUS */
15304a7c7b1SInès Varhol     create_unimplemented_device("SYSCFG",    0x40010000, 0x30);
15404a7c7b1SInès Varhol     create_unimplemented_device("VREFBUF",   0x40010030, 0x1D0);
15504a7c7b1SInès Varhol     create_unimplemented_device("COMP",      0x40010200, 0x200);
15604a7c7b1SInès Varhol     create_unimplemented_device("EXTI",      0x40010400, 0x400);
15704a7c7b1SInès Varhol     /* RESERVED:    0x40010800, 0x1400 */
15804a7c7b1SInès Varhol     create_unimplemented_device("FIREWALL",  0x40011C00, 0x400);
15904a7c7b1SInès Varhol     /* RESERVED:    0x40012000, 0x800 */
16004a7c7b1SInès Varhol     create_unimplemented_device("SDMMC1",    0x40012800, 0x400);
16104a7c7b1SInès Varhol     create_unimplemented_device("TIM1",      0x40012C00, 0x400);
16204a7c7b1SInès Varhol     create_unimplemented_device("SPI1",      0x40013000, 0x400);
16304a7c7b1SInès Varhol     create_unimplemented_device("TIM8",      0x40013400, 0x400);
16404a7c7b1SInès Varhol     create_unimplemented_device("USART1",    0x40013800, 0x400);
16504a7c7b1SInès Varhol     /* RESERVED:    0x40013C00, 0x400 */
16604a7c7b1SInès Varhol     create_unimplemented_device("TIM15",     0x40014000, 0x400);
16704a7c7b1SInès Varhol     create_unimplemented_device("TIM16",     0x40014400, 0x400);
16804a7c7b1SInès Varhol     create_unimplemented_device("TIM17",     0x40014800, 0x400);
16904a7c7b1SInès Varhol     /* RESERVED:    0x40014C00, 0x800 */
17004a7c7b1SInès Varhol     create_unimplemented_device("SAI1",      0x40015400, 0x400);
17104a7c7b1SInès Varhol     create_unimplemented_device("SAI2",      0x40015800, 0x400);
17204a7c7b1SInès Varhol     /* RESERVED:    0x40015C00, 0x400 */
17304a7c7b1SInès Varhol     create_unimplemented_device("DFSDM1",    0x40016000, 0x400);
17404a7c7b1SInès Varhol     /* RESERVED:    0x40016400, 0x9C00 */
17504a7c7b1SInès Varhol 
17604a7c7b1SInès Varhol     /* AHB1 BUS */
17704a7c7b1SInès Varhol     create_unimplemented_device("DMA1",      0x40020000, 0x400);
17804a7c7b1SInès Varhol     create_unimplemented_device("DMA2",      0x40020400, 0x400);
17904a7c7b1SInès Varhol     /* RESERVED:    0x40020800, 0x800 */
18004a7c7b1SInès Varhol     create_unimplemented_device("RCC",       0x40021000, 0x400);
18104a7c7b1SInès Varhol     /* RESERVED:    0x40021400, 0xC00 */
18204a7c7b1SInès Varhol     create_unimplemented_device("FLASH",     0x40022000, 0x400);
18304a7c7b1SInès Varhol     /* RESERVED:    0x40022400, 0xC00 */
18404a7c7b1SInès Varhol     create_unimplemented_device("CRC",       0x40023000, 0x400);
18504a7c7b1SInès Varhol     /* RESERVED:    0x40023400, 0x400 */
18604a7c7b1SInès Varhol     create_unimplemented_device("TSC",       0x40024000, 0x400);
18704a7c7b1SInès Varhol 
18804a7c7b1SInès Varhol     /* RESERVED:    0x40024400, 0x7FDBC00 */
18904a7c7b1SInès Varhol 
19004a7c7b1SInès Varhol     /* AHB2 BUS */
19104a7c7b1SInès Varhol     create_unimplemented_device("GPIOA",     0x48000000, 0x400);
19204a7c7b1SInès Varhol     create_unimplemented_device("GPIOB",     0x48000400, 0x400);
19304a7c7b1SInès Varhol     create_unimplemented_device("GPIOC",     0x48000800, 0x400);
19404a7c7b1SInès Varhol     create_unimplemented_device("GPIOD",     0x48000C00, 0x400);
19504a7c7b1SInès Varhol     create_unimplemented_device("GPIOE",     0x48001000, 0x400);
19604a7c7b1SInès Varhol     create_unimplemented_device("GPIOF",     0x48001400, 0x400);
19704a7c7b1SInès Varhol     create_unimplemented_device("GPIOG",     0x48001800, 0x400);
19804a7c7b1SInès Varhol     create_unimplemented_device("GPIOH",     0x48001C00, 0x400);
19904a7c7b1SInès Varhol     /* RESERVED:    0x48002000, 0x7FDBC00 */
20004a7c7b1SInès Varhol     create_unimplemented_device("OTG_FS",    0x50000000, 0x40000);
20104a7c7b1SInès Varhol     create_unimplemented_device("ADC",       0x50040000, 0x400);
20204a7c7b1SInès Varhol     /* RESERVED:    0x50040400, 0x20400 */
20304a7c7b1SInès Varhol     create_unimplemented_device("RNG",       0x50060800, 0x400);
20404a7c7b1SInès Varhol 
20504a7c7b1SInès Varhol     /* AHB3 BUS */
20604a7c7b1SInès Varhol     create_unimplemented_device("FMC",       0xA0000000, 0x1000);
20704a7c7b1SInès Varhol     create_unimplemented_device("QUADSPI",   0xA0001000, 0x400);
20804a7c7b1SInès Varhol }
20904a7c7b1SInès Varhol 
21004a7c7b1SInès Varhol static void stm32l4x5_soc_class_init(ObjectClass *klass, void *data)
21104a7c7b1SInès Varhol {
21204a7c7b1SInès Varhol 
21304a7c7b1SInès Varhol     DeviceClass *dc = DEVICE_CLASS(klass);
21404a7c7b1SInès Varhol 
21504a7c7b1SInès Varhol     dc->realize = stm32l4x5_soc_realize;
21604a7c7b1SInès Varhol     /* Reason: Mapped at fixed location on the system bus */
21704a7c7b1SInès Varhol     dc->user_creatable = false;
21804a7c7b1SInès Varhol     /* No vmstate or reset required: device has no internal state */
21904a7c7b1SInès Varhol }
22004a7c7b1SInès Varhol 
22104a7c7b1SInès Varhol static void stm32l4x5xc_soc_class_init(ObjectClass *oc, void *data)
22204a7c7b1SInès Varhol {
22304a7c7b1SInès Varhol     Stm32l4x5SocClass *ssc = STM32L4X5_SOC_CLASS(oc);
22404a7c7b1SInès Varhol 
22504a7c7b1SInès Varhol     ssc->flash_size = 256 * KiB;
22604a7c7b1SInès Varhol }
22704a7c7b1SInès Varhol 
22804a7c7b1SInès Varhol static void stm32l4x5xe_soc_class_init(ObjectClass *oc, void *data)
22904a7c7b1SInès Varhol {
23004a7c7b1SInès Varhol     Stm32l4x5SocClass *ssc = STM32L4X5_SOC_CLASS(oc);
23104a7c7b1SInès Varhol 
23204a7c7b1SInès Varhol     ssc->flash_size = 512 * KiB;
23304a7c7b1SInès Varhol }
23404a7c7b1SInès Varhol 
23504a7c7b1SInès Varhol static void stm32l4x5xg_soc_class_init(ObjectClass *oc, void *data)
23604a7c7b1SInès Varhol {
23704a7c7b1SInès Varhol     Stm32l4x5SocClass *ssc = STM32L4X5_SOC_CLASS(oc);
23804a7c7b1SInès Varhol 
23904a7c7b1SInès Varhol     ssc->flash_size = 1 * MiB;
24004a7c7b1SInès Varhol }
24104a7c7b1SInès Varhol 
24204a7c7b1SInès Varhol static const TypeInfo stm32l4x5_soc_types[] = {
24304a7c7b1SInès Varhol     {
24404a7c7b1SInès Varhol         .name           = TYPE_STM32L4X5XC_SOC,
24504a7c7b1SInès Varhol         .parent         = TYPE_STM32L4X5_SOC,
24604a7c7b1SInès Varhol         .class_init     = stm32l4x5xc_soc_class_init,
24704a7c7b1SInès Varhol     }, {
24804a7c7b1SInès Varhol         .name           = TYPE_STM32L4X5XE_SOC,
24904a7c7b1SInès Varhol         .parent         = TYPE_STM32L4X5_SOC,
25004a7c7b1SInès Varhol         .class_init     = stm32l4x5xe_soc_class_init,
25104a7c7b1SInès Varhol     }, {
25204a7c7b1SInès Varhol         .name           = TYPE_STM32L4X5XG_SOC,
25304a7c7b1SInès Varhol         .parent         = TYPE_STM32L4X5_SOC,
25404a7c7b1SInès Varhol         .class_init     = stm32l4x5xg_soc_class_init,
25504a7c7b1SInès Varhol     }, {
25604a7c7b1SInès Varhol         .name           = TYPE_STM32L4X5_SOC,
25704a7c7b1SInès Varhol         .parent         = TYPE_SYS_BUS_DEVICE,
25804a7c7b1SInès Varhol         .instance_size  = sizeof(Stm32l4x5SocState),
25904a7c7b1SInès Varhol         .instance_init  = stm32l4x5_soc_initfn,
26004a7c7b1SInès Varhol         .class_size     = sizeof(Stm32l4x5SocClass),
26104a7c7b1SInès Varhol         .class_init     = stm32l4x5_soc_class_init,
26204a7c7b1SInès Varhol         .abstract       = true,
26304a7c7b1SInès Varhol     }
26404a7c7b1SInès Varhol };
26504a7c7b1SInès Varhol 
26604a7c7b1SInès Varhol DEFINE_TYPES(stm32l4x5_soc_types)
267