Lines Matching +full:11 +full:ac

338 #define EEPROM_RF_CFG_TX_ANT_MSK(x) ((x >> 8)  & 0xF)	/* bits 8-11  */
354 * 2.4 GHz channels 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
362 * 5.0 GHz channels 7, 8, 11, 12, 16
390 * 2.4 GHz HT40 channels 1 (5), 2 (6), 3 (7), 4 (8), 5 (9), 6 (10), 7 (11)
510 * queue, 2 (unused) HCCA queues, and 4 HT queues (one for each AC) */
1288 /* for each AC */
1583 int disable_11n; /* def: 0 = 11n capabilities enabled */
1589 #define IL_LED_SOLID 11
2239 * | | | | | | +-+-------- AC queue (0-3)
2246 il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq) in il_set_swq_id() argument
2248 BUG_ON(ac > 3); /* only have 2 bits */ in il_set_swq_id()
2251 txq->swq_id = (hwq << 2) | ac; in il_set_swq_id()
2255 _il_wake_queue(struct il_priv *il, u8 ac) in _il_wake_queue() argument
2257 if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0) in _il_wake_queue()
2258 ieee80211_wake_queue(il->hw, ac); in _il_wake_queue()
2262 _il_stop_queue(struct il_priv *il, u8 ac) in _il_stop_queue() argument
2264 if (atomic_inc_return(&il->queue_stop_count[ac]) > 0) in _il_stop_queue()
2265 ieee80211_stop_queue(il->hw, ac); in _il_stop_queue()
2271 u8 ac = queue & 3; in il_wake_queue() local
2275 _il_wake_queue(il, ac); in il_wake_queue()
2282 u8 ac = queue & 3; in il_stop_queue() local
2286 _il_stop_queue(il, ac); in il_stop_queue()
2292 u8 ac; in il_wake_queues_by_reason() local
2295 for (ac = 0; ac < 4; ac++) in il_wake_queues_by_reason()
2296 _il_wake_queue(il, ac); in il_wake_queues_by_reason()
2302 u8 ac; in il_stop_queues_by_reason() local
2305 for (ac = 0; ac < 4; ac++) in il_stop_queues_by_reason()
2306 _il_stop_queue(il, ac); in il_stop_queues_by_reason()
2373 * @closed_rb_num [0:11] - Indicates the idx of the RB which was closed
2374 * @closed_fr_num [0:11] - Indicates the idx of the RX Frame which was closed
2375 * @finished_rb_num [0:11] - Indicates the idx of the current RB
2377 * @finished_fr_num [0:11] - Indicates the idx of the RX Frame
2549 RATE_36M_PLCP = 11,
2595 RATE_5M_IEEE = 11,
2999 #define IL_DL_SCAN (1 << 11)