1 /* 2 * Copyright (c) 2021 Intel Corporation. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef __VRP_H 9 #define __VRP_H 10 11 #include "vpci.h" 12 13 #define VRP_VENDOR 0x8086U 14 #define VRP_DEVICE 0x9d14U 15 16 extern const struct pci_vdev_ops vrp_ops; 17 18 int32_t create_vrp(struct acrn_vm *vm, struct acrn_vdev *dev); 19 int32_t destroy_vrp(struct pci_vdev *vdev); 20 21 #endif 22