mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-04 06:26:54 +00:00
Both sharing mode and parittioin mode code can use the pci_find_vdev_by_pbdf and pci_find_vdev_by_vbdf functions defined in vdev.c instead, and remove the corresponding functions in other files. Tracked-On: #2534 Signed-off-by: dongshen <dongsheng.x.zhang@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
254 lines
6.4 KiB
C
254 lines
6.4 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$
|
|
*/
|
|
|
|
#include <vm.h>
|
|
#include <errno.h>
|
|
#include <logmsg.h>
|
|
#include "pci_priv.h"
|
|
|
|
|
|
/**
|
|
* @pre vpci != NULL
|
|
*/
|
|
static struct pci_vdev *sharing_mode_find_vdev_sos(union pci_bdf pbdf)
|
|
{
|
|
struct acrn_vm *vm;
|
|
struct acrn_vpci *vpci;
|
|
struct pci_vdev *vdev = NULL;
|
|
|
|
vm = get_sos_vm();
|
|
if (vm != NULL) {
|
|
vpci = &vm->vpci;
|
|
vdev = pci_find_vdev_by_pbdf(vpci, pbdf);
|
|
}
|
|
|
|
return vdev;
|
|
}
|
|
|
|
|
|
static void sharing_mode_cfgread(__unused struct acrn_vpci *vpci, union pci_bdf bdf,
|
|
uint32_t offset, uint32_t bytes, uint32_t *val)
|
|
{
|
|
struct pci_vdev *vdev;
|
|
bool handled = false;
|
|
uint32_t i;
|
|
|
|
vdev = sharing_mode_find_vdev_sos(bdf);
|
|
|
|
/* vdev == NULL: Could be hit for PCI enumeration from guests */
|
|
if ((vdev == NULL) || ((bytes != 1U) && (bytes != 2U) && (bytes != 4U))) {
|
|
*val = ~0U;
|
|
} else {
|
|
for (i = 0U; (i < vdev->nr_ops) && (!handled); i++) {
|
|
if (vdev->ops[i].cfgread != NULL) {
|
|
if (vdev->ops[i].cfgread(vdev, offset, bytes, val) == 0) {
|
|
handled = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Not handled by any handlers, passthru to physical device */
|
|
if (!handled) {
|
|
*val = pci_pdev_read_cfg(vdev->pdev->bdf, offset, bytes);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void sharing_mode_cfgwrite(__unused struct acrn_vpci *vpci, union pci_bdf bdf,
|
|
uint32_t offset, uint32_t bytes, uint32_t val)
|
|
{
|
|
struct pci_vdev *vdev;
|
|
bool handled = false;
|
|
uint32_t i;
|
|
|
|
if ((bytes == 1U) || (bytes == 2U) || (bytes == 4U)) {
|
|
vdev = sharing_mode_find_vdev_sos(bdf);
|
|
if (vdev != NULL) {
|
|
for (i = 0U; (i < vdev->nr_ops) && (!handled); i++) {
|
|
if (vdev->ops[i].cfgwrite != NULL) {
|
|
if (vdev->ops[i].cfgwrite(vdev, offset, bytes, val) == 0) {
|
|
handled = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Not handled by any handlers, passthru to physical device */
|
|
if (!handled) {
|
|
pci_pdev_write_cfg(vdev->pdev->bdf, offset, bytes, val);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @pre vm != NULL
|
|
* @pre pdev_ref != NULL
|
|
* @pre vm->vpci->pci_vdev_cnt <= CONFIG_MAX_PCI_DEV_NUM
|
|
* @pre vdev != NULL
|
|
*/
|
|
static struct pci_vdev *alloc_pci_vdev(const struct acrn_vm *vm, struct pci_pdev *pdev_ref)
|
|
{
|
|
struct pci_vdev *vdev = NULL;
|
|
struct acrn_vpci *vpci = (struct acrn_vpci *)&(vm->vpci);
|
|
|
|
if (vpci->pci_vdev_cnt < CONFIG_MAX_PCI_DEV_NUM) {
|
|
vdev = &vpci->pci_vdevs[vpci->pci_vdev_cnt];
|
|
vpci->pci_vdev_cnt++;
|
|
|
|
vdev->vpci = vpci;
|
|
/* vbdf equals to pbdf otherwise remapped */
|
|
vdev->vbdf = pdev_ref->bdf;
|
|
vdev->pdev = pdev_ref;
|
|
}
|
|
|
|
return vdev;
|
|
}
|
|
|
|
static void init_vdev_for_pdev(struct pci_pdev *pdev, const void *cb_data)
|
|
{
|
|
const struct acrn_vm *vm = (const struct acrn_vm *)cb_data;
|
|
struct pci_vdev *vdev;
|
|
|
|
vdev = alloc_pci_vdev(vm, pdev);
|
|
if (vdev != NULL) {
|
|
populate_msi_struct(vdev);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @pre vdev != NULL
|
|
*/
|
|
static int32_t sharing_mode_vpci_init(const struct acrn_vm *vm)
|
|
{
|
|
struct pci_vdev *vdev;
|
|
uint32_t i, j;
|
|
int32_t ret;
|
|
|
|
/*
|
|
* Only set up IO bitmap for SOS.
|
|
* IO/MMIO requests from non-sos_vm guests will be injected to device model.
|
|
*/
|
|
if (!is_sos_vm(vm)) {
|
|
ret = -ENODEV;
|
|
} else {
|
|
/* Build up vdev array for sos_vm */
|
|
pci_pdev_foreach(init_vdev_for_pdev, vm);
|
|
|
|
for (i = 0U; i < vm->vpci.pci_vdev_cnt; i++) {
|
|
vdev = (struct pci_vdev *)&(vm->vpci.pci_vdevs[i]);
|
|
for (j = 0U; j < vdev->nr_ops; j++) {
|
|
if (vdev->ops[j].init != NULL) {
|
|
(void)vdev->ops[j].init(vdev);
|
|
}
|
|
}
|
|
}
|
|
ret = 0;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* @pre vdev != NULL
|
|
*/
|
|
static void sharing_mode_vpci_deinit(const struct acrn_vm *vm)
|
|
{
|
|
struct pci_vdev *vdev;
|
|
uint32_t i, j;
|
|
|
|
if (is_sos_vm(vm)) {
|
|
for (i = 0U; i < vm->vpci.pci_vdev_cnt; i++) {
|
|
vdev = (struct pci_vdev *)&(vm->vpci.pci_vdevs[i]);
|
|
for (j = 0U; j < vdev->nr_ops; j++) {
|
|
if (vdev->ops[j].deinit != NULL) {
|
|
(void)vdev->ops[j].deinit(vdev);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void add_vdev_handler(struct pci_vdev *vdev, const struct pci_vdev_ops *ops)
|
|
{
|
|
if (vdev->nr_ops >= (MAX_VPCI_DEV_OPS - 1U)) {
|
|
pr_err("%s, adding too many handlers", __func__);
|
|
} else {
|
|
vdev->ops[vdev->nr_ops] = *ops;
|
|
vdev->nr_ops++;
|
|
}
|
|
}
|
|
|
|
const struct vpci_ops sharing_mode_vpci_ops = {
|
|
.init = sharing_mode_vpci_init,
|
|
.deinit = sharing_mode_vpci_deinit,
|
|
.cfgread = sharing_mode_cfgread,
|
|
.cfgwrite = sharing_mode_cfgwrite,
|
|
};
|
|
|
|
void vpci_set_ptdev_intr_info(const struct acrn_vm *target_vm, uint16_t vbdf, uint16_t pbdf)
|
|
{
|
|
struct pci_vdev *vdev;
|
|
union pci_bdf bdf;
|
|
|
|
bdf.value = pbdf;
|
|
vdev = sharing_mode_find_vdev_sos(bdf);
|
|
if (vdev == NULL) {
|
|
pr_err("%s, can't find PCI device for vm%d, vbdf (0x%x) pbdf (0x%x)", __func__,
|
|
target_vm->vm_id, vbdf, pbdf);
|
|
} else {
|
|
/* UOS may do BDF mapping */
|
|
vdev->vpci = (struct acrn_vpci *)&(target_vm->vpci);
|
|
vdev->vbdf.value = vbdf;
|
|
vdev->pdev->bdf.value = pbdf;
|
|
}
|
|
}
|
|
|
|
void vpci_reset_ptdev_intr_info(const struct acrn_vm *target_vm, uint16_t vbdf, uint16_t pbdf)
|
|
{
|
|
struct pci_vdev *vdev;
|
|
struct acrn_vm *vm;
|
|
union pci_bdf bdf;
|
|
|
|
bdf.value = pbdf;
|
|
vdev = sharing_mode_find_vdev_sos(bdf);
|
|
if (vdev == NULL) {
|
|
pr_err("%s, can't find PCI device for vm%d, vbdf (0x%x) pbdf (0x%x)", __func__,
|
|
target_vm->vm_id, vbdf, pbdf);
|
|
} else {
|
|
/* Return this PCI device to SOS */
|
|
if (vdev->vpci->vm == target_vm) {
|
|
vm = get_sos_vm();
|
|
|
|
if (vm != NULL) {
|
|
vdev->vpci = &vm->vpci;
|
|
}
|
|
}
|
|
}
|
|
}
|