Lines Matching refs:mcs
48 #define BRCMS_MAXMCS 32 /* max valid mcs index */
49 #define MCS_TABLE_SIZE 33 /* Number of mcs entries in the table */
56 static inline u8 mcs_2_txstreams(u8 mcs)
58 return (mcs_table[mcs].tx_phy_ctl3 & MCS_TXS_MASK) >> MCS_TXS_SHIFT;
61 static inline uint mcs_2_rate(u8 mcs, bool is40, bool sgi)
65 return mcs_table[mcs].phy_rate_40_sgi;
66 return mcs_table[mcs].phy_rate_20_sgi;
69 return mcs_table[mcs].phy_rate_40;
71 return mcs_table[mcs].phy_rate_20;
190 static inline bool is_single_stream(u8 mcs)
192 return mcs <= HIGHEST_SINGLE_STREAM_MCS || mcs == 32;