#
49f758b8 |
| 29-May-2017 |
Andrew Jones <drjones@redhat.com> |
arm/arm64: code derived from Linux must be GPL not LGPL
Also update copyrights.
Reported-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Andrew Jones <drjones@redhat.com> [Amend two other "Adapat
arm/arm64: code derived from Linux must be GPL not LGPL
Also update copyrights.
Reported-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Andrew Jones <drjones@redhat.com> [Amend two other "Adapated" typos as well.] Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
show more ...
|
#
d73e4521 |
| 10-Jul-2014 |
Andrew Jones <drjones@redhat.com> |
virtio: add minimal support for virtqueues
Currently only supports sending (outbufs), doesn't have any bells or whistles. Code adapted from the Linux Kernel.
Signed-off-by: Andrew Jones <drjones@re
virtio: add minimal support for virtqueues
Currently only supports sending (outbufs), doesn't have any bells or whistles. Code adapted from the Linux Kernel.
Signed-off-by: Andrew Jones <drjones@redhat.com>
--- v7: - {alloc,alloc_aligned} -> {calloc,memalign} - changes now split between virtio.* and virtio-mmio.* files
show more ...
|
#
43402ba5 |
| 10-Jul-2014 |
Andrew Jones <drjones@redhat.com> |
add minimal virtio support for devtree virtio-mmio
Support the bare minimum of virtio to enable access to the virtio-mmio config space of a device. Currently this implementation must use a device tr
add minimal virtio support for devtree virtio-mmio
Support the bare minimum of virtio to enable access to the virtio-mmio config space of a device. Currently this implementation must use a device tree to find the device.
Signed-off-by: Andrew Jones <drjones@redhat.com> Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org> --- v7: - s/alloc/calloc/ - split into virtio.[ch] and virtio-mmio.[ch] [Paolo Bonzini] - dump virtio_bind_busses table [Paolo Bonzini] v6: - switch to using alloc() - s/vmdev/vm_dev/ to be consistent with kernel naming - check for virtio magic in vm_dt_match v5: - use same virtio struct names as kernel - no need to alloc a new virtio_config_ops for each virtio device - use ioremap v4: - split from the virtio-testdev patch - search a table to "discover" that the device must be DT/virtio-mmio, which doesn't change anything, but looks less hacky than comments saying the device must be DT/virtio-mmio... - manage own pool of virtio-mmio pre-allocated device structures in order to avoid needing access to the heap
show more ...
|