Lines Matching defs:e1000_softc
462 struct e1000_softc { struct
463 struct e1000_hw hw;
465 if_softc_ctx_t shared;
466 if_ctx_t ctx;
471 struct e1000_osdep osdep;
472 device_t dev;
473 struct cdev *led_dev;
475 struct em_tx_queue *tx_queues;
476 struct em_rx_queue *rx_queues;
477 struct if_irq irq;
479 struct resource *memory;
480 struct resource *flash;
481 struct resource *ioport;
483 struct resource *res;
484 void *tag;
485 u32 linkvec;
486 u32 ivars;
488 struct ifmedia *media;
489 int msix;
490 int if_flags;
491 int em_insert_vlan_header;
492 u32 ims;
493 bool in_detach;
495 u32 flags;
497 struct grouptask link_task;
499 u16 num_vlans;
500 u32 txd_cmd;
502 u32 rx_mbuf_sz;
504 int enable_aim;
506 u32 wol;
507 bool has_manage;
508 bool has_amt;
511 u8 *mta;
519 u32 shadow_vfta[EM_VFTA_SIZE];
522 u16 link_active;
523 u16 fc;
524 u16 link_speed;
525 u16 link_duplex;
526 u32 smartspeed;
527 u32 dmac;
528 u32 pba;
529 int link_mask;
530 int tso_automasked;
532 u64 que_mask;
535 struct e1000_fw_version fw_ver;
537 struct em_int_delay_info tx_int_delay;
538 struct em_int_delay_info tx_abs_int_delay;
539 struct em_int_delay_info rx_int_delay;
540 struct em_int_delay_info rx_abs_int_delay;
541 struct em_int_delay_info tx_itr;
544 unsigned long dropped_pkts;
568 void em_dump_rs(struct e1000_softc *); argument