154 lines
4.1 KiB
C
154 lines
4.1 KiB
C
/*-
|
|
* Copyright (c) 2011 NetApp, Inc.
|
|
* Copyright (c) 2018 Intel Corporation
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef VPCI_H_
|
|
#define VPCI_H_
|
|
|
|
#include <pci.h>
|
|
|
|
struct pci_vdev;
|
|
struct pci_vdev_ops {
|
|
int32_t (*init)(struct pci_vdev *vdev);
|
|
|
|
int32_t (*deinit)(struct pci_vdev *vdev);
|
|
|
|
int32_t (*cfgwrite)(struct pci_vdev *vdev, uint32_t offset,
|
|
uint32_t bytes, uint32_t val);
|
|
|
|
int32_t (*cfgread)(const struct pci_vdev *vdev, uint32_t offset,
|
|
uint32_t bytes, uint32_t *val);
|
|
};
|
|
|
|
struct pci_bar {
|
|
uint64_t base;
|
|
uint64_t size;
|
|
enum pci_bar_type type;
|
|
};
|
|
|
|
struct msix_table_entry {
|
|
uint64_t addr;
|
|
uint32_t data;
|
|
uint32_t vector_control;
|
|
};
|
|
|
|
struct pci_pdev {
|
|
/* The bar info of the physical PCI device. */
|
|
struct pci_bar bar[PCI_BAR_COUNT];
|
|
|
|
/* The bus/device/function triple of the physical PCI device. */
|
|
union pci_bdf bdf;
|
|
};
|
|
|
|
/* MSI capability structure */
|
|
struct pci_msi {
|
|
uint32_t capoff;
|
|
uint32_t caplen;
|
|
};
|
|
|
|
/* MSI-X capability structure */
|
|
struct pci_msix {
|
|
struct msix_table_entry tables[CONFIG_MAX_MSIX_TABLE_NUM];
|
|
uint64_t mmio_gpa;
|
|
uint64_t mmio_hva;
|
|
uint64_t mmio_size;
|
|
uint64_t intercepted_gpa;
|
|
uint64_t intercepted_size;
|
|
uint32_t capoff;
|
|
uint32_t caplen;
|
|
uint32_t table_bar;
|
|
uint32_t table_offset;
|
|
uint32_t table_count;
|
|
};
|
|
|
|
union pci_cfgdata {
|
|
uint8_t data_8[PCI_REGMAX + 1U];
|
|
uint16_t data_16[(PCI_REGMAX + 1U) >> 2U];
|
|
uint32_t data_32[(PCI_REGMAX + 1U) >> 4U];
|
|
};
|
|
|
|
struct pci_vdev {
|
|
#ifndef CONFIG_PARTITION_MODE
|
|
#define MAX_VPCI_DEV_OPS 4U
|
|
struct pci_vdev_ops ops[MAX_VPCI_DEV_OPS];
|
|
uint32_t nr_ops;
|
|
#else
|
|
const struct pci_vdev_ops *ops;
|
|
#endif
|
|
|
|
struct acrn_vpci *vpci;
|
|
/* The bus/device/function triple of the virtual PCI device. */
|
|
union pci_bdf vbdf;
|
|
|
|
struct pci_pdev pdev;
|
|
|
|
union pci_cfgdata cfgdata;
|
|
|
|
/* The bar info of the virtual PCI device. */
|
|
struct pci_bar bar[PCI_BAR_COUNT];
|
|
|
|
#ifndef CONFIG_PARTITION_MODE
|
|
struct pci_msi msi;
|
|
struct pci_msix msix;
|
|
#endif
|
|
};
|
|
|
|
struct pci_addr_info {
|
|
union pci_bdf cached_bdf;
|
|
uint32_t cached_reg;
|
|
bool cached_enable;
|
|
};
|
|
|
|
struct vpci_ops {
|
|
int32_t (*init)(struct acrn_vm *vm);
|
|
void (*deinit)(struct acrn_vm *vm);
|
|
void (*cfgread)(struct acrn_vpci *vpci, union pci_bdf vbdf, uint32_t offset,
|
|
uint32_t bytes, uint32_t *val);
|
|
void (*cfgwrite)(struct acrn_vpci *vpci, union pci_bdf vbdf, uint32_t offset,
|
|
uint32_t bytes, uint32_t val);
|
|
};
|
|
|
|
|
|
struct acrn_vpci {
|
|
struct acrn_vm *vm;
|
|
struct pci_addr_info addr_info;
|
|
const struct vpci_ops *ops;
|
|
};
|
|
|
|
#ifdef CONFIG_PARTITION_MODE
|
|
extern const struct pci_vdev_ops pci_ops_vdev_hostbridge;
|
|
extern const struct pci_vdev_ops pci_ops_vdev_pt;
|
|
#endif
|
|
|
|
void vpci_init(struct acrn_vm *vm);
|
|
void vpci_cleanup(struct acrn_vm *vm);
|
|
void vpci_set_ptdev_intr_info(const struct acrn_vm *target_vm, uint16_t vbdf, uint16_t pbdf);
|
|
void vpci_reset_ptdev_intr_info(const struct acrn_vm *target_vm, uint16_t vbdf, uint16_t pbdf);
|
|
|
|
#endif /* VPCI_H_ */
|