mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-25 02:40:37 +00:00
This commit moves struct acrn_vm under common header vm.h, and move some x86-specific members of struct acrn_vm into arch_vm. This commit focuses on struct cleanup only. API cleanup will be in future patch series. The affected members are: e820_entry_num e820_entries wire_mode wbinvd_lock vlapic_mode_lock vcpuid_entry_nr vcpuid_level vcpuid_xlevel vcpuid_entries reset_control pm sworld_control sworld_snapshot intr_inject_delay_delta Moved to common vm.h: ept_lock -> rename to stg2pt_lock ept_pgtable -> rename to stg2_pgtable nworld_eptp -> rename to root_stg2ptp emul_mmio_lock nr_emul_mmio_regions emul_mmio emul_pio To avoid circular dependency, some in-header helpers are also moved into common vm.h. Tracked-On: #8830 Signed-off-by: Yifan Liu <yifan1.liu@intel.com> Reviewed-by: Fei Li <fei1.li@intel.com> Acked-by: Wang Yu1 <yu1.wang@intel.com>
57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <vm.h>
|
|
#include <errno.h>
|
|
#include <logmsg.h>
|
|
#include <pci.h>
|
|
#include "vpci_priv.h"
|
|
|
|
/* config space of dummy multifunction device */
|
|
#define PCI_DUMMY_DEVICE_VENDOR 0x1D94U
|
|
#define PCI_DUMMY_DEVICE_ID 0x145AU
|
|
#define DUMMY_MF_REV 0x1U
|
|
#define DUMMY_MF_CLASS 0x0U
|
|
|
|
static void init_vpci_mf_dev(struct pci_vdev *vdev)
|
|
{
|
|
pci_vdev_write_vcfg(vdev, PCIR_VENDOR, 2U, PCI_DUMMY_DEVICE_VENDOR);
|
|
pci_vdev_write_vcfg(vdev, PCIR_DEVICE, 2U, PCI_DUMMY_DEVICE_ID);
|
|
pci_vdev_write_vcfg(vdev, PCIR_REVID, 1U, DUMMY_MF_REV);
|
|
pci_vdev_write_vcfg(vdev, PCIR_CLASS, 1U, DUMMY_MF_CLASS);
|
|
pci_vdev_write_vcfg(vdev, PCIR_HDRTYPE, 1U, PCIM_HDRTYPE_NORMAL | PCIM_MFDEV);
|
|
|
|
vdev->parent_user = NULL;
|
|
vdev->user = vdev;
|
|
}
|
|
|
|
static void deinit_vpci_mf_dev(struct pci_vdev *vdev)
|
|
{
|
|
vdev->parent_user = NULL;
|
|
vdev->user = NULL;
|
|
}
|
|
|
|
static int32_t read_vpci_mf_dev(struct pci_vdev *vdev, uint32_t offset,
|
|
uint32_t bytes, uint32_t *val)
|
|
{
|
|
*val = pci_vdev_read_vcfg(vdev, offset, bytes);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int32_t write_vpci_mf_dev(__unused struct pci_vdev *vdev, __unused uint32_t offset,
|
|
__unused uint32_t bytes, __unused uint32_t val)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
const struct pci_vdev_ops vpci_mf_dev_ops = {
|
|
.init_vdev = init_vpci_mf_dev,
|
|
.deinit_vdev = deinit_vpci_mf_dev,
|
|
.write_vdev_cfg = write_vpci_mf_dev,
|
|
.read_vdev_cfg = read_vpci_mf_dev,
|
|
};
|