mmio.txt 399 B

1234567891011121314151617
  1. * virtio memory mapped device
  2. See http://ozlabs.org/~rusty/virtio-spec/ for more details.
  3. Required properties:
  4. - compatible: "virtio,mmio" compatibility string
  5. - reg: control registers base address and size including configuration space
  6. - interrupts: interrupt generated by the device
  7. Example:
  8. virtio_block@3000 {
  9. compatible = "virtio,mmio";
  10. reg = <0x3000 0x100>;
  11. interrupts = <41>;
  12. }