Select one of the symbols to view example projects that use it.
 
Outline
#include "sdkconfig.h"
#include "esp_phy_init.h"
#include "soc/soc_caps.h"
#define ESP_CAL_DATA_CHECK_FAIL
phy_i2c_master_command_attribute_t
phy_get_romfunc_addr();
register_chipv7_phy(const esp_phy_init_data_t *, esp_phy_calibration_data_t *, esp_phy_calibration_mode_t);
phy_get_rf_cal_version();
phy_set_wifi_mode_only(bool);
coex_bt_high_prio();
phy_wakeup_init();
phy_close_rf();
phy_dig_reg_backup(bool, uint32_t *);
phy_track_pll_init();
phy_track_pll_deinit();
phy_set_modem_flag(esp_phy_modem_t);
phy_clr_modem_flag(esp_phy_modem_t);
phy_get_modem_flag();
phy_get_lock();
phy_track_pll();
ant_dft_cfg(bool);
ant_tx_cfg(uint8_t);
ant_rx_cfg(bool, uint8_t, uint8_t);
phy_ant_need_update();
phy_ant_clr_update_flag();
phy_ant_update();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_phy/include/esp_private/phy.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
106
107
108
109
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "sdkconfig.h" #include "esp_phy_init.h" #include "soc/soc_caps.h" #ifdef __cplusplus extern "C" { #endif #define ESP_CAL_DATA_CHECK_FAIL 1 typedef struct { uint8_t cmd_type; /* the command type of the current phy i2c master command memory config */ struct { uint8_t start, end; /* the start and end index of phy i2c master command memory */ uint8_t host_id; /* phy i2c master host id */ }{ ... } config; }{ ... } phy_i2c_master_command_attribute_t; /** * @file phy.h * @brief Declarations for functions provided by libphy.a *//* ... */ /** * @brief Return ROM function pointer table from PHY library. *//* ... */ void phy_get_romfunc_addr(void); /** * @brief Initialize PHY module and do RF calibration * @param[in] init_data Initialization parameters to be used by the PHY * @param[inout] cal_data As input, calibration data previously obtained. As output, will contain new calibration data. * @param[in] cal_mode RF calibration mode * @return ESP_CAL_DATA_CHECK_FAIL if the calibration data checksum fails or if the calibration data is outdated, other values are reserved for future use *//* ... */ int register_chipv7_phy(const esp_phy_init_data_t* init_data, esp_phy_calibration_data_t *cal_data, esp_phy_calibration_mode_t cal_mode); /** * @brief Get the format version of calibration data used by PHY library. * @return Format version number, OR'ed with BIT(16) if PHY is in WIFI only mode. *//* ... */ uint32_t phy_get_rf_cal_version(void); /** * @brief Set RF/BB for only WIFI mode or coexist(WIFI & BT) mode * @param[in] true is for only WIFI mode, false is for coexist mode. default is 0. * @return NULL *//* ... */ void phy_set_wifi_mode_only(bool wifi_only); /** * @brief Set BT the highest priority in coexist mode. * @return NULL *//* ... */ void coex_bt_high_prio(void); /** * @brief Open PHY and RF. *//* ... */ void phy_wakeup_init(void); /** * @brief Shutdown PHY and RF. *//* ... */ void phy_close_rf(void); #if !CONFIG_IDF_TARGET_ESP32 /** * @brief Disable PHY temperature sensor. *//* ... */ void phy_xpd_tsens(void);/* ... */ #endif #if CONFIG_IDF_TARGET_ESP32C3 /** * @brief Update internal state of PHY when wifi deinit powers off the wifi power domain. *//* ... */ void phy_init_flag(void);/* ... */ #endif #if SOC_PM_SUPPORT_PMU_MODEM_STATE /** * @brief Get the configuration info of PHY i2c master command memory. * * @param[out] attr the configuration info of PHY i2c master command memory * @param[out] size the count of PHY i2c master command memory configuration *//* ... */ void phy_i2c_master_command_mem_cfg(phy_i2c_master_command_attribute_t *attr, int *size);/* ... */ #endif /** * @brief Store and load PHY digital registers. * * @param backup_en if backup_en is true, store PHY digital registers to memory. Otherwise load PHY digital registers from memory * @param mem_addr Memory address to store and load PHY digital registers * * @return memory size *//* ... */ uint8_t phy_dig_reg_backup(bool backup_en, uint32_t *mem_addr); #if CONFIG_MAC_BB_PD /** * @brief Store and load baseband registers. *//* ... */ void phy_freq_mem_backup(bool backup_en, uint32_t *mem);/* ... */ #endif #if CONFIG_ESP_PHY_ENABLE_USB /** * @brief Enable or disable USB when phy init. *//* ... */ void phy_bbpll_en_usb(bool en);/* ... */ #endif #if CONFIG_IDF_TARGET_ESP32S2 /** * @brief Phy version select for ESP32S2 *//* ... */ void phy_eco_version_sel(uint8_t chip_ver);/* ... */ #endif #if CONFIG_ESP_PHY_IMPROVE_RX_11B /** * @brief Improve Wi-Fi receive 11b pkts when modules with high interference. * * @attention 1.This is a workaround to improve Wi-Fi receive 11b pkts for some modules using AC-DC power supply with high interference. * @attention 2.Enable this will sacrifice Wi-Fi OFDM receive performance.But to guarantee 11b receive performance serves as a bottom line in this case. * * @param enable Enable or disable. *//* ... */ void phy_improve_rx_special(bool enable);/* ... */ #endif /** * @brief Enable phy track pll * *//* ... */ void phy_track_pll_init(void); /** * @brief Disable phy track pll * *//* ... */ void phy_track_pll_deinit(void); /** * @brief Set the flag recorded which modem has already enabled phy * *//* ... */ void phy_set_modem_flag(esp_phy_modem_t modem); /** * @brief Clear the flag to record which modem calls phy disenable *//* ... */ void phy_clr_modem_flag(esp_phy_modem_t modem); /** * @brief Get the flag recorded which modem has already enabled phy * *//* ... */ esp_phy_modem_t phy_get_modem_flag(void); /** * @brief Get the PHY lock, only used in esp_phy, the user should not use this function. * *//* ... */ _lock_t phy_get_lock(void); /** * @brief Call this funnction to track pll immediately. * *//* ... */ void phy_track_pll(void); /** * @brief PHY antenna default configuration * *//* ... */ void ant_dft_cfg(bool default_ant); /** * @brief PHY tx antenna config * *//* ... */ void ant_tx_cfg(uint8_t ant0); /** * @brief PHY rx antenna config * *//* ... */ void ant_rx_cfg(bool auto_en, uint8_t ant0, uint8_t ant1); /** * @brief PHY antenna need update * *//* ... */ bool phy_ant_need_update(void); /** * @brief PHY antenna need update * *//* ... */ void phy_ant_clr_update_flag(void); /** * @brief PHY antenna configuration update * *//* ... */ void phy_ant_update(void); #if SOC_PM_SUPPORT_PMU_MODEM_STATE /** * @brief Get the REGDMA config value of the BBPLL in analog i2c master burst mode * * @return the BBPLL REGDMA configure value of i2c master burst mode *//* ... */ uint32_t phy_ana_i2c_master_burst_bbpll_config(void); /** * @brief Get the REGDMA config value of the RF PHY on or off in analog i2c master burst mode * * @param[in] on true for enable RF PHY, false for disable RF PHY. * * @return the RF on or off configure value of i2c master burst mode *//* ... */ uint32_t phy_ana_i2c_master_burst_rf_onoff(bool on);/* ... */ #endif #if CONFIG_ESP_WIFI_ENHANCED_LIGHT_SLEEP /** * @brief On sleep->modem->active wakeup process, since RF has been turned on by hardware in * modem state, `sleep_modem_wifi_do_phy_retention` and `phy_wakeup_init` will be skipped * in `esp_phy_enable`, but there are still some configurations that need to be restored * by software, which are packed in this function. *//* ... */ void phy_wakeup_from_modem_state_extra_init(void);/* ... */ #endif #if SOC_PM_MODEM_RETENTION_BY_REGDMA && CONFIG_MAC_BB_PD /** * @brief PHY module sleep data (includes AGC, TX, NRX, BB, FE, etc..) initialize. *//* ... */ void esp_phy_sleep_data_init(void); /** * @brief PHY module sleep data de-initialize. *//* ... */ void esp_phy_sleep_data_deinit(void);/* ... */ #endif #ifdef __cplusplus }{...} #endif
Details