Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-06-05 Thread Cédric Le Goater
On 6/5/23 07:57, Bernhard Beschow wrote: Am 31. Mai 2023 07:39:32 UTC schrieb "Philippe Mathieu-Daudé" : On 31/5/23 08:36, Cédric Le Goater wrote: On 5/31/23 08:17, Philippe Mathieu-Daudé wrote: +QOM tinkerers On 31/5/23 07:59, Cédric Le Goater wrote: On 5/30/23 23:15, Philippe

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-06-04 Thread Bernhard Beschow
Am 31. Mai 2023 07:39:32 UTC schrieb "Philippe Mathieu-Daudé" : >On 31/5/23 08:36, Cédric Le Goater wrote: >> On 5/31/23 08:17, Philippe Mathieu-Daudé wrote: >>> +QOM tinkerers >>> >>> On 31/5/23 07:59, Cédric Le Goater wrote: On 5/30/23 23:15, Philippe Mathieu-Daudé wrote: > On

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-31 Thread Philippe Mathieu-Daudé
On 31/5/23 08:36, Cédric Le Goater wrote: On 5/31/23 08:17, Philippe Mathieu-Daudé wrote: +QOM tinkerers On 31/5/23 07:59, Cédric Le Goater wrote: On 5/30/23 23:15, Philippe Mathieu-Daudé wrote: On 30/5/23 22:34, Philippe Mathieu-Daudé wrote: On 8/5/23 09:58, Cédric Le Goater wrote: Simple

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-31 Thread Cédric Le Goater
On 5/31/23 08:17, Philippe Mathieu-Daudé wrote: +QOM tinkerers On 31/5/23 07:59, Cédric Le Goater wrote: On 5/30/23 23:15, Philippe Mathieu-Daudé wrote: On 30/5/23 22:34, Philippe Mathieu-Daudé wrote: On 8/5/23 09:58, Cédric Le Goater wrote: Simple routine to retrieve a DeviceState object

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-31 Thread Philippe Mathieu-Daudé
+QOM tinkerers On 31/5/23 07:59, Cédric Le Goater wrote: On 5/30/23 23:15, Philippe Mathieu-Daudé wrote: On 30/5/23 22:34, Philippe Mathieu-Daudé wrote: On 8/5/23 09:58, Cédric Le Goater wrote: Simple routine to retrieve a DeviceState object on a SPI bus using its address/cs. It will be

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-31 Thread Cédric Le Goater
On 5/30/23 23:15, Philippe Mathieu-Daudé wrote: On 30/5/23 22:34, Philippe Mathieu-Daudé wrote: On 8/5/23 09:58, Cédric Le Goater wrote: Simple routine to retrieve a DeviceState object on a SPI bus using its address/cs. It will be useful for the board to wire the CS lines. Cc: Alistair

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-30 Thread Cédric Le Goater
On 5/30/23 22:34, Philippe Mathieu-Daudé wrote: On 8/5/23 09:58, Cédric Le Goater wrote: Simple routine to retrieve a DeviceState object on a SPI bus using its address/cs. It will be useful for the board to wire the CS lines. Cc: Alistair Francis Signed-off-by: Cédric Le Goater ---  

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-30 Thread Philippe Mathieu-Daudé
On 30/5/23 22:34, Philippe Mathieu-Daudé wrote: On 8/5/23 09:58, Cédric Le Goater wrote: Simple routine to retrieve a DeviceState object on a SPI bus using its address/cs. It will be useful for the board to wire the CS lines. Cc: Alistair Francis Signed-off-by: Cédric Le Goater ---  

Re: [PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-30 Thread Philippe Mathieu-Daudé
On 8/5/23 09:58, Cédric Le Goater wrote: Simple routine to retrieve a DeviceState object on a SPI bus using its address/cs. It will be useful for the board to wire the CS lines. Cc: Alistair Francis Signed-off-by: Cédric Le Goater --- include/hw/ssi/ssi.h | 2 ++ hw/ssi/ssi.c | 15

[PATCH 05/12] hw/ssi: Introduce a ssi_get_cs() helper

2023-05-08 Thread Cédric Le Goater
Simple routine to retrieve a DeviceState object on a SPI bus using its address/cs. It will be useful for the board to wire the CS lines. Cc: Alistair Francis Signed-off-by: Cédric Le Goater --- include/hw/ssi/ssi.h | 2 ++ hw/ssi/ssi.c | 15 +++ 2 files changed, 17