Re: [PATCH v5 1/8] Implement STM32L4x5_RCC skeleton

2024-02-26 Thread Peter Maydell
On Mon, 26 Feb 2024 at 19:21, Arnaud Minier wrote: > > From: "Peter Maydell" > >> +static const MemoryRegionOps stm32l4x5_rcc_ops = { > >> +.read = stm32l4x5_rcc_read, > >> +.write = stm32l4x5_rcc_write, > >> +.endianness = DEVICE_NATIVE_ENDIAN, > >> +.valid = { > >> +.max_

Re: [PATCH v5 1/8] Implement STM32L4x5_RCC skeleton

2024-02-26 Thread Arnaud Minier
mu-arm" > , "Alistair Francis" , "Paolo Bonzini" , "Alistair > Francis" > Sent: Friday, February 23, 2024 3:26:46 PM > Subject: Re: [PATCH v5 1/8] Implement STM32L4x5_RCC skeleton > On Mon, 19 Feb 2024 at 20:11, Arnaud Minier > wrote: >&

Re: [PATCH v5 1/8] Implement STM32L4x5_RCC skeleton

2024-02-23 Thread Peter Maydell
On Mon, 19 Feb 2024 at 20:11, Arnaud Minier wrote: > > Add the necessary files to add a simple RCC implementation with just > reads from and writes to registers. Also instanciate the RCC in the "instantiate" > STM32L4x5_SoC. It is needed for accurate emulation of all the SoC > clocks and timers.

[PATCH v5 1/8] Implement STM32L4x5_RCC skeleton

2024-02-19 Thread Arnaud Minier
Add the necessary files to add a simple RCC implementation with just reads from and writes to registers. Also instanciate the RCC in the STM32L4x5_SoC. It is needed for accurate emulation of all the SoC clocks and timers. Signed-off-by: Arnaud Minier Signed-off-by: Inès Varhol Acked-by: Alistair