@@ -385,13 +385,42 @@ struct iwl_dev_tx_power_cmd_v7 {
385
385
__le32 timer_period ;
386
386
__le32 flags ;
387
387
} __packed ; /* TX_REDUCED_POWER_API_S_VER_7 */
388
+
389
+ /**
390
+ * struct iwl_dev_tx_power_cmd_v8 - TX power reduction command version 8
391
+ * @per_chain: per chain restrictions
392
+ * @enable_ack_reduction: enable or disable close range ack TX power
393
+ * reduction.
394
+ * @per_chain_restriction_changed: is per_chain_restriction has changed
395
+ * from last command. used if set_mode is
396
+ * IWL_TX_POWER_MODE_SET_SAR_TIMER.
397
+ * note: if not changed, the command is used for keep alive only.
398
+ * @reserved: reserved (padding)
399
+ * @timer_period: timer in milliseconds. if expires FW will change to default
400
+ * BIOS values. relevant if setMode is IWL_TX_POWER_MODE_SET_SAR_TIMER
401
+ * @flags: reduce power flags.
402
+ * @tpc_vlp_backoff_level: user backoff of UNII5,7 VLP channels in USA.
403
+ * Not in use.
404
+ */
405
+ struct iwl_dev_tx_power_cmd_v8 {
406
+ __le16 per_chain [IWL_NUM_CHAIN_TABLES_V2 ][IWL_NUM_CHAIN_LIMITS ][IWL_NUM_SUB_BANDS_V2 ];
407
+ u8 enable_ack_reduction ;
408
+ u8 per_chain_restriction_changed ;
409
+ u8 reserved [2 ];
410
+ __le32 timer_period ;
411
+ __le32 flags ;
412
+ __le32 tpc_vlp_backoff_level ;
413
+ } __packed ; /* TX_REDUCED_POWER_API_S_VER_8 */
414
+
388
415
/**
389
416
* struct iwl_dev_tx_power_cmd - TX power reduction command (multiversion)
390
417
* @common: common part of the command
391
418
* @v3: version 3 part of the command
392
419
* @v4: version 4 part of the command
393
420
* @v5: version 5 part of the command
394
421
* @v6: version 6 part of the command
422
+ * @v7: version 7 part of the command
423
+ * @v8: version 8 part of the command
395
424
*/
396
425
struct iwl_dev_tx_power_cmd {
397
426
struct iwl_dev_tx_power_common common ;
@@ -401,6 +430,7 @@ struct iwl_dev_tx_power_cmd {
401
430
struct iwl_dev_tx_power_cmd_v5 v5 ;
402
431
struct iwl_dev_tx_power_cmd_v6 v6 ;
403
432
struct iwl_dev_tx_power_cmd_v7 v7 ;
433
+ struct iwl_dev_tx_power_cmd_v8 v8 ;
404
434
};
405
435
};
406
436
0 commit comments