Searched defs:emac_softc (Results 1 – 2 of 2) sorted by relevance
46 struct emac_softc { struct47 device_t sc_dev;48 bus_space_tag_t sc_iot;49 bus_space_handle_t sc_ioh;50 bus_dma_tag_t sc_dmat;51 int sc_pid;52 uint8_t sc_enaddr[ETHER_ADDR_LEN];53 struct ethercom sc_ec;54 mii_data_t sc_mii;55 void *rbqpage;[all …]
160 struct emac_softc { struct161 device_t sc_dev; /* generic device information */162 int sc_instance; /* instance no. */163 bus_space_tag_t sc_st; /* bus space tag */164 bus_space_handle_t sc_sh; /* bus space handle */165 bus_dma_tag_t sc_dmat; /* bus DMA tag */166 struct ethercom sc_ethercom; /* ethernet common data */167 void *sc_sdhook; /* shutdown hook */168 void *sc_powerhook; /* power management hook */170 struct mii_data sc_mii; /* MII/media information */[all …]