Lines Matching refs:fc
2101 unsigned int fc = 0, mdi = FW_PORT_CAP_MDI_V(FW_PORT_CAP_MDI_AUTO); in t4_link_start() local
2105 fc |= FW_PORT_CAP_FC_RX; in t4_link_start()
2107 fc |= FW_PORT_CAP_FC_TX; in t4_link_start()
2116 c.u.l1cfg.rcap = htonl((lc->supported & ADVERT_MASK) | fc); in t4_link_start()
2117 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t4_link_start()
2119 c.u.l1cfg.rcap = htonl(lc->requested_speed | fc | mdi); in t4_link_start()
2120 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t4_link_start()
2122 c.u.l1cfg.rcap = htonl(lc->advertising | fc | mdi); in t4_link_start()
4906 int speed = 0, fc = 0; in t4_handle_fw_rpl() local
4917 fc |= PAUSE_RX; in t4_handle_fw_rpl()
4919 fc |= PAUSE_TX; in t4_handle_fw_rpl()
4930 fc != lc->fc) { /* something changed */ in t4_handle_fw_rpl()
4933 lc->fc = fc; in t4_handle_fw_rpl()
4969 lc->requested_fc = lc->fc = PAUSE_RX | PAUSE_TX; in init_link_config()