Re: [PATCH 1/2] hw/virtio: add boilerplate for vhost-user-gpio device

2022-01-17 Thread Alex Bennée
Viresh Kumar writes: > On 14-01-22, 14:06, Alex Bennée wrote: >> >> Viresh Kumar writes: >> >> > This creates the QEMU side of the vhost-user-gpio device which connects >> > to the remote daemon. It is based of vhost-user-i2c code. >> > >> > Signed-off-by: Viresh Kumar >> >> > +++ b/includ

Re: [PATCH 1/2] hw/virtio: add boilerplate for vhost-user-gpio device

2022-01-16 Thread Viresh Kumar
On 14-01-22, 14:06, Alex Bennée wrote: > > Viresh Kumar writes: > > > This creates the QEMU side of the vhost-user-gpio device which connects > > to the remote daemon. It is based of vhost-user-i2c code. > > > > Signed-off-by: Viresh Kumar > > > +++ b/include/hw/virtio/vhost-user-gpio.h > > @@

Re: [PATCH 1/2] hw/virtio: add boilerplate for vhost-user-gpio device

2022-01-14 Thread Alex Bennée
Viresh Kumar writes: > This creates the QEMU side of the vhost-user-gpio device which connects > to the remote daemon. It is based of vhost-user-i2c code. > > Signed-off-by: Viresh Kumar > +++ b/include/hw/virtio/vhost-user-gpio.h > @@ -0,0 +1,35 @@ > +/* > + * Vhost-user GPIO virtio device >

Re: [PATCH 1/2] hw/virtio: add boilerplate for vhost-user-gpio device

2022-01-14 Thread Alex Bennée
Viresh Kumar writes: > This creates the QEMU side of the vhost-user-gpio device which connects > to the remote daemon. It is based of vhost-user-i2c code. > > Signed-off-by: Viresh Kumar Reviewed-by: Alex Bennée -- Alex Bennée

[PATCH 1/2] hw/virtio: add boilerplate for vhost-user-gpio device

2022-01-12 Thread Viresh Kumar
This creates the QEMU side of the vhost-user-gpio device which connects to the remote daemon. It is based of vhost-user-i2c code. Signed-off-by: Viresh Kumar --- hw/virtio/Kconfig | 5 + hw/virtio/meson.build | 1 + hw/virtio/vhost-user-gpio.c | 343 ++