[virtio-dev] Re: [PATCH v5 1/1] Add SUSPEND bit to device status

2024-02-28 Thread David Stevens
On Wed, Feb 28, 2024 at 3:45 PM Zhu, Lingshan wrote: > On 2/28/2024 9:18 AM, David Stevens wrote: > > On Tue, Feb 27, 2024 at 5:52 PM Zhu, Lingshan > > wrote: > >> On 2/27/2024 3:59 PM, David Stevens wrote: > >>> On Tue, Feb 27, 2024 at 11:22 AM Zhu, Lingshan > >>> wrote: > On 2/27/2024 9

[virtio-dev] [PATCH v1 0/3] Virtio SPI Linux driver

2024-02-28 Thread Harald Mommer
This is the 1st non-RFC version of a virtio SPI Linux driver which is intended to be compliant with the the upcoming virtio specification version 1.4. The specification can be found in repository https://github.com/oasis-tcs/virtio-spec.git branch virtio-1.4. This driver is the direct successor of

[virtio-dev] [PATCH v1 3/3] virtio-spi: Add virtio SPI driver.

2024-02-28 Thread Harald Mommer
From: Harald Mommer This is the virtio SPI Linux kernel driver. Signed-off-by: Harald Mommer --- MAINTAINERS | 6 + drivers/spi/Kconfig | 11 + drivers/spi/Makefile | 1 + drivers/spi/spi-virtio.c | 480 +++ 4 files changed, 498 in

[virtio-dev] [PATCH v1 2/3] virtio-spi: Add virtio-spi.h.

2024-02-28 Thread Harald Mommer
From: Harald Mommer Add virtio-spi.h header for virtio SPI. Signed-off-by: Harald Mommer Reviewed-by: Viresh Kumar --- include/uapi/linux/virtio_spi.h | 185 1 file changed, 185 insertions(+) create mode 100644 include/uapi/linux/virtio_spi.h diff --git a/in

[virtio-dev] [PATCH v1 1/3] virtio: Add ID for virtio SPI.

2024-02-28 Thread Harald Mommer
From: Harald Mommer Add #define ID VIRTIO_ID_SPI 45 for virtio SPI. Signed-off-by: Harald Mommer Reviewed-by: Viresh Kumar --- include/uapi/linux/virtio_ids.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/virtio_ids.h b/include/uapi/linux/virtio_ids.h index 7aa2eb7662