mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-18 23:52:14 -06:00
igb: Share common VF constants
The constants need to be consistent between the PF and VF. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
4847dabf67
commit
ff2b24c862
3 changed files with 13 additions and 12 deletions
10
hw/net/igb.c
10
hw/net/igb.c
|
@ -433,16 +433,16 @@ static void igb_pci_realize(PCIDevice *pci_dev, Error **errp)
|
||||||
|
|
||||||
pcie_ari_init(pci_dev, 0x150, 1);
|
pcie_ari_init(pci_dev, 0x150, 1);
|
||||||
|
|
||||||
pcie_sriov_pf_init(pci_dev, IGB_CAP_SRIOV_OFFSET, "igbvf",
|
pcie_sriov_pf_init(pci_dev, IGB_CAP_SRIOV_OFFSET, TYPE_IGBVF,
|
||||||
IGB_82576_VF_DEV_ID, IGB_MAX_VF_FUNCTIONS, IGB_MAX_VF_FUNCTIONS,
|
IGB_82576_VF_DEV_ID, IGB_MAX_VF_FUNCTIONS, IGB_MAX_VF_FUNCTIONS,
|
||||||
IGB_VF_OFFSET, IGB_VF_STRIDE);
|
IGB_VF_OFFSET, IGB_VF_STRIDE);
|
||||||
|
|
||||||
pcie_sriov_pf_init_vf_bar(pci_dev, 0,
|
pcie_sriov_pf_init_vf_bar(pci_dev, IGBVF_MMIO_BAR_IDX,
|
||||||
PCI_BASE_ADDRESS_MEM_TYPE_64 | PCI_BASE_ADDRESS_MEM_PREFETCH,
|
PCI_BASE_ADDRESS_MEM_TYPE_64 | PCI_BASE_ADDRESS_MEM_PREFETCH,
|
||||||
16 * KiB);
|
IGBVF_MMIO_SIZE);
|
||||||
pcie_sriov_pf_init_vf_bar(pci_dev, 3,
|
pcie_sriov_pf_init_vf_bar(pci_dev, IGBVF_MSIX_BAR_IDX,
|
||||||
PCI_BASE_ADDRESS_MEM_TYPE_64 | PCI_BASE_ADDRESS_MEM_PREFETCH,
|
PCI_BASE_ADDRESS_MEM_TYPE_64 | PCI_BASE_ADDRESS_MEM_PREFETCH,
|
||||||
16 * KiB);
|
IGBVF_MSIX_SIZE);
|
||||||
|
|
||||||
igb_init_net_peer(s, pci_dev, macaddr);
|
igb_init_net_peer(s, pci_dev, macaddr);
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,14 @@
|
||||||
|
|
||||||
#include "igb_regs.h"
|
#include "igb_regs.h"
|
||||||
|
|
||||||
|
#define TYPE_IGBVF "igbvf"
|
||||||
|
|
||||||
|
#define IGBVF_MMIO_BAR_IDX (0)
|
||||||
|
#define IGBVF_MSIX_BAR_IDX (3)
|
||||||
|
|
||||||
|
#define IGBVF_MMIO_SIZE (16 * 1024)
|
||||||
|
#define IGBVF_MSIX_SIZE (16 * 1024)
|
||||||
|
|
||||||
#define defreg(x) x = (E1000_##x >> 2)
|
#define defreg(x) x = (E1000_##x >> 2)
|
||||||
#define defreg_indexed(x, i) x##i = (E1000_##x(i) >> 2)
|
#define defreg_indexed(x, i) x##i = (E1000_##x(i) >> 2)
|
||||||
#define defreg_indexeda(x, i) x##i##_A = (E1000_##x##_A(i) >> 2)
|
#define defreg_indexeda(x, i) x##i##_A = (E1000_##x##_A(i) >> 2)
|
||||||
|
|
|
@ -50,15 +50,8 @@
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
|
|
||||||
#define TYPE_IGBVF "igbvf"
|
|
||||||
OBJECT_DECLARE_SIMPLE_TYPE(IgbVfState, IGBVF)
|
OBJECT_DECLARE_SIMPLE_TYPE(IgbVfState, IGBVF)
|
||||||
|
|
||||||
#define IGBVF_MMIO_BAR_IDX (0)
|
|
||||||
#define IGBVF_MSIX_BAR_IDX (3)
|
|
||||||
|
|
||||||
#define IGBVF_MMIO_SIZE (16 * 1024)
|
|
||||||
#define IGBVF_MSIX_SIZE (16 * 1024)
|
|
||||||
|
|
||||||
struct IgbVfState {
|
struct IgbVfState {
|
||||||
PCIDevice parent_obj;
|
PCIDevice parent_obj;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue