Re: [U-Boot] [PATCH 21/27] virtio: Add virtio over pci transport driver

2018-10-11 Thread Bin Meng
Hi Simon, On Thu, Sep 27, 2018 at 9:43 PM Simon Glass wrote: > > Hi Bin, > > On 23 September 2018 at 06:42, Bin Meng wrote: > > This adds a transport driver that implements UCLASS_VIRTIO for > > virtio over pci, which is commonly used on x86. > > > > It only supports the legacy interface of the

Re: [U-Boot] [PATCH 21/27] virtio: Add virtio over pci transport driver

2018-09-27 Thread Simon Glass
Hi Bin, On 23 September 2018 at 06:42, Bin Meng wrote: > This adds a transport driver that implements UCLASS_VIRTIO for > virtio over pci, which is commonly used on x86. > > It only supports the legacy interface of the pci transport, which > is the default device that QEMU emulates. > > Signed-of

[U-Boot] [PATCH 21/27] virtio: Add virtio over pci transport driver

2018-09-23 Thread Bin Meng
This adds a transport driver that implements UCLASS_VIRTIO for virtio over pci, which is commonly used on x86. It only supports the legacy interface of the pci transport, which is the default device that QEMU emulates. Signed-off-by: Bin Meng --- drivers/virtio/Kconfig | 8 + drivers/vi