blob: 87edf1a5b7ef3c762074e3e947bbb600806d5072 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Robbie Zhanged840022016-12-23 11:43:07 -08002#ifndef _SAR_H_
3#define _SAR_H_
4
Eric Lai8cb2f182022-12-19 09:14:39 +08005#include <fw_config.h>
Robbie Zhanged840022016-12-23 11:43:07 -08006#include <stdint.h>
7
Sugnan Prabhu Sd1fc8322021-08-31 07:11:35 +05308#define MAX_ANT_GAINS_REVISION 2
Sugnan Prabhu Scc507702021-08-31 07:19:30 +05309#define MAX_DENYLIST_ENTRY 16
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053010#define MAX_DSAR_SET_COUNT 3
11#define MAX_GEO_OFFSET_REVISION 3
Sugnan Prabhu Sd70f4812021-08-25 17:36:44 +053012#define MAX_PROFILE_COUNT 5
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053013#define MAX_SAR_REVISION 2
14#define REVISION_SIZE 1
15#define SAR_REV0_CHAINS_COUNT 2
16#define SAR_REV0_SUBBANDS_COUNT 5
17#define SAR_FILE_REVISION 1
18#define SAR_STR_PREFIX "$SAR"
19#define SAR_STR_PREFIX_SIZE 4
Pratik Prajapati7fd1e4b2017-08-11 14:06:57 -070020
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053021struct geo_profile {
22 uint8_t revision;
23 uint8_t chains_count;
24 uint8_t bands_count;
25 uint8_t wgds_table[0];
26} __packed;
27
28struct sar_profile {
29 uint8_t revision;
30 uint8_t dsar_set_count;
31 uint8_t chains_count;
32 uint8_t subbands_count;
33 uint8_t sar_table[0];
34} __packed;
35
Sugnan Prabhu Sd1fc8322021-08-31 07:11:35 +053036struct gain_profile {
37 uint8_t revision;
38 uint8_t mode;
39 uint8_t chains_count;
40 uint8_t bands_count;
41 uint8_t ppag_table[0];
42} __packed;
43
Sugnan Prabhu Scc507702021-08-31 07:19:30 +053044struct avg_profile {
45 uint8_t revision;
46 uint8_t tas_selection;
47 uint8_t tas_list_size;
Sugnan Prabhu S627c8442021-09-06 15:05:56 +053048 uint16_t deny_list_entry[MAX_DENYLIST_ENTRY];
Sugnan Prabhu Scc507702021-08-31 07:19:30 +053049} __packed;
50
Sugnan Prabhu Sd70f4812021-08-25 17:36:44 +053051struct dsm_profile {
52 uint32_t supported_functions;
53 uint32_t disable_active_sdr_channels;
54 uint32_t support_indonesia_5g_band;
55 uint32_t support_ultra_high_band;
56 uint32_t regulatory_configurations;
57 uint32_t uart_configurations;
58 uint32_t enablement_11ax;
59 uint32_t unii_4;
60};
61
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053062struct sar_header {
63 char marker[SAR_STR_PREFIX_SIZE];
Pratik Prajapati7fd1e4b2017-08-11 14:06:57 -070064 uint8_t version;
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053065 uint16_t offsets[0];
Pratik Prajapati7fd1e4b2017-08-11 14:06:57 -070066} __packed;
Robbie Zhanged840022016-12-23 11:43:07 -080067
68/* Wifi SAR limit table structure */
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053069union wifi_sar_limits {
70 struct {
71 struct sar_profile *sar;
72 struct geo_profile *wgds;
Sugnan Prabhu Sd1fc8322021-08-31 07:11:35 +053073 struct gain_profile *ppag;
Sugnan Prabhu Scc507702021-08-31 07:19:30 +053074 struct avg_profile *wtas;
Sugnan Prabhu Sd70f4812021-08-25 17:36:44 +053075 struct dsm_profile *dsm;
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053076 };
77 void *profile[MAX_PROFILE_COUNT];
78};
Robbie Zhanged840022016-12-23 11:43:07 -080079
80/*
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053081 * Retrieve the wifi ACPI configuration data from CBFS and decode it
Robbie Zhanged840022016-12-23 11:43:07 -080082 * sar_limits: Pointer to wifi_sar_limits where the resulted data is stored
83 *
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053084 * Returns: 0 on success, -1 on errors (The .hex file doesn't exist, or the decode failed)
Robbie Zhanged840022016-12-23 11:43:07 -080085 */
Sugnan Prabhu Sfcb4f2d2021-07-30 20:12:22 +053086int get_wifi_sar_limits(union wifi_sar_limits *sar_limits);
Robbie Zhanged840022016-12-23 11:43:07 -080087
Furquan Shaikh7fe5d3d2021-03-13 22:54:16 -080088#define WIFI_SAR_CBFS_DEFAULT_FILENAME "wifi_sar_defaults.hex"
89
Justin TerAvestc650d6c2018-12-14 11:05:03 -070090const char *get_wifi_sar_cbfs_filename(void);
91
Eric Lai8cb2f182022-12-19 09:14:39 +080092char *get_wifi_sar_fw_config_filename(const struct fw_config_field *field);
93
Robbie Zhanged840022016-12-23 11:43:07 -080094#endif /* _SAR_H_ */