Searched defs:mii_data (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/io/dmfe/
H A Ddmfe_mii.c141 * Poke <nbits> (up to 32) bits from <mii_data> along the MII control lines.
142 * Note: the data is taken starting with the MSB of <mii_data> and working
146 dmfe_poke_mii(dmfe_t *dmfep, uint32_t mii_data, uint_t nbits) argument
152 for (; nbits > 0; mii_data <<= 1, --nbits) {
154 * Extract the MSB of <mii_data> and shift it to the
157 dbit = mii_data >> 31;
/illumos-gate/usr/src/uts/common/io/bge/
H A Dbge.h70 uint32_t mii_data; /* data to write/data read */ member in struct:bge_mii_rw
/illumos-gate/usr/src/uts/common/io/rge/
H A Drge.h103 uint32_t mii_data; /* data to write/data read */ member in struct:rge_mii_rw
/illumos-gate/usr/src/uts/intel/io/dnet/
H A Ddnet.c3890 * Write data size bits from mii_data to the MII control lines.
3893 write_mii(struct dnetinstance *dnetp, uint32_t mii_data, int data_size) argument
3900 dbit = ((mii_data >>
3910 mii_data <<= 1;

Completed in 54 milliseconds