soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git] / src / drivers / wifi / generic / chip.h
blob2729a3566377b61713285692333cbdcb6704d0af
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _WIFI_GENERIC_H_
4 #define _WIFI_GENERIC_H_
6 /**
7 * struct drivers_wifi_generic_config - Data structure to contain generic wifi config
8 * @wake: Wake pin for ACPI _PRW
9 */
10 struct drivers_wifi_generic_config {
11 unsigned int wake;
12 /* When set to true, this will add a _DSD which contains a single
13 property, `DmaProperty`, set to 1, under the ACPI Device. */
14 bool add_acpi_dma_property;
17 * Applicable for Intel chipsets that use CNVi WiFi only. Set this to 1
18 * to enable CNVi DDR RFIM (radio frequency interference mitigation);
19 * SoC code propagates this value the applicable FSP UPD.
21 bool enable_cnvi_ddr_rfim;
24 #endif /* _GENERIC_WIFI_H_ */