| 1 | /* |
| 2 | * Vhost-user spi virtio device |
| 3 | * |
| 4 | * Copyright (C) 2025 Qualcomm Innovation Center, Inc. All Rights Reserved. |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #ifndef QEMU_VHOST_USER_SPI_H |
| 10 | #define QEMU_VHOST_USER_SPI_H |
| 11 | |
| 12 | #include "hw/virtio/virtio.h" |
| 13 | #include "hw/virtio/vhost.h" |
| 14 | #include "hw/virtio/vhost-user.h" |
| 15 | #include "hw/virtio/vhost-user-base.h" |
| 16 | |
| 17 | #define TYPE_VHOST_USER_SPI "vhost-user-spi-device" |
| 18 | |
| 19 | OBJECT_DECLARE_SIMPLE_TYPE(VHostUserSPI, VHOST_USER_SPI) |
| 20 | |
| 21 | struct VHostUserSPI { |
| 22 | VHostUserBase parent_obj; |
| 23 | }; |
| 24 | |
| 25 | #endif /* QEMU_VHOST_USER_SPI_H */ |