2
0

virtio-crypto-pci.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Virtio crypto device
  3. *
  4. * Copyright (c) 2016 HUAWEI TECHNOLOGIES CO., LTD.
  5. *
  6. * Authors:
  7. * Gonglei <arei.gonglei@huawei.com>
  8. *
  9. * This work is licensed under the terms of the GNU GPL, version 2 or
  10. * (at your option) any later version. See the COPYING file in the
  11. * top-level directory.
  12. *
  13. */
  14. #include "qemu/osdep.h"
  15. #include "hw/pci/pci.h"
  16. #include "hw/qdev-properties.h"
  17. #include "hw/virtio/virtio.h"
  18. #include "hw/virtio/virtio-bus.h"
  19. #include "hw/virtio/virtio-pci.h"
  20. #include "hw/virtio/virtio-crypto.h"
  21. #include "qapi/error.h"
  22. #include "qemu/module.h"
  23. typedef struct VirtIOCryptoPCI VirtIOCryptoPCI;
  24. /*
  25. * virtio-crypto-pci: This extends VirtioPCIProxy.
  26. */
  27. #define TYPE_VIRTIO_CRYPTO_PCI "virtio-crypto-pci"
  28. #define VIRTIO_CRYPTO_PCI(obj) \
  29. OBJECT_CHECK(VirtIOCryptoPCI, (obj), TYPE_VIRTIO_CRYPTO_PCI)
  30. struct VirtIOCryptoPCI {
  31. VirtIOPCIProxy parent_obj;
  32. VirtIOCrypto vdev;
  33. };
  34. static Property virtio_crypto_pci_properties[] = {
  35. DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags,
  36. VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, true),
  37. DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 2),
  38. DEFINE_PROP_END_OF_LIST(),
  39. };
  40. static void virtio_crypto_pci_realize(VirtIOPCIProxy *vpci_dev, Error **errp)
  41. {
  42. VirtIOCryptoPCI *vcrypto = VIRTIO_CRYPTO_PCI(vpci_dev);
  43. DeviceState *vdev = DEVICE(&vcrypto->vdev);
  44. if (vcrypto->vdev.conf.cryptodev == NULL) {
  45. error_setg(errp, "'cryptodev' parameter expects a valid object");
  46. return;
  47. }
  48. qdev_set_parent_bus(vdev, BUS(&vpci_dev->bus));
  49. virtio_pci_force_virtio_1(vpci_dev);
  50. object_property_set_bool(OBJECT(vdev), true, "realized", errp);
  51. object_property_set_link(OBJECT(vcrypto),
  52. OBJECT(vcrypto->vdev.conf.cryptodev), "cryptodev",
  53. NULL);
  54. }
  55. static void virtio_crypto_pci_class_init(ObjectClass *klass, void *data)
  56. {
  57. DeviceClass *dc = DEVICE_CLASS(klass);
  58. VirtioPCIClass *k = VIRTIO_PCI_CLASS(klass);
  59. PCIDeviceClass *pcidev_k = PCI_DEVICE_CLASS(klass);
  60. k->realize = virtio_crypto_pci_realize;
  61. set_bit(DEVICE_CATEGORY_MISC, dc->categories);
  62. dc->props = virtio_crypto_pci_properties;
  63. pcidev_k->class_id = PCI_CLASS_OTHERS;
  64. }
  65. static void virtio_crypto_initfn(Object *obj)
  66. {
  67. VirtIOCryptoPCI *dev = VIRTIO_CRYPTO_PCI(obj);
  68. virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev),
  69. TYPE_VIRTIO_CRYPTO);
  70. }
  71. static const VirtioPCIDeviceTypeInfo virtio_crypto_pci_info = {
  72. .generic_name = TYPE_VIRTIO_CRYPTO_PCI,
  73. .instance_size = sizeof(VirtIOCryptoPCI),
  74. .instance_init = virtio_crypto_initfn,
  75. .class_init = virtio_crypto_pci_class_init,
  76. };
  77. static void virtio_crypto_pci_register_types(void)
  78. {
  79. virtio_pci_types_register(&virtio_crypto_pci_info);
  80. }
  81. type_init(virtio_crypto_pci_register_types)