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) */
1300 /* for each AC */
1595 int disable_11n; /* def: 0 = 11n capabilities enabled */
1601 #define IL_LED_SOLID 11
2250 * | | | | | | +-+-------- AC queue (0-3)
2257 il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq) in il_set_swq_id() argument
2259 BUG_ON(ac > 3); /* only have 2 bits */ in il_set_swq_id()
2262 txq->swq_id = (hwq << 2) | ac; in il_set_swq_id()
2266 _il_wake_queue(struct il_priv *il, u8 ac) in _il_wake_queue() argument
2268 if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0) in _il_wake_queue()
2269 ieee80211_wake_queue(il->hw, ac); in _il_wake_queue()
2273 _il_stop_queue(struct il_priv *il, u8 ac) in _il_stop_queue() argument
2275 if (atomic_inc_return(&il->queue_stop_count[ac]) > 0) in _il_stop_queue()
2276 ieee80211_stop_queue(il->hw, ac); in _il_stop_queue()
2282 u8 ac = queue & 3; in il_wake_queue() local
2286 _il_wake_queue(il, ac); in il_wake_queue()
2293 u8 ac = queue & 3; in il_stop_queue() local
2297 _il_stop_queue(il, ac); in il_stop_queue()
2303 u8 ac; in il_wake_queues_by_reason() local
2306 for (ac = 0; ac < 4; ac++) in il_wake_queues_by_reason()
2307 _il_wake_queue(il, ac); in il_wake_queues_by_reason()
2313 u8 ac; in il_stop_queues_by_reason() local
2316 for (ac = 0; ac < 4; ac++) in il_stop_queues_by_reason()
2317 _il_stop_queue(il, ac); in il_stop_queues_by_reason()
2384 * @closed_rb_num [0:11] - Indicates the idx of the RB which was closed
2385 * @closed_fr_num [0:11] - Indicates the idx of the RX Frame which was closed
2386 * @finished_rb_num [0:11] - Indicates the idx of the current RB
2388 * @finished_fr_num [0:11] - Indicates the idx of the RX Frame
2560 RATE_36M_PLCP = 11,
2606 RATE_5M_IEEE = 11,
3010 #define IL_DL_SCAN (1 << 11)