1
6
7
8
9
10
11
12
13
14
15
16
17
21
22
23
26
33
34
37
43
44
47
52
53
57
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
194
195
196
199
200
201
204
205
206
210
211
212
213
214
215
216
217
218
221
222
223
226
227
228
231
232
233
234
238
239
240
244
245
246
251
252
253
260
261
262
263
264
270
271
272
276
277
278
282
283
284
288
289
290
291
292
293
294
295
296
297
298
299
304
305
306
307
310
311
312
315
316
317
318
319
/* ... */
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "esp_err.h"
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
/* ... */
typedef struct {
#if CONFIG_IDF_TARGET_ESP32C5
uint8_t params[256];
#else
uint8_t params[128];
#endif
}{ ... } esp_phy_init_data_t;
/* ... */
typedef enum {
PHY_MODEM_WIFI = 1,
PHY_MODEM_BT = 2,
PHY_MODEM_IEEE802154 = 4,
PHY_MODEM_MAX,
}{ ... } esp_phy_modem_t;
/* ... */
typedef struct {
uint8_t version[4];
uint8_t mac[6];
uint8_t opaque[1894];
}{ ... } esp_phy_calibration_data_t;
/* ... */
typedef enum {
PHY_RF_CAL_PARTIAL = 0x00000000,
PHY_RF_CAL_NONE = 0x00000001,
PHY_RF_CAL_FULL = 0x00000002
}{ ... } esp_phy_calibration_mode_t;
#if CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN
/* ... */
typedef enum {
ESP_PHY_INIT_DATA_TYPE_DEFAULT = 0,
ESP_PHY_INIT_DATA_TYPE_SRRC,
ESP_PHY_INIT_DATA_TYPE_FCC,
ESP_PHY_INIT_DATA_TYPE_CE,
ESP_PHY_INIT_DATA_TYPE_NCC,
ESP_PHY_INIT_DATA_TYPE_KCC,
ESP_PHY_INIT_DATA_TYPE_MIC,
ESP_PHY_INIT_DATA_TYPE_IC,
ESP_PHY_INIT_DATA_TYPE_ACMA,
ESP_PHY_INIT_DATA_TYPE_ANATEL,
ESP_PHY_INIT_DATA_TYPE_ISED,
ESP_PHY_INIT_DATA_TYPE_WPC,
ESP_PHY_INIT_DATA_TYPE_OFCA,
ESP_PHY_INIT_DATA_TYPE_IFETEL,
ESP_PHY_INIT_DATA_TYPE_RCM,
ESP_PHY_INIT_DATA_TYPE_NUMBER,
}{...} phy_init_data_type_t;/* ... */
#endif
/* ... */
const esp_phy_init_data_t* esp_phy_get_init_data(void);
/* ... */
void esp_phy_release_init_data(const esp_phy_init_data_t* data);
/* ... */
esp_err_t esp_phy_load_cal_data_from_nvs(esp_phy_calibration_data_t* out_cal_data);
/* ... */
esp_err_t esp_phy_store_cal_data_to_nvs(const esp_phy_calibration_data_t* cal_data);
/* ... */
esp_err_t esp_phy_erase_cal_data_in_nvs(void);
/* ... */
void esp_phy_enable(esp_phy_modem_t modem);
/* ... */
void esp_phy_disable(esp_phy_modem_t modem);
/* ... */
void esp_btbb_enable(void);
/* ... */
void esp_btbb_disable(void);
/* ... */
void esp_phy_load_cal_and_init(void);
/* ... */
void esp_phy_modem_init(void);
/* ... */
void esp_phy_modem_deinit(void);
#if CONFIG_MAC_BB_PD
/* ... */
void esp_mac_bb_pd_mem_init(void);
/* ... */
void esp_mac_bb_pd_mem_deinit(void);
/* ... */
void esp_mac_bb_power_up(void);
/* ... */
void esp_mac_bb_power_down(void);/* ... */
#endif
/* ... */
void esp_phy_common_clock_enable(void);
/* ... */
void esp_phy_common_clock_disable(void);
/* ... */
int64_t esp_phy_rf_get_on_ts(void);
/* ... */
esp_err_t esp_phy_update_country_info(const char *country);
#if CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN
/* ... */
esp_err_t esp_phy_apply_phy_init_data(uint8_t *init_data);/* ... */
#endif
/* ... */
char * get_phy_version_str(void);
/* ... */
void phy_init_param_set(uint8_t param);
/* ... */
void phy_wifi_enable_set(uint8_t enable);
#if CONFIG_ESP_PHY_RECORD_USED_TIME
/* ... */
esp_err_t phy_query_used_time(uint64_t *used_time, esp_phy_modem_t modem);
/* ... */
esp_err_t phy_clear_used_time(esp_phy_modem_t modem);/* ... */
#endif
/* ... */
void esp_wifi_bt_power_domain_on(void);
/* ... */
void esp_wifi_bt_power_domain_off(void);
#ifdef __cplusplus
}{...}
#endif