Lines Matching refs:IGBState

66 OBJECT_DECLARE_SIMPLE_TYPE(IGBState, IGB)
68 struct IGBState { struct
101 IGBState *s = IGB(dev); in igb_write_config() argument
118 IGBState *s = opaque; in igb_mmio_read()
125 IGBState *s = opaque; in igb_mmio_write()
131 IGBState *s = opaque; in igb_vf_reset()
136 igb_io_get_reg_index(IGBState *s, uint32_t *idx) in igb_io_get_reg_index()
160 IGBState *s = opaque; in igb_io_read()
184 IGBState *s = opaque; in igb_io_write()
227 IGBState *s = qemu_get_nic_opaque(nc); in igb_nc_can_receive()
234 IGBState *s = qemu_get_nic_opaque(nc); in igb_nc_receive_iov()
241 IGBState *s = qemu_get_nic_opaque(nc); in igb_nc_receive()
248 IGBState *s = qemu_get_nic_opaque(nc); in igb_set_link_status()
286 static void igb_core_realize(IGBState *s) in igb_core_realize()
293 igb_init_msix(IGBState *s) in igb_init_msix()
314 igb_cleanup_msix(IGBState *s) in igb_cleanup_msix()
321 igb_init_net_peer(IGBState *s, PCIDevice *pci_dev, uint8_t *macaddr) in igb_init_net_peer()
383 IGBState *s = IGB(pci_dev); in igb_pci_realize()
476 IGBState *s = IGB(pci_dev); in igb_pci_uninit()
493 IGBState *s = IGB(obj); in igb_qdev_reset_hold()
502 IGBState *s = opaque; in igb_pre_save()
513 IGBState *s = opaque; in igb_post_load()
573 VMSTATE_PCI_DEVICE(parent_obj, IGBState),
574 VMSTATE_MSIX(parent_obj, IGBState),
576 VMSTATE_UINT32(ioaddr, IGBState),
577 VMSTATE_UINT8(core.rx_desc_len, IGBState),
578 VMSTATE_UINT16_ARRAY(core.eeprom, IGBState, IGB_EEPROM_SIZE),
579 VMSTATE_UINT16_ARRAY(core.phy, IGBState, MAX_PHY_REG_ADDRESS + 1),
580 VMSTATE_UINT32_ARRAY(core.mac, IGBState, E1000E_MAC_SIZE),
581 VMSTATE_UINT8_ARRAY(core.permanent_mac, IGBState, ETH_ALEN),
583 VMSTATE_IGB_INTR_DELAY_TIMER_ARRAY(core.eitr, IGBState,
586 VMSTATE_UINT32_ARRAY(core.eitr_guest_value, IGBState, IGB_INTR_NUM),
588 VMSTATE_STRUCT_ARRAY(core.tx, IGBState, IGB_NUM_QUEUES, 0,
591 VMSTATE_INT64(core.timadj, IGBState),
598 DEFINE_NIC_PROPERTIES(IGBState, conf),
599 DEFINE_PROP_BOOL("x-pcie-flr-init", IGBState, has_flr, true),
626 IGBState *s = IGB(obj); in igb_instance_init()
635 .instance_size = sizeof(IGBState),