Lines Matching refs:age_softc
96 static int age_dma_alloc(struct age_softc *);
97 static void age_dma_free(struct age_softc *);
98 static void age_get_macaddr(struct age_softc *, uint8_t[]);
99 static void age_phy_reset(struct age_softc *);
101 static int age_encap(struct age_softc *, struct mbuf *);
102 static void age_init_tx_ring(struct age_softc *);
103 static int age_init_rx_ring(struct age_softc *);
104 static void age_init_rr_ring(struct age_softc *);
105 static void age_init_cmb_block(struct age_softc *);
106 static void age_init_smb_block(struct age_softc *);
107 static int age_newbuf(struct age_softc *, struct age_rxdesc *, int);
108 static void age_mac_config(struct age_softc *);
109 static void age_txintr(struct age_softc *, int);
110 static void age_rxeof(struct age_softc *sc, struct rx_rdesc *);
111 static void age_rxintr(struct age_softc *, int);
113 static void age_reset(struct age_softc *);
115 static void age_stats_update(struct age_softc *);
116 static void age_stop_txmac(struct age_softc *);
117 static void age_stop_rxmac(struct age_softc *);
118 static void age_rxvlan(struct age_softc *sc);
119 static void age_rxfilter(struct age_softc *);
121 CFATTACH_DECL_NEW(age, sizeof(struct age_softc),
141 struct age_softc *sc = device_private(self); in age_attach()
316 struct age_softc *sc = device_private(self); in age_detach()
351 struct age_softc *sc = device_private(dev); in age_miibus_readreg()
383 struct age_softc *sc = device_private(dev); in age_miibus_writereg()
416 struct age_softc *sc = ifp->if_softc; in age_miibus_statchg()
459 struct age_softc *sc = ifp->if_softc; in age_mediastatus()
473 struct age_softc *sc = ifp->if_softc; in age_mediachange()
491 struct age_softc *sc = arg; in age_intr()
562 age_get_macaddr(struct age_softc *sc, uint8_t eaddr[]) in age_get_macaddr()
609 age_phy_reset(struct age_softc *sc) in age_phy_reset()
687 age_dma_alloc(struct age_softc *sc) in age_dma_alloc()
976 age_dma_free(struct age_softc *sc) in age_dma_free()
1057 struct age_softc *sc = ifp->if_softc; in age_start()
1109 struct age_softc *sc = ifp->if_softc; in age_watchdog()
1135 struct age_softc *sc; in age_shutdown()
1148 struct age_softc *sc = ifp->if_softc; in age_ioctl()
1165 age_mac_config(struct age_softc *sc) in age_mac_config()
1201 struct age_softc *sc = device_private(dv); in age_resume()
1219 age_encap(struct age_softc *sc, struct mbuf * const m) in age_encap()
1335 age_txintr(struct age_softc *sc, int tpd_cons) in age_txintr()
1393 age_rxeof(struct age_softc *sc, struct rx_rdesc *rxrd) in age_rxeof()
1540 age_rxintr(struct age_softc *sc, int rr_prod) in age_rxintr()
1594 struct age_softc *sc = xsc; in age_tick()
1606 age_reset(struct age_softc *sc) in age_reset()
1632 struct age_softc *sc = ifp->if_softc; in age_init()
1910 struct age_softc *sc = ifp->if_softc; in age_stop()
1986 age_stats_update(struct age_softc *sc) in age_stats_update()
2087 age_stop_txmac(struct age_softc *sc) in age_stop_txmac()
2114 age_stop_rxmac(struct age_softc *sc) in age_stop_rxmac()
2141 age_init_tx_ring(struct age_softc *sc) in age_init_tx_ring()
2163 age_init_rx_ring(struct age_softc *sc) in age_init_rx_ring()
2187 age_init_rr_ring(struct age_softc *sc) in age_init_rr_ring()
2201 age_init_cmb_block(struct age_softc *sc) in age_init_cmb_block()
2213 age_init_smb_block(struct age_softc *sc) in age_init_smb_block()
2224 age_newbuf(struct age_softc *sc, struct age_rxdesc *rxd, int init) in age_newbuf()
2274 age_rxvlan(struct age_softc *sc) in age_rxvlan()
2286 age_rxfilter(struct age_softc *sc) in age_rxfilter()