Lines Matching defs:enic_softc
73 struct enic_softc { struct
74 device_t sc_dev; /* base device glue */
75 struct ethercom sc_ethercom; /* Ethernet common part */
76 struct ifmedia sc_media; /* our supported media */
78 struct _Enic *sc_regs; /* hw registers */
80 int sc_havecarrier; /* carrier status */
81 void *sc_sh; /* shutdownhook cookie */
82 int inited;
84 int sc_no_rd;
85 int sc_n_recv;
86 int sc_recv_h;
89 struct bufmap sc_recv[SC_MAX_N_RECV];
91 int sc_no_td;
92 int sc_n_xmit;
93 int sc_xmit_h;
96 struct bufmap sc_xmit[SC_MAX_N_XMIT];
97 bool sc_txbusy;
100 int xhit;
101 int xmiss;
102 int tfull;
126 void enic_rint(struct enic_softc *, uint32_t, paddr_t); argument