Symbol: bge_softc
sys/dev/bge/if_bge.c
1010
bge_read_nvram(struct bge_softc *sc, caddr_t dest, int off, int cnt)
sys/dev/bge/if_bge.c
1035
bge_eeprom_getbyte(struct bge_softc *sc, int addr, uint8_t *dest)
sys/dev/bge/if_bge.c
1078
bge_read_eeprom(struct bge_softc *sc, caddr_t dest, int off, int cnt)
sys/dev/bge/if_bge.c
1096
struct bge_softc *sc;
sys/dev/bge/if_bge.c
1150
struct bge_softc *sc;
sys/dev/bge/if_bge.c
1200
struct bge_softc *sc;
sys/dev/bge/if_bge.c
1272
bge_newbuf_std(struct bge_softc *sc, int i)
sys/dev/bge/if_bge.c
1331
bge_newbuf_jumbo(struct bge_softc *sc, int i)
sys/dev/bge/if_bge.c
1414
bge_init_rx_ring_std(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1436
bge_free_rx_ring_std(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1456
bge_init_rx_ring_jumbo(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1486
bge_free_rx_ring_jumbo(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1506
bge_free_tx_ring(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1529
bge_init_tx_ring(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1556
bge_setpromisc(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1584
bge_setmulti(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1611
bge_setvlan(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1627
bge_sig_pre_reset(struct bge_softc *sc, int type)
sys/dev/bge/if_bge.c
1658
bge_sig_post_reset(struct bge_softc *sc, int type)
sys/dev/bge/if_bge.c
1679
bge_sig_legacy(struct bge_softc *sc, int type)
sys/dev/bge/if_bge.c
1697
bge_stop_fw(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1716
bge_dma_swap_options(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1732
bge_chipinit(struct bge_softc *sc)
sys/dev/bge/if_bge.c
1919
bge_blockinit(struct bge_softc *sc)
sys/dev/bge/if_bge.c
2705
struct bge_softc *sc;
sys/dev/bge/if_bge.c
2740
bge_dma_free(struct bge_softc *sc)
sys/dev/bge/if_bge.c
2864
bge_dma_ring_alloc(struct bge_softc *sc, bus_size_t alignment,
sys/dev/bge/if_bge.c
2924
bge_dma_alloc(struct bge_softc *sc)
sys/dev/bge/if_bge.c
3134
bge_has_multiple_ports(struct bge_softc *sc)
sys/dev/bge/if_bge.c
3153
bge_can_use_msi(struct bge_softc *sc)
sys/dev/bge/if_bge.c
3195
bge_mbox_reorder(struct bge_softc *sc)
sys/dev/bge/if_bge.c
3236
bge_devinfo(struct bge_softc *sc)
sys/dev/bge/if_bge.c
3292
struct bge_softc *sc;
sys/dev/bge/if_bge.c
376
typedef int (*bge_eaddr_fcn_t)(struct bge_softc *, uint8_t[]);
sys/dev/bge/if_bge.c
383
static void bge_release_resources(struct bge_softc *);
sys/dev/bge/if_bge.c
385
static int bge_dma_alloc(struct bge_softc *);
sys/dev/bge/if_bge.c
386
static void bge_dma_free(struct bge_softc *);
sys/dev/bge/if_bge.c
387
static int bge_dma_ring_alloc(struct bge_softc *, bus_size_t, bus_size_t,
sys/dev/bge/if_bge.c
390
static void bge_devinfo(struct bge_softc *);
sys/dev/bge/if_bge.c
391
static int bge_mbox_reorder(struct bge_softc *);
sys/dev/bge/if_bge.c
393
static int bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[]);
sys/dev/bge/if_bge.c
3938
struct bge_softc *sc;
sys/dev/bge/if_bge.c
394
static int bge_get_eaddr_mem(struct bge_softc *, uint8_t[]);
sys/dev/bge/if_bge.c
395
static int bge_get_eaddr_nvram(struct bge_softc *, uint8_t[]);
sys/dev/bge/if_bge.c
396
static int bge_get_eaddr_eeprom(struct bge_softc *, uint8_t[]);
sys/dev/bge/if_bge.c
397
static int bge_get_eaddr(struct bge_softc *, uint8_t[]);
sys/dev/bge/if_bge.c
3972
bge_release_resources(struct bge_softc *sc)
sys/dev/bge/if_bge.c
399
static void bge_txeof(struct bge_softc *, uint16_t);
sys/dev/bge/if_bge.c
400
static void bge_rxcsum(struct bge_softc *, struct bge_rx_bd *, struct mbuf *);
sys/dev/bge/if_bge.c
4008
bge_reset(struct bge_softc *sc)
sys/dev/bge/if_bge.c
401
static int bge_rxeof(struct bge_softc *, uint16_t, int);
sys/dev/bge/if_bge.c
4012
void (*write_op)(struct bge_softc *, int, int);
sys/dev/bge/if_bge.c
403
static void bge_asf_driver_up (struct bge_softc *);
sys/dev/bge/if_bge.c
405
static void bge_stats_clear_regs(struct bge_softc *);
sys/dev/bge/if_bge.c
406
static void bge_stats_update(struct bge_softc *);
sys/dev/bge/if_bge.c
407
static void bge_stats_update_regs(struct bge_softc *);
sys/dev/bge/if_bge.c
409
static struct mbuf *bge_setup_tso(struct bge_softc *, struct mbuf *,
sys/dev/bge/if_bge.c
411
static int bge_encap(struct bge_softc *, struct mbuf **, uint32_t *);
sys/dev/bge/if_bge.c
418
static void bge_start_tx(struct bge_softc *, uint32_t);
sys/dev/bge/if_bge.c
420
static void bge_init_locked(struct bge_softc *);
sys/dev/bge/if_bge.c
422
static void bge_stop_block(struct bge_softc *, bus_size_t, uint32_t);
sys/dev/bge/if_bge.c
423
static void bge_stop(struct bge_softc *);
sys/dev/bge/if_bge.c
424
static void bge_watchdog(struct bge_softc *);
sys/dev/bge/if_bge.c
4262
bge_rxreuse_std(struct bge_softc *sc, int i)
sys/dev/bge/if_bge.c
4274
bge_rxreuse_jumbo(struct bge_softc *sc, int i)
sys/dev/bge/if_bge.c
4298
bge_rxeof(struct bge_softc *sc, uint16_t rx_prod, int holdlck)
sys/dev/bge/if_bge.c
431
static uint8_t bge_nvram_getbyte(struct bge_softc *, int, uint8_t *);
sys/dev/bge/if_bge.c
432
static int bge_read_nvram(struct bge_softc *, caddr_t, int, int);
sys/dev/bge/if_bge.c
434
static uint8_t bge_eeprom_getbyte(struct bge_softc *, int, uint8_t *);
sys/dev/bge/if_bge.c
435
static int bge_read_eeprom(struct bge_softc *, caddr_t, int, int);
sys/dev/bge/if_bge.c
437
static void bge_setpromisc(struct bge_softc *);
sys/dev/bge/if_bge.c
438
static void bge_setmulti(struct bge_softc *);
sys/dev/bge/if_bge.c
439
static void bge_setvlan(struct bge_softc *);
sys/dev/bge/if_bge.c
441
static __inline void bge_rxreuse_std(struct bge_softc *, int);
sys/dev/bge/if_bge.c
442
static __inline void bge_rxreuse_jumbo(struct bge_softc *, int);
sys/dev/bge/if_bge.c
443
static int bge_newbuf_std(struct bge_softc *, int);
sys/dev/bge/if_bge.c
444
static int bge_newbuf_jumbo(struct bge_softc *, int);
sys/dev/bge/if_bge.c
4445
bge_rxcsum(struct bge_softc *sc, struct bge_rx_bd *cur_rx, struct mbuf *m)
sys/dev/bge/if_bge.c
445
static int bge_init_rx_ring_std(struct bge_softc *);
sys/dev/bge/if_bge.c
446
static void bge_free_rx_ring_std(struct bge_softc *);
sys/dev/bge/if_bge.c
447
static int bge_init_rx_ring_jumbo(struct bge_softc *);
sys/dev/bge/if_bge.c
448
static void bge_free_rx_ring_jumbo(struct bge_softc *);
sys/dev/bge/if_bge.c
4480
bge_txeof(struct bge_softc *sc, uint16_t tx_cons)
sys/dev/bge/if_bge.c
449
static void bge_free_tx_ring(struct bge_softc *);
sys/dev/bge/if_bge.c
450
static int bge_init_tx_ring(struct bge_softc *);
sys/dev/bge/if_bge.c
452
static int bge_chipinit(struct bge_softc *);
sys/dev/bge/if_bge.c
4528
struct bge_softc *sc = if_getsoftc(ifp);
sys/dev/bge/if_bge.c
453
static int bge_blockinit(struct bge_softc *);
sys/dev/bge/if_bge.c
454
static uint32_t bge_dma_swap_options(struct bge_softc *);
sys/dev/bge/if_bge.c
456
static int bge_has_eaddr(struct bge_softc *);
sys/dev/bge/if_bge.c
457
static uint32_t bge_readmem_ind(struct bge_softc *, int);
sys/dev/bge/if_bge.c
458
static void bge_writemem_ind(struct bge_softc *, int, int);
sys/dev/bge/if_bge.c
4582
struct bge_softc *sc;
sys/dev/bge/if_bge.c
4584
sc = (struct bge_softc *)arg;
sys/dev/bge/if_bge.c
459
static void bge_writembx(struct bge_softc *, int, int);
sys/dev/bge/if_bge.c
4596
struct bge_softc *sc;
sys/dev/bge/if_bge.c
4601
sc = (struct bge_softc *)arg;
sys/dev/bge/if_bge.c
461
static uint32_t bge_readreg_ind(struct bge_softc *, int);
sys/dev/bge/if_bge.c
463
static void bge_writemem_direct(struct bge_softc *, int, int);
sys/dev/bge/if_bge.c
464
static void bge_writereg_ind(struct bge_softc *, int, int);
sys/dev/bge/if_bge.c
4653
struct bge_softc *sc;
sys/dev/bge/if_bge.c
4732
bge_asf_driver_up(struct bge_softc *sc)
sys/dev/bge/if_bge.c
4755
struct bge_softc *sc = xsc;
sys/dev/bge/if_bge.c
476
static void bge_sig_post_reset(struct bge_softc *, int);
sys/dev/bge/if_bge.c
477
static void bge_sig_legacy(struct bge_softc *, int);
sys/dev/bge/if_bge.c
478
static void bge_sig_pre_reset(struct bge_softc *, int);
sys/dev/bge/if_bge.c
479
static void bge_stop_fw(struct bge_softc *);
sys/dev/bge/if_bge.c
480
static int bge_reset(struct bge_softc *);
sys/dev/bge/if_bge.c
4808
bge_stats_update_regs(struct bge_softc *sc)
sys/dev/bge/if_bge.c
481
static void bge_link_upd(struct bge_softc *);
sys/dev/bge/if_bge.c
483
static void bge_ape_lock_init(struct bge_softc *);
sys/dev/bge/if_bge.c
484
static void bge_ape_read_fw_ver(struct bge_softc *);
sys/dev/bge/if_bge.c
485
static int bge_ape_lock(struct bge_softc *, int);
sys/dev/bge/if_bge.c
486
static void bge_ape_unlock(struct bge_softc *, int);
sys/dev/bge/if_bge.c
487
static void bge_ape_send_event(struct bge_softc *, uint32_t);
sys/dev/bge/if_bge.c
488
static void bge_ape_driver_state_change(struct bge_softc *, int);
sys/dev/bge/if_bge.c
4928
bge_stats_clear_regs(struct bge_softc *sc)
sys/dev/bge/if_bge.c
4970
bge_stats_update(struct bge_softc *sc)
sys/dev/bge/if_bge.c
501
static void bge_add_sysctls(struct bge_softc *);
sys/dev/bge/if_bge.c
502
static void bge_add_sysctl_stats_regs(struct bge_softc *,
sys/dev/bge/if_bge.c
504
static void bge_add_sysctl_stats(struct bge_softc *, struct sysctl_ctx_list *,
sys/dev/bge/if_bge.c
5083
bge_setup_tso(struct bge_softc *sc, struct mbuf *m, uint16_t *mss,
sys/dev/bge/if_bge.c
5159
bge_encap(struct bge_softc *sc, struct mbuf **m_head, uint32_t *txidx)
sys/dev/bge/if_bge.c
530
sizeof(struct bge_softc)
sys/dev/bge/if_bge.c
5327
struct bge_softc *sc;
sys/dev/bge/if_bge.c
5377
bge_start_tx(struct bge_softc *sc, uint32_t prodidx)
sys/dev/bge/if_bge.c
5401
struct bge_softc *sc;
sys/dev/bge/if_bge.c
5410
bge_init_locked(struct bge_softc *sc)
sys/dev/bge/if_bge.c
546
bge_has_eaddr(struct bge_softc *sc)
sys/dev/bge/if_bge.c
552
bge_readmem_ind(struct bge_softc *sc, int off)
sys/dev/bge/if_bge.c
5589
struct bge_softc *sc = xsc;
sys/dev/bge/if_bge.c
5602
struct bge_softc *sc = if_getsoftc(ifp);
sys/dev/bge/if_bge.c
5615
struct bge_softc *sc = if_getsoftc(ifp);
sys/dev/bge/if_bge.c
570
bge_writemem_ind(struct bge_softc *sc, int off, int val)
sys/dev/bge/if_bge.c
5700
struct bge_softc *sc = if_getsoftc(ifp);
sys/dev/bge/if_bge.c
5740
struct bge_softc *sc = if_getsoftc(ifp);
sys/dev/bge/if_bge.c
587
bge_readreg_ind(struct bge_softc *sc, int off)
sys/dev/bge/if_bge.c
5897
bge_watchdog(struct bge_softc *sc)
sys/dev/bge/if_bge.c
5945
bge_stop_block(struct bge_softc *sc, bus_size_t reg, uint32_t bit)
sys/dev/bge/if_bge.c
5963
bge_stop(struct bge_softc *sc)
sys/dev/bge/if_bge.c
599
bge_writereg_ind(struct bge_softc *sc, int off, int val)
sys/dev/bge/if_bge.c
6065
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6078
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6091
struct bge_softc *sc;
sys/dev/bge/if_bge.c
610
bge_writemem_direct(struct bge_softc *sc, int off, int val)
sys/dev/bge/if_bge.c
6108
bge_link_upd(struct bge_softc *sc)
sys/dev/bge/if_bge.c
616
bge_writembx(struct bge_softc *sc, int off, int val)
sys/dev/bge/if_bge.c
6229
bge_add_sysctls(struct bge_softc *sc)
sys/dev/bge/if_bge.c
630
bge_ape_lock_init(struct bge_softc *sc)
sys/dev/bge/if_bge.c
6306
bge_add_sysctl_stats(struct bge_softc *sc, struct sysctl_ctx_list *ctx,
sys/dev/bge/if_bge.c
6435
bge_add_sysctl_stats_regs(struct bge_softc *sc, struct sysctl_ctx_list *ctx,
sys/dev/bge/if_bge.c
6532
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6536
sc = (struct bge_softc *)arg1;
sys/dev/bge/if_bge.c
6547
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6558
sc = (struct bge_softc *)arg1;
sys/dev/bge/if_bge.c
6620
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6631
sc = (struct bge_softc *)arg1;
sys/dev/bge/if_bge.c
6642
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6653
sc = (struct bge_softc *)arg1;
sys/dev/bge/if_bge.c
6664
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6675
sc = (struct bge_softc *)arg1;
sys/dev/bge/if_bge.c
6685
bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/bge/if_bge.c
6691
bge_get_eaddr_mem(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/bge/if_bge.c
6710
bge_get_eaddr_nvram(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/bge/if_bge.c
6722
bge_get_eaddr_eeprom(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/bge/if_bge.c
6733
bge_get_eaddr(struct bge_softc *sc, uint8_t eaddr[])
sys/dev/bge/if_bge.c
6755
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6778
struct bge_softc *sc;
sys/dev/bge/if_bge.c
6808
struct bge_softc *sc;
sys/dev/bge/if_bge.c
682
bge_ape_read_fw_ver(struct bge_softc *sc)
sys/dev/bge/if_bge.c
6827
struct bge_softc *sc;
sys/dev/bge/if_bge.c
726
bge_ape_lock(struct bge_softc *sc, int locknum)
sys/dev/bge/if_bge.c
806
bge_ape_unlock(struct bge_softc *sc, int locknum)
sys/dev/bge/if_bge.c
859
bge_ape_send_event(struct bge_softc *sc, uint32_t event)
sys/dev/bge/if_bge.c
889
bge_ape_driver_state_change(struct bge_softc *sc, int kind)
sys/dev/bge/if_bge.c
957
bge_nvram_getbyte(struct bge_softc *sc, int addr, uint8_t *dest)
sys/dev/mii/brgphy.c
214
struct bge_softc *bge_sc = NULL;
sys/dev/mii/brgphy.c
936
struct bge_softc *bge_sc = NULL;