Merge branch 'bugfix/update_esp_rom_newlib_time_c6_h2' into 'master'

update esp rom newlib-time on c2 c6 and h2

See merge request espressif/esp-idf!22142
This commit is contained in:
Jiang Guang Ming 2023-02-06 15:36:04 +08:00
commit 7d25e3853c
10 changed files with 15 additions and 775 deletions

View File

@ -224,16 +224,9 @@ else() # Regular app build
rom_linker_script("version")
rom_linker_script("mbedtls")
if(time_t_size EQUAL 8)
# The ROM functions listed in this linker script depend on sizeof(time_t).
# Since ROM for ESP32-C2 was compiled for 64-bit time_t, only link these functions
# if the toolchain is also using 64-bit time_t.
rom_linker_script("newlib-time")
if(CONFIG_NEWLIB_NANO_FORMAT)
# nano formatting functions in ROM are also built for 64-bit time_t.
rom_linker_script("newlib-nano")
endif()
if(CONFIG_NEWLIB_NANO_FORMAT)
# nano formatting functions in ROM are also built for 64-bit time_t.
rom_linker_script("newlib-nano")
endif()
elseif(target STREQUAL "esp32c6")
@ -254,41 +247,22 @@ else() # Regular app build
rom_linker_script("wdt")
endif()
if(time_t_size EQUAL 8)
# The ROM functions listed in this linker script depend on sizeof(time_t).
# ESP32-C6 ROM was compiled for 64-bit time_t, only link these functions
# if the toolchain is also using 64-bit time_t.
rom_linker_script("newlib-time")
if(NOT CONFIG_NEWLIB_NANO_FORMAT)
# Normal(Non-nano) formatting functions in ROM are also built for 64-bit time_t.
rom_linker_script("newlib-normal")
endif()
if(NOT CONFIG_NEWLIB_NANO_FORMAT)
# Normal(Non-nano) formatting functions in ROM are also built for 64-bit time_t.
rom_linker_script("newlib-normal")
endif()
elseif(target STREQUAL "esp32h2")
rom_linker_script("newlib")
rom_linker_script("version")
rom_linker_script("phy")
rom_linker_script("coexist")
rom_linker_script("net80211")
rom_linker_script("pp")
if(CONFIG_SPI_FLASH_ROM_IMPL)
rom_linker_script("spiflash")
endif()
if(time_t_size EQUAL 8)
# The ROM functions listed in this linker script depend on sizeof(time_t).
# Since ROM for ESP32-H2 was compiled for 64-bit time_t, only link these functions
# if the toolchain is also using 64-bit time_t.
rom_linker_script("newlib-time")
if(CONFIG_NEWLIB_NANO_FORMAT)
# nano formatting functions in ROM are also built for 64-bit time_t.
rom_linker_script("newlib-nano")
endif()
if(CONFIG_NEWLIB_NANO_FORMAT)
# nano formatting functions in ROM are also built for 64-bit time_t.
rom_linker_script("newlib-nano")
endif()
endif()

View File

@ -1,16 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* These are the newlib functions and the .bss/.data symbols which are related to 'time_t'
or other structures which include 'time_t' (like 'struct stat').
These ROM functions were compiled with sizeof(time_t) == 8.
When compiling with sizeof(time_t) == 4, these functions should be excluded from the build.
*/
asctime = 0x40000638;
asctime_r = 0x4000063c;
_isatty_r = 0x400004b4;
PROVIDE( __smakebuf_r = 0x400005a0 );
PROVIDE( __swhatbuf_r = 0x400005a4 );
PROVIDE( __swsetup_r = 0x400005b0 );

View File

@ -30,6 +30,7 @@ strncmp = 0x400004a4;
strlen = 0x400004a8;
strstr = 0x400004ac;
bzero = 0x400004b0;
_isatty_r = 0x400004b4;
sbrk = 0x400004b8;
isalnum = 0x400004bc;
isalpha = 0x400004c0;
@ -88,8 +89,11 @@ fflush = 0x40000590;
_fflush_r = 0x40000594;
_fwalk = 0x40000598;
_fwalk_reent = 0x4000059c;
__smakebuf_r = 0x400005a0;
__swhatbuf_r = 0x400005a4;
__swbuf_r = 0x400005a8;
__swbuf = 0x400005ac;
__swsetup_r = 0x400005b0;
_strtod_l = 0x400005b4;
_strtod_r = 0x400005b8;
strtod_l = 0x400005bc;
@ -123,6 +127,8 @@ __ratio = 0x40000628;
_mprec_log10 = 0x4000062c;
__copybits = 0x40000630;
__any_on = 0x40000634;
asctime = 0x40000638;
asctime_r = 0x4000063c;
atof = 0x40000640;
atoff = 0x40000644;
_dtoa_r = 0x40000648;

View File

@ -1,15 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* These are the newlib functions and the .bss/.data symbols which are related to 'time_t'
or other structures which include 'time_t' (like 'struct stat').
These ROM functions were compiled with sizeof(time_t) == 4.
When compiling with sizeof(time_t) == 8, these functions should be excluded from the build.
*/
_isatty_r = 0x40000380;
PROVIDE( __smakebuf_r = 0x4000046c );
PROVIDE( __swhatbuf_r = 0x40000470 );
PROVIDE( __swsetup_r = 0x4000047c );

View File

@ -1,47 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ROM function interface esp32h2.rom.coexist.ld for esp32h2
*
*
* Generated from ./target/esp32h2/interface-esp32h2.yml md5sum 5d28ef7e188c1740008212a69e90de1e
*
* Compatible with ROM where ECO version equal or greater to 0.
*
* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT.
*/
/***************************************
Group rom_coexist
***************************************/
/* Functions */
esp_coex_rom_version_get = 0x40000aec;
coex_bt_release = 0x40000af0;
coex_bt_request = 0x40000af4;
coex_core_ble_conn_dyn_prio_get = 0x40000af8;
coex_core_event_duration_get = 0x40000afc;
coex_core_pti_get = 0x40000b00;
coex_core_release = 0x40000b04;
coex_core_request = 0x40000b08;
coex_core_status_get = 0x40000b0c;
coex_core_timer_idx_get = 0x40000b10;
coex_event_duration_get = 0x40000b14;
coex_hw_timer_disable = 0x40000b18;
coex_hw_timer_enable = 0x40000b1c;
coex_hw_timer_set = 0x40000b20;
coex_schm_interval_set = 0x40000b24;
coex_schm_lock = 0x40000b28;
coex_schm_unlock = 0x40000b2c;
coex_status_get = 0x40000b30;
coex_wifi_release = 0x40000b34;
esp_coex_ble_conn_dynamic_prio_get = 0x40000b38;
/* Data (.data, .bss, .rodata) */
coex_env_ptr = 0x4087ffc4;
coex_pti_tab_ptr = 0x4087ffc0;
coex_schm_env_ptr = 0x4087ffbc;
coexist_funcs = 0x4087ffb8;
g_coa_funcs_p = 0x4087ffb4;
g_coex_param_ptr = 0x4087ffb0;

View File

@ -1,65 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ROM function interface esp32h2.rom.net80211.ld for esp32h2
*
*
* Generated from ./target/esp32h2/interface-esp32h2.yml md5sum 5d28ef7e188c1740008212a69e90de1e
*
* Compatible with ROM where ECO version equal or greater to 0.
*
* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT.
*/
/***************************************
Group rom_net80211
***************************************/
/* Functions */
esp_net80211_rom_version_get = 0x40000b3c;
ampdu_dispatch = 0x40000b40;
ampdu_dispatch_all = 0x40000b44;
ampdu_dispatch_as_many_as_possible = 0x40000b48;
ampdu_dispatch_movement = 0x40000b4c;
ampdu_dispatch_upto = 0x40000b50;
chm_is_at_home_channel = 0x40000b54;
cnx_node_is_existing = 0x40000b58;
cnx_node_search = 0x40000b5c;
ic_ebuf_recycle_rx = 0x40000b60;
ic_ebuf_recycle_tx = 0x40000b64;
ic_reset_rx_ba = 0x40000b68;
ieee80211_align_eb = 0x40000b6c;
ieee80211_ampdu_reorder = 0x40000b70;
ieee80211_ampdu_start_age_timer = 0x40000b74;
ieee80211_encap_esfbuf = 0x40000b78;
ieee80211_is_tx_allowed = 0x40000b7c;
ieee80211_output_pending_eb = 0x40000b80;
ieee80211_output_process = 0x40000b84;
ieee80211_set_tx_desc = 0x40000b88;
sta_input = 0x40000b8c;
wifi_get_macaddr = 0x40000b90;
wifi_rf_phy_disable = 0x40000b94;
wifi_rf_phy_enable = 0x40000b98;
ic_ebuf_alloc = 0x40000b9c;
ieee80211_classify = 0x40000ba0;
ieee80211_copy_eb_header = 0x40000ba4;
ieee80211_recycle_cache_eb = 0x40000ba8;
ieee80211_search_node = 0x40000bac;
ieee80211_crypto_encap = 0x40000bb0;
ieee80211_crypto_decap = 0x40000bb4;
ieee80211_decap = 0x40000bb8;
ieee80211_set_tx_pti = 0x40000bbc;
wifi_is_started = 0x40000bc0;
ieee80211_gettid = 0x40000bc4;
/* Data (.data, .bss, .rodata) */
net80211_funcs = 0x4087ffac;
g_scan = 0x4087ffa8;
g_chm = 0x4087ffa4;
g_ic_ptr = 0x4087ffa0;
g_hmac_cnt_ptr = 0x4087ff9c;
g_tx_cacheq_ptr = 0x4087ff98;
s_netstack_free = 0x4087ff94;
mesh_rxcb = 0x4087ff90;
sta_rxcb = 0x4087ff8c;

View File

@ -1,15 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* These are the newlib functions and the .bss/.data symbols which are related to 'time_t'
or other structures which include 'time_t' (like 'struct stat').
These ROM functions were compiled with sizeof(time_t) == 4.
When compiling with sizeof(time_t) == 8, these functions should be excluded from the build.
*/
_isatty_r = 0x40000380;
PROVIDE( __smakebuf_r = 0x4000046c );
PROVIDE( __swhatbuf_r = 0x40000470 );
PROVIDE( __swsetup_r = 0x4000047c );

View File

@ -1,196 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ROM function interface esp32h2.rom.phy.ld for esp32h2
*
*
* Generated from ./target/esp32h2/interface-esp32h2.yml md5sum 5d28ef7e188c1740008212a69e90de1e
*
* Compatible with ROM where ECO version equal or greater to 0.
*
* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT.
*/
/***************************************
Group rom_phy
***************************************/
/* Functions */
phy_get_romfuncs = 0x40000e38;
rom_abs_temp = 0x40000e3c;
rom_bb_bss_cbw40_dig = 0x40000e40;
rom_bb_wdg_test_en = 0x40000e44;
rom_bb_wdt_get_status = 0x40000e48;
rom_bb_wdt_int_enable = 0x40000e4c;
rom_bb_wdt_rst_enable = 0x40000e50;
rom_bb_wdt_timeout_clear = 0x40000e54;
rom_cbw2040_cfg = 0x40000e58;
rom_check_noise_floor = 0x40000e5c;
rom_chip_i2c_readReg = 0x40000e60;
rom_chip_i2c_writeReg = 0x40000e64;
rom_correct_rf_ana_gain = 0x40000e68;
rom_dc_iq_est = 0x40000e6c;
rom_disable_agc = 0x40000e70;
rom_en_pwdet = 0x40000e74;
rom_enable_agc = 0x40000e78;
rom_get_bbgain_db = 0x40000e7c;
rom_get_data_sat = 0x40000e80;
rom_get_i2c_read_mask = 0x40000e84;
rom_get_pwctrl_correct = 0x40000e88;
rom_get_rf_gain_qdb = 0x40000e8c;
rom_i2c_readReg = 0x40000e90;
rom_i2c_readReg_Mask = 0x40000e94;
rom_i2c_writeReg = 0x40000e98;
rom_i2c_writeReg_Mask = 0x40000e9c;
rom_index_to_txbbgain = 0x40000ea0;
rom_iq_est_disable = 0x40000ea4;
rom_iq_est_enable = 0x40000ea8;
rom_linear_to_db = 0x40000eac;
rom_loopback_mode_en = 0x40000eb0;
rom_mhz2ieee = 0x40000eb4;
rom_noise_floor_auto_set = 0x40000eb8;
rom_pbus_debugmode = 0x40000ebc;
rom_pbus_force_mode = 0x40000ec0;
rom_pbus_force_test = 0x40000ec4;
rom_pbus_rd = 0x40000ec8;
rom_pbus_rd_addr = 0x40000ecc;
rom_pbus_rd_shift = 0x40000ed0;
rom_pbus_set_dco = 0x40000ed4;
rom_pbus_set_rxgain = 0x40000ed8;
rom_pbus_workmode = 0x40000edc;
rom_pbus_xpd_rx_off = 0x40000ee0;
rom_pbus_xpd_rx_on = 0x40000ee4;
rom_pbus_xpd_tx_off = 0x40000ee8;
rom_pbus_xpd_tx_on = 0x40000eec;
rom_phy_byte_to_word = 0x40000ef0;
rom_phy_disable_cca = 0x40000ef4;
rom_phy_enable_cca = 0x40000ef8;
rom_phy_get_noisefloor = 0x40000efc;
rom_phy_get_rx_freq = 0x40000f00;
rom_phy_set_bbfreq_init = 0x40000f04;
rom_pow_usr = 0x40000f08;
rom_pwdet_sar2_init = 0x40000f0c;
rom_read_hw_noisefloor = 0x40000f10;
rom_read_sar_dout = 0x40000f14;
rom_set_cal_rxdc = 0x40000f18;
rom_set_chan_cal_interp = 0x40000f1c;
rom_set_loopback_gain = 0x40000f20;
rom_set_noise_floor = 0x40000f24;
rom_set_rxclk_en = 0x40000f28;
rom_set_tx_dig_gain = 0x40000f2c;
rom_set_txcap_reg = 0x40000f30;
rom_set_txclk_en = 0x40000f34;
rom_spur_cal = 0x40000f38;
rom_spur_reg_write_one_tone = 0x40000f3c;
rom_target_power_add_backoff = 0x40000f40;
rom_tx_pwctrl_bg_init = 0x40000f44;
rom_txbbgain_to_index = 0x40000f48;
rom_wifi_11g_rate_chg = 0x40000f4c;
rom_write_gain_mem = 0x40000f50;
chip726_phyrom_version = 0x40000f54;
rom_disable_wifi_agc = 0x40000f58;
rom_enable_wifi_agc = 0x40000f5c;
rom_set_tx_gain_table = 0x40000f60;
rom_bt_index_to_bb = 0x40000f64;
rom_bt_bb_to_index = 0x40000f68;
rom_wr_bt_tx_atten = 0x40000f6c;
rom_wr_bt_tx_gain_mem = 0x40000f70;
rom_spur_coef_cfg = 0x40000f74;
rom_bb_bss_cbw40 = 0x40000f78;
rom_set_cca = 0x40000f7c;
rom_tx_paon_set = 0x40000f80;
rom_i2cmst_reg_init = 0x40000f84;
rom_iq_corr_enable = 0x40000f88;
rom_fe_reg_init = 0x40000f8c;
rom_agc_reg_init = 0x40000f90;
rom_bb_reg_init = 0x40000f94;
rom_mac_enable_bb = 0x40000f98;
rom_bb_wdg_cfg = 0x40000f9c;
rom_force_txon = 0x40000fa0;
rom_fe_txrx_reset = 0x40000fa4;
rom_set_rx_comp = 0x40000fa8;
rom_set_pbus_reg = 0x40000fac;
rom_write_chan_freq = 0x40000fb0;
rom_phy_xpd_rf = 0x40000fb4;
rom_set_xpd_sar = 0x40000fb8;
rom_write_dac_gain2 = 0x40000fbc;
rom_get_target_power_offset = 0x40000fc0;
rom_write_txrate_power_offset = 0x40000fc4;
rom_get_rate_fcc_index = 0x40000fc8;
rom_get_rate_target_power = 0x40000fcc;
rom_write_wifi_dig_gain = 0x40000fd0;
rom_bt_correct_rf_ana_gain = 0x40000fd4;
rom_pkdet_vol_start = 0x40000fd8;
rom_read_sar2_code = 0x40000fdc;
rom_get_sar2_vol = 0x40000fe0;
rom_get_pll_vol = 0x40000fe4;
rom_get_phy_target_power = 0x40000fe8;
rom_temp_to_power = 0x40000fec;
rom_phy_track_pll_cap = 0x40000ff0;
rom_phy_pwdet_always_en = 0x40000ff4;
rom_phy_pwdet_onetime_en = 0x40000ff8;
rom_get_i2c_mst0_mask = 0x40000ffc;
rom_get_i2c_hostid = 0x40001000;
rom_enter_critical_phy = 0x40001004;
rom_exit_critical_phy = 0x40001008;
rom_chip_i2c_readReg_org = 0x4000100c;
rom_i2c_paral_set_mst0 = 0x40001010;
rom_i2c_paral_set_read = 0x40001014;
rom_i2c_paral_read = 0x40001018;
rom_i2c_paral_write = 0x4000101c;
rom_i2c_paral_write_num = 0x40001020;
rom_i2c_paral_write_mask = 0x40001024;
rom_bb_bss_cbw40_ana = 0x40001028;
rom_chan_to_freq = 0x4000102c;
rom_open_i2c_xpd = 0x40001030;
rom_dac_rate_set = 0x40001034;
rom_tsens_read_init = 0x40001038;
rom_tsens_code_read = 0x4000103c;
rom_tsens_index_to_dac = 0x40001040;
rom_tsens_index_to_offset = 0x40001044;
rom_tsens_dac_cal = 0x40001048;
rom_code_to_temp = 0x4000104c;
rom_write_pll_cap_mem = 0x40001050;
rom_pll_correct_dcap = 0x40001054;
rom_phy_en_hw_set_freq = 0x40001058;
rom_phy_dis_hw_set_freq = 0x4000105c;
rom_pll_vol_cal = 0x40001060;
rom_wrtie_pll_cap = 0x40001064;
rom_set_tx_gain_mem = 0x40001068;
rom_bt_tx_dig_gain = 0x4000106c;
rom_bt_get_tx_gain = 0x40001070;
rom_get_chan_target_power = 0x40001074;
rom_get_tx_gain_value = 0x40001078;
rom_wifi_tx_dig_gain = 0x4000107c;
rom_wifi_get_tx_gain = 0x40001080;
rom_fe_i2c_reg_renew = 0x40001084;
rom_wifi_agc_sat_gain = 0x40001088;
rom_i2c_master_reset = 0x4000108c;
rom_bt_filter_reg = 0x40001090;
rom_phy_bbpll_cal = 0x40001094;
rom_i2c_sar2_init_code = 0x40001098;
rom_phy_param_addr = 0x4000109c;
rom_phy_reg_init = 0x400010a0;
rom_set_chan_reg = 0x400010a4;
rom_phy_wakeup_init = 0x400010a8;
rom_phy_i2c_init1 = 0x400010ac;
rom_tsens_temp_read = 0x400010b0;
rom_bt_track_pll_cap = 0x400010b4;
rom_wifi_track_pll_cap = 0x400010b8;
rom_wifi_set_tx_gain = 0x400010bc;
rom_txpwr_cal_track = 0x400010c0;
rom_tx_pwctrl_background = 0x400010c4;
rom_bt_set_tx_gain = 0x400010c8;
rom_noise_check_loop = 0x400010cc;
rom_phy_close_rf = 0x400010d0;
rom_phy_xpd_tsens = 0x400010d4;
rom_phy_freq_mem_backup = 0x400010d8;
rom_phy_ant_init = 0x400010dc;
rom_bt_track_tx_power = 0x400010e0;
rom_wifi_track_tx_power = 0x400010e4;
rom_phy_dig_reg_backup = 0x400010e8;
chip726_phyrom_version_num = 0x400010ec;
/* Data (.data, .bss, .rodata) */
phy_param_rom = 0x4087fcd8;

View File

@ -1,263 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ROM function interface esp32h2.rom.pp.ld for esp32h2
*
*
* Generated from ./target/esp32h2/interface-esp32h2.yml md5sum 5d28ef7e188c1740008212a69e90de1e
*
* Compatible with ROM where ECO version equal or greater to 0.
*
* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT.
*/
/***************************************
Group rom_pp
***************************************/
/* Functions */
esp_pp_rom_version_get = 0x40000bc8;
RC_GetBlockAckTime = 0x40000bcc;
ebuf_list_remove = 0x40000bd0;
esf_buf_alloc = 0x40000bd4;
esf_buf_alloc_dynamic = 0x40000bd8;
esf_buf_recycle = 0x40000bdc;
GetAccess = 0x40000be0;
hal_mac_is_low_rate_enabled = 0x40000be4;
hal_mac_tx_get_blockack = 0x40000be8;
hal_mac_tx_set_ppdu = 0x40000bec;
ic_get_trc = 0x40000bf0;
ic_mac_deinit = 0x40000bf4;
ic_mac_init = 0x40000bf8;
ic_interface_enabled = 0x40000bfc;
is_lmac_idle = 0x40000c00;
lmacAdjustTimestamp = 0x40000c04;
lmacDiscardAgedMSDU = 0x40000c08;
lmacDiscardMSDU = 0x40000c0c;
lmacEndFrameExchangeSequence = 0x40000c10;
lmacIsIdle = 0x40000c14;
lmacIsLongFrame = 0x40000c18;
lmacMSDUAged = 0x40000c1c;
lmacPostTxComplete = 0x40000c20;
lmacProcessAllTxTimeout = 0x40000c24;
lmacProcessCollisions = 0x40000c28;
lmacProcessRxSucData = 0x40000c2c;
lmacReachLongLimit = 0x40000c30;
lmacReachShortLimit = 0x40000c34;
lmacRecycleMPDU = 0x40000c38;
lmacRxDone = 0x40000c3c;
lmacSetTxFrame = 0x40000c40;
lmacTxDone = 0x40000c44;
lmacTxFrame = 0x40000c48;
mac_tx_set_duration = 0x40000c4c;
mac_tx_set_plcp0 = 0x40000c50;
mac_tx_set_plcp1 = 0x40000c54;
mac_tx_set_plcp2 = 0x40000c58;
pm_check_state = 0x40000c5c;
pm_disable_dream_timer = 0x40000c60;
pm_disable_sleep_delay_timer = 0x40000c64;
pm_dream = 0x40000c68;
pm_mac_wakeup = 0x40000c6c;
pm_mac_sleep = 0x40000c70;
pm_enable_active_timer = 0x40000c74;
pm_enable_sleep_delay_timer = 0x40000c78;
pm_local_tsf_process = 0x40000c7c;
pm_set_beacon_filter = 0x40000c80;
pm_is_in_wifi_slice_threshold = 0x40000c84;
pm_is_waked = 0x40000c88;
pm_keep_alive = 0x40000c8c;
pm_on_beacon_rx = 0x40000c90;
pm_on_data_rx = 0x40000c94;
pm_on_tbtt = 0x40000c98;
pm_parse_beacon = 0x40000c9c;
pm_process_tim = 0x40000ca0;
pm_rx_beacon_process = 0x40000ca4;
pm_rx_data_process = 0x40000ca8;
pm_sleep = 0x40000cac;
pm_sleep_for = 0x40000cb0;
pm_tbtt_process = 0x40000cb4;
ppAMPDU2Normal = 0x40000cb8;
ppAssembleAMPDU = 0x40000cbc;
ppCalFrameTimes = 0x40000cc0;
ppCalSubFrameLength = 0x40000cc4;
ppCalTxAMPDULength = 0x40000cc8;
ppCheckTxAMPDUlength = 0x40000ccc;
ppDequeueRxq_Locked = 0x40000cd0;
ppDequeueTxQ = 0x40000cd4;
ppEmptyDelimiterLength = 0x40000cd8;
ppEnqueueRxq = 0x40000cdc;
ppEnqueueTxDone = 0x40000ce0;
ppGetTxframe = 0x40000ce4;
ppMapTxQueue = 0x40000ce8;
ppProcTxSecFrame = 0x40000cec;
ppProcessRxPktHdr = 0x40000cf0;
ppProcessTxQ = 0x40000cf4;
ppRecordBarRRC = 0x40000cf8;
ppRecycleAmpdu = 0x40000cfc;
ppRecycleRxPkt = 0x40000d00;
ppResortTxAMPDU = 0x40000d04;
ppResumeTxAMPDU = 0x40000d08;
ppRxFragmentProc = 0x40000d0c;
ppRxPkt = 0x40000d10;
ppRxProtoProc = 0x40000d14;
ppSearchTxQueue = 0x40000d18;
ppSearchTxframe = 0x40000d1c;
ppSelectNextQueue = 0x40000d20;
ppSubFromAMPDU = 0x40000d24;
ppTask = 0x40000d28;
ppTxPkt = 0x40000d2c;
ppTxProtoProc = 0x40000d30;
ppTxqUpdateBitmap = 0x40000d34;
pp_coex_tx_request = 0x40000d38;
pp_hdrsize = 0x40000d3c;
pp_post = 0x40000d40;
pp_process_hmac_waiting_txq = 0x40000d44;
rcGetAmpduSched = 0x40000d48;
rcUpdateRxDone = 0x40000d4c;
rc_get_trc = 0x40000d50;
rc_get_trc_by_index = 0x40000d54;
rcAmpduLowerRate = 0x40000d58;
rcampduuprate = 0x40000d5c;
rcClearCurAMPDUSched = 0x40000d60;
rcClearCurSched = 0x40000d64;
rcClearCurStat = 0x40000d68;
rcGetSched = 0x40000d6c;
rcLowerSched = 0x40000d70;
rcSetTxAmpduLimit = 0x40000d74;
rcTxUpdatePer = 0x40000d78;
rcUpdateAckSnr = 0x40000d7c;
rcUpdateRate = 0x40000d80;
rcUpdateTxDone = 0x40000d84;
rcUpdateTxDoneAmpdu2 = 0x40000d88;
rcUpSched = 0x40000d8c;
rssi_margin = 0x40000d90;
rx11NRate2AMPDULimit = 0x40000d94;
TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40000d98;
TRC_AMPDU_PER_UP_THRESHOLD = 0x40000d9c;
trc_calc_duration = 0x40000da0;
trc_isTxAmpduOperational = 0x40000da4;
trc_onAmpduOp = 0x40000da8;
TRC_PER_IS_GOOD = 0x40000dac;
trc_SetTxAmpduState = 0x40000db0;
trc_tid_isTxAmpduOperational = 0x40000db4;
trcAmpduSetState = 0x40000db8;
wDevCheckBlockError = 0x40000dbc;
wDev_AppendRxBlocks = 0x40000dc0;
wDev_DiscardFrame = 0x40000dc4;
wDev_GetNoiseFloor = 0x40000dc8;
wDev_IndicateAmpdu = 0x40000dcc;
wDev_IndicateFrame = 0x40000dd0;
wdev_mac_reg_load = 0x40000dd4;
wdev_mac_reg_store = 0x40000dd8;
wdev_mac_special_reg_load = 0x40000ddc;
wdev_mac_special_reg_store = 0x40000de0;
wdev_mac_wakeup = 0x40000de4;
wdev_mac_sleep = 0x40000de8;
hal_mac_is_dma_enable = 0x40000dec;
wDev_ProcessFiq = 0x40000df0;
wDev_ProcessRxSucData = 0x40000df4;
wdevProcessRxSucDataAll = 0x40000df8;
wdev_csi_len_align = 0x40000dfc;
ppDequeueTxDone_Locked = 0x40000e00;
ppProcTxDone = 0x40000e04;
pm_tx_data_done_process = 0x40000e08;
config_is_cache_tx_buf_enabled = 0x40000e0c;
ppMapWaitTxq = 0x40000e10;
ppProcessWaitingQueue = 0x40000e14;
ppDisableQueue = 0x40000e18;
pm_allow_tx = 0x40000e1c;
wdev_is_data_in_rxlist = 0x40000e20;
ppProcTxCallback = 0x40000e24;
mac_tx_set_hesig = 0x40000e28;
ppCalPreFecPaddingFactor = 0x40000e2c;
mac_tx_set_tb = 0x40000e30;
mac_tx_set_mplen = 0x40000e34;
/* Data (.data, .bss, .rodata) */
our_instances_ptr = 0x4004ffe0;
pTxRx = 0x4087ff88;
lmacConfMib_ptr = 0x4087ff84;
our_wait_eb = 0x4087ff80;
our_tx_eb = 0x4087ff7c;
pp_wdev_funcs = 0x4087ff78;
g_osi_funcs_p = 0x4087ff74;
wDevCtrl_ptr = 0x4087ff70;
g_wdev_last_desc_reset_ptr = 0x4004ffdc;
wDevMacSleep_ptr = 0x4087ff6c;
g_lmac_cnt_ptr = 0x4087ff68;
our_controls_ptr = 0x4004ffd8;
pp_sig_cnt_ptr = 0x4087ff64;
g_eb_list_desc_ptr = 0x4087ff60;
s_fragment_ptr = 0x4087ff5c;
if_ctrl_ptr = 0x4087ff58;
g_intr_lock_mux = 0x4087ff54;
g_wifi_global_lock = 0x4087ff50;
s_wifi_queue = 0x4087ff4c;
pp_task_hdl = 0x4087ff48;
s_pp_task_create_sem = 0x4087ff44;
s_pp_task_del_sem = 0x4087ff40;
g_wifi_menuconfig_ptr = 0x4087ff3c;
xphyQueue = 0x4087ff38;
ap_no_lr_ptr = 0x4087ff34;
rc11BSchedTbl_ptr = 0x4087ff30;
rc11NSchedTbl_ptr = 0x4087ff2c;
rcLoRaSchedTbl_ptr = 0x4087ff28;
BasicOFDMSched_ptr = 0x4087ff24;
trc_ctl_ptr = 0x4087ff20;
g_pm_cnt_ptr = 0x4087ff1c;
g_pm_ptr = 0x4087ff18;
g_pm_cfg_ptr = 0x4087ff14;
g_esp_mesh_quick_funcs_ptr = 0x4087ff10;
g_txop_queue_status_ptr = 0x4087ff0c;
g_mac_sleep_en_ptr = 0x4087ff08;
g_mesh_is_root_ptr = 0x4087ff04;
g_mesh_topology_ptr = 0x4087ff00;
g_mesh_init_ps_type_ptr = 0x4087fefc;
g_mesh_is_started_ptr = 0x4087fef8;
g_config_func = 0x4087fef4;
g_net80211_tx_func = 0x4087fef0;
g_timer_func = 0x4087feec;
s_michael_mic_failure_cb = 0x4087fee8;
wifi_sta_rx_probe_req = 0x4087fee4;
g_tx_done_cb_func = 0x4087fee0;
g_per_conn_trc = 0x4087fe94;
s_encap_amsdu_func = 0x4087fe90;
s_mplen_high_bitmap = 0x4087fce8;
s_mplen_low_bitmap = 0x4087fcf8;
rx_beacon_count = 0x4087fe8c;
rx_beacon_sw_parse = 0x4087fe88;
rx_beacon_hw_parse = 0x4087fe84;
rx_beacon_tim_count = 0x4087fe80;
rx_beacon_tim_udata = 0x4087fe7c;
rx_beacon_tim_udata_bitmap = 0x4087fe78;
rx_beacon_tim_bdata = 0x4087fe74;
rx_beacon_tim_bdata_bitmapctl = 0x4087fe70;
rx_beacon_tim_bdata_bitmap_trans = 0x4087fe6c;
rx_beacon_tim_bdata_bitmap_mbssid_self = 0x4087fe68;
rx_beacon_tim_bdata_bitmap_mbssid_other = 0x4087fe64;
rx_beacon_dtim_tim = 0x4087fe60;
rx_beacon_dtim_tim_mcast = 0x4087fe5c;
amdpu_delay_time_ms = 0x4087fce4;
ampdu_delay_packet = 0x4087fce0;
ampdu_delay = 0x4087fe59;
first_ampdu = 0x4087fe58;
s_ht_ampdu_density_us = 0x4087fcde;
s_ht_ampdu_density = 0x4087fcdd;
s_running_phy_type = 0x4087fcdc;
complete_ena_tb_seqno = 0x4087fe54;
complete_ena_tb_final = 0x4087fe50;
complete_ena_tb_count = 0x4087fe4c;
s_itwt_state = 0x4087fe48;
g_dbg_interp_tsf = 0x4087fe44;
g_dbg_interp_tsf_end = 0x4087fe40;
g_dbg_closrf_tsf = 0x4087fe3c;
g_dbg_closrf_idx = 0x4087fe38;
g_dbg_closrf_blk = 0x4087fe34;
queue_history = 0x4087fd6c;
queue_history_idx = 0x4087fd68;
s_he_min_len_bytes = 0x4087fd2c;
s_he_dcm_min_len_bytes = 0x4087fd0c;
s_mplen_vi_bitmap = 0x4087fd08;
s_mplen_low_bitmap = 0x4087fcf8;
s_mplen_high_bitmap = 0x4087fce8;

View File

@ -1,123 +0,0 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ROM function interface esp32h2.rom.rvfp.ld for esp32h2
*
*
* Generated from ./target/esp32h2/interface-esp32h2.yml md5sum 5d28ef7e188c1740008212a69e90de1e
*
* Compatible with ROM where ECO version equal or greater to 0.
*
* THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT.
*/
/***************************************
Group rvfplib
***************************************/
/* Functions */
__adddf3 = 0x400009e4;
__addsf3 = 0x400009e8;
__eqdf2 = 0x400009ec;
__eqsf2 = 0x400009f0;
__extendsfdf2 = 0x400009f4;
__fixdfdi = 0x400009f8;
__fixdfsi = 0x400009fc;
__fixsfdi = 0x40000a00;
__fixsfsi = 0x40000a04;
__fixunsdfsi = 0x40000a08;
__fixunssfdi = 0x40000a0c;
__fixunssfsi = 0x40000a10;
__floatdidf = 0x40000a14;
__floatdisf = 0x40000a18;
__floatsidf = 0x40000a1c;
__floatsisf = 0x40000a20;
__floatundidf = 0x40000a24;
__floatundisf = 0x40000a28;
__floatunsidf = 0x40000a2c;
__floatunsisf = 0x40000a30;
__gedf2 = 0x40000a34;
__gesf2 = 0x40000a38;
__gtdf2 = 0x40000a3c;
__gtsf2 = 0x40000a40;
__ledf2 = 0x40000a44;
__lesf2 = 0x40000a48;
__ltdf2 = 0x40000a4c;
__ltsf2 = 0x40000a50;
__muldf3 = 0x40000a54;
__mulsf3 = 0x40000a58;
__nedf2 = 0x40000a5c;
__nesf2 = 0x40000a60;
__subdf3 = 0x40000a64;
__subsf3 = 0x40000a68;
__truncdfsf2 = 0x40000a6c;
/***************************************
Group libgcc
***************************************/
/* Functions */
__absvdi2 = 0x40000874;
__absvsi2 = 0x40000878;
__addvdi3 = 0x40000884;
__addvsi3 = 0x40000888;
__ashldi3 = 0x4000088c;
__ashrdi3 = 0x40000890;
__bswapdi2 = 0x40000894;
__bswapsi2 = 0x40000898;
__clear_cache = 0x4000089c;
__clrsbdi2 = 0x400008a0;
__clrsbsi2 = 0x400008a4;
__clzdi2 = 0x400008a8;
__clzsi2 = 0x400008ac;
__cmpdi2 = 0x400008b0;
__ctzdi2 = 0x400008b4;
__ctzsi2 = 0x400008b8;
__divdc3 = 0x400008bc;
__divdf3 = 0x400008c0;
__divdi3 = 0x400008c4;
__divsc3 = 0x400008c8;
__divsf3 = 0x400008cc;
__divsi3 = 0x400008d0;
__ffsdi2 = 0x400008e0;
__ffssi2 = 0x400008e4;
__gcc_bcmp = 0x40000924;
__lshrdi3 = 0x40000940;
__moddi3 = 0x4000094c;
__modsi3 = 0x40000950;
__muldc3 = 0x40000954;
__muldi3 = 0x4000095c;
__mulsc3 = 0x40000960;
__mulsi3 = 0x40000968;
__mulvdi3 = 0x4000096c;
__mulvsi3 = 0x40000970;
__negdf2 = 0x40000978;
__negdi2 = 0x4000097c;
__negsf2 = 0x40000980;
__negvdi2 = 0x40000984;
__negvsi2 = 0x40000988;
__paritysi2 = 0x40000990;
__popcountdi2 = 0x40000994;
__popcountsi2 = 0x40000998;
__powidf2 = 0x4000099c;
__powisf2 = 0x400009a0;
__subvdi3 = 0x400009ac;
__subvsi3 = 0x400009b0;
__ucmpdi2 = 0x400009b8;
__udivdi3 = 0x400009bc;
__udivmoddi4 = 0x400009c0;
__udivsi3 = 0x400009c4;
__udiv_w_sdiv = 0x400009c8;
__umoddi3 = 0x400009cc;
__umodsi3 = 0x400009d0;
__unorddf2 = 0x400009d4;
__unordsf2 = 0x400009d8;
__extenddftf2 = 0x400009dc;
__trunctfdf2 = 0x400009e0;
/***************************************
Group libgcc
***************************************/
/* Functions */