diff options
Diffstat (limited to 'sys/contrib/dev/iwlwifi/fw/runtime.h')
| -rw-r--r-- | sys/contrib/dev/iwlwifi/fw/runtime.h | 19 | 
1 files changed, 17 insertions, 2 deletions
| diff --git a/sys/contrib/dev/iwlwifi/fw/runtime.h b/sys/contrib/dev/iwlwifi/fw/runtime.h index 048877fa7c71..bd3bc2846cfa 100644 --- a/sys/contrib/dev/iwlwifi/fw/runtime.h +++ b/sys/contrib/dev/iwlwifi/fw/runtime.h @@ -1,7 +1,7 @@  /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */  /*   * Copyright (C) 2017 Intel Deutschland GmbH - * Copyright (C) 2018-2024 Intel Corporation + * Copyright (C) 2018-2025 Intel Corporation   */  #ifndef __iwl_fw_runtime_h__  #define __iwl_fw_runtime_h__ @@ -104,11 +104,19 @@ struct iwl_txf_iter_data {   *	the driver by calling &iwl_fw_set_current_image()   * @dump: debug dump data   * @uats_table: AP type table + * @uats_valid: is AP type table valid   * @uefi_tables_lock_status: The status of the WIFI GUID UEFI variables lock:   *	0: Unlocked, 1 and 2: Locked.   *	Only read the UEFI variables if locked.   * @sar_profiles: sar profiles as read from WRDS/EWRD BIOS tables   * @geo_profiles: geographic profiles as read from WGDS BIOS table + * @phy_filters: specific phy filters as read from WPFC BIOS table + * @ppag_bios_rev: PPAG BIOS revision + * @ppag_bios_source: see &enum bios_source + * @acpi_dsm_funcs_valid: bitmap indicating which DSM values are valid, + *	zero (default initialization) means it hasn't been read yet, + *	and BIT(0) is set when it has since function 0 also has this + *	bitmap and is always supported   */  struct iwl_fw_runtime {  	struct iwl_trans *trans; @@ -177,11 +185,18 @@ struct iwl_fw_runtime {  	bool geo_enabled;  	struct iwl_ppag_chain ppag_chains[IWL_NUM_CHAIN_LIMITS];  	u32 ppag_flags; -	u8 ppag_ver; +	u8 ppag_bios_rev; +	u8 ppag_bios_source;  	struct iwl_sar_offset_mapping_cmd sgom_table;  	bool sgom_enabled;  	struct iwl_mcc_allowed_ap_type_cmd uats_table; +	bool uats_valid;  	u8 uefi_tables_lock_status; +	struct iwl_phy_specific_cfg phy_filters; + +#ifdef CONFIG_ACPI +	u32 acpi_dsm_funcs_valid; +#endif  };  void iwl_fw_runtime_init(struct iwl_fw_runtime *fwrt, struct iwl_trans *trans, | 
