Re: [PATCH v2 1/2] hw/arm: Use TYPE_OR_IRQ when connecting STM32L4x5 EXTI fan-in IRQs

2024-02-25 Thread Alistair Francis
On Wed, Feb 21, 2024 at 4:42 AM Inès Varhol
 wrote:
>
> Fixes: 52671f69f7a4 ("[PATCH v8 0/3] Add device STM32L4x5 EXTI")
> Signed-off-by: Inès Varhol 

Acked-by: Alistair Francis 

Alistair

> ---
>  include/hw/arm/stm32l4x5_soc.h |  4 ++
>  hw/arm/stm32l4x5_soc.c | 80 +-
>  2 files changed, 74 insertions(+), 10 deletions(-)
>
> diff --git a/include/hw/arm/stm32l4x5_soc.h b/include/hw/arm/stm32l4x5_soc.h
> index baf70410b5..4f314b7a93 100644
> --- a/include/hw/arm/stm32l4x5_soc.h
> +++ b/include/hw/arm/stm32l4x5_soc.h
> @@ -26,6 +26,7 @@
>
>  #include "exec/memory.h"
>  #include "hw/arm/armv7m.h"
> +#include "hw/or-irq.h"
>  #include "hw/misc/stm32l4x5_syscfg.h"
>  #include "hw/misc/stm32l4x5_exti.h"
>  #include "qom/object.h"
> @@ -36,12 +37,15 @@
>  #define TYPE_STM32L4X5XG_SOC "stm32l4x5xg-soc"
>  OBJECT_DECLARE_TYPE(Stm32l4x5SocState, Stm32l4x5SocClass, STM32L4X5_SOC)
>
> +#define NUM_EXTI_OR_GATES 4
> +
>  struct Stm32l4x5SocState {
>  SysBusDevice parent_obj;
>
>  ARMv7MState armv7m;
>
>  Stm32l4x5ExtiState exti;
> +OrIRQState exti_or_gates[NUM_EXTI_OR_GATES];
>  Stm32l4x5SyscfgState syscfg;
>
>  MemoryRegion sram1;
> diff --git a/hw/arm/stm32l4x5_soc.c b/hw/arm/stm32l4x5_soc.c
> index f470ff74ec..d1786e0da1 100644
> --- a/hw/arm/stm32l4x5_soc.c
> +++ b/hw/arm/stm32l4x5_soc.c
> @@ -26,6 +26,7 @@
>  #include "qapi/error.h"
>  #include "exec/address-spaces.h"
>  #include "sysemu/sysemu.h"
> +#include "hw/or-irq.h"
>  #include "hw/arm/stm32l4x5_soc.h"
>  #include "hw/qdev-clock.h"
>  #include "hw/misc/unimp.h"
> @@ -42,21 +43,24 @@
>  #define NUM_EXTI_IRQ 40
>  /* Match exti line connections with their CPU IRQ number */
>  /* See Vector Table (Reference Manual p.396) */
> +/*
> + * Some IRQs are connected to the same CPU IRQ (denoted by -1)
> + * and require an intermediary OR gate to function correctly.
> + */
>  static const int exti_irq[NUM_EXTI_IRQ] = {
>  6,  /* GPIO[0] */
>  7,  /* GPIO[1] */
>  8,  /* GPIO[2] */
>  9,  /* GPIO[3] */
>  10, /* GPIO[4] */
> -23, 23, 23, 23, 23, /* GPIO[5..9]  */
> -40, 40, 40, 40, 40, 40, /* GPIO[10..15]*/
> -1,  /* PVD */
> +-1, -1, -1, -1, -1, /* GPIO[5..9] OR gate 23   */
> +-1, -1, -1, -1, -1, -1, /* GPIO[10..15] OR gate 40 */
> +-1, /* PVD OR gate 1   */
>  67, /* OTG_FS_WKUP, Direct */
>  41, /* RTC_ALARM   */
>  2,  /* RTC_TAMP_STAMP2/CSS_LSE */
>  3,  /* RTC wakeup timer*/
> -63, /* COMP1   */
> -63, /* COMP2   */
> +-1, -1, /* COMP[1..2] OR gate 63   */
>  31, /* I2C1 wakeup, Direct */
>  33, /* I2C2 wakeup, Direct */
>  72, /* I2C3 wakeup, Direct */
> @@ -69,18 +73,39 @@ static const int exti_irq[NUM_EXTI_IRQ] = {
>  65, /* LPTIM1, Direct  */
>  66, /* LPTIM2, Direct  */
>  76, /* SWPMI1 wakeup, Direct   */
> -1,  /* PVM1 wakeup */
> -1,  /* PVM2 wakeup */
> -1,  /* PVM3 wakeup */
> -1,  /* PVM4 wakeup */
> +-1, -1, -1, -1, /* PVM[1..4] OR gate 1 */
>  78  /* LCD wakeup, Direct  */
>  };
>
> +static const int exti_or_gates_out[NUM_EXTI_OR_GATES] = {
> +23, 40, 63, 1,
> +};
> +
> +static const int exti_or_gates_num_lines_in[NUM_EXTI_OR_GATES] = {
> +5, 6, 2, 5,
> +};
> +
> +/* 3 OR gates with consecutive inputs */
> +#define NUM_EXTI_SIMPLE_OR_GATES 3
> +static const int exti_or_gates_first_line_in[NUM_EXTI_SIMPLE_OR_GATES] = {
> +5, 10, 21,
> +};
> +
> +/* 1 OR gate with non-consecutive inputs */
> +#define EXTI_OR_GATE1_NUM_LINES_IN 5
> +static const int exti_or_gate1_lines_in[EXTI_OR_GATE1_NUM_LINES_IN] = {
> +16, 35, 36, 37, 38,
> +};
> +
>  static void stm32l4x5_soc_initfn(Object *obj)
>  {
>  Stm32l4x5SocState *s = STM32L4X5_SOC(obj);
>
>  object_initialize_child(obj, "exti", >exti, TYPE_STM32L4X5_EXTI);
> +for (unsigned i = 0; i < NUM_EXTI_OR_GATES; i++) {
> +object_initialize_child(obj, "exti_or_gates[*]", 
> >exti_or_gates[i],
> +TYPE_OR_IRQ);
> +}
>  object_initialize_child(obj, "syscfg", >syscfg, 
> TYPE_STM32L4X5_SYSCFG);
>
>  s->sysclk = qdev_init_clock_in(DEVICE(s), "sysclk", NULL, NULL, 0);
> @@ -175,8 +200,43 @@ 

Re: [PATCH v2 1/2] hw/arm: Use TYPE_OR_IRQ when connecting STM32L4x5 EXTI fan-in IRQs

2024-02-22 Thread Philippe Mathieu-Daudé

On 20/2/24 19:34, Inès Varhol wrote:

Fixes: 52671f69f7a4 ("[PATCH v8 0/3] Add device STM32L4x5 EXTI")
Signed-off-by: Inès Varhol 
---
  include/hw/arm/stm32l4x5_soc.h |  4 ++
  hw/arm/stm32l4x5_soc.c | 80 +-
  2 files changed, 74 insertions(+), 10 deletions(-)


Thanks for cleaning that!
Reviewed-by: Philippe Mathieu-Daudé