Lines Matching defs:aux
113 bge_phydump(bge_t *bgep, uint16_t mii_status, uint16_t aux)
131 regs[i] = aux;
1136 uint16_t aux;
1174 aux = bge_mii_get16(bgep, MII_AUX_STATUS);
1176 BGE_CDB(bge_phydump, (bgep, mii_status, aux));
1182 mode = aux & MII_AUX_STATUS_MODE_MASK;
1185 linkup = BIS(aux, MII_AUX_STATUS_LINKUP);
1191 linkup &= BIS(aux, MII_AUX_STATUS_LINKUP);
1195 BGE_DEBUG(("bge_check_copper: MII status 0x%x aux 0x%x "
1197 mii_status, aux,
1204 bgep->phy_aux_status = aux;
1237 if (BIS(aux, MII_AUX_STATUS_LP_ANEG_ABLE)) {
1240 bgep->param_link_tx_pause = BIS(aux, MII_AUX_STATUS_TX_PAUSE);
1241 bgep->param_link_rx_pause = BIS(aux, MII_AUX_STATUS_RX_PAUSE);
1243 aux = bge_mii_get16(bgep, MII_MSSTATUS);
1244 bgep->param_lp_1000fdx = BIS(aux, MII_MSSTATUS_LP1000T_FD);
1245 bgep->param_lp_1000hdx = BIS(aux, MII_MSSTATUS_LP1000T);
1247 aux = bge_mii_get16(bgep, MII_AN_LPABLE);
1248 bgep->param_lp_100fdx = BIS(aux, MII_ABILITY_100BASE_TX_FD);
1249 bgep->param_lp_100hdx = BIS(aux, MII_ABILITY_100BASE_TX);
1250 bgep->param_lp_10fdx = BIS(aux, MII_ABILITY_10BASE_T_FD);
1251 bgep->param_lp_10hdx = BIS(aux, MII_ABILITY_10BASE_T);
1252 bgep->param_lp_pause = BIS(aux, MII_ABILITY_PAUSE);
1253 bgep->param_lp_asym_pause = BIS(aux, MII_ABILITY_ASMPAUSE);