sys/dev/ti/if_ti.c
1003
ti_dma_ring_alloc(struct ti_softc *sc, bus_size_t alignment, bus_size_t maxsize,
sys/dev/ti/if_ti.c
1040
ti_dma_ring_free(struct ti_softc *sc, bus_dma_tag_t *tag, uint8_t **ring,
sys/dev/ti/if_ti.c
1059
ti_dma_alloc(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1269
ti_dma_free(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1388
ti_newbuf_std(struct ti_softc *sc, int i)
sys/dev/ti/if_ti.c
1443
ti_newbuf_mini(struct ti_softc *sc, int i)
sys/dev/ti/if_ti.c
1500
ti_newbuf_jumbo(struct ti_softc *sc, int i, struct mbuf *dummy)
sys/dev/ti/if_ti.c
1570
ti_newbuf_jumbo(struct ti_softc *sc, int idx, struct mbuf *m_old)
sys/dev/ti/if_ti.c
1719
ti_init_rx_ring_std(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1736
ti_free_rx_ring_std(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1757
ti_init_rx_ring_jumbo(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1774
ti_free_rx_ring_jumbo(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1795
ti_init_rx_ring_mini(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1811
ti_free_rx_ring_mini(struct ti_softc *sc)
sys/dev/ti/if_ti.c
183
static void ti_txeof(struct ti_softc *);
sys/dev/ti/if_ti.c
1835
ti_free_tx_ring(struct ti_softc *sc)
sys/dev/ti/if_ti.c
184
static void ti_rxeof(struct ti_softc *);
sys/dev/ti/if_ti.c
186
static int ti_encap(struct ti_softc *, struct mbuf **);
sys/dev/ti/if_ti.c
1860
ti_init_tx_ring(struct ti_softc *sc)
sys/dev/ti/if_ti.c
1886
struct ti_softc *sc = arg;
sys/dev/ti/if_ti.c
1914
struct ti_softc *sc = arg;
sys/dev/ti/if_ti.c
195
static void ti_init2(struct ti_softc *);
sys/dev/ti/if_ti.c
1955
ti_setmulti(struct ti_softc *sc)
sys/dev/ti/if_ti.c
196
static void ti_stop(struct ti_softc *);
sys/dev/ti/if_ti.c
1993
ti_64bitslot_war(struct ti_softc *sc)
sys/dev/ti/if_ti.c
200
static int ti_ifmedia_upd_locked(struct ti_softc *);
sys/dev/ti/if_ti.c
2019
ti_chipinit(struct ti_softc *sc)
sys/dev/ti/if_ti.c
203
static uint32_t ti_eeprom_putbyte(struct ti_softc *, int);
sys/dev/ti/if_ti.c
204
static uint8_t ti_eeprom_getbyte(struct ti_softc *, int, uint8_t *);
sys/dev/ti/if_ti.c
205
static int ti_read_eeprom(struct ti_softc *, caddr_t, int, int);
sys/dev/ti/if_ti.c
209
static void ti_setmulti(struct ti_softc *);
sys/dev/ti/if_ti.c
211
static void ti_mem_read(struct ti_softc *, uint32_t, uint32_t, void *);
sys/dev/ti/if_ti.c
212
static void ti_mem_write(struct ti_softc *, uint32_t, uint32_t, void *);
sys/dev/ti/if_ti.c
213
static void ti_mem_zero(struct ti_softc *, uint32_t, uint32_t);
sys/dev/ti/if_ti.c
214
static int ti_copy_mem(struct ti_softc *, uint32_t, uint32_t, caddr_t, int,
sys/dev/ti/if_ti.c
216
static int ti_copy_scratch(struct ti_softc *, uint32_t, uint32_t, caddr_t,
sys/dev/ti/if_ti.c
2167
ti_gibinit(struct ti_softc *sc)
sys/dev/ti/if_ti.c
219
static void ti_loadfw(struct ti_softc *);
sys/dev/ti/if_ti.c
220
static void ti_cmd(struct ti_softc *, struct ti_cmd_desc *);
sys/dev/ti/if_ti.c
221
static void ti_cmd_ext(struct ti_softc *, struct ti_cmd_desc *, caddr_t, int);
sys/dev/ti/if_ti.c
222
static void ti_handle_events(struct ti_softc *);
sys/dev/ti/if_ti.c
224
static int ti_dma_alloc(struct ti_softc *);
sys/dev/ti/if_ti.c
225
static void ti_dma_free(struct ti_softc *);
sys/dev/ti/if_ti.c
226
static int ti_dma_ring_alloc(struct ti_softc *, bus_size_t, bus_size_t,
sys/dev/ti/if_ti.c
228
static void ti_dma_ring_free(struct ti_softc *, bus_dma_tag_t *, uint8_t **,
sys/dev/ti/if_ti.c
230
static int ti_newbuf_std(struct ti_softc *, int);
sys/dev/ti/if_ti.c
231
static int ti_newbuf_mini(struct ti_softc *, int);
sys/dev/ti/if_ti.c
232
static int ti_newbuf_jumbo(struct ti_softc *, int, struct mbuf *);
sys/dev/ti/if_ti.c
233
static int ti_init_rx_ring_std(struct ti_softc *);
sys/dev/ti/if_ti.c
234
static void ti_free_rx_ring_std(struct ti_softc *);
sys/dev/ti/if_ti.c
235
static int ti_init_rx_ring_jumbo(struct ti_softc *);
sys/dev/ti/if_ti.c
236
static void ti_free_rx_ring_jumbo(struct ti_softc *);
sys/dev/ti/if_ti.c
237
static int ti_init_rx_ring_mini(struct ti_softc *);
sys/dev/ti/if_ti.c
2375
struct ti_softc *sc;
sys/dev/ti/if_ti.c
238
static void ti_free_rx_ring_mini(struct ti_softc *);
sys/dev/ti/if_ti.c
239
static void ti_free_tx_ring(struct ti_softc *);
sys/dev/ti/if_ti.c
240
static int ti_init_tx_ring(struct ti_softc *);
sys/dev/ti/if_ti.c
241
static void ti_discard_std(struct ti_softc *, int);
sys/dev/ti/if_ti.c
243
static void ti_discard_jumbo(struct ti_softc *, int);
sys/dev/ti/if_ti.c
245
static void ti_discard_mini(struct ti_softc *, int);
sys/dev/ti/if_ti.c
247
static int ti_64bitslot_war(struct ti_softc *);
sys/dev/ti/if_ti.c
248
static int ti_chipinit(struct ti_softc *);
sys/dev/ti/if_ti.c
249
static int ti_gibinit(struct ti_softc *);
sys/dev/ti/if_ti.c
256
static void ti_sysctl_node(struct ti_softc *);
sys/dev/ti/if_ti.c
2573
struct ti_softc *sc;
sys/dev/ti/if_ti.c
2671
ti_discard_std(struct ti_softc *sc, int i)
sys/dev/ti/if_ti.c
2688
ti_discard_mini(struct ti_softc *sc, int i)
sys/dev/ti/if_ti.c
270
sizeof(struct ti_softc)
sys/dev/ti/if_ti.c
2706
ti_discard_jumbo(struct ti_softc *sc, int i)
sys/dev/ti/if_ti.c
2735
ti_rxeof(struct ti_softc *sc)
sys/dev/ti/if_ti.c
281
ti_eeprom_putbyte(struct ti_softc *sc, int byte)
sys/dev/ti/if_ti.c
2905
ti_txeof(struct ti_softc *sc)
sys/dev/ti/if_ti.c
2957
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3004
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3033
ti_encap(struct ti_softc *sc, struct mbuf **m_head)
sys/dev/ti/if_ti.c
3129
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3144
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3194
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3205
struct ti_softc *sc = xsc;
sys/dev/ti/if_ti.c
3220
static void ti_init2(struct ti_softc *sc)
sys/dev/ti/if_ti.c
326
ti_eeprom_getbyte(struct ti_softc *sc, int addr, uint8_t *dest)
sys/dev/ti/if_ti.c
3328
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3340
ti_ifmedia_upd_locked(struct ti_softc *sc)
sys/dev/ti/if_ti.c
3441
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3492
struct ti_softc *sc = if_getsoftc(ifp);
sys/dev/ti/if_ti.c
3594
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3610
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3630
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3886
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3916
ti_stop(struct ti_softc *sc)
sys/dev/ti/if_ti.c
3967
struct ti_softc *sc;
sys/dev/ti/if_ti.c
3978
ti_sysctl_node(struct ti_softc *sc)
sys/dev/ti/if_ti.c
400
ti_read_eeprom(struct ti_softc *sc, caddr_t dest, int off, int cnt)
sys/dev/ti/if_ti.c
420
ti_mem_read(struct ti_softc *sc, uint32_t addr, uint32_t len, void *buf)
sys/dev/ti/if_ti.c
449
ti_mem_write(struct ti_softc *sc, uint32_t addr, uint32_t len, void *buf)
sys/dev/ti/if_ti.c
478
ti_mem_zero(struct ti_softc *sc, uint32_t addr, uint32_t len)
sys/dev/ti/if_ti.c
499
ti_copy_mem(struct ti_softc *sc, uint32_t tigon_addr, uint32_t len,
sys/dev/ti/if_ti.c
696
ti_copy_scratch(struct ti_softc *sc, uint32_t tigon_addr, uint32_t len,
sys/dev/ti/if_ti.c
826
ti_loadfw(struct ti_softc *sc)
sys/dev/ti/if_ti.c
883
ti_cmd(struct ti_softc *sc, struct ti_cmd_desc *cmd)
sys/dev/ti/if_ti.c
899
ti_cmd_ext(struct ti_softc *sc, struct ti_cmd_desc *cmd, caddr_t arg, int len)
sys/dev/ti/if_ti.c
920
ti_handle_events(struct ti_softc *sc)