aboutsummaryrefslogtreecommitdiff
path: root/include/hw/virtio/virtio-md-pci.h
blob: f9fa857aecd0d8a4b8a98d49ac90a9311776f47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Abstract virtio based memory device
 *
 * Copyright (C) 2023 Red Hat, Inc.
 *
 * Authors:
 *  David Hildenbrand <david@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.
 * See the COPYING file in the top-level directory.
 */

#ifndef HW_VIRTIO_MD_PCI_H
#define HW_VIRTIO_MD_PCI_H

#include "hw/virtio/virtio-pci.h"
#include "qom/object.h"

/*
 * virtio-md-pci: This extends VirtioPCIProxy.
 */
#define TYPE_VIRTIO_MD_PCI "virtio-md-pci"

OBJECT_DECLARE_TYPE(VirtIOMDPCI, VirtIOMDPCIClass, VIRTIO_MD_PCI)

struct VirtIOMDPCIClass {
    /* private */
    VirtioPCIClass parent;
};

struct VirtIOMDPCI {
    VirtIOPCIProxy parent_obj;
};

void virtio_md_pci_pre_plug(VirtIOMDPCI *vmd, MachineState *ms, Error **errp);
void virtio_md_pci_plug(VirtIOMDPCI *vmd, MachineState *ms, Error **errp);
void virtio_md_pci_unplug_request(VirtIOMDPCI *vmd, MachineState *ms,
                                  Error **errp);
void virtio_md_pci_unplug(VirtIOMDPCI *vmd, MachineState *ms, Error **errp);

#endif