mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'feat/c61_c6lite_rom_freeze_update' into 'master'
feat(esp32c61): update for rom freeze Closes IDF-9405 See merge request espressif/esp-idf!30737
This commit is contained in:
commit
26ff7bb836
@ -7,20 +7,20 @@
|
||||
* Make sure the bootloader can load into main memory without overwriting itself.
|
||||
*
|
||||
* ESP32-C61 ROM static data usage is as follows:
|
||||
* - 0x4086ad08 - 0x4087c610: Shared buffers, used in UART/USB/SPI download mode only
|
||||
* - 0x4087c610 - 0x4087e610: PRO CPU stack, can be reclaimed as heap after RTOS startup
|
||||
* - 0x4087e610 - 0x40880000: ROM .bss and .data (not easily reclaimable)
|
||||
* - 0x4083ea70 - 0x4084ca70: Shared buffers, used in UART/USB/SPI download mode only
|
||||
* - 0x4084ca70 - 0x4084ea70: PRO CPU stack, can be reclaimed as heap after RTOS startup
|
||||
* - 0x4084ea70 - 0x40850000: ROM .bss and .data (not easily reclaimable)
|
||||
*
|
||||
* The 2nd stage bootloader can take space up to the end of ROM shared
|
||||
* buffers area (0x4087c610).
|
||||
* buffers area (0x4084ca70).
|
||||
*/
|
||||
|
||||
/* We consider 0x4087c610 to be the last usable address for 2nd stage bootloader stack overhead, dram_seg,
|
||||
/* We consider 0x4084ca70 to be the last usable address for 2nd stage bootloader stack overhead, dram_seg,
|
||||
* and work out iram_seg and iram_loader_seg addresses from there, backwards.
|
||||
*/
|
||||
|
||||
/* These lengths can be adjusted, if necessary: */
|
||||
bootloader_usable_dram_end = 0x4084c9f0;
|
||||
bootloader_usable_dram_end = 0x4084ca70;
|
||||
bootloader_stack_overhead = 0x2000; /* For safety margin between bootloader data section and startup stacks */
|
||||
bootloader_dram_seg_len = 0x5000;
|
||||
bootloader_iram_loader_seg_len = 0x7000;
|
||||
@ -45,7 +45,7 @@ MEMORY
|
||||
* 2. Update the value in this assert.
|
||||
* 3. Update SRAM_DRAM_END in components/esp_system/ld/esp32c61/memory.ld.in to the same value.
|
||||
*/
|
||||
ASSERT(bootloader_iram_loader_seg_start == 0x4083E9F0, "bootloader_iram_loader_seg_start inconsistent with SRAM_DRAM_END");
|
||||
ASSERT(bootloader_iram_loader_seg_start == 0x4083ea70, "bootloader_iram_loader_seg_start inconsistent with SRAM_DRAM_END");
|
||||
|
||||
/* Default entry point: */
|
||||
ENTRY(call_start_cpu0);
|
||||
@ -219,37 +219,37 @@ SECTIONS
|
||||
}
|
||||
|
||||
|
||||
/** TODO: [ESP32C61] IDF-9405, update after rom freeze
|
||||
/**
|
||||
* Appendix: Memory Usage of ROM bootloader
|
||||
*
|
||||
* 0x4086ad08 ------------------> _dram0_0_start
|
||||
* 0x4083ea70 ------------------> _dram0_0_start
|
||||
* | |
|
||||
* | |
|
||||
* | | 1. Large buffers that are only used in certain boot modes, see shared_buffers.h
|
||||
* | |
|
||||
* | |
|
||||
* 0x4087c610 ------------------> __stack_sentry
|
||||
* 0x4084ca70 ------------------> __stack_sentry
|
||||
* | |
|
||||
* | | 2. Startup pro cpu stack (freed when IDF app is running)
|
||||
* | |
|
||||
* 0x4087e610 ------------------> __stack (pro cpu)
|
||||
* 0x4084ea70 ------------------> __stack (pro cpu)
|
||||
* | |
|
||||
* | |
|
||||
* | | 3. Shared memory only used in startup code or nonos/early boot*
|
||||
* | | (can be freed when IDF runs)
|
||||
* | |
|
||||
* | |
|
||||
* 0x4087f564 ------------------> _dram0_rtos_reserved_start
|
||||
* 0x4084f5d0 ------------------> _dram0_rtos_reserved_start
|
||||
* | |
|
||||
* | |
|
||||
* | | 4. Shared memory used in startup code and when IDF runs
|
||||
* | |
|
||||
* | |
|
||||
* 0x4087fab0 ------------------> _dram0_rtos_reserved_end
|
||||
* 0x4084fc58 ------------------> _dram0_rtos_reserved_end
|
||||
* | |
|
||||
* 0x4087fce8 ------------------> _data_start_interface
|
||||
* 0x4084fc6c ------------------> _data_start_interface
|
||||
* | |
|
||||
* | | 5. End of DRAM is the 'interface' data with constant addresses (ECO compatible)
|
||||
* | |
|
||||
* 0x40880000 ------------------> _data_end_interface
|
||||
* 0x40850000 ------------------> _data_end_interface
|
||||
*/
|
||||
|
@ -3,8 +3,6 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/** ROM APIs
|
||||
*/
|
||||
|
||||
PROVIDE ( esp_rom_crc32_le = crc32_le );
|
||||
PROVIDE ( esp_rom_crc16_le = crc16_le );
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.coexist.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.coexist.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -18,26 +18,26 @@
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
esp_coex_rom_version_get = 0x40000a1c;
|
||||
coex_bt_release = 0x40000a20;
|
||||
coex_bt_request = 0x40000a24;
|
||||
coex_core_ble_conn_dyn_prio_get = 0x40000a28;
|
||||
coex_core_event_duration_get = 0x40000a2c;
|
||||
coex_core_pti_get = 0x40000a30;
|
||||
coex_core_release = 0x40000a34;
|
||||
coex_core_request = 0x40000a38;
|
||||
coex_core_status_get = 0x40000a3c;
|
||||
coex_core_timer_idx_get = 0x40000a40;
|
||||
coex_event_duration_get = 0x40000a44;
|
||||
coex_hw_timer_disable = 0x40000a48;
|
||||
coex_hw_timer_enable = 0x40000a4c;
|
||||
coex_hw_timer_set = 0x40000a50;
|
||||
coex_schm_interval_set = 0x40000a54;
|
||||
coex_schm_lock = 0x40000a58;
|
||||
coex_schm_unlock = 0x40000a5c;
|
||||
coex_status_get = 0x40000a60;
|
||||
coex_wifi_release = 0x40000a64;
|
||||
esp_coex_ble_conn_dynamic_prio_get = 0x40000a68;
|
||||
esp_coex_rom_version_get = 0x40000a30;
|
||||
coex_bt_release = 0x40000a34;
|
||||
coex_bt_request = 0x40000a38;
|
||||
coex_core_ble_conn_dyn_prio_get = 0x40000a3c;
|
||||
coex_core_event_duration_get = 0x40000a40;
|
||||
coex_core_pti_get = 0x40000a44;
|
||||
coex_core_release = 0x40000a48;
|
||||
coex_core_request = 0x40000a4c;
|
||||
coex_core_status_get = 0x40000a50;
|
||||
coex_core_timer_idx_get = 0x40000a54;
|
||||
coex_event_duration_get = 0x40000a58;
|
||||
coex_hw_timer_disable = 0x40000a5c;
|
||||
coex_hw_timer_enable = 0x40000a60;
|
||||
coex_hw_timer_set = 0x40000a64;
|
||||
coex_schm_interval_set = 0x40000a68;
|
||||
coex_schm_lock = 0x40000a6c;
|
||||
coex_schm_unlock = 0x40000a70;
|
||||
coex_status_get = 0x40000a74;
|
||||
coex_wifi_release = 0x40000a78;
|
||||
esp_coex_ble_conn_dynamic_prio_get = 0x40000a7c;
|
||||
/* Data (.data, .bss, .rodata) */
|
||||
coex_env_ptr = 0x4084ffc4;
|
||||
coex_pti_tab_ptr = 0x4084ffc0;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.heap.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.heap.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -230,7 +230,12 @@ Cache_MSPI_MMU_Set_Secure = 0x400006bc;
|
||||
Cache_Count_Flash_Pages = 0x400006c0;
|
||||
Cache_Travel_Tag_Memory = 0x400006c4;
|
||||
Cache_Get_Virtual_Addr = 0x400006c8;
|
||||
Cache_Flash_To_SPIRAM_Copy = 0x400006cc;
|
||||
flash2spiram_instruction_offset = 0x400006cc;
|
||||
flash2spiram_rodata_offset = 0x400006d0;
|
||||
flash_instr_rodata_start_page = 0x400006d4;
|
||||
flash_instr_rodata_end_page = 0x400006d8;
|
||||
Cache_Set_IDROM_MMU_Info = 0x400006dc;
|
||||
Cache_Flash_To_SPIRAM_Copy = 0x400006e0;
|
||||
/* Data (.data, .bss, .rodata) */
|
||||
rom_cache_op_cb = 0x4084ffcc;
|
||||
rom_cache_internal_table_ptr = 0x4084ffc8;
|
||||
@ -241,8 +246,8 @@ rom_cache_internal_table_ptr = 0x4084ffc8;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
ets_clk_get_xtal_freq = 0x400006d0;
|
||||
ets_clk_get_cpu_freq = 0x400006d4;
|
||||
ets_clk_get_xtal_freq = 0x400006e4;
|
||||
ets_clk_get_cpu_freq = 0x400006e8;
|
||||
|
||||
|
||||
/***************************************
|
||||
@ -250,21 +255,21 @@ ets_clk_get_cpu_freq = 0x400006d4;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
gpio_set_output_level = 0x400006d8;
|
||||
gpio_get_input_level = 0x400006dc;
|
||||
gpio_matrix_in = 0x400006e0;
|
||||
gpio_matrix_out = 0x400006e4;
|
||||
gpio_bypass_matrix_in = 0x400006e8;
|
||||
gpio_output_disable = 0x400006ec;
|
||||
gpio_output_enable = 0x400006f0;
|
||||
gpio_pad_input_disable = 0x400006f4;
|
||||
gpio_pad_input_enable = 0x400006f8;
|
||||
gpio_pad_pulldown = 0x400006fc;
|
||||
gpio_pad_pullup = 0x40000700;
|
||||
gpio_pad_select_gpio = 0x40000704;
|
||||
gpio_pad_set_drv = 0x40000708;
|
||||
gpio_pad_unhold = 0x4000070c;
|
||||
gpio_pad_hold = 0x40000710;
|
||||
gpio_set_output_level = 0x400006ec;
|
||||
gpio_get_input_level = 0x400006f0;
|
||||
gpio_matrix_in = 0x400006f4;
|
||||
gpio_matrix_out = 0x400006f8;
|
||||
gpio_bypass_matrix_in = 0x400006fc;
|
||||
gpio_output_disable = 0x40000700;
|
||||
gpio_output_enable = 0x40000704;
|
||||
gpio_pad_input_disable = 0x40000708;
|
||||
gpio_pad_input_enable = 0x4000070c;
|
||||
gpio_pad_pulldown = 0x40000710;
|
||||
gpio_pad_pullup = 0x40000714;
|
||||
gpio_pad_select_gpio = 0x40000718;
|
||||
gpio_pad_set_drv = 0x4000071c;
|
||||
gpio_pad_unhold = 0x40000720;
|
||||
gpio_pad_hold = 0x40000724;
|
||||
|
||||
|
||||
/***************************************
|
||||
@ -272,46 +277,33 @@ gpio_pad_hold = 0x40000710;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
esprv_intc_int_set_priority = 0x40000714;
|
||||
esprv_intc_int_set_threshold = 0x40000718;
|
||||
esprv_intc_int_enable = 0x4000071c;
|
||||
esprv_intc_int_disable = 0x40000720;
|
||||
esprv_intc_int_set_type = 0x40000724;
|
||||
PROVIDE( intr_handler_set = 0x40000728 );
|
||||
intr_matrix_set = 0x4000072c;
|
||||
ets_intr_register_ctx = 0x40000730;
|
||||
ets_intr_lock = 0x40000734;
|
||||
ets_intr_unlock = 0x40000738;
|
||||
ets_isr_attach = 0x4000073c;
|
||||
ets_isr_mask = 0x40000740;
|
||||
ets_isr_unmask = 0x40000744;
|
||||
esprv_intc_int_set_priority = 0x40000728;
|
||||
esprv_intc_int_set_threshold = 0x4000072c;
|
||||
esprv_intc_int_enable = 0x40000730;
|
||||
esprv_intc_int_disable = 0x40000734;
|
||||
esprv_intc_int_set_type = 0x40000738;
|
||||
PROVIDE( intr_handler_set = 0x4000073c );
|
||||
intr_matrix_set = 0x40000740;
|
||||
ets_intr_register_ctx = 0x40000744;
|
||||
ets_intr_lock = 0x40000748;
|
||||
ets_intr_unlock = 0x4000074c;
|
||||
ets_isr_attach = 0x40000750;
|
||||
ets_isr_mask = 0x40000754;
|
||||
ets_isr_unmask = 0x40000758;
|
||||
|
||||
|
||||
/***************************************
|
||||
Group crypto
|
||||
Group crc
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
md5_vector = 0x40000748;
|
||||
MD5Init = 0x4000074c;
|
||||
MD5Update = 0x40000750;
|
||||
MD5Final = 0x40000754;
|
||||
crc32_le = 0x40000758;
|
||||
crc16_le = 0x4000075c;
|
||||
crc8_le = 0x40000760;
|
||||
crc32_be = 0x40000764;
|
||||
crc16_be = 0x40000768;
|
||||
crc8_be = 0x4000076c;
|
||||
esp_crc8 = 0x40000770;
|
||||
ets_sha_enable = 0x40000774;
|
||||
ets_sha_disable = 0x40000778;
|
||||
ets_sha_get_state = 0x4000077c;
|
||||
ets_sha_init = 0x40000780;
|
||||
ets_sha_process = 0x40000784;
|
||||
ets_sha_starts = 0x40000788;
|
||||
ets_sha_update = 0x4000078c;
|
||||
ets_sha_finish = 0x40000790;
|
||||
ets_sha_clone = 0x40000794;
|
||||
crc32_le = 0x4000075c;
|
||||
crc16_le = 0x40000760;
|
||||
crc8_le = 0x40000764;
|
||||
crc32_be = 0x40000768;
|
||||
crc16_be = 0x4000076c;
|
||||
crc8_be = 0x40000770;
|
||||
esp_crc8 = 0x40000774;
|
||||
/* Data (.data, .bss, .rodata) */
|
||||
crc32_le_table_ptr = 0x4003fff8;
|
||||
crc16_le_table_ptr = 0x4003fff4;
|
||||
@ -321,36 +313,63 @@ crc16_be_table_ptr = 0x4003ffe8;
|
||||
crc8_be_table_ptr = 0x4003ffe4;
|
||||
|
||||
|
||||
/***************************************
|
||||
Group md5
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
md5_vector = 0x40000778;
|
||||
MD5Init = 0x4000077c;
|
||||
MD5Update = 0x40000780;
|
||||
MD5Final = 0x40000784;
|
||||
|
||||
|
||||
/***************************************
|
||||
Group hwcrypto
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
ets_sha_enable = 0x40000788;
|
||||
ets_sha_disable = 0x4000078c;
|
||||
ets_sha_get_state = 0x40000790;
|
||||
ets_sha_init = 0x40000794;
|
||||
ets_sha_process = 0x40000798;
|
||||
ets_sha_starts = 0x4000079c;
|
||||
ets_sha_update = 0x400007a0;
|
||||
ets_sha_finish = 0x400007a4;
|
||||
ets_sha_clone = 0x400007a8;
|
||||
|
||||
|
||||
/***************************************
|
||||
Group efuse
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
ets_efuse_read = 0x40000798;
|
||||
ets_efuse_program = 0x4000079c;
|
||||
ets_efuse_clear_program_registers = 0x400007a0;
|
||||
ets_efuse_write_key = 0x400007a4;
|
||||
ets_efuse_get_read_register_address = 0x400007a8;
|
||||
ets_efuse_get_key_purpose = 0x400007ac;
|
||||
ets_efuse_key_block_unused = 0x400007b0;
|
||||
ets_efuse_find_unused_key_block = 0x400007b4;
|
||||
ets_efuse_rs_calculate = 0x400007b8;
|
||||
ets_efuse_count_unused_key_blocks = 0x400007bc;
|
||||
ets_efuse_secure_boot_enabled = 0x400007c0;
|
||||
ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400007c4;
|
||||
ets_efuse_cache_encryption_enabled = 0x400007c8;
|
||||
ets_efuse_download_modes_disabled = 0x400007cc;
|
||||
ets_efuse_find_purpose = 0x400007d0;
|
||||
ets_efuse_force_send_resume = 0x400007d4;
|
||||
ets_efuse_get_flash_delay_us = 0x400007d8;
|
||||
ets_efuse_get_uart_print_control = 0x400007dc;
|
||||
ets_efuse_direct_boot_mode_disabled = 0x400007e0;
|
||||
ets_efuse_security_download_modes_enabled = 0x400007e4;
|
||||
ets_efuse_jtag_disabled = 0x400007e8;
|
||||
ets_efuse_usb_print_is_disabled = 0x400007ec;
|
||||
ets_efuse_usb_download_mode_disabled = 0x400007f0;
|
||||
ets_efuse_usb_device_disabled = 0x400007f4;
|
||||
ets_efuse_secure_boot_fast_wake_enabled = 0x400007f8;
|
||||
ets_efuse_read = 0x400007ac;
|
||||
ets_efuse_program = 0x400007b0;
|
||||
ets_efuse_clear_program_registers = 0x400007b4;
|
||||
ets_efuse_write_key = 0x400007b8;
|
||||
ets_efuse_get_read_register_address = 0x400007bc;
|
||||
ets_efuse_get_key_purpose = 0x400007c0;
|
||||
ets_efuse_key_block_unused = 0x400007c4;
|
||||
ets_efuse_find_unused_key_block = 0x400007c8;
|
||||
ets_efuse_rs_calculate = 0x400007cc;
|
||||
ets_efuse_count_unused_key_blocks = 0x400007d0;
|
||||
ets_efuse_secure_boot_enabled = 0x400007d4;
|
||||
ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400007d8;
|
||||
ets_efuse_cache_encryption_enabled = 0x400007dc;
|
||||
ets_efuse_download_modes_disabled = 0x400007e0;
|
||||
ets_efuse_find_purpose = 0x400007e4;
|
||||
ets_efuse_force_send_resume = 0x400007e8;
|
||||
ets_efuse_get_flash_delay_us = 0x400007ec;
|
||||
ets_efuse_get_uart_print_control = 0x400007f0;
|
||||
ets_efuse_direct_boot_mode_disabled = 0x400007f4;
|
||||
ets_efuse_security_download_modes_enabled = 0x400007f8;
|
||||
ets_efuse_jtag_disabled = 0x400007fc;
|
||||
ets_efuse_usb_print_is_disabled = 0x40000800;
|
||||
ets_efuse_usb_download_mode_disabled = 0x40000804;
|
||||
ets_efuse_usb_device_disabled = 0x40000808;
|
||||
ets_efuse_secure_boot_fast_wake_enabled = 0x4000080c;
|
||||
|
||||
|
||||
/***************************************
|
||||
@ -358,11 +377,11 @@ ets_efuse_secure_boot_fast_wake_enabled = 0x400007f8;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
ets_ecdsa_verify = 0x400007fc;
|
||||
ets_secure_boot_verify_bootloader_with_keys = 0x40000800;
|
||||
ets_secure_boot_verify_signature = 0x40000804;
|
||||
ets_secure_boot_read_key_digests = 0x40000808;
|
||||
ets_secure_boot_revoke_public_key_digest = 0x4000080c;
|
||||
ets_ecdsa_verify = 0x40000810;
|
||||
ets_secure_boot_verify_bootloader_with_keys = 0x40000814;
|
||||
ets_secure_boot_verify_signature = 0x40000818;
|
||||
ets_secure_boot_read_key_digests = 0x4000081c;
|
||||
ets_secure_boot_revoke_public_key_digest = 0x40000820;
|
||||
|
||||
|
||||
/***************************************
|
||||
@ -370,7 +389,7 @@ ets_secure_boot_revoke_public_key_digest = 0x4000080c;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
usb_serial_device_rx_one_char = 0x40000a0c;
|
||||
usb_serial_device_rx_one_char_block = 0x40000a10;
|
||||
usb_serial_device_tx_flush = 0x40000a14;
|
||||
usb_serial_device_tx_one_char = 0x40000a18;
|
||||
usb_serial_device_rx_one_char = 0x40000a20;
|
||||
usb_serial_device_rx_one_char_block = 0x40000a24;
|
||||
usb_serial_device_tx_flush = 0x40000a28;
|
||||
usb_serial_device_tx_one_char = 0x40000a2c;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.libgcc.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.libgcc.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -18,23 +18,23 @@
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
__addsf3 = 0x40000810;
|
||||
__divsf3 = 0x40000814;
|
||||
__eqsf2 = 0x40000818;
|
||||
__fixsfsi = 0x4000081c;
|
||||
__floatsisf = 0x40000820;
|
||||
__floatunsisf = 0x40000824;
|
||||
__gesf2 = 0x40000828;
|
||||
__gtsf2 = 0x4000082c;
|
||||
__lesf2 = 0x40000830;
|
||||
__ltsf2 = 0x40000834;
|
||||
__mulsf3 = 0x40000838;
|
||||
__negsf2 = 0x4000083c;
|
||||
__nesf2 = 0x40000840;
|
||||
__powisf2 = 0x40000844;
|
||||
__subsf3 = 0x40000848;
|
||||
__truncdfsf2 = 0x4000084c;
|
||||
__unordsf2 = 0x40000850;
|
||||
__addsf3 = 0x40000824;
|
||||
__divsf3 = 0x40000828;
|
||||
__eqsf2 = 0x4000082c;
|
||||
__fixsfsi = 0x40000830;
|
||||
__floatsisf = 0x40000834;
|
||||
__floatunsisf = 0x40000838;
|
||||
__gesf2 = 0x4000083c;
|
||||
__gtsf2 = 0x40000840;
|
||||
__lesf2 = 0x40000844;
|
||||
__ltsf2 = 0x40000848;
|
||||
__mulsf3 = 0x4000084c;
|
||||
__negsf2 = 0x40000850;
|
||||
__nesf2 = 0x40000854;
|
||||
__powisf2 = 0x40000858;
|
||||
__subsf3 = 0x4000085c;
|
||||
__truncdfsf2 = 0x40000860;
|
||||
__unordsf2 = 0x40000864;
|
||||
|
||||
|
||||
/***************************************
|
||||
@ -42,78 +42,78 @@ __unordsf2 = 0x40000850;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
__absvdi2 = 0x40000854;
|
||||
__absvsi2 = 0x40000858;
|
||||
__adddf3 = 0x4000085c;
|
||||
__addvdi3 = 0x40000860;
|
||||
__addvsi3 = 0x40000864;
|
||||
__ashldi3 = 0x40000868;
|
||||
__ashrdi3 = 0x4000086c;
|
||||
__bswapdi2 = 0x40000870;
|
||||
__bswapsi2 = 0x40000874;
|
||||
__clear_cache = 0x40000878;
|
||||
__clrsbdi2 = 0x4000087c;
|
||||
__clrsbsi2 = 0x40000880;
|
||||
__clzdi2 = 0x40000884;
|
||||
__clzsi2 = 0x40000888;
|
||||
__cmpdi2 = 0x4000088c;
|
||||
__ctzdi2 = 0x40000890;
|
||||
__ctzsi2 = 0x40000894;
|
||||
__divdc3 = 0x40000898;
|
||||
__divdf3 = 0x4000089c;
|
||||
__divdi3 = 0x400008a0;
|
||||
__divsc3 = 0x400008a4;
|
||||
__divsi3 = 0x400008a8;
|
||||
__eqdf2 = 0x400008ac;
|
||||
__extendsfdf2 = 0x400008b0;
|
||||
__ffsdi2 = 0x400008b4;
|
||||
__ffssi2 = 0x400008b8;
|
||||
__fixdfdi = 0x400008bc;
|
||||
__fixdfsi = 0x400008c0;
|
||||
__fixsfdi = 0x400008c4;
|
||||
__fixunsdfsi = 0x400008c8;
|
||||
__fixunssfdi = 0x400008cc;
|
||||
__fixunssfsi = 0x400008d0;
|
||||
__floatdidf = 0x400008d4;
|
||||
__floatdisf = 0x400008d8;
|
||||
__floatsidf = 0x400008dc;
|
||||
__floatundidf = 0x400008e0;
|
||||
__floatundisf = 0x400008e4;
|
||||
__floatunsidf = 0x400008e8;
|
||||
__gcc_bcmp = 0x400008ec;
|
||||
__gedf2 = 0x400008f0;
|
||||
__gtdf2 = 0x400008f4;
|
||||
__ledf2 = 0x400008f8;
|
||||
__lshrdi3 = 0x400008fc;
|
||||
__ltdf2 = 0x40000900;
|
||||
__moddi3 = 0x40000904;
|
||||
__modsi3 = 0x40000908;
|
||||
__muldc3 = 0x4000090c;
|
||||
__muldf3 = 0x40000910;
|
||||
__muldi3 = 0x40000914;
|
||||
__mulsc3 = 0x40000918;
|
||||
__mulsi3 = 0x4000091c;
|
||||
__mulvdi3 = 0x40000920;
|
||||
__mulvsi3 = 0x40000924;
|
||||
__nedf2 = 0x40000928;
|
||||
__negdf2 = 0x4000092c;
|
||||
__negdi2 = 0x40000930;
|
||||
__negvdi2 = 0x40000934;
|
||||
__negvsi2 = 0x40000938;
|
||||
__paritysi2 = 0x4000093c;
|
||||
__popcountdi2 = 0x40000940;
|
||||
__popcountsi2 = 0x40000944;
|
||||
__powidf2 = 0x40000948;
|
||||
__subdf3 = 0x4000094c;
|
||||
__subvdi3 = 0x40000950;
|
||||
__subvsi3 = 0x40000954;
|
||||
__ucmpdi2 = 0x40000958;
|
||||
__udivdi3 = 0x4000095c;
|
||||
__udivmoddi4 = 0x40000960;
|
||||
__udivsi3 = 0x40000964;
|
||||
__udiv_w_sdiv = 0x40000968;
|
||||
__umoddi3 = 0x4000096c;
|
||||
__umodsi3 = 0x40000970;
|
||||
__unorddf2 = 0x40000974;
|
||||
__extenddftf2 = 0x40000978;
|
||||
__trunctfdf2 = 0x4000097c;
|
||||
__absvdi2 = 0x40000868;
|
||||
__absvsi2 = 0x4000086c;
|
||||
__adddf3 = 0x40000870;
|
||||
__addvdi3 = 0x40000874;
|
||||
__addvsi3 = 0x40000878;
|
||||
__ashldi3 = 0x4000087c;
|
||||
__ashrdi3 = 0x40000880;
|
||||
__bswapdi2 = 0x40000884;
|
||||
__bswapsi2 = 0x40000888;
|
||||
__clear_cache = 0x4000088c;
|
||||
__clrsbdi2 = 0x40000890;
|
||||
__clrsbsi2 = 0x40000894;
|
||||
__clzdi2 = 0x40000898;
|
||||
__clzsi2 = 0x4000089c;
|
||||
__cmpdi2 = 0x400008a0;
|
||||
__ctzdi2 = 0x400008a4;
|
||||
__ctzsi2 = 0x400008a8;
|
||||
__divdc3 = 0x400008ac;
|
||||
__divdf3 = 0x400008b0;
|
||||
__divdi3 = 0x400008b4;
|
||||
__divsc3 = 0x400008b8;
|
||||
__divsi3 = 0x400008bc;
|
||||
__eqdf2 = 0x400008c0;
|
||||
__extendsfdf2 = 0x400008c4;
|
||||
__ffsdi2 = 0x400008c8;
|
||||
__ffssi2 = 0x400008cc;
|
||||
__fixdfdi = 0x400008d0;
|
||||
__fixdfsi = 0x400008d4;
|
||||
__fixsfdi = 0x400008d8;
|
||||
__fixunsdfsi = 0x400008dc;
|
||||
__fixunssfdi = 0x400008e0;
|
||||
__fixunssfsi = 0x400008e4;
|
||||
__floatdidf = 0x400008e8;
|
||||
__floatdisf = 0x400008ec;
|
||||
__floatsidf = 0x400008f0;
|
||||
__floatundidf = 0x400008f4;
|
||||
__floatundisf = 0x400008f8;
|
||||
__floatunsidf = 0x400008fc;
|
||||
__gcc_bcmp = 0x40000900;
|
||||
__gedf2 = 0x40000904;
|
||||
__gtdf2 = 0x40000908;
|
||||
__ledf2 = 0x4000090c;
|
||||
__lshrdi3 = 0x40000910;
|
||||
__ltdf2 = 0x40000914;
|
||||
__moddi3 = 0x40000918;
|
||||
__modsi3 = 0x4000091c;
|
||||
__muldc3 = 0x40000920;
|
||||
__muldf3 = 0x40000924;
|
||||
__muldi3 = 0x40000928;
|
||||
__mulsc3 = 0x4000092c;
|
||||
__mulsi3 = 0x40000930;
|
||||
__mulvdi3 = 0x40000934;
|
||||
__mulvsi3 = 0x40000938;
|
||||
__nedf2 = 0x4000093c;
|
||||
__negdf2 = 0x40000940;
|
||||
__negdi2 = 0x40000944;
|
||||
__negvdi2 = 0x40000948;
|
||||
__negvsi2 = 0x4000094c;
|
||||
__paritysi2 = 0x40000950;
|
||||
__popcountdi2 = 0x40000954;
|
||||
__popcountsi2 = 0x40000958;
|
||||
__powidf2 = 0x4000095c;
|
||||
__subdf3 = 0x40000960;
|
||||
__subvdi3 = 0x40000964;
|
||||
__subvsi3 = 0x40000968;
|
||||
__ucmpdi2 = 0x4000096c;
|
||||
__udivdi3 = 0x40000970;
|
||||
__udivmoddi4 = 0x40000974;
|
||||
__udivsi3 = 0x40000978;
|
||||
__udiv_w_sdiv = 0x4000097c;
|
||||
__umoddi3 = 0x40000980;
|
||||
__umodsi3 = 0x40000984;
|
||||
__unorddf2 = 0x40000988;
|
||||
__extenddftf2 = 0x4000098c;
|
||||
__trunctfdf2 = 0x40000990;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.net80211.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.net80211.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -18,41 +18,58 @@
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
esp_net80211_rom_version_get = 0x40000a6c;
|
||||
ampdu_dispatch = 0x40000a70;
|
||||
ampdu_dispatch_all = 0x40000a74;
|
||||
ampdu_dispatch_as_many_as_possible = 0x40000a78;
|
||||
ampdu_dispatch_movement = 0x40000a7c;
|
||||
ampdu_dispatch_upto = 0x40000a80;
|
||||
chm_is_at_home_channel = 0x40000a84;
|
||||
cnx_node_is_existing = 0x40000a88;
|
||||
cnx_node_search = 0x40000a8c;
|
||||
ic_ebuf_recycle_rx = 0x40000a90;
|
||||
ic_ebuf_recycle_tx = 0x40000a94;
|
||||
ic_reset_rx_ba = 0x40000a98;
|
||||
ieee80211_align_eb = 0x40000a9c;
|
||||
/* ieee80211_ampdu_reorder = 0x40000aa0; */
|
||||
ieee80211_ampdu_start_age_timer = 0x40000aa4;
|
||||
ieee80211_encap_esfbuf = 0x40000aa8;
|
||||
ieee80211_is_tx_allowed = 0x40000aac;
|
||||
ieee80211_output_pending_eb = 0x40000ab0;
|
||||
ieee80211_output_process = 0x40000ab4;
|
||||
ieee80211_set_tx_desc = 0x40000ab8;
|
||||
sta_input = 0x40000abc;
|
||||
wifi_get_macaddr = 0x40000ac0;
|
||||
wifi_rf_phy_disable = 0x40000ac4;
|
||||
wifi_rf_phy_enable = 0x40000ac8;
|
||||
ic_ebuf_alloc = 0x40000acc;
|
||||
ieee80211_classify = 0x40000ad0;
|
||||
ieee80211_copy_eb_header = 0x40000ad4;
|
||||
ieee80211_recycle_cache_eb = 0x40000ad8;
|
||||
ieee80211_search_node = 0x40000adc;
|
||||
ieee80211_crypto_encap = 0x40000ae0;
|
||||
ieee80211_crypto_decap = 0x40000ae4;
|
||||
ieee80211_decap = 0x40000ae8;
|
||||
ieee80211_set_tx_pti = 0x40000aec;
|
||||
wifi_is_started = 0x40000af0;
|
||||
ieee80211_gettid = 0x40000af4;
|
||||
esp_net80211_rom_version_get = 0x40000a80;
|
||||
esp_wifi_internal_tx = 0x40000a84;
|
||||
ampdu_dispatch = 0x40000a88;
|
||||
ampdu_dispatch_all = 0x40000a8c;
|
||||
ampdu_dispatch_as_many_as_possible = 0x40000a90;
|
||||
ampdu_dispatch_movement = 0x40000a94;
|
||||
ampdu_dispatch_upto = 0x40000a98;
|
||||
chm_is_at_home_channel = 0x40000a9c;
|
||||
cnx_node_is_existing = 0x40000aa0;
|
||||
cnx_node_search = 0x40000aa4;
|
||||
ic_ebuf_recycle_rx = 0x40000aa8;
|
||||
ic_ebuf_recycle_tx = 0x40000aac;
|
||||
ic_reset_rx_ba = 0x40000ab0;
|
||||
ic_ebuf_alloc = 0x40000ab4;
|
||||
ic_reset_extra_softap_rx_ba = 0x40000ab8;
|
||||
ieee80211_align_eb = 0x40000abc;
|
||||
ieee80211_ampdu_reorder = 0x40000ac0;
|
||||
ieee80211_ampdu_start_age_timer = 0x40000ac4;
|
||||
ieee80211_encap_esfbuf = 0x40000ac8;
|
||||
ieee80211_is_tx_allowed = 0x40000acc;
|
||||
ieee80211_output_pending_eb = 0x40000ad0;
|
||||
ieee80211_output_process = 0x40000ad4;
|
||||
ieee80211_set_tx_desc = 0x40000ad8;
|
||||
ieee80211_classify = 0x40000adc;
|
||||
ieee80211_copy_eb_header = 0x40000ae0;
|
||||
ieee80211_recycle_cache_eb = 0x40000ae4;
|
||||
ieee80211_search_node = 0x40000ae8;
|
||||
ieee80211_crypto_encap = 0x40000aec;
|
||||
ieee80211_crypto_decap = 0x40000af0;
|
||||
ieee80211_decap = 0x40000af4;
|
||||
ieee80211_set_tx_pti = 0x40000af8;
|
||||
ieee80211_gettid = 0x40000afc;
|
||||
ieee80211_post_hmac_tx = 0x40000b00;
|
||||
ieee80211_alloc_tx_buf = 0x40000b04;
|
||||
ieee80211_output_do = 0x40000b08;
|
||||
ieee80211_find_elem_match = 0x40000b0c;
|
||||
ieee80211_find_ie_match = 0x40000b10;
|
||||
ieee80211_find_elem = 0x40000b14;
|
||||
ieee80211_find_ext_elem = 0x40000b18;
|
||||
ieee80211_find_ie = 0x40000b1c;
|
||||
ieee80211_find_ext_ie = 0x40000b20;
|
||||
ieee80211_merge_mbssid_profile = 0x40000b24;
|
||||
ieee80211_encap_esfbuf_htc = 0x40000b28;
|
||||
wifi_get_macaddr = 0x40000b2c;
|
||||
wifi_rf_phy_disable = 0x40000b30;
|
||||
wifi_rf_phy_enable = 0x40000b34;
|
||||
wifi_is_started = 0x40000b38;
|
||||
sta_input = 0x40000b3c;
|
||||
sta_rx_eapol = 0x40000b40;
|
||||
sta_reset_beacon_timeout = 0x40000b44;
|
||||
sta_get_beacon_timeout = 0x40000b48;
|
||||
ampdu_process_multicast_address_qos_frame = 0x40000b4c;
|
||||
/* Data (.data, .bss, .rodata) */
|
||||
net80211_funcs = 0x4084ffac;
|
||||
g_scan = 0x4084ffa8;
|
||||
@ -61,5 +78,11 @@ g_ic_ptr = 0x4084ffa0;
|
||||
g_hmac_cnt_ptr = 0x4084ff9c;
|
||||
g_tx_cacheq_ptr = 0x4084ff98;
|
||||
s_netstack_free = 0x4084ff94;
|
||||
mesh_rxcb = 0x4084ff90;
|
||||
sta_rxcb = 0x4084ff8c;
|
||||
s_encap_amsdu_func = 0x4084ff90;
|
||||
mesh_rxcb = 0x4084ff8c;
|
||||
sta_rxcb = 0x4084ff88;
|
||||
s_netstack_ref = 0x4084ff84;
|
||||
g_sta_connected_flag = 0x4084ff81;
|
||||
g_itwt_fid = 0x4084ff80;
|
||||
g_misc_nvs = 0x4084ff7c;
|
||||
esp_test_dump_htc = 0x4084ff78;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.newlib-nano.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.newlib-nano.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.newlib.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.newlib.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.phy.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.phy.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -18,179 +18,292 @@
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
phy_get_romfuncs = 0x40000d68;
|
||||
rom_abs_temp = 0x40000d6c;
|
||||
rom_bb_bss_cbw40_dig = 0x40000d70;
|
||||
rom_bb_wdg_test_en = 0x40000d74;
|
||||
rom_bb_wdt_get_status = 0x40000d78;
|
||||
rom_bb_wdt_int_enable = 0x40000d7c;
|
||||
rom_bb_wdt_rst_enable = 0x40000d80;
|
||||
rom_bb_wdt_timeout_clear = 0x40000d84;
|
||||
rom_cbw2040_cfg = 0x40000d88;
|
||||
rom_check_noise_floor = 0x40000d8c;
|
||||
rom_chip_i2c_readReg = 0x40000d90;
|
||||
rom_chip_i2c_writeReg = 0x40000d94;
|
||||
rom_correct_rf_ana_gain = 0x40000d98;
|
||||
rom_dc_iq_est = 0x40000d9c;
|
||||
rom_disable_agc = 0x40000da0;
|
||||
rom_en_pwdet = 0x40000da4;
|
||||
rom_enable_agc = 0x40000da8;
|
||||
rom_get_bbgain_db = 0x40000dac;
|
||||
rom_get_data_sat = 0x40000db0;
|
||||
rom_get_i2c_read_mask = 0x40000db4;
|
||||
rom_get_pwctrl_correct = 0x40000db8;
|
||||
rom_get_rf_gain_qdb = 0x40000dbc;
|
||||
rom_i2c_readReg = 0x40000dc0;
|
||||
rom_i2c_readReg_Mask = 0x40000dc4;
|
||||
rom_i2c_writeReg = 0x40000dc8;
|
||||
rom_i2c_writeReg_Mask = 0x40000dcc;
|
||||
rom_index_to_txbbgain = 0x40000dd0;
|
||||
rom_iq_est_disable = 0x40000dd4;
|
||||
rom_iq_est_enable = 0x40000dd8;
|
||||
rom_linear_to_db = 0x40000ddc;
|
||||
rom_loopback_mode_en = 0x40000de0;
|
||||
rom_mhz2ieee = 0x40000de4;
|
||||
rom_noise_floor_auto_set = 0x40000de8;
|
||||
rom_pbus_debugmode = 0x40000dec;
|
||||
rom_pbus_force_mode = 0x40000df0;
|
||||
rom_pbus_force_test = 0x40000df4;
|
||||
rom_pbus_rd = 0x40000df8;
|
||||
rom_pbus_rd_addr = 0x40000dfc;
|
||||
rom_pbus_rd_shift = 0x40000e00;
|
||||
rom_pbus_set_dco = 0x40000e04;
|
||||
rom_pbus_set_rxgain = 0x40000e08;
|
||||
rom_pbus_workmode = 0x40000e0c;
|
||||
rom_pbus_xpd_rx_off = 0x40000e10;
|
||||
rom_pbus_xpd_rx_on = 0x40000e14;
|
||||
rom_pbus_xpd_tx_off = 0x40000e18;
|
||||
rom_pbus_xpd_tx_on = 0x40000e1c;
|
||||
rom_phy_byte_to_word = 0x40000e20;
|
||||
rom_phy_disable_cca = 0x40000e24;
|
||||
rom_phy_enable_cca = 0x40000e28;
|
||||
rom_phy_get_noisefloor = 0x40000e2c;
|
||||
rom_phy_get_rx_freq = 0x40000e30;
|
||||
rom_phy_set_bbfreq_init = 0x40000e34;
|
||||
rom_pow_usr = 0x40000e38;
|
||||
rom_pwdet_sar2_init = 0x40000e3c;
|
||||
rom_read_hw_noisefloor = 0x40000e40;
|
||||
rom_read_sar_dout = 0x40000e44;
|
||||
rom_set_cal_rxdc = 0x40000e48;
|
||||
rom_set_chan_cal_interp = 0x40000e4c;
|
||||
rom_set_loopback_gain = 0x40000e50;
|
||||
rom_set_noise_floor = 0x40000e54;
|
||||
rom_set_rxclk_en = 0x40000e58;
|
||||
rom_set_tx_dig_gain = 0x40000e5c;
|
||||
rom_set_txcap_reg = 0x40000e60;
|
||||
rom_set_txclk_en = 0x40000e64;
|
||||
rom_spur_cal = 0x40000e68;
|
||||
rom_spur_reg_write_one_tone = 0x40000e6c;
|
||||
rom_target_power_add_backoff = 0x40000e70;
|
||||
rom_tx_pwctrl_bg_init = 0x40000e74;
|
||||
rom_txbbgain_to_index = 0x40000e78;
|
||||
rom_wifi_11g_rate_chg = 0x40000e7c;
|
||||
rom_write_gain_mem = 0x40000e80;
|
||||
chip726_phyrom_version = 0x40000e84;
|
||||
rom_disable_wifi_agc = 0x40000e88;
|
||||
rom_enable_wifi_agc = 0x40000e8c;
|
||||
rom_set_tx_gain_table = 0x40000e90;
|
||||
rom_bt_index_to_bb = 0x40000e94;
|
||||
rom_bt_bb_to_index = 0x40000e98;
|
||||
rom_wr_bt_tx_atten = 0x40000e9c;
|
||||
rom_wr_bt_tx_gain_mem = 0x40000ea0;
|
||||
rom_spur_coef_cfg = 0x40000ea4;
|
||||
rom_bb_bss_cbw40 = 0x40000ea8;
|
||||
rom_set_cca = 0x40000eac;
|
||||
rom_tx_paon_set = 0x40000eb0;
|
||||
rom_i2cmst_reg_init = 0x40000eb4;
|
||||
rom_iq_corr_enable = 0x40000eb8;
|
||||
rom_fe_reg_init = 0x40000ebc;
|
||||
rom_agc_reg_init = 0x40000ec0;
|
||||
rom_bb_reg_init = 0x40000ec4;
|
||||
rom_mac_enable_bb = 0x40000ec8;
|
||||
rom_bb_wdg_cfg = 0x40000ecc;
|
||||
rom_force_txon = 0x40000ed0;
|
||||
rom_fe_txrx_reset = 0x40000ed4;
|
||||
rom_set_rx_comp = 0x40000ed8;
|
||||
rom_set_pbus_reg = 0x40000edc;
|
||||
rom_write_chan_freq = 0x40000ee0;
|
||||
rom_phy_xpd_rf = 0x40000ee4;
|
||||
rom_set_xpd_sar = 0x40000ee8;
|
||||
rom_write_dac_gain2 = 0x40000eec;
|
||||
rom_get_target_power_offset = 0x40000ef0;
|
||||
rom_write_txrate_power_offset = 0x40000ef4;
|
||||
rom_get_rate_fcc_index = 0x40000ef8;
|
||||
rom_get_rate_target_power = 0x40000efc;
|
||||
rom_write_wifi_dig_gain = 0x40000f00;
|
||||
rom_bt_correct_rf_ana_gain = 0x40000f04;
|
||||
rom_pkdet_vol_start = 0x40000f08;
|
||||
rom_read_sar2_code = 0x40000f0c;
|
||||
rom_get_sar2_vol = 0x40000f10;
|
||||
rom_get_pll_vol = 0x40000f14;
|
||||
rom_get_phy_target_power = 0x40000f18;
|
||||
rom_temp_to_power = 0x40000f1c;
|
||||
rom_phy_track_pll_cap = 0x40000f20;
|
||||
rom_phy_pwdet_always_en = 0x40000f24;
|
||||
rom_phy_pwdet_onetime_en = 0x40000f28;
|
||||
rom_get_i2c_mst0_mask = 0x40000f2c;
|
||||
rom_get_i2c_hostid = 0x40000f30;
|
||||
rom_enter_critical_phy = 0x40000f34;
|
||||
rom_exit_critical_phy = 0x40000f38;
|
||||
rom_chip_i2c_readReg_org = 0x40000f3c;
|
||||
rom_i2c_paral_set_mst0 = 0x40000f40;
|
||||
rom_i2c_paral_set_read = 0x40000f44;
|
||||
rom_i2c_paral_read = 0x40000f48;
|
||||
rom_i2c_paral_write = 0x40000f4c;
|
||||
rom_i2c_paral_write_num = 0x40000f50;
|
||||
rom_i2c_paral_write_mask = 0x40000f54;
|
||||
rom_bb_bss_cbw40_ana = 0x40000f58;
|
||||
rom_chan_to_freq = 0x40000f5c;
|
||||
rom_open_i2c_xpd = 0x40000f60;
|
||||
rom_dac_rate_set = 0x40000f64;
|
||||
rom_tsens_read_init = 0x40000f68;
|
||||
rom_tsens_code_read = 0x40000f6c;
|
||||
rom_tsens_index_to_dac = 0x40000f70;
|
||||
rom_tsens_index_to_offset = 0x40000f74;
|
||||
rom_tsens_dac_cal = 0x40000f78;
|
||||
rom_code_to_temp = 0x40000f7c;
|
||||
rom_write_pll_cap_mem = 0x40000f80;
|
||||
rom_pll_correct_dcap = 0x40000f84;
|
||||
rom_phy_en_hw_set_freq = 0x40000f88;
|
||||
rom_phy_dis_hw_set_freq = 0x40000f8c;
|
||||
rom_pll_vol_cal = 0x40000f90;
|
||||
rom_wrtie_pll_cap = 0x40000f94;
|
||||
rom_set_tx_gain_mem = 0x40000f98;
|
||||
rom_bt_tx_dig_gain = 0x40000f9c;
|
||||
rom_bt_get_tx_gain = 0x40000fa0;
|
||||
rom_get_chan_target_power = 0x40000fa4;
|
||||
rom_get_tx_gain_value = 0x40000fa8;
|
||||
rom_wifi_tx_dig_gain = 0x40000fac;
|
||||
rom_wifi_get_tx_gain = 0x40000fb0;
|
||||
rom_fe_i2c_reg_renew = 0x40000fb4;
|
||||
rom_wifi_agc_sat_gain = 0x40000fb8;
|
||||
rom_i2c_master_reset = 0x40000fbc;
|
||||
rom_bt_filter_reg = 0x40000fc0;
|
||||
rom_phy_bbpll_cal = 0x40000fc4;
|
||||
rom_i2c_sar2_init_code = 0x40000fc8;
|
||||
rom_phy_param_addr = 0x40000fcc;
|
||||
rom_phy_reg_init = 0x40000fd0;
|
||||
rom_set_chan_reg = 0x40000fd4;
|
||||
rom_phy_wakeup_init = 0x40000fd8;
|
||||
rom_phy_i2c_init1 = 0x40000fdc;
|
||||
rom_tsens_temp_read = 0x40000fe0;
|
||||
rom_bt_track_pll_cap = 0x40000fe4;
|
||||
rom_wifi_track_pll_cap = 0x40000fe8;
|
||||
rom_wifi_set_tx_gain = 0x40000fec;
|
||||
rom_txpwr_cal_track = 0x40000ff0;
|
||||
rom_tx_pwctrl_background = 0x40000ff4;
|
||||
rom_bt_set_tx_gain = 0x40000ff8;
|
||||
rom_noise_check_loop = 0x40000ffc;
|
||||
rom_phy_close_rf = 0x40001000;
|
||||
rom_phy_xpd_tsens = 0x40001004;
|
||||
rom_phy_freq_mem_backup = 0x40001008;
|
||||
rom_phy_ant_init = 0x4000100c;
|
||||
rom_bt_track_tx_power = 0x40001010;
|
||||
rom_wifi_track_tx_power = 0x40001014;
|
||||
rom_phy_dig_reg_backup = 0x40001018;
|
||||
chip726_phyrom_version_num = 0x4000101c;
|
||||
phy_param_addr = 0x4000104c;
|
||||
chip762_phyrom_version = 0x40001050;
|
||||
chip762_phyrom_version_num = 0x40001054;
|
||||
phy_get_rc_dout = 0x40001058;
|
||||
phy_rc_cal = 0x4000105c;
|
||||
phy_abs_temp = 0x40001060;
|
||||
phy_set_chan_cal_interp = 0x40001064;
|
||||
phy_loopback_mode_en = 0x40001068;
|
||||
phy_get_data_sat = 0x4000106c;
|
||||
phy_byte_to_word = 0x40001070;
|
||||
phy_bb_bss_cbw40 = 0x40001074;
|
||||
phy_set_chan_reg = 0x40001078;
|
||||
phy_i2c_master_reset = 0x4000107c;
|
||||
phy_chan14_mic_enable = 0x40001080;
|
||||
phy_chan14_mic_cfg = 0x40001084;
|
||||
phy_freq_module_resetn = 0x40001088;
|
||||
phy_freq_chan_en_sw = 0x4000108c;
|
||||
phy_write_chan_freq = 0x40001090;
|
||||
phy_get_freq_mem_param = 0x40001094;
|
||||
phy_get_freq_mem_addr = 0x40001098;
|
||||
phy_wr_rf_freq_mem = 0x4000109c;
|
||||
phy_read_rf_freq_mem = 0x400010a0;
|
||||
phy_freq_i2c_mem_write = 0x400010a4;
|
||||
phy_freq_reg_init = 0x400010a8;
|
||||
phy_freq_num_get_data = 0x400010ac;
|
||||
phy_freq_i2c_num_addr = 0x400010b0;
|
||||
phy_freq_i2c_write_set = 0x400010b4;
|
||||
phy_pll_dac_mem_update = 0x400010b8;
|
||||
phy_pll_cap_mem_update = 0x400010bc;
|
||||
phy_get_rf_freq_cap = 0x400010c0;
|
||||
phy_get_rf_freq_init = 0x400010c4;
|
||||
phy_freq_get_i2c_data = 0x400010c8;
|
||||
phy_freq_i2c_data_write = 0x400010cc;
|
||||
phy_set_chan_freq_hw_init = 0x400010d0;
|
||||
phy_en_hw_set_freq = 0x400010d4;
|
||||
phy_dis_hw_set_freq = 0x400010d8;
|
||||
phy_wait_freq_set_busy = 0x400010dc;
|
||||
phy_set_chan_freq_sw_start = 0x400010e0;
|
||||
phy_wait_i2c_sdm_stable = 0x400010e4;
|
||||
phy_reg_init = 0x400010e8;
|
||||
phy_xpd_rf = 0x400010ec;
|
||||
phy_close_rf = 0x400010f0;
|
||||
phy_get_mac_addr = 0x400010f4;
|
||||
phy_set_mac_data = 0x400010f8;
|
||||
phy_rfcal_data_sub = 0x400010fc;
|
||||
phy_rf_cal_data_recovery = 0x40001100;
|
||||
phy_rf_cal_data_backup = 0x40001104;
|
||||
phy_rfcal_data_check = 0x40001108;
|
||||
phy_pwdet_reg_init = 0x4000110c;
|
||||
phy_pwdet_sar2_init = 0x40001110;
|
||||
phy_en_pwdet = 0x40001114;
|
||||
phy_get_sar_sig_ref = 0x40001118;
|
||||
phy_pwdet_tone_start = 0x4000111c;
|
||||
phy_get_tone_sar_dout = 0x40001120;
|
||||
phy_get_fm_sar_dout = 0x40001124;
|
||||
phy_txtone_linear_pwr = 0x40001128;
|
||||
phy_linear_to_db = 0x4000112c;
|
||||
phy_get_power_db = 0x40001130;
|
||||
phy_meas_tone_pwr_db = 0x40001134;
|
||||
phy_pwdet_wait_idle = 0x40001138;
|
||||
phy_pkdet_vol_start = 0x4000113c;
|
||||
phy_read_sar_dout = 0x40001140;
|
||||
phy_read_sar2_code = 0x40001144;
|
||||
phy_get_sar2_vol = 0x40001148;
|
||||
phy_get_pll_vol = 0x4000114c;
|
||||
phy_tx_pwctrl_bg_init = 0x40001150;
|
||||
phy_set_most_tpw = 0x40001154;
|
||||
phy_get_most_tpw = 0x40001158;
|
||||
phy_tx_state_out = 0x4000115c;
|
||||
phy_ant_dft_cfg = 0x40001160;
|
||||
phy_ant_wifitx_cfg = 0x40001164;
|
||||
phy_ant_wifirx_cfg = 0x40001168;
|
||||
phy_ant_bttx_cfg = 0x4000116c;
|
||||
phy_ant_btrx_cfg = 0x40001170;
|
||||
phy_chan_dump_cfg = 0x40001174;
|
||||
phy_enable_low_rate = 0x40001178;
|
||||
phy_disable_low_rate = 0x4000117c;
|
||||
phy_is_low_rate_enabled = 0x40001180;
|
||||
phy_dig_reg_backup = 0x40001184;
|
||||
phy_chan_filt_set = 0x40001188;
|
||||
phy_rx11blr_cfg = 0x4000118c;
|
||||
phy_set_cca = 0x40001190;
|
||||
phy_set_rx_sense = 0x40001194;
|
||||
phy_rx_gain_force = 0x40001198;
|
||||
phy_mhz2ieee = 0x4000119c;
|
||||
phy_chan_to_freq = 0x400011a0;
|
||||
phy_restart_cal = 0x400011a4;
|
||||
phy_write_rfpll_sdm = 0x400011a8;
|
||||
phy_wait_rfpll_cal_end = 0x400011ac;
|
||||
phy_rfpll_set_freq = 0x400011b0;
|
||||
phy_set_rf_freq_offset = 0x400011b4;
|
||||
phy_set_rfpll_freq = 0x400011b8;
|
||||
phy_set_channel_rfpll_freq = 0x400011bc;
|
||||
phy_rfpll_cap_correct = 0x400011c0;
|
||||
phy_rfpll_cap_init_cal = 0x400011c4;
|
||||
phy_set_freq = 0x400011c8;
|
||||
phy_write_pll_cap = 0x400011cc;
|
||||
phy_read_pll_cap = 0x400011d0;
|
||||
phy_chip_set_chan_misc = 0x400011d4;
|
||||
phy_freq_set_reg = 0x400011d8;
|
||||
phy_rfpll_chgp_cal = 0x400011dc;
|
||||
phy_gen_rx_gain_table = 0x400011e0;
|
||||
phy_get_rxbb_dc = 0x400011e4;
|
||||
phy_wr_rx_gain_mem = 0x400011e8;
|
||||
phy_rfpll_cap_track = 0x400011ec;
|
||||
phy_param_track = 0x400011f0;
|
||||
phy_txpwr_correct = 0x400011f4;
|
||||
phy_txpwr_cal_track = 0x400011f8;
|
||||
phy_bt_track_tx_power = 0x400011fc;
|
||||
phy_wifi_track_tx_power = 0x40001200;
|
||||
phy_bt_txdc_cal = 0x40001204;
|
||||
phy_bt_txiq_cal = 0x40001208;
|
||||
phy_txdc_cal_pwdet = 0x4000120c;
|
||||
phy_txdc_cal = 0x40001210;
|
||||
phy_txiq_get_mis_pwr = 0x40001214;
|
||||
phy_txiq_cover = 0x40001218;
|
||||
phy_rfcal_txiq = 0x4000121c;
|
||||
phy_get_power_atten = 0x40001220;
|
||||
phy_pwdet_ref_code = 0x40001224;
|
||||
phy_pwdet_code_cal = 0x40001228;
|
||||
phy_rfcal_txcap = 0x4000122c;
|
||||
phy_tx_cap_init = 0x40001230;
|
||||
phy_rfcal_pwrctrl = 0x40001234;
|
||||
phy_tx_pwctrl_init_cal = 0x40001238;
|
||||
phy_tx_pwctrl_init = 0x4000123c;
|
||||
phy_bt_tx_pwctrl_init = 0x40001240;
|
||||
phy_i2c_enter_critical_ = 0x40001244;
|
||||
phy_i2c_exit_critical_ = 0x40001248;
|
||||
phy_i2c_clk_sel = 0x4000124c;
|
||||
phy_get_i2c_read_mask_ = 0x40001250;
|
||||
phy_get_i2c_mst0_mask = 0x40001254;
|
||||
phy_get_i2c_hostid_ = 0x40001258;
|
||||
phy_chip_i2c_readReg_org = 0x4000125c;
|
||||
phy_chip_i2c_readReg = 0x40001260;
|
||||
phy_i2c_paral_set_mst0 = 0x40001264;
|
||||
phy_i2c_paral_set_read = 0x40001268;
|
||||
phy_i2c_paral_read = 0x4000126c;
|
||||
phy_i2c_paral_write = 0x40001270;
|
||||
phy_i2c_paral_write_num = 0x40001274;
|
||||
phy_i2c_paral_write_mask = 0x40001278;
|
||||
phy_i2c_readReg = 0x4000127c;
|
||||
phy_chip_i2c_writeReg = 0x40001280;
|
||||
phy_i2c_writeReg = 0x40001284;
|
||||
phy_i2c_readReg_Mask = 0x40001288;
|
||||
phy_i2c_writeReg_Mask = 0x4000128c;
|
||||
phy_set_txcap_reg = 0x40001290;
|
||||
phy_i2c_sar2_init_code = 0x40001294;
|
||||
phy_test_filter_band_set = 0x40001298;
|
||||
phy_filter_dcap_set = 0x4000129c;
|
||||
phy_i2c_init1 = 0x400012a0;
|
||||
phy_i2c_init2 = 0x400012a4;
|
||||
phy_bias_reg_set = 0x400012a8;
|
||||
phy_i2c_rc_cal_set = 0x400012ac;
|
||||
phy_i2c_bbpll_set = 0x400012b0;
|
||||
phy_adc_rate_set = 0x400012b4;
|
||||
phy_dac_rate_set = 0x400012b8;
|
||||
phy_encode_i2c_master = 0x400012bc;
|
||||
phy_i2c_master_fill = 0x400012c0;
|
||||
phy_i2c_master_mem_txcap = 0x400012c4;
|
||||
phy_i2c_master_cmd_mem_init = 0x400012c8;
|
||||
phy_i2c_master_mem_cfg = 0x400012cc;
|
||||
phy_pbus_force_mode = 0x400012d0;
|
||||
phy_pbus_rd_addr = 0x400012d4;
|
||||
phy_pbus_rd_shift = 0x400012d8;
|
||||
phy_pbus_force_test = 0x400012dc;
|
||||
phy_pbus_rd = 0x400012e0;
|
||||
phy_pbus_debugmode = 0x400012e4;
|
||||
phy_pbus_workmode = 0x400012e8;
|
||||
phy_pbus_set_rxgain = 0x400012ec;
|
||||
phy_pbus_xpd_rx_off = 0x400012f0;
|
||||
phy_pbus_xpd_rx_on = 0x400012f4;
|
||||
phy_pbus_xpd_tx_off = 0x400012f8;
|
||||
phy_pbus_xpd_tx_on = 0x400012fc;
|
||||
phy_pbus_set_dco = 0x40001300;
|
||||
phy_set_loopback_gain = 0x40001304;
|
||||
phy_txcal_debuge_mode_ = 0x40001308;
|
||||
phy_txcal_work_mode = 0x4000130c;
|
||||
phy_pbus_clear_reg = 0x40001310;
|
||||
phy_save_pbus_reg = 0x40001314;
|
||||
phy_write_pbus_mem = 0x40001318;
|
||||
phy_set_pbus_mem = 0x4000131c;
|
||||
phy_disable_agc = 0x40001320;
|
||||
phy_enable_agc = 0x40001324;
|
||||
phy_disable_cca = 0x40001328;
|
||||
phy_enable_cca = 0x4000132c;
|
||||
phy_write_gain_mem = 0x40001330;
|
||||
phy_bb_bss_cbw40_dig = 0x40001334;
|
||||
phy_mac_tx_chan_offset = 0x40001338;
|
||||
phy_rx_11b_opt = 0x4000133c;
|
||||
phy_tx_paon_set = 0x40001340;
|
||||
phy_i2cmst_reg_init = 0x40001344;
|
||||
phy_bt_gain_offset = 0x40001348;
|
||||
phy_fe_reg_init = 0x4000134c;
|
||||
phy_mac_enable_bb = 0x40001350;
|
||||
phy_bb_wdg_cfg = 0x40001354;
|
||||
phy_fe_txrx_reset = 0x40001358;
|
||||
phy_set_rx_comp_ = 0x4000135c;
|
||||
phy_agc_reg_init = 0x40001360;
|
||||
phy_btbb_wifi_bb_cfg2 = 0x40001364;
|
||||
phy_bb_reg_init = 0x40001368;
|
||||
phy_open_i2c_xpd = 0x4000136c;
|
||||
phy_force_txrx_off = 0x40001370;
|
||||
phy_txiq_set_reg = 0x40001374;
|
||||
phy_rxiq_set_reg = 0x40001378;
|
||||
phy_set_txclk_en = 0x4000137c;
|
||||
phy_set_rxclk_en = 0x40001380;
|
||||
phy_start_tx_tone_step = 0x40001384;
|
||||
phy_stop_tx_tone = 0x40001388;
|
||||
phy_bb_wdg_test_en = 0x4000138c;
|
||||
phy_noise_floor_auto_set = 0x40001390;
|
||||
phy_read_hw_noisefloor = 0x40001394;
|
||||
phy_iq_corr_enable = 0x40001398;
|
||||
phy_wifi_agc_sat_gain = 0x4000139c;
|
||||
phy_bbpll_cal = 0x400013a0;
|
||||
phy_ant_init = 0x400013a4;
|
||||
phy_wifi_fbw_sel = 0x400013a8;
|
||||
phy_bt_filter_reg = 0x400013ac;
|
||||
phy_rx_sense_set = 0x400013b0;
|
||||
phy_tx_state_set = 0x400013b4;
|
||||
phy_close_pa = 0x400013b8;
|
||||
phy_freq_correct = 0x400013bc;
|
||||
phy_set_pbus_reg = 0x400013c0;
|
||||
phy_wifi_rifs_mode_en = 0x400013c4;
|
||||
phy_nrx_freq_set = 0x400013c8;
|
||||
phy_fe_adc_on = 0x400013cc;
|
||||
phy_force_pwr_index = 0x400013d0;
|
||||
phy_fft_scale_force = 0x400013d4;
|
||||
phy_force_rx_gain = 0x400013d8;
|
||||
phy_wifi_enable_set = 0x400013dc;
|
||||
phy_bb_wdt_rst_enable = 0x400013e0;
|
||||
phy_bb_wdt_int_enable = 0x400013e4;
|
||||
phy_bb_wdt_timeout_clear = 0x400013e8;
|
||||
phy_bb_wdt_get_status = 0x400013ec;
|
||||
phy_iq_est_enable = 0x400013f0;
|
||||
phy_iq_est_disable = 0x400013f4;
|
||||
phy_dc_iq_est = 0x400013f8;
|
||||
phy_set_cal_rxdc = 0x400013fc;
|
||||
phy_rxiq_get_mis = 0x40001400;
|
||||
phy_rxiq_cover_mg_mp = 0x40001404;
|
||||
phy_rfcal_rxiq = 0x40001408;
|
||||
phy_get_rfcal_rxiq_data = 0x4000140c;
|
||||
phy_get_dco_comp = 0x40001410;
|
||||
phy_pbus_rx_dco_cal = 0x40001414;
|
||||
phy_rxdc_est_min = 0x40001418;
|
||||
phy_pbus_rx_dco_cal_1step = 0x4000141c;
|
||||
phy_get_iq_value = 0x40001420;
|
||||
phy_set_lb_txiq = 0x40001424;
|
||||
phy_set_rx_gain_cal_iq = 0x40001428;
|
||||
phy_set_rx_gain_cal_dc = 0x4000142c;
|
||||
phy_spur_reg_write_one_tone = 0x40001430;
|
||||
phy_spur_cal = 0x40001434;
|
||||
phy_spur_coef_cfg = 0x40001438;
|
||||
phy_bb_gain_index = 0x4000143c;
|
||||
phy_rfrx_gain_index = 0x40001440;
|
||||
phy_set_tsens_power_ = 0x40001444;
|
||||
phy_set_tsens_range_ = 0x40001448;
|
||||
phy_get_tsens_value_ = 0x4000144c;
|
||||
phy_tsens_read_init = 0x40001450;
|
||||
phy_code_to_temp = 0x40001454;
|
||||
phy_tsens_dac_to_index = 0x40001458;
|
||||
phy_tsens_dac_cal = 0x4000145c;
|
||||
phy_tsens_code_read = 0x40001460;
|
||||
phy_tsens_temp_read = 0x40001464;
|
||||
phy_tsens_temp_read_local = 0x40001468;
|
||||
phy_temp_to_power = 0x4000146c;
|
||||
phy_txbbgain_to_index = 0x40001470;
|
||||
phy_index_to_txbbgain = 0x40001474;
|
||||
phy_bt_index_to_bb = 0x40001478;
|
||||
phy_bt_bb_to_index = 0x4000147c;
|
||||
phy_bt_get_tx_gain = 0x40001480;
|
||||
phy_dig_gain_check = 0x40001484;
|
||||
phy_wifi_get_tx_gain = 0x40001488;
|
||||
phy_wifi_11g_rate_chg = 0x4000148c;
|
||||
phy_set_tx_gain_mem = 0x40001490;
|
||||
phy_get_rate_fcc_index = 0x40001494;
|
||||
phy_get_chan_target_power = 0x40001498;
|
||||
phy_get_tx_gain_value = 0x4000149c;
|
||||
phy_wifi_get_target_power = 0x400014a0;
|
||||
phy_wifi_get_tx_tab_ = 0x400014a4;
|
||||
phy_wifi_set_tx_gain = 0x400014a8;
|
||||
phy_bt_get_tx_tab_ = 0x400014ac;
|
||||
phy_bt_set_tx_gain = 0x400014b0;
|
||||
phy_bt_tx_gain_init = 0x400014b4;
|
||||
phy_rate_to_index = 0x400014b8;
|
||||
phy_get_target_pwr = 0x400014bc;
|
||||
phy_get_max_pwr = 0x400014c0;
|
||||
phy_get_pwr_index = 0x400014c4;
|
||||
/* Data (.data, .bss, .rodata) */
|
||||
phy_param_rom = 0x4084fcd8;
|
||||
phy_param_rom = 0x4084fc6c;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.pp.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.pp.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -18,246 +18,433 @@
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
esp_pp_rom_version_get = 0x40000af8;
|
||||
RC_GetBlockAckTime = 0x40000afc;
|
||||
ebuf_list_remove = 0x40000b00;
|
||||
esf_buf_alloc = 0x40000b04;
|
||||
esf_buf_alloc_dynamic = 0x40000b08;
|
||||
esf_buf_recycle = 0x40000b0c;
|
||||
GetAccess = 0x40000b10;
|
||||
hal_mac_is_low_rate_enabled = 0x40000b14;
|
||||
hal_mac_tx_get_blockack = 0x40000b18;
|
||||
hal_mac_tx_set_ppdu = 0x40000b1c;
|
||||
ic_get_trc = 0x40000b20;
|
||||
ic_mac_deinit = 0x40000b24;
|
||||
ic_mac_init = 0x40000b28;
|
||||
ic_interface_enabled = 0x40000b2c;
|
||||
is_lmac_idle = 0x40000b30;
|
||||
lmacAdjustTimestamp = 0x40000b34;
|
||||
lmacDiscardAgedMSDU = 0x40000b38;
|
||||
lmacDiscardMSDU = 0x40000b3c;
|
||||
lmacEndFrameExchangeSequence = 0x40000b40;
|
||||
lmacIsIdle = 0x40000b44;
|
||||
lmacIsLongFrame = 0x40000b48;
|
||||
lmacMSDUAged = 0x40000b4c;
|
||||
lmacPostTxComplete = 0x40000b50;
|
||||
lmacProcessAllTxTimeout = 0x40000b54;
|
||||
lmacProcessCollisions = 0x40000b58;
|
||||
lmacProcessRxSucData = 0x40000b5c;
|
||||
lmacReachLongLimit = 0x40000b60;
|
||||
lmacReachShortLimit = 0x40000b64;
|
||||
lmacRecycleMPDU = 0x40000b68;
|
||||
lmacRxDone = 0x40000b6c;
|
||||
/*lmacSetTxFrame = 0x40000b70;*/
|
||||
lmacTxDone = 0x40000b74;
|
||||
lmacTxFrame = 0x40000b78;
|
||||
mac_tx_set_duration = 0x40000b7c;
|
||||
mac_tx_set_plcp0 = 0x40000b80;
|
||||
mac_tx_set_plcp1 = 0x40000b84;
|
||||
mac_tx_set_plcp2 = 0x40000b88;
|
||||
pm_check_state = 0x40000b8c;
|
||||
pm_disable_dream_timer = 0x40000b90;
|
||||
pm_disable_sleep_delay_timer = 0x40000b94;
|
||||
pm_dream = 0x40000b98;
|
||||
pm_mac_wakeup = 0x40000b9c;
|
||||
pm_mac_sleep = 0x40000ba0;
|
||||
pm_enable_active_timer = 0x40000ba4;
|
||||
pm_enable_sleep_delay_timer = 0x40000ba8;
|
||||
pm_local_tsf_process = 0x40000bac;
|
||||
pm_set_beacon_filter = 0x40000bb0;
|
||||
pm_is_in_wifi_slice_threshold = 0x40000bb4;
|
||||
pm_is_waked = 0x40000bb8;
|
||||
pm_keep_alive = 0x40000bbc;
|
||||
pm_on_beacon_rx = 0x40000bc0;
|
||||
pm_on_data_rx = 0x40000bc4;
|
||||
pm_on_tbtt = 0x40000bc8;
|
||||
pm_parse_beacon = 0x40000bcc;
|
||||
pm_process_tim = 0x40000bd0;
|
||||
pm_rx_beacon_process = 0x40000bd4;
|
||||
pm_rx_data_process = 0x40000bd8;
|
||||
pm_sleep = 0x40000bdc;
|
||||
pm_sleep_for = 0x40000be0;
|
||||
pm_tbtt_process = 0x40000be4;
|
||||
ppAMPDU2Normal = 0x40000be8;
|
||||
ppAssembleAMPDU = 0x40000bec;
|
||||
ppCalFrameTimes = 0x40000bf0;
|
||||
ppCalSubFrameLength = 0x40000bf4;
|
||||
ppCalTxAMPDULength = 0x40000bf8;
|
||||
ppCheckTxAMPDUlength = 0x40000bfc;
|
||||
ppDequeueRxq_Locked = 0x40000c00;
|
||||
ppDequeueTxQ = 0x40000c04;
|
||||
ppEmptyDelimiterLength = 0x40000c08;
|
||||
ppEnqueueRxq = 0x40000c0c;
|
||||
ppEnqueueTxDone = 0x40000c10;
|
||||
ppGetTxframe = 0x40000c14;
|
||||
ppMapTxQueue = 0x40000c18;
|
||||
ppProcTxSecFrame = 0x40000c1c;
|
||||
ppProcessRxPktHdr = 0x40000c20;
|
||||
ppProcessTxQ = 0x40000c24;
|
||||
ppRecordBarRRC = 0x40000c28;
|
||||
ppRecycleAmpdu = 0x40000c2c;
|
||||
ppRecycleRxPkt = 0x40000c30;
|
||||
ppResortTxAMPDU = 0x40000c34;
|
||||
ppResumeTxAMPDU = 0x40000c38;
|
||||
ppRxFragmentProc = 0x40000c3c;
|
||||
ppRxPkt = 0x40000c40;
|
||||
ppRxProtoProc = 0x40000c44;
|
||||
ppSearchTxQueue = 0x40000c48;
|
||||
ppSearchTxframe = 0x40000c4c;
|
||||
ppSelectNextQueue = 0x40000c50;
|
||||
ppSubFromAMPDU = 0x40000c54;
|
||||
ppTask = 0x40000c58;
|
||||
ppTxPkt = 0x40000c5c;
|
||||
ppTxProtoProc = 0x40000c60;
|
||||
ppTxqUpdateBitmap = 0x40000c64;
|
||||
pp_coex_tx_request = 0x40000c68;
|
||||
pp_hdrsize = 0x40000c6c;
|
||||
pp_post = 0x40000c70;
|
||||
pp_process_hmac_waiting_txq = 0x40000c74;
|
||||
rcGetAmpduSched = 0x40000c78;
|
||||
rcUpdateRxDone = 0x40000c7c;
|
||||
rc_get_trc = 0x40000c80;
|
||||
rc_get_trc_by_index = 0x40000c84;
|
||||
rcAmpduLowerRate = 0x40000c88;
|
||||
rcampduuprate = 0x40000c8c;
|
||||
rcClearCurAMPDUSched = 0x40000c90;
|
||||
rcClearCurSched = 0x40000c94;
|
||||
rcClearCurStat = 0x40000c98;
|
||||
rcGetSched = 0x40000c9c;
|
||||
rcLowerSched = 0x40000ca0;
|
||||
rcSetTxAmpduLimit = 0x40000ca4;
|
||||
rcTxUpdatePer = 0x40000ca8;
|
||||
rcUpdateAckSnr = 0x40000cac;
|
||||
rcUpdateRate = 0x40000cb0;
|
||||
rcUpdateTxDone = 0x40000cb4;
|
||||
rcUpdateTxDoneAmpdu2 = 0x40000cb8;
|
||||
rcUpSched = 0x40000cbc;
|
||||
rssi_margin = 0x40000cc0;
|
||||
rx11NRate2AMPDULimit = 0x40000cc4;
|
||||
TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40000cc8;
|
||||
TRC_AMPDU_PER_UP_THRESHOLD = 0x40000ccc;
|
||||
trc_calc_duration = 0x40000cd0;
|
||||
trc_isTxAmpduOperational = 0x40000cd4;
|
||||
trc_onAmpduOp = 0x40000cd8;
|
||||
TRC_PER_IS_GOOD = 0x40000cdc;
|
||||
trc_SetTxAmpduState = 0x40000ce0;
|
||||
trc_tid_isTxAmpduOperational = 0x40000ce4;
|
||||
trcAmpduSetState = 0x40000ce8;
|
||||
wDevCheckBlockError = 0x40000cec;
|
||||
wDev_AppendRxBlocks = 0x40000cf0;
|
||||
wDev_DiscardFrame = 0x40000cf4;
|
||||
wDev_GetNoiseFloor = 0x40000cf8;
|
||||
wDev_IndicateAmpdu = 0x40000cfc;
|
||||
wDev_IndicateFrame = 0x40000d00;
|
||||
wdev_mac_reg_load = 0x40000d04;
|
||||
wdev_mac_reg_store = 0x40000d08;
|
||||
wdev_mac_special_reg_load = 0x40000d0c;
|
||||
wdev_mac_special_reg_store = 0x40000d10;
|
||||
wdev_mac_wakeup = 0x40000d14;
|
||||
wdev_mac_sleep = 0x40000d18;
|
||||
hal_mac_is_dma_enable = 0x40000d1c;
|
||||
wDev_ProcessFiq = 0x40000d20;
|
||||
wDev_ProcessRxSucData = 0x40000d24;
|
||||
wdevProcessRxSucDataAll = 0x40000d28;
|
||||
wdev_csi_len_align = 0x40000d2c;
|
||||
ppDequeueTxDone_Locked = 0x40000d30;
|
||||
ppProcTxDone = 0x40000d34;
|
||||
pm_tx_data_done_process = 0x40000d38;
|
||||
config_is_cache_tx_buf_enabled = 0x40000d3c;
|
||||
ppMapWaitTxq = 0x40000d40;
|
||||
ppProcessWaitingQueue = 0x40000d44;
|
||||
ppDisableQueue = 0x40000d48;
|
||||
pm_allow_tx = 0x40000d4c;
|
||||
wdev_is_data_in_rxlist = 0x40000d50;
|
||||
ppProcTxCallback = 0x40000d54;
|
||||
mac_tx_set_hesig = 0x40000d58;
|
||||
ppCalPreFecPaddingFactor = 0x40000d5c;
|
||||
mac_tx_set_tb = 0x40000d60;
|
||||
mac_tx_set_mplen = 0x40000d64;
|
||||
esp_pp_rom_version_get = 0x40000b50;
|
||||
RC_GetBlockAckTime = 0x40000b54;
|
||||
ebuf_list_remove = 0x40000b58;
|
||||
esf_buf_alloc = 0x40000b5c;
|
||||
esf_buf_alloc_dynamic = 0x40000b60;
|
||||
esf_buf_recycle = 0x40000b64;
|
||||
GetAccess = 0x40000b68;
|
||||
hal_mac_is_low_rate_enabled = 0x40000b6c;
|
||||
hal_mac_tx_get_blockack = 0x40000b70;
|
||||
hal_mac_tx_set_ppdu = 0x40000b74;
|
||||
hal_mac_tx_clr_mplen = 0x40000b78;
|
||||
hal_mac_get_txq_state = 0x40000b7c;
|
||||
hal_mac_clr_txq_state = 0x40000b80;
|
||||
hal_mac_get_txq_complete = 0x40000b84;
|
||||
hal_mac_deinit_twt_tx = 0x40000b88;
|
||||
hal_mac_is_dma_enable = 0x40000b8c;
|
||||
hal_he_get_bss_color = 0x40000b90;
|
||||
hal_he_set_ersu = 0x40000b94;
|
||||
hal_he_get_mplen_addr_start = 0x40000b98;
|
||||
hal_he_get_mplen_addr_end = 0x40000b9c;
|
||||
hal_he_set_bf_report_rate = 0x40000ba0;
|
||||
hal_he_set_ersu_ack_rate = 0x40000ba4;
|
||||
hal_he_get_aid = 0x40000ba8;
|
||||
hal_random = 0x40000bac;
|
||||
hal_enable_tx_statistics = 0x40000bb0;
|
||||
hal_enable_rx_statistics = 0x40000bb4;
|
||||
hal_enable_tsf_timer = 0x40000bb8;
|
||||
hal_wdev_timer_target_enable = 0x40000bbc;
|
||||
hal_wdev_timer_set_target = 0x40000bc0;
|
||||
hal_tsf_timer_set_target = 0x40000bc4;
|
||||
hal_tsf_clear_soc_wakeup_request = 0x40000bc8;
|
||||
hal_tsf_get_tbttstart = 0x40000bcc;
|
||||
hal_get_tsf_time = 0x40000bd0;
|
||||
hal_get_sta_tsf = 0x40000bd4;
|
||||
tsf_hal_get_tbtt_interval = 0x40000bd8;
|
||||
dbg_hal_check_clr_mplen_bitmap = 0x40000bdc;
|
||||
dbg_hal_check_set_mplen_bitmap = 0x40000be0;
|
||||
ic_get_trc = 0x40000be4;
|
||||
ic_mac_deinit = 0x40000be8;
|
||||
ic_mac_init = 0x40000bec;
|
||||
ic_interface_enabled = 0x40000bf0;
|
||||
is_lmac_idle = 0x40000bf4;
|
||||
ic_get_he_rts_threshold_bytes = 0x40000bf8;
|
||||
lmacAdjustTimestamp = 0x40000bfc;
|
||||
lmacDiscardAgedMSDU = 0x40000c00;
|
||||
lmacDiscardMSDU = 0x40000c04;
|
||||
lmacEndFrameExchangeSequence = 0x40000c08;
|
||||
lmacIsIdle = 0x40000c0c;
|
||||
lmacIsLongFrame = 0x40000c10;
|
||||
lmacMSDUAged = 0x40000c14;
|
||||
lmacPostTxComplete = 0x40000c18;
|
||||
lmacProcessAllTxTimeout = 0x40000c1c;
|
||||
lmacProcessCollisions = 0x40000c20;
|
||||
lmacProcessRxSucData = 0x40000c24;
|
||||
lmacReachLongLimit = 0x40000c28;
|
||||
lmacReachShortLimit = 0x40000c2c;
|
||||
lmacRecycleMPDU = 0x40000c30;
|
||||
lmacRxDone = 0x40000c34;
|
||||
lmacSetTxFrame = 0x40000c38;
|
||||
lmacTxDone = 0x40000c3c;
|
||||
lmacTxFrame = 0x40000c40;
|
||||
lmacDisableTransmit = 0x40000c44;
|
||||
lmacDiscardFrameExchangeSequence = 0x40000c48;
|
||||
lmacProcessCollision = 0x40000c4c;
|
||||
lmacProcessAckTimeout = 0x40000c50;
|
||||
lmacProcessShortRetryFail = 0x40000c54;
|
||||
lmacProcessCollisions_task = 0x40000c58;
|
||||
lmacProcessTxRtsError = 0x40000c5c;
|
||||
lmacProcessTxError = 0x40000c60;
|
||||
lmacProcessCtsTimeout = 0x40000c64;
|
||||
lmacProcessLongRetryFail = 0x40000c68;
|
||||
lmacRetryTxFrame = 0x40000c6c;
|
||||
lmacEndRetryAMPDUFail = 0x40000c70;
|
||||
lmacProcessTxSuccess = 0x40000c74;
|
||||
lmacProcessTxComplete = 0x40000c78;
|
||||
lmacProcessLongFrameSuccess = 0x40000c7c;
|
||||
lmacProcessShortFrameSuccess = 0x40000c80;
|
||||
lmacProcessModemStateRxBeacon = 0x40000c84;
|
||||
mac_tx_set_duration = 0x40000c88;
|
||||
mac_tx_set_plcp0 = 0x40000c8c;
|
||||
mac_tx_set_plcp1 = 0x40000c90;
|
||||
mac_tx_set_plcp2 = 0x40000c94;
|
||||
mac_tx_set_len = 0x40000c98;
|
||||
mac_tx_set_htsig = 0x40000c9c;
|
||||
mac_tx_set_hesig = 0x40000ca0;
|
||||
mac_tx_set_tb = 0x40000ca4;
|
||||
mac_tx_set_mplen = 0x40000ca8;
|
||||
mac_tx_set_txop_q = 0x40000cac;
|
||||
mac_tx_set_pti = 0x40000cb0;
|
||||
pm_check_state = 0x40000cb4;
|
||||
pm_disable_dream_timer = 0x40000cb8;
|
||||
pm_disable_sleep_delay_timer = 0x40000cbc;
|
||||
pm_dream = 0x40000cc0;
|
||||
pm_mac_wakeup = 0x40000cc4;
|
||||
pm_mac_sleep = 0x40000cc8;
|
||||
pm_enable_active_timer = 0x40000ccc;
|
||||
pm_enable_sleep_delay_timer = 0x40000cd0;
|
||||
pm_local_tsf_process = 0x40000cd4;
|
||||
pm_set_beacon_filter = 0x40000cd8;
|
||||
pm_is_in_wifi_slice_threshold = 0x40000cdc;
|
||||
pm_is_waked = 0x40000ce0;
|
||||
pm_keep_alive = 0x40000ce4;
|
||||
pm_on_beacon_rx = 0x40000ce8;
|
||||
pm_on_data_rx = 0x40000cec;
|
||||
pm_on_data_tx = 0x40000cf0;
|
||||
pm_on_tbtt = 0x40000cf4;
|
||||
pm_on_isr_sleep = 0x40000cf8;
|
||||
pm_on_isr = 0x40000cfc;
|
||||
pm_on_isr_set_twt_target = 0x40000d00;
|
||||
pm_on_isr_twt_wake = 0x40000d04;
|
||||
pm_on_tsf_timer = 0x40000d08;
|
||||
pm_on_twt_force_tx = 0x40000d0c;
|
||||
pm_parse_beacon = 0x40000d10;
|
||||
pm_process_tim = 0x40000d14;
|
||||
pm_rx_beacon_process = 0x40000d18;
|
||||
pm_rx_data_process = 0x40000d1c;
|
||||
pm_sleep = 0x40000d20;
|
||||
pm_sleep_for = 0x40000d24;
|
||||
pm_tbtt_process = 0x40000d28;
|
||||
pm_tx_data_done_process = 0x40000d2c;
|
||||
pm_allow_tx = 0x40000d30;
|
||||
pm_extend_tbtt_adaptive_servo = 0x40000d34;
|
||||
pm_scale_listen_interval = 0x40000d38;
|
||||
pm_parse_mbssid_element = 0x40000d3c;
|
||||
pm_disconnected_wake = 0x40000d40;
|
||||
pm_tx_data_process = 0x40000d44;
|
||||
pm_is_twt_awake = 0x40000d48;
|
||||
pm_enable_twt_keep_alive = 0x40000d4c;
|
||||
pm_twt_on_tsf_timer = 0x40000d50;
|
||||
pm_twt_process = 0x40000d54;
|
||||
pm_is_twt_start = 0x40000d58;
|
||||
pm_twt_set_target_wdev_time = 0x40000d5c;
|
||||
pm_twt_set_target_tsf = 0x40000d60;
|
||||
pm_enable_twt_keep_alive_timer = 0x40000d64;
|
||||
pm_mac_try_enable_modem_state = 0x40000d68;
|
||||
pm_beacon_monitor_tbtt_timeout_process = 0x40000d6c;
|
||||
pm_update_next_tbtt = 0x40000d70;
|
||||
pm_twt_disallow_tx = 0x40000d74;
|
||||
pm_clear_wakeup_signal = 0x40000d78;
|
||||
pm_mac_disable_tsf_tbtt_soc_wakeup = 0x40000d7c;
|
||||
pm_mac_disable_tsf_tbtt_modem_wakeup = 0x40000d80;
|
||||
pm_mac_enable_tsf_tbtt_soc_wakeup = 0x40000d84;
|
||||
pm_mac_enable_tsf_tbtt_modem_wakeup = 0x40000d88;
|
||||
pm_mac_modem_params_rt_update = 0x40000d8c;
|
||||
pm_update_at_next_beacon = 0x40000d90;
|
||||
pm_get_null_max_tx_time = 0x40000d94;
|
||||
pm_coex_schm_overall_period_get = 0x40000d98;
|
||||
pm_coex_pwr_update = 0x40000d9c;
|
||||
tbtt_adaptive_setup = 0x40000da0;
|
||||
tbtt_adaptive_servo = 0x40000da4;
|
||||
ppAMPDU2Normal = 0x40000da8;
|
||||
ppHEAMPDU2Normal = 0x40000dac;
|
||||
ppAssembleAMPDU = 0x40000db0;
|
||||
ppCalFrameTimes = 0x40000db4;
|
||||
ppCalSubFrameLength = 0x40000db8;
|
||||
ppCalTxAMPDULength = 0x40000dbc;
|
||||
ppCheckTxAMPDUlength = 0x40000dc0;
|
||||
ppDequeueRxq_Locked = 0x40000dc4;
|
||||
ppDequeueTxQ = 0x40000dc8;
|
||||
ppEmptyDelimiterLength = 0x40000dcc;
|
||||
ppEnqueueRxq = 0x40000dd0;
|
||||
ppEnqueueTxDone = 0x40000dd4;
|
||||
ppGetTxframe = 0x40000dd8;
|
||||
ppMapTxQueue = 0x40000ddc;
|
||||
ppProcTxSecFrame = 0x40000de0;
|
||||
ppProcessRxPktHdr = 0x40000de4;
|
||||
ppProcessTxQ = 0x40000de8;
|
||||
ppRecordBarRRC = 0x40000dec;
|
||||
ppRecycleAmpdu = 0x40000df0;
|
||||
ppRecycleRxPkt = 0x40000df4;
|
||||
ppResortTxAMPDU = 0x40000df8;
|
||||
ppResumeTxAMPDU = 0x40000dfc;
|
||||
ppRxFragmentProc = 0x40000e00;
|
||||
ppRxPkt = 0x40000e04;
|
||||
ppRxProtoProc = 0x40000e08;
|
||||
ppSearchTxQueue = 0x40000e0c;
|
||||
ppSearchTxframe = 0x40000e10;
|
||||
ppSelectNextQueue = 0x40000e14;
|
||||
ppSubFromAMPDU = 0x40000e18;
|
||||
ppTask = 0x40000e1c;
|
||||
ppTxPkt = 0x40000e20;
|
||||
ppTxProtoProc = 0x40000e24;
|
||||
ppTxqUpdateBitmap = 0x40000e28;
|
||||
pp_coex_tx_request = 0x40000e2c;
|
||||
pp_hdrsize = 0x40000e30;
|
||||
pp_post = 0x40000e34;
|
||||
pp_process_hmac_waiting_txq = 0x40000e38;
|
||||
ppDequeueTxDone_Locked = 0x40000e3c;
|
||||
ppProcTxDone = 0x40000e40;
|
||||
ppMapWaitTxq = 0x40000e44;
|
||||
ppProcessWaitingQueue = 0x40000e48;
|
||||
ppDisableQueue = 0x40000e4c;
|
||||
ppCheckTxRTS = 0x40000e50;
|
||||
ppProcessLifeTime = 0x40000e54;
|
||||
ppProcTxCallback = 0x40000e58;
|
||||
ppCalPreFecPaddingFactor = 0x40000e5c;
|
||||
ppCalDeliNum = 0x40000e60;
|
||||
ppRemoveHTC = 0x40000e64;
|
||||
ppRemoveHEAMPDUflags = 0x40000e68;
|
||||
ppCheckTxHEAMPDUlength = 0x40000e6c;
|
||||
ppCertSetRate = 0x40000e70;
|
||||
ppSelectTxFormat = 0x40000e74;
|
||||
ppCalTxHEAMPDULength = 0x40000e78;
|
||||
pp_coex_tx_release = 0x40000e7c;
|
||||
ppAdd2AMPDUTail = 0x40000e80;
|
||||
ppDirectRecycleAmpdu = 0x40000e84;
|
||||
ppRegressAmpdu = 0x40000e88;
|
||||
pp_timer_do_process = 0x40000e8c;
|
||||
rcGetAmpduSched = 0x40000e90;
|
||||
rcUpdateRxDone = 0x40000e94;
|
||||
rc_get_trc = 0x40000e98;
|
||||
rc_get_trc_by_index = 0x40000e9c;
|
||||
rcAmpduLowerRate = 0x40000ea0;
|
||||
rcampduuprate = 0x40000ea4;
|
||||
rcClearCurAMPDUSched = 0x40000ea8;
|
||||
rcClearCurSched = 0x40000eac;
|
||||
rcClearCurStat = 0x40000eb0;
|
||||
rcGetSched = 0x40000eb4;
|
||||
rcLowerSched = 0x40000eb8;
|
||||
rcSetTxAmpduLimit = 0x40000ebc;
|
||||
rcTxUpdatePer = 0x40000ec0;
|
||||
rcUpdateAckSnr = 0x40000ec4;
|
||||
rcUpdateRate = 0x40000ec8;
|
||||
rcUpdateTxDone = 0x40000ecc;
|
||||
rcUpdateTxDoneAmpdu2 = 0x40000ed0;
|
||||
rcUpSched = 0x40000ed4;
|
||||
rcReachRetryLimit = 0x40000ed8;
|
||||
rcGetDCMMaxRate = 0x40000edc;
|
||||
rcGetSMPDURate = 0x40000ee0;
|
||||
rcGetRate = 0x40000ee4;
|
||||
rx11AXRate2AMPDULimit = 0x40000ee8;
|
||||
rx11NRate2AMPDULimit = 0x40000eec;
|
||||
rssi_margin = 0x40000ef0;
|
||||
TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40000ef4;
|
||||
TRC_AMPDU_PER_UP_THRESHOLD = 0x40000ef8;
|
||||
TRC_PER_IS_GOOD = 0x40000efc;
|
||||
trc_calc_duration = 0x40000f00;
|
||||
trc_isTxAmpduOperational = 0x40000f04;
|
||||
trc_onAmpduOp = 0x40000f08;
|
||||
trc_SetTxAmpduState = 0x40000f0c;
|
||||
trc_tid_isTxAmpduOperational = 0x40000f10;
|
||||
trcAmpduSetState = 0x40000f14;
|
||||
trc_set_bf_report_rate = 0x40000f18;
|
||||
trc_onPPTxDone = 0x40000f1c;
|
||||
wDevCheckBlockError = 0x40000f20;
|
||||
wDev_AppendRxBlocks = 0x40000f24;
|
||||
wDev_DiscardFrame = 0x40000f28;
|
||||
wDev_GetNoiseFloor = 0x40000f2c;
|
||||
wDev_IndicateAmpdu = 0x40000f30;
|
||||
wDev_IndicateFrame = 0x40000f34;
|
||||
wdev_mac_reg_load = 0x40000f38;
|
||||
wdev_mac_reg_store = 0x40000f3c;
|
||||
wdev_mac_special_reg_load = 0x40000f40;
|
||||
wdev_mac_special_reg_store = 0x40000f44;
|
||||
wdev_mac_wakeup = 0x40000f48;
|
||||
wdev_mac_sleep = 0x40000f4c;
|
||||
wDev_ProcessFiq = 0x40000f50;
|
||||
wDev_ProcessRxSucData = 0x40000f54;
|
||||
wdevProcessRxSucDataAll = 0x40000f58;
|
||||
wdev_csi_len_align = 0x40000f5c;
|
||||
wDev_IndicateBeaconMemoryFrame = 0x40000f60;
|
||||
wDev_ProcessBeaconMemoryRxSuc = 0x40000f64;
|
||||
wdevProcessModemStateRxBeacon = 0x40000f68;
|
||||
wdev_is_data_in_rxlist = 0x40000f6c;
|
||||
wdev_process_tbtt = 0x40000f70;
|
||||
wdev_process_tsf_timer = 0x40000f74;
|
||||
wdev_process_beacon_filter = 0x40000f78;
|
||||
wdev_process_mac_modem_beacon_miss = 0x40000f7c;
|
||||
config_is_cache_tx_buf_enabled = 0x40000f80;
|
||||
config_get_wifi_feature_capabilities = 0x40000f84;
|
||||
config_get_wifi_ampdu_tx_hetb_tid_limit = 0x40000f88;
|
||||
esp_test_disable_tx_statistics = 0x40000f8c;
|
||||
esp_test_enable_tx_statistics = 0x40000f90;
|
||||
esp_test_clr_tx_statistics = 0x40000f94;
|
||||
esp_test_get_tx_statistics = 0x40000f98;
|
||||
esp_test_clr_tx_tb_statistics = 0x40000f9c;
|
||||
esp_test_get_tx_tb_statistics = 0x40000fa0;
|
||||
esp_test_tx_process_complete = 0x40000fa4;
|
||||
esp_test_tx_process_txq_state = 0x40000fa8;
|
||||
esp_test_tx_enab_statistics = 0x40000fac;
|
||||
esp_test_tx_tb_complete = 0x40000fb0;
|
||||
esp_test_tx_count_retry = 0x40000fb4;
|
||||
esp_test_tx_count_collision = 0x40000fb8;
|
||||
esp_test_tx_count_timeout = 0x40000fbc;
|
||||
esp_test_rx_process_complete = 0x40000fc0;
|
||||
esp_test_clr_rx_statistics = 0x40000fc4;
|
||||
esp_test_get_rx_statistics = 0x40000fc8;
|
||||
esp_test_set_rx_error_occurs = 0x40000fcc;
|
||||
esp_test_get_rx_error_occurs = 0x40000fd0;
|
||||
esp_test_clr_rx_error_occurs = 0x40000fd4;
|
||||
esp_test_disable_rx_statistics = 0x40000fd8;
|
||||
esp_test_enable_rx_statistics = 0x40000fdc;
|
||||
esp_test_rx_parse_mu = 0x40000fe0;
|
||||
esp_test_get_rx_mu_statistics = 0x40000fe4;
|
||||
esp_test_clr_rx_mu_statistics = 0x40000fe8;
|
||||
esp_test_enable_rx_mu_statistics = 0x40000fec;
|
||||
esp_test_disable_rx_mu_statistics = 0x40000ff0;
|
||||
test_tx_fail_statistics = 0x40000ff4;
|
||||
test_tx_succ_statistics = 0x40000ff8;
|
||||
test_rx_process_complete_noeb = 0x40000ffc;
|
||||
test_rx_process_complete_retry = 0x40001000;
|
||||
test_mumimo_get_heltf_num = 0x40001004;
|
||||
test_mimo_update_user_info = 0x40001008;
|
||||
test_parse_rx_mu_mimo = 0x4000100c;
|
||||
test_nonmimo_update_user_info = 0x40001010;
|
||||
test_rx_parse_mumimo_complete_sigb = 0x40001014;
|
||||
test_get_nonmumimo_common = 0x40001018;
|
||||
test_rx_parse_nonmumimo_complete_sigb = 0x4000101c;
|
||||
test_rx_parse_nonmumimo = 0x40001020;
|
||||
wifi_he_get_hetb_tid_bitmap = 0x40001024;
|
||||
wifi_he_get_hetb_tid_bawin = 0x40001028;
|
||||
ht_get_min_subframe_len = 0x4000102c;
|
||||
he_get_min_subframe_len = 0x40001030;
|
||||
he_get_min_subframe_len_dcm = 0x40001034;
|
||||
is_ndpa_to_dut = 0x40001038;
|
||||
is_use_muedca = 0x4000103c;
|
||||
pwr_hal_clear_mac_modem_state_wakeup_protect_signal = 0x40001040;
|
||||
get_estimated_batime = 0x40001044;
|
||||
get_sublen_offset = 0x40001048;
|
||||
/* Data (.data, .bss, .rodata) */
|
||||
our_instances_ptr = 0x4003ffe0;
|
||||
pTxRx = 0x4084ff88;
|
||||
lmacConfMib_ptr = 0x4084ff84;
|
||||
our_wait_eb = 0x4084ff80;
|
||||
our_tx_eb = 0x4084ff7c;
|
||||
pp_wdev_funcs = 0x4084ff78;
|
||||
g_osi_funcs_p = 0x4084ff74;
|
||||
wDevCtrl_ptr = 0x4084ff70;
|
||||
pTxRx = 0x4084ff74;
|
||||
lmacConfMib_ptr = 0x4084ff70;
|
||||
our_wait_eb = 0x4084ff6c;
|
||||
our_tx_eb = 0x4084ff68;
|
||||
pp_wdev_funcs = 0x4084ff64;
|
||||
g_osi_funcs_p = 0x4084ff60;
|
||||
wDevCtrl_ptr = 0x4084ff5c;
|
||||
g_wdev_last_desc_reset_ptr = 0x4003ffdc;
|
||||
wDevMacSleep_ptr = 0x4084ff6c;
|
||||
g_lmac_cnt_ptr = 0x4084ff68;
|
||||
wDevMacSleep_ptr = 0x4084ff58;
|
||||
g_lmac_cnt_ptr = 0x4084ff54;
|
||||
our_controls_ptr = 0x4003ffd8;
|
||||
pp_sig_cnt_ptr = 0x4084ff64;
|
||||
g_eb_list_desc_ptr = 0x4084ff60;
|
||||
s_fragment_ptr = 0x4084ff5c;
|
||||
if_ctrl_ptr = 0x4084ff58;
|
||||
g_intr_lock_mux = 0x4084ff54;
|
||||
g_wifi_global_lock = 0x4084ff50;
|
||||
s_wifi_queue = 0x4084ff4c;
|
||||
pp_task_hdl = 0x4084ff48;
|
||||
s_pp_task_create_sem = 0x4084ff44;
|
||||
s_pp_task_del_sem = 0x4084ff40;
|
||||
g_wifi_menuconfig_ptr = 0x4084ff3c;
|
||||
xphyQueue = 0x4084ff38;
|
||||
ap_no_lr_ptr = 0x4084ff34;
|
||||
rc11BSchedTbl_ptr = 0x4084ff30;
|
||||
rc11NSchedTbl_ptr = 0x4084ff2c;
|
||||
rcLoRaSchedTbl_ptr = 0x4084ff28;
|
||||
BasicOFDMSched_ptr = 0x4084ff24;
|
||||
trc_ctl_ptr = 0x4084ff20;
|
||||
g_pm_cnt_ptr = 0x4084ff1c;
|
||||
g_pm_ptr = 0x4084ff18;
|
||||
g_pm_cfg_ptr = 0x4084ff14;
|
||||
g_esp_mesh_quick_funcs_ptr = 0x4084ff10;
|
||||
g_txop_queue_status_ptr = 0x4084ff0c;
|
||||
g_mac_sleep_en_ptr = 0x4084ff08;
|
||||
g_mesh_is_root_ptr = 0x4084ff04;
|
||||
g_mesh_topology_ptr = 0x4084ff00;
|
||||
g_mesh_init_ps_type_ptr = 0x4084fefc;
|
||||
g_mesh_is_started_ptr = 0x4084fef8;
|
||||
g_config_func = 0x4084fef4;
|
||||
g_net80211_tx_func = 0x4084fef0;
|
||||
g_timer_func = 0x4084feec;
|
||||
s_michael_mic_failure_cb = 0x4084fee8;
|
||||
wifi_sta_rx_probe_req = 0x4084fee4;
|
||||
g_tx_done_cb_func = 0x4084fee0;
|
||||
g_per_conn_trc = 0x4084fe94;
|
||||
s_encap_amsdu_func = 0x4084fe90;
|
||||
s_mplen_high_bitmap = 0x4084fce8;
|
||||
s_mplen_low_bitmap = 0x4084fcf8;
|
||||
rx_beacon_count = 0x4084fe8c;
|
||||
rx_beacon_sw_parse = 0x4084fe88;
|
||||
rx_beacon_hw_parse = 0x4084fe84;
|
||||
rx_beacon_tim_count = 0x4084fe80;
|
||||
rx_beacon_tim_udata = 0x4084fe7c;
|
||||
rx_beacon_tim_udata_bitmap = 0x4084fe78;
|
||||
rx_beacon_tim_bdata = 0x4084fe74;
|
||||
rx_beacon_tim_bdata_bitmapctl = 0x4084fe70;
|
||||
rx_beacon_tim_bdata_bitmap_trans = 0x4084fe6c;
|
||||
rx_beacon_tim_bdata_bitmap_mbssid_self = 0x4084fe68;
|
||||
rx_beacon_tim_bdata_bitmap_mbssid_other = 0x4084fe64;
|
||||
rx_beacon_dtim_tim = 0x4084fe60;
|
||||
rx_beacon_dtim_tim_mcast = 0x4084fe5c;
|
||||
amdpu_delay_time_ms = 0x4084fce4;
|
||||
ampdu_delay_packet = 0x4084fce0;
|
||||
ampdu_delay = 0x4084fe59;
|
||||
first_ampdu = 0x4084fe58;
|
||||
s_ht_ampdu_density_us = 0x4084fcde;
|
||||
s_ht_ampdu_density = 0x4084fcdd;
|
||||
s_running_phy_type = 0x4084fcdc;
|
||||
complete_ena_tb_seqno = 0x4084fe54;
|
||||
complete_ena_tb_final = 0x4084fe50;
|
||||
complete_ena_tb_count = 0x4084fe4c;
|
||||
s_itwt_state = 0x4084fe48;
|
||||
g_dbg_interp_tsf = 0x4084fe44;
|
||||
g_dbg_interp_tsf_end = 0x4084fe40;
|
||||
g_dbg_closrf_tsf = 0x4084fe3c;
|
||||
g_dbg_closrf_idx = 0x4084fe38;
|
||||
g_dbg_closrf_blk = 0x4084fe34;
|
||||
queue_history = 0x4084fd6c;
|
||||
queue_history_idx = 0x4084fd68;
|
||||
s_he_min_len_bytes = 0x4084fd2c;
|
||||
s_he_dcm_min_len_bytes = 0x4084fd0c;
|
||||
s_mplen_vi_bitmap = 0x4084fd08;
|
||||
s_mplen_low_bitmap = 0x4084fcf8;
|
||||
s_mplen_high_bitmap = 0x4084fce8;
|
||||
pp_sig_cnt_ptr = 0x4084ff50;
|
||||
g_eb_list_desc_ptr = 0x4084ff4c;
|
||||
s_fragment_ptr = 0x4084ff48;
|
||||
if_ctrl_ptr = 0x4084ff44;
|
||||
g_intr_lock_mux = 0x4084ff40;
|
||||
g_wifi_global_lock = 0x4084ff3c;
|
||||
s_wifi_queue = 0x4084ff38;
|
||||
pp_task_hdl = 0x4084ff34;
|
||||
s_pp_task_create_sem = 0x4084ff30;
|
||||
s_pp_task_del_sem = 0x4084ff2c;
|
||||
xphyQueue = 0x4084ff28;
|
||||
ap_no_lr_ptr = 0x4084ff24;
|
||||
rc11BSchedTbl_ptr = 0x4084ff20;
|
||||
rc11NSchedTbl_ptr = 0x4084ff1c;
|
||||
rcLoRaSchedTbl_ptr = 0x4084ff18;
|
||||
BasicOFDMSched_ptr = 0x4084ff14;
|
||||
trc_ctl_ptr = 0x4084ff10;
|
||||
g_wifi_menuconfig_ptr = 0x4084ff0c;
|
||||
g_pm_cnt_ptr = 0x4084ff08;
|
||||
g_pm_ptr = 0x4084ff04;
|
||||
g_pm_cfg_ptr = 0x4084ff00;
|
||||
g_pm_twt_ptr = 0x4084fefc;
|
||||
g_esp_mesh_quick_funcs_ptr = 0x4084fef8;
|
||||
g_txop_queue_status_ptr = 0x4084fef4;
|
||||
g_mac_sleep_en_ptr = 0x4084fef0;
|
||||
g_mesh_is_root_ptr = 0x4084feec;
|
||||
g_mesh_topology_ptr = 0x4084fee8;
|
||||
g_mesh_init_ps_type_ptr = 0x4084fee4;
|
||||
g_mesh_is_started_ptr = 0x4084fee0;
|
||||
g_config_func = 0x4084fedc;
|
||||
g_net80211_tx_func = 0x4084fed8;
|
||||
g_timer_func = 0x4084fed4;
|
||||
g_dbg_interp_tsf = 0x4084fed0;
|
||||
g_dbg_interp_tsf_end = 0x4084fecc;
|
||||
g_dbg_closrf_tsf = 0x4084fec8;
|
||||
g_dbg_closrf_idx = 0x4084fec4;
|
||||
g_dbg_closrf_blk = 0x4084fec0;
|
||||
s_michael_mic_failure_cb = 0x4084febc;
|
||||
wifi_sta_rx_probe_req = 0x4084feb8;
|
||||
g_tx_done_cb_func = 0x4084feb4;
|
||||
g_per_conn_trc = 0x4084fe5c;
|
||||
rx_beacon_count = 0x4084fe58;
|
||||
rx_beacon_tim_count = 0x4084fe54;
|
||||
rx_beacon_tim_udata = 0x4084fe50;
|
||||
rx_beacon_tim_udata_bitmap = 0x4084fe4c;
|
||||
rx_beacon_tim_bdata = 0x4084fe48;
|
||||
rx_beacon_tim_bdata_bitmapctl = 0x4084fe44;
|
||||
rx_beacon_tim_bdata_bitmap_trans = 0x4084fe40;
|
||||
rx_beacon_tim_bdata_bitmap_mbssid_self = 0x4084fe3c;
|
||||
rx_beacon_tim_bdata_bitmap_mbssid_other = 0x4084fe38;
|
||||
rx_beacon_dtim_tim = 0x4084fe34;
|
||||
rx_beacon_dtim_tim_mcast = 0x4084fe30;
|
||||
ampdu_delay = 0x4084fe2c;
|
||||
s_ht_ampdu_density_us = 0x4084fc86;
|
||||
s_ht_ampdu_density = 0x4084fc85;
|
||||
s_running_phy_type = 0x4084fc84;
|
||||
complete_ena_tb_seqno = 0x4084fe28;
|
||||
complete_ena_tb_final = 0x4084fe24;
|
||||
complete_ena_tb_count = 0x4084fe20;
|
||||
s_he_min_len_bytes = 0x4084fde4;
|
||||
s_he_dcm_min_len_bytes = 0x4084fdc4;
|
||||
g_wdev_dbg_rx_ptr = 0x4084fdc0;
|
||||
s_mplen_txq_bitmap = 0x4084fdb0;
|
||||
s_mplen_be_high_bitmap = 0x4084fdac;
|
||||
s_phy_get_max_pwr = 0x4084fd54;
|
||||
esp_wifi_cert_tx_mcs = 0x4084fc80;
|
||||
esp_wifi_cert_tx_bcc = 0x4084fc7c;
|
||||
esp_wifi_cert_tx_ltf = 0x4084fc78;
|
||||
esp_wifi_cert_tx_gi = 0x4084fc74;
|
||||
esp_wifi_cert_tx_nss = 0x4084fc70;
|
||||
esp_wifi_cert_tx_ersu = 0x4084fd50;
|
||||
g_mac_deinit_count = 0x4084fd4c;
|
||||
g_mac_deinit_rxing = 0x4084fd49;
|
||||
g_mac_deinit_txing = 0x4084fd48;
|
||||
s_bars = 0x4084fd38;
|
||||
esp_test_rx_statistics = 0x4084fd30;
|
||||
esp_test_rx_mu_statistics = 0x4084fd2c;
|
||||
esp_test_tx_statistics_aci_bitmap = 0x4084fd28;
|
||||
esp_test_tx_statistics = 0x4084fd18;
|
||||
esp_test_tx_tb_statistics = 0x4084fd08;
|
||||
esp_test_tx_fail_statistics = 0x4084fca8;
|
||||
esp_test_mu_print_ru_allocation = 0x4084fca4;
|
||||
sigb_ru_allocation_user_num = 0x4003ffc8;
|
||||
sigb_common_ru_allocation = 0x4003ff38;
|
||||
mu_mimo_special_cfg_user_num_2 = 0x4003fee8;
|
||||
mu_mimo_special_cfg_user_num_3 = 0x4003fe80;
|
||||
mu_mimo_special_cfg_user_num_4 = 0x4003fe28;
|
||||
mu_mimo_special_cfg_user_num_5 = 0x4003fdf0;
|
||||
mu_mimo_special_cfg_user_num_6 = 0x4003fdd0;
|
||||
mu_mimo_special_cfg_user_num_7 = 0x4003fdc0;
|
||||
mu_mimo_special_cfg_user_num_8 = 0x4003fdb8;
|
||||
esp_test_rx_error_occurs = 0x4084fca0;
|
||||
g_pp_tx_pkt_num = 0x4084fc9c;
|
||||
he_max_apep_length = 0x4003fd40;
|
||||
g_pp_timer_info_ptr = 0x4084fc98;
|
||||
g_rts_threshold_bytes_ptr = 0x4084fc94;
|
||||
g_he_max_apep_length_tab_ptr = 0x4084fc90;
|
||||
s_tbttstart = 0x4084fc88;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.rvfp.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.rvfp.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
@ -18,23 +18,23 @@
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
_rvfp__addsf3 = 0x40000980;
|
||||
_rvfp__eqsf2 = 0x40000984;
|
||||
_rvfp__extendsfdf2 = 0x40000988;
|
||||
_rvfp__fixsfsi = 0x4000098c;
|
||||
_rvfp__fixunssfsi = 0x40000990;
|
||||
_rvfp__floatdisf = 0x40000994;
|
||||
_rvfp__floatsisf = 0x40000998;
|
||||
_rvfp__floatundisf = 0x4000099c;
|
||||
_rvfp__floatunsisf = 0x400009a0;
|
||||
_rvfp__gesf2 = 0x400009a4;
|
||||
_rvfp__gtsf2 = 0x400009a8;
|
||||
_rvfp__lesf2 = 0x400009ac;
|
||||
_rvfp__ltsf2 = 0x400009b0;
|
||||
_rvfp__mulsf3 = 0x400009b4;
|
||||
_rvfp__nesf2 = 0x400009b8;
|
||||
_rvfp__subsf3 = 0x400009bc;
|
||||
_rvfp__truncdfsf2 = 0x400009c0;
|
||||
__addsf3 = 0x40000994;
|
||||
__eqsf2 = 0x40000998;
|
||||
__extendsfdf2 = 0x4000099c;
|
||||
__fixsfsi = 0x400009a0;
|
||||
__fixunssfsi = 0x400009a4;
|
||||
__floatdisf = 0x400009a8;
|
||||
__floatsisf = 0x400009ac;
|
||||
__floatundisf = 0x400009b0;
|
||||
__floatunsisf = 0x400009b4;
|
||||
__gesf2 = 0x400009b8;
|
||||
__gtsf2 = 0x400009bc;
|
||||
__lesf2 = 0x400009c0;
|
||||
__ltsf2 = 0x400009c4;
|
||||
__mulsf3 = 0x400009c8;
|
||||
__nesf2 = 0x400009cc;
|
||||
__subsf3 = 0x400009d0;
|
||||
__truncdfsf2 = 0x400009d4;
|
||||
|
||||
|
||||
/***************************************
|
||||
@ -42,21 +42,84 @@ _rvfp__truncdfsf2 = 0x400009c0;
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
_rvfp__adddf3 = 0x400009c4;
|
||||
_rvfp__eqdf2 = 0x400009c8;
|
||||
_rvfp__fixdfdi = 0x400009cc;
|
||||
_rvfp__fixdfsi = 0x400009d0;
|
||||
_rvfp__fixsfdi = 0x400009d4;
|
||||
_rvfp__fixunsdfsi = 0x400009d8;
|
||||
_rvfp__fixunssfdi = 0x400009dc;
|
||||
_rvfp__floatdidf = 0x400009e0;
|
||||
_rvfp__floatsidf = 0x400009e4;
|
||||
_rvfp__floatundidf = 0x400009e8;
|
||||
_rvfp__floatunsidf = 0x400009ec;
|
||||
_rvfp__gedf2 = 0x400009f0;
|
||||
_rvfp__gtdf2 = 0x400009f4;
|
||||
_rvfp__ledf2 = 0x400009f8;
|
||||
_rvfp__ltdf2 = 0x400009fc;
|
||||
_rvfp__muldf3 = 0x40000a00;
|
||||
_rvfp__nedf2 = 0x40000a04;
|
||||
_rvfp__subdf3 = 0x40000a08;
|
||||
__adddf3 = 0x400009d8;
|
||||
__eqdf2 = 0x400009dc;
|
||||
__fixdfdi = 0x400009e0;
|
||||
__fixdfsi = 0x400009e4;
|
||||
__fixsfdi = 0x400009e8;
|
||||
__fixunsdfsi = 0x400009ec;
|
||||
__fixunssfdi = 0x400009f0;
|
||||
__floatdidf = 0x400009f4;
|
||||
__floatsidf = 0x400009f8;
|
||||
__floatundidf = 0x400009fc;
|
||||
__floatunsidf = 0x40000a00;
|
||||
__gedf2 = 0x40000a04;
|
||||
__gtdf2 = 0x40000a08;
|
||||
__ledf2 = 0x40000a0c;
|
||||
__ltdf2 = 0x40000a10;
|
||||
__muldf3 = 0x40000a14;
|
||||
__nedf2 = 0x40000a18;
|
||||
__subdf3 = 0x40000a1c;
|
||||
|
||||
/***************************************
|
||||
Group libgcc
|
||||
***************************************/
|
||||
|
||||
/* Functions */
|
||||
__divsf3 = 0x40000828;
|
||||
__negsf2 = 0x40000850;
|
||||
__powisf2 = 0x40000858;
|
||||
__unordsf2 = 0x40000864;
|
||||
__absvdi2 = 0x40000868;
|
||||
__absvsi2 = 0x4000086c;
|
||||
__addvdi3 = 0x40000874;
|
||||
__addvsi3 = 0x40000878;
|
||||
__ashldi3 = 0x4000087c;
|
||||
__ashrdi3 = 0x40000880;
|
||||
__bswapdi2 = 0x40000884;
|
||||
__bswapsi2 = 0x40000888;
|
||||
__clear_cache = 0x4000088c;
|
||||
__clrsbdi2 = 0x40000890;
|
||||
__clrsbsi2 = 0x40000894;
|
||||
__clzdi2 = 0x40000898;
|
||||
__clzsi2 = 0x4000089c;
|
||||
__cmpdi2 = 0x400008a0;
|
||||
__ctzdi2 = 0x400008a4;
|
||||
__ctzsi2 = 0x400008a8;
|
||||
__divdc3 = 0x400008ac;
|
||||
__divdf3 = 0x400008b0;
|
||||
__divdi3 = 0x400008b4;
|
||||
__divsc3 = 0x400008b8;
|
||||
__divsi3 = 0x400008bc;
|
||||
__ffsdi2 = 0x400008c8;
|
||||
__ffssi2 = 0x400008cc;
|
||||
__gcc_bcmp = 0x40000900;
|
||||
__lshrdi3 = 0x40000910;
|
||||
__moddi3 = 0x40000918;
|
||||
__modsi3 = 0x4000091c;
|
||||
__muldc3 = 0x40000920;
|
||||
__muldi3 = 0x40000928;
|
||||
__mulsc3 = 0x4000092c;
|
||||
__mulsi3 = 0x40000930;
|
||||
__mulvdi3 = 0x40000934;
|
||||
__mulvsi3 = 0x40000938;
|
||||
__negdf2 = 0x40000940;
|
||||
__negdi2 = 0x40000944;
|
||||
__negvdi2 = 0x40000948;
|
||||
__negvsi2 = 0x4000094c;
|
||||
__paritysi2 = 0x40000950;
|
||||
__popcountdi2 = 0x40000954;
|
||||
__popcountsi2 = 0x40000958;
|
||||
__powidf2 = 0x4000095c;
|
||||
__subvdi3 = 0x40000964;
|
||||
__subvsi3 = 0x40000968;
|
||||
__ucmpdi2 = 0x4000096c;
|
||||
__udivdi3 = 0x40000970;
|
||||
__udivmoddi4 = 0x40000974;
|
||||
__udivsi3 = 0x40000978;
|
||||
__udiv_w_sdiv = 0x4000097c;
|
||||
__umoddi3 = 0x40000980;
|
||||
__umodsi3 = 0x40000984;
|
||||
__unorddf2 = 0x40000988;
|
||||
__extenddftf2 = 0x4000098c;
|
||||
__trunctfdf2 = 0x40000990;
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM function interface esp32c6lite.rom.spiflash.ld for esp32c6lite
|
||||
/* ROM function interface esp32c61.rom.spiflash.ld for esp32c61
|
||||
*
|
||||
*
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum d875746dfc29a51e6d327cc923b7a095
|
||||
* Generated from ./target/esp32c6lite/interface-esp32c6lite.yml md5sum 27eb0efac0883ee622c22767242c9457
|
||||
*
|
||||
* Compatible with ROM where ECO version equal or greater to 0.
|
||||
*
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* ROM version variables for esp32c6lite
|
||||
/* ROM version variables for esp32c61
|
||||
*
|
||||
* These addresses should be compatible with any ROM version for this chip.
|
||||
*
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "ld.common"
|
||||
|
||||
#define SRAM_SEG_START 0x40800000
|
||||
#define SRAM_SEG_END 0x4084E5F0 /* 2nd stage bootloader iram_loader_seg start address */
|
||||
#define SRAM_SEG_END 0x4083ea70 /* 2nd stage bootloader iram_loader_seg start address */
|
||||
#define SRAM_SEG_SIZE SRAM_SEG_END - SRAM_SEG_START
|
||||
|
||||
#if CONFIG_APP_BUILD_USE_FLASH_SECTIONS
|
||||
|
Loading…
Reference in New Issue
Block a user