From d9603509d5f66f6f838901c39dd2ea8502ff0a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E8=8B=8F=E9=A3=9E=E6=BA=90=E2=80=9D?= Date: Tue, 20 Jun 2023 18:12:38 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=EF=BC=9B=202=E3=80=81=E5=A2=9E=E5=8A=A0CCM=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=95=B4=E5=B1=8F=E9=A2=9C=E8=89=B2=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 85 + project/ISP_368/ISP_368.uvprojx | 532 ++ project/ISP_368/Listings/ISP368_N10Lite.map | 5234 ++++++++++++++++ .../Listings/ISP368_N10Lite_CSOT667.map | 5359 ++++++++++++++++ .../ISP368_N10Lite_CSOT667_20230619.map | 5360 ++++++++++++++++ project/ISP_368/Listings/WL368_A71_HX667.map | 5250 ++++++++++++++++ .../ISP_368/Listings/WL368_MAT30_F6419.map | 5320 ++++++++++++++++ project/ISP_368/Listings/WL368_N10Lite.map | 2735 +++++++++ .../ISP_368/Listings/WL368_S10LITE_HX667.map | 5377 +++++++++++++++++ project/ISP_368/Listings/ap_demo.txt | 4813 +++++++++++++++ .../ISP_368/Listings/app_tp_for_custom_s8.txt | 3479 +++++++++++ project/ISP_368/Listings/app_tp_st_touch.txt | 1280 ++++ project/ISP_368/Listings/app_tp_transfer.txt | 1297 ++++ project/ISP_368/Listings/board.txt | 63 + project/ISP_368/Listings/main.txt | 55 + .../Objects/ISP368_N10Lite_CSOT667.bin | Bin 0 -> 60968 bytes .../ISP368_N10Lite_CSOT667_20230619.bin | Bin 0 -> 59844 bytes project/ISP_368/RTE/_ISP_368/RTE_Components.h | 21 + src/app/demo/ap_demo.c | 2601 ++++++++ src/app/demo/ap_demo.h | 49 + src/app/demo/app_tp_for_custom_s8.h | 154 + src/app/demo/app_tp_screen_transfer_data_s8.h | 23 + src/app/demo/app_tp_st_touch.c | 570 ++ src/app/demo/app_tp_st_touch.h | 170 + src/app/demo/app_tp_transfer.c | 827 +++ src/app/demo/app_tp_transfer.h | 109 + src/app/main.c | 26 + src/app/test_cfg_global.h | 84 + src/board/board.c | 26 + src/board/board.h | 16 + src/board/startup/startup_ARMCM0.s | 226 + src/common/tau_common.h | 216 + src/common/tau_delay.h | 34 + src/common/tau_device_datatype.h | 167 + src/common/tau_dsi_datatype.h | 374 ++ src/common/tau_log.h | 108 + src/common/tau_operations.h | 229 + src/sdk/CVWL368/lib/CVWL368.lib | Bin 0 -> 665220 bytes .../CVWL368/lib/ISP368_N10Lite_CSOT667_TP.lib | Bin 0 -> 100242 bytes src/sdk/include/M0/ArmCM0.h | 213 + src/sdk/include/hal_dsi_rx_ctrl.h | 558 ++ src/sdk/include/hal_dsi_tx_ctrl.h | 284 + src/sdk/include/hal_gpio.h | 537 ++ src/sdk/include/hal_i2c_master.h | 80 + src/sdk/include/hal_i2c_slave.h | 179 + src/sdk/include/hal_pwm.h | 219 + src/sdk/include/hal_spi_master.h | 89 + src/sdk/include/hal_spi_slave.h | 181 + src/sdk/include/hal_swire.h | 75 + src/sdk/include/hal_system.h | 181 + src/sdk/include/hal_timer.h | 92 + src/sdk/include/hal_uart.h | 131 + src/sdk/include/hal_wdg.h | 94 + src/sdk/sdk_version.h | 1 + 54 files changed, 55183 insertions(+) create mode 100644 .gitignore create mode 100644 project/ISP_368/ISP_368.uvprojx create mode 100644 project/ISP_368/Listings/ISP368_N10Lite.map create mode 100644 project/ISP_368/Listings/ISP368_N10Lite_CSOT667.map create mode 100644 project/ISP_368/Listings/ISP368_N10Lite_CSOT667_20230619.map create mode 100644 project/ISP_368/Listings/WL368_A71_HX667.map create mode 100644 project/ISP_368/Listings/WL368_MAT30_F6419.map create mode 100644 project/ISP_368/Listings/WL368_N10Lite.map create mode 100644 project/ISP_368/Listings/WL368_S10LITE_HX667.map create mode 100644 project/ISP_368/Listings/ap_demo.txt create mode 100644 project/ISP_368/Listings/app_tp_for_custom_s8.txt create mode 100644 project/ISP_368/Listings/app_tp_st_touch.txt create mode 100644 project/ISP_368/Listings/app_tp_transfer.txt create mode 100644 project/ISP_368/Listings/board.txt create mode 100644 project/ISP_368/Listings/main.txt create mode 100644 project/ISP_368/Objects/ISP368_N10Lite_CSOT667.bin create mode 100644 project/ISP_368/Objects/ISP368_N10Lite_CSOT667_20230619.bin create mode 100644 project/ISP_368/RTE/_ISP_368/RTE_Components.h create mode 100644 src/app/demo/ap_demo.c create mode 100644 src/app/demo/ap_demo.h create mode 100644 src/app/demo/app_tp_for_custom_s8.h create mode 100644 src/app/demo/app_tp_screen_transfer_data_s8.h create mode 100644 src/app/demo/app_tp_st_touch.c create mode 100644 src/app/demo/app_tp_st_touch.h create mode 100644 src/app/demo/app_tp_transfer.c create mode 100644 src/app/demo/app_tp_transfer.h create mode 100644 src/app/main.c create mode 100644 src/app/test_cfg_global.h create mode 100644 src/board/board.c create mode 100644 src/board/board.h create mode 100644 src/board/startup/startup_ARMCM0.s create mode 100644 src/common/tau_common.h create mode 100644 src/common/tau_delay.h create mode 100644 src/common/tau_device_datatype.h create mode 100644 src/common/tau_dsi_datatype.h create mode 100644 src/common/tau_log.h create mode 100644 src/common/tau_operations.h create mode 100644 src/sdk/CVWL368/lib/CVWL368.lib create mode 100644 src/sdk/CVWL368/lib/ISP368_N10Lite_CSOT667_TP.lib create mode 100644 src/sdk/include/M0/ArmCM0.h create mode 100644 src/sdk/include/hal_dsi_rx_ctrl.h create mode 100644 src/sdk/include/hal_dsi_tx_ctrl.h create mode 100644 src/sdk/include/hal_gpio.h create mode 100644 src/sdk/include/hal_i2c_master.h create mode 100644 src/sdk/include/hal_i2c_slave.h create mode 100644 src/sdk/include/hal_pwm.h create mode 100644 src/sdk/include/hal_spi_master.h create mode 100644 src/sdk/include/hal_spi_slave.h create mode 100644 src/sdk/include/hal_swire.h create mode 100644 src/sdk/include/hal_system.h create mode 100644 src/sdk/include/hal_timer.h create mode 100644 src/sdk/include/hal_uart.h create mode 100644 src/sdk/include/hal_wdg.h create mode 100644 src/sdk/sdk_version.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..243d6b9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,85 @@ +# A .gitignore for Keil projects. +# Taken mostly from http://www.keil.com/support/man/docs/uv4/uv4_b_filetypes.htm + +# User-specific uVision files +*.opt +*.uvopt +*.uvoptx +*.uvgui +*.uvgui.* +*.uvguix.* + +# Listing files +#*.cod +#*.map +#*.m51 +#*.m66 +*._ip +*.i +*.lst +*/Listings/*.txt + +# define exception below if needed +*.scr + +# Object and HEX files +*.axf +*.b[0-3][0-9] +*.hex +*.d +*.crf +*.elf +*.hex +*.h86 +*.obj +*.o +*.sbr +*.htm + +# Build files +# define exception below if needed +*.bat +*._ia +*.__i +*._ii + +# Generated output files +/Listings/* +/Objects/* + +# Debugger files +# define exception below if needed +*.ini + +# Other files +*.build_log.htm +*.cdb +*.dep +*.ic +*.lin +*.lnp +*.orc +# define exception below if needed +*.pack +# define exception below if needed +*.pdsc +*.plg +# define exception below if needed +*.sct +*.sfd +*.sfr + +# Miscellaneous +*.tra +*.fed +*.l1p +*.l2p +*.iex + + +/si/ +!*.bin +!*.map + +# To explicitly override the above, define any exceptions here; e.g.: +# !my_customized_scatter_file.sct diff --git a/project/ISP_368/ISP_368.uvprojx b/project/ISP_368/ISP_368.uvprojx new file mode 100644 index 0000000..a0edcbc --- /dev/null +++ b/project/ISP_368/ISP_368.uvprojx @@ -0,0 +1,532 @@ + + + + 2.1 + +
### uVision Project, (C) Keil Software
+ + + + ISP_368 + 0x4 + ARM-ADS + 5060750::V5.06 update 6 (build 750)::ARMCC + 5060750::V5.06 update 6 (build 750)::ARMCC + 0 + + + ARMCM0 + ARM + ARM.CMSIS.5.5.1 + http://www.keil.com/pack/ + IRAM(0x20000000,0x00020000) IROM(0x00000000,0x00040000) CPUTYPE("Cortex-M0") CLOCK(12000000) ESEL ELITTLE + + + UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) + 0 + $$Device:ARMCM0$Device\ARM\ARMCM0\Include\ARMCM0.h + + + + + + + + + + $$Device:ARMCM0$Device\ARM\SVD\ARMCM0.svd + 0 + 0 + + + + + + + 0 + 0 + 0 + 0 + 1 + + .\Objects\ + ISP368_N10Lite_CSOT667_20230619 + 1 + 0 + 1 + 1 + 1 + .\Listings\ + 1 + 0 + 1 + + 0 + 0 + + + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + 0 + 0 + + + 1 + 0 + fromelf --bin -o .\Objects\@L.bin .\Objects\@L.axf + + 0 + 0 + 0 + 0 + + 0 + + + + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 3 + + + 1 + + + SARMCM3.DLL + + DARMCM1.DLL + -pCM0 + SARMCM3.DLL + + TARMCM1.DLL + -pCM0 + + + + 1 + 0 + 0 + 0 + 16 + + + + + 1 + 0 + 0 + 1 + 1 + 4096 + + 1 + BIN\UL2CM3.DLL + "" () + + + + + 0 + + + + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 1 + 1 + 0 + 1 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + "Cortex-M0" + + 0 + 0 + 0 + 1 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 16 + 1 + 1 + 0 + 0 + 4 + 3 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1 + 1 + 1 + 1 + 0 + 0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x20000000 + 0x20000 + + + 1 + 0x0 + 0x40000 + + + 0 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x2000 + + + 1 + 0x10000 + 0x10000 + + + 0 + 0x70000 + 0xf0 + + + 0 + 0x70100 + 0xd0 + + + 0 + 0x701d0 + 0x7e30 + + + 0 + 0x20000000 + 0x20000 + + + 0 + 0x0 + 0x0 + + + + + + 1 + 3 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 0 + 2 + 0 + 0 + 1 + 1 + 0 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + + + ISP_368 + + ..\..\src;..\..\src\board;..\..\src\common;..\..\src\sdk\include;..\..\src\app\demo;..\..\src\sdk\include\M0;..\..\src\app;..\..\src\app\module_demo;..\..\src\app\touch;..\..\src\app\S8;..\..\src\app\S9;..\CVWL368 + + + + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + 1 + 0 + 0 + 0 + 1 + 0 + 0x00000000 + 0x20000000 + + + + + + + + + + + + + app + + + main.c + 1 + ..\..\src\app\main.c + + + ap_demo.c + 1 + ..\..\src\app\demo\ap_demo.c + + + app_tp_transfer.c + 1 + ..\..\src\app\demo\app_tp_transfer.c + + + app_tp_for_custom_s8.c + 1 + ..\..\src\app\demo\app_tp_for_custom_s8.c + + + 2 + 0 + 0 + 0 + 0 + 0 + 2 + 2 + 2 + 2 + 11 + + + 1 + + + + 2 + 0 + 2 + 2 + 2 + 2 + 2 + 2 + 2 + 2 + 0 + 2 + 2 + 2 + 2 + 2 + 0 + 0 + 2 + 2 + 2 + 2 + 2 + + + + + + + + + + + + app_tp_st_touch.c + 1 + ..\..\src\app\demo\app_tp_st_touch.c + + + + + driver + + + CVWL368.lib + 4 + ..\..\src\sdk\CVWL368\lib\CVWL368.lib + + + ISP368_N10Lite_CSOT667_TP.lib + 4 + ..\..\src\sdk\CVWL368\lib\ISP368_N10Lite_CSOT667_TP.lib + + + + + board + + + board.c + 1 + ..\..\src\board\board.c + + + + + startup + + + startup_ARMCM0.s + 2 + ..\..\src\board\startup\startup_ARMCM0.s + + + + + ::CMSIS + + + + + + + + + + + + + + + + + + RTE\Device\ARMCM0\startup_ARMCM0.s + + + + + + RTE\Device\ARMCM0\system_ARMCM0.c + + + + + + + +
diff --git a/project/ISP_368/Listings/ISP368_N10Lite.map b/project/ISP_368/Listings/ISP368_N10Lite.map new file mode 100644 index 0000000..febc0eb --- /dev/null +++ b/project/ISP_368/Listings/ISP368_N10Lite.map @@ -0,0 +1,5234 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_53) refers to app_tp_for_custom_s8.o(.data) for fingerprint_flag + ap_demo.o(i.ap_get_reg_53) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_get_reg_7A) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_get_reg_7A) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_pvd) for hal_system_set_pvd + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_reset_cb) refers to ap_demo.o(.conststring) for .conststring + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_backlight_51) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_display_on) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_tp_calibration_04) refers to ap_demo.o(.data) for .data + ap_demo.o(i.app_tp_calibration_exec) refers to app_tp_transfer.o(i.ap_tp_calibration) for ap_tp_calibration + ap_demo.o(i.app_tp_calibration_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.init_panel) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.init_panel) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.init_panel) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.init_panel) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.init_panel) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to ap_demo.o(i.soft_te_timer_cb) for soft_te_timer_cb + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) for hal_dsi_rx_ctrl_toggle_resolution + ap_demo.o(i.pps_update_handle) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + ap_demo.o(i.soft_te_timer_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_te_timer_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_tp_calibration_04) for ap_set_tp_calibration_04 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_53) for ap_get_reg_53 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_7A) for ap_get_reg_7A + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(.data) for send_point + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + board.o(i.board_Init) refers to hal_system.o(i.hal_system_set_phy_calibration) for hal_system_set_phy_calibration + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) for hal_internal_vsync_toggle_input_frame_rate + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_update_dpi_param) for hal_internal_update_dpi_param + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_release_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_release_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_update_dpi_param) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fmul.o(.text) for __aeabi_fmul + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ceil.o(i.ceil) for ceil + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) for hal_internal_video_mode_auto_sync + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.app_tp_m_transfer_complate), (8 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (16 bytes). + Removing app_tp_for_custom_s8.o(.data), (16 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en), (16 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter), (108 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex), (14 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (10 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic), (148 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd), (140 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (108 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_release_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_scld_filter), (100 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex), (468 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate), (560 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr), (48 bytes). + Removing hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler), (476 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_set_prefetch), (24 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +575 unused section(s) (total 26204 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 idiv.o ABSOLUTE + ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE + ../mathlib/ceil.c 0x00000000 Number 0 ceil.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE + ..\..\..\src\common\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\..\..\src\common\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\dcs_packet_fifo.c 0x00000000 Number 0 dcs_packet_fifo.o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\internal\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\..\src\app\demo\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\..\src\app\demo\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\..\src\app\demo\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\..\src\app\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\..\src\board\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\..\src\board\startup\startup_ARMCM0.s 0x00000000 Number 0 startup_armcm0.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\hal\\internal\\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\internal\\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\\..\\src\\app\\demo\\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\\..\\src\\app\\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\\..\\src\\board\\board.c 0x00000000 Number 0 board.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + RESET 0x00010000 Section 192 startup_armcm0.o(RESET) + .ARM.Collect$$$$00000000 0x000100c0 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x000100c0 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x000100c4 Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x000100c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x000100c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x000100c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x000100d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x000100d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x000100d0 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x000100d0 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x000100d4 Section 120 startup_armcm0.o(.text) + .text 0x0001014c Section 0 uidiv.o(.text) + .text 0x00010178 Section 0 idiv.o(.text) + .text 0x000101a0 Section 0 memcpya.o(.text) + .text 0x000101c4 Section 0 memseta.o(.text) + .text 0x000101e8 Section 0 fadd.o(.text) + .text 0x0001029a Section 0 fmul.o(.text) + .text 0x00010314 Section 0 fdiv.o(.text) + .text 0x00010390 Section 0 fscalb.o(.text) + .text 0x000103a8 Section 0 dadd.o(.text) + .text 0x0001050c Section 0 dmul.o(.text) + .text 0x000105dc Section 0 ddiv.o(.text) + .text 0x000106cc Section 0 fflti.o(.text) + .text 0x000106e2 Section 0 ffltui.o(.text) + .text 0x000106f0 Section 0 dfltui.o(.text) + .text 0x0001070c Section 0 ffixi.o(.text) + .text 0x0001073e Section 0 ffixui.o(.text) + .text 0x00010768 Section 0 dfixi.o(.text) + .text 0x000107b0 Section 0 dfixui.o(.text) + .text 0x000107ec Section 0 f2d.o(.text) + .text 0x00010814 Section 40 cdcmple.o(.text) + .text 0x0001083c Section 20 cfrcmple.o(.text) + .text 0x00010850 Section 0 uldiv.o(.text) + .text 0x000108b0 Section 0 llshl.o(.text) + .text 0x000108d0 Section 0 llushr.o(.text) + .text 0x000108f2 Section 0 llsshr.o(.text) + .text 0x00010918 Section 0 iusefp.o(.text) + .text 0x00010918 Section 0 fepilogue.o(.text) + .text 0x0001099a Section 0 depilogue.o(.text) + .text 0x00010a58 Section 0 dsqrt.o(.text) + .text 0x00010afc Section 0 dfixul.o(.text) + .text 0x00010b3c Section 40 cdrcmple.o(.text) + .text 0x00010b64 Section 36 init.o(.text) + .text 0x00010b88 Section 0 __dczerorl2.o(.text) + i.ADC_IRQn_Handler 0x00010be0 Section 0 irq_redirect .o(i.ADC_IRQn_Handler) + i.AP_NRESET_IRQn_Handler 0x00010bf8 Section 0 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + i.DMA_IRQn_Handler 0x00010c10 Section 0 irq_redirect .o(i.DMA_IRQn_Handler) + i.EXTI_INT0_IRQn_Handler 0x00010c24 Section 0 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + i.EXTI_INT1_IRQn_Handler 0x00010c40 Section 0 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + i.EXTI_INT2_IRQn_Handler 0x00010c5c Section 0 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + i.EXTI_INT3_IRQn_Handler 0x00010c78 Section 0 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + i.EXTI_INT4_IRQn_Handler 0x00010c94 Section 0 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + i.EXTI_INT5_IRQn_Handler 0x00010cb0 Section 0 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + i.EXTI_INT6_IRQn_Handler 0x00010ccc Section 0 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + i.EXTI_INT7_IRQn_Handler 0x00010ce8 Section 0 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + i.FLSCTRL_IRQn_Handler 0x00010d04 Section 0 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + i.Gpio_swire_output 0x00010d18 Section 0 ap_demo.o(i.Gpio_swire_output) + i.HardFault_Handler 0x00010d68 Section 0 irq_redirect .o(i.HardFault_Handler) + i.I2C0_IRQn_Handler 0x00010d7c Section 0 irq_redirect .o(i.I2C0_IRQn_Handler) + i.I2C1_IRQn_Handler 0x00010d94 Section 0 irq_redirect .o(i.I2C1_IRQn_Handler) + i.LCDC_IRQn_Handler 0x00010dac Section 0 irq_redirect .o(i.LCDC_IRQn_Handler) + i.LOG_printf 0x00010dc4 Section 0 tau_log.o(i.LOG_printf) + i.MEMC_IRQn_Handler 0x00010dec Section 0 irq_redirect .o(i.MEMC_IRQn_Handler) + i.MIPI_RX_IRQn_Handler 0x00010e04 Section 0 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + i.MIPI_TX_IRQn_Handler 0x00010e1c Section 0 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + i.PWMDET_IRQn_Handler 0x00010e34 Section 0 irq_redirect .o(i.PWMDET_IRQn_Handler) + i.S20_Start_init 0x00010e50 Section 0 app_tp_transfer.o(i.S20_Start_init) + i.SPIM_IRQn_Handler 0x00010f9c Section 0 irq_redirect .o(i.SPIM_IRQn_Handler) + i.SPIS_IRQn_Handler 0x00010fb8 Section 0 irq_redirect .o(i.SPIS_IRQn_Handler) + i.SWIRE_IRQn_Handler 0x00010fd4 Section 0 irq_redirect .o(i.SWIRE_IRQn_Handler) + i.UART_DisableDma 0x00010ff0 Section 0 drv_uart.o(i.UART_DisableDma) + i.UART_GetInstance 0x00010ff2 Section 0 drv_uart.o(i.UART_GetInstance) + i.__scatterload_null 0x00010ff6 Section 2 handlers.o(i.__scatterload_null) + i.app_UART_IRQn_Handler 0x00010ff8 Section 0 drv_uart.o(i.app_UART_IRQn_Handler) + .ARM.__at_0x11000 0x00011000 Section 20 drv_common.o(.ARM.__at_0x11000) + i.drv_dsi_rx_set_inten 0x00011014 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + .ARM.__at_0x11018 0x00011018 Section 4 drv_common.o(.ARM.__at_0x11018) + i.SysTick_Handler 0x0001101c Section 0 irq_redirect .o(i.SysTick_Handler) + i.TIMER0_IRQn_Handler 0x00011034 Section 0 irq_redirect .o(i.TIMER0_IRQn_Handler) + i.TIMER1_IRQn_Handler 0x0001104c Section 0 irq_redirect .o(i.TIMER1_IRQn_Handler) + i.TIMER2_IRQn_Handler 0x00011064 Section 0 irq_redirect .o(i.TIMER2_IRQn_Handler) + i.TIMER3_IRQn_Handler 0x0001107c Section 0 irq_redirect .o(i.TIMER3_IRQn_Handler) + i.UART0_IRQ_Handle 0x00011094 Section 0 drv_uart.o(i.UART0_IRQ_Handle) + i.UART_IRQn_Handler 0x000110b0 Section 0 irq_redirect .o(i.UART_IRQn_Handler) + i.UART_ResetRxFIFO 0x000110c8 Section 0 drv_uart.o(i.UART_ResetRxFIFO) + i.UART_SetBaudRate 0x000110ec Section 0 drv_uart.o(i.UART_SetBaudRate) + i.UART_SwitchSCLK 0x00011134 Section 0 drv_uart.o(i.UART_SwitchSCLK) + i.UART_TransferHandleIRQ 0x0001114e Section 0 drv_uart.o(i.UART_TransferHandleIRQ) + i.UART_WriteBlocking 0x00011282 Section 0 drv_uart.o(i.UART_WriteBlocking) + i.UART_init 0x0001129c Section 0 drv_uart.o(i.UART_init) + i.VIDC_IRQn_Handler 0x00011358 Section 0 irq_redirect .o(i.VIDC_IRQn_Handler) + i.VPRE_IRQn_Handler 0x00011370 Section 0 irq_redirect .o(i.VPRE_IRQn_Handler) + i.WDG_IRQn_Handler 0x00011388 Section 0 irq_redirect .o(i.WDG_IRQn_Handler) + i.__0printf 0x000113a0 Section 0 printfa.o(i.__0printf) + i.__0vsprintf 0x000113c0 Section 0 printfa.o(i.__0vsprintf) + i.__ARM_clz 0x000113e4 Section 0 depilogue.o(i.__ARM_clz) + i.__ARM_common_switch8 0x00011412 Section 0 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + i.__NVIC_ClearPendingIRQ 0x0001142c Section 0 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x0001142d Thumb Code 18 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_ClearPendingIRQ 0x00011444 Section 0 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x00011445 Thumb Code 18 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_DisableIRQ 0x0001145c Section 0 drv_rxbr.o(i.__NVIC_DisableIRQ) + __NVIC_DisableIRQ 0x0001145d Thumb Code 26 drv_rxbr.o(i.__NVIC_DisableIRQ) + i.__NVIC_EnableIRQ 0x0001147c Section 0 drv_rxbr.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x0001147d Thumb Code 18 drv_rxbr.o(i.__NVIC_EnableIRQ) + i.__NVIC_SetPriority 0x00011494 Section 0 hal_spi_slave.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x00011495 Thumb Code 60 hal_spi_slave.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x000114d8 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_zeroinit 0x000114e6 Section 14 handlers.o(i.__scatterload_zeroinit) + i.__set_errno 0x000114f4 Section 0 errno.o(i.__set_errno) + i._fp_digits 0x00011500 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x00011501 Thumb Code 344 printfa.o(i._fp_digits) + i._printf_core 0x00011674 Section 0 printfa.o(i._printf_core) + _printf_core 0x00011675 Thumb Code 1754 printfa.o(i._printf_core) + i._printf_post_padding 0x00011d60 Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x00011d61 Thumb Code 32 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x00011d80 Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x00011d81 Thumb Code 44 printfa.o(i._printf_pre_padding) + i._sputc 0x00011dac Section 0 printfa.o(i._sputc) + _sputc 0x00011dad Thumb Code 10 printfa.o(i._sputc) + i.ap_dcs_read 0x00011db8 Section 0 ap_demo.o(i.ap_dcs_read) + ap_dcs_read 0x00011db9 Thumb Code 384 ap_demo.o(i.ap_dcs_read) + i.ap_demo 0x00011f6c Section 0 ap_demo.o(i.ap_demo) + i.ap_get_reg_53 0x00012174 Section 0 ap_demo.o(i.ap_get_reg_53) + ap_get_reg_53 0x00012175 Thumb Code 26 ap_demo.o(i.ap_get_reg_53) + i.ap_get_reg_7A 0x00012198 Section 0 ap_demo.o(i.ap_get_reg_7A) + ap_get_reg_7A 0x00012199 Thumb Code 102 ap_demo.o(i.ap_get_reg_7A) + i.ap_get_reg_df 0x00012204 Section 0 ap_demo.o(i.ap_get_reg_df) + ap_get_reg_df 0x00012205 Thumb Code 146 ap_demo.o(i.ap_get_reg_df) + i.ap_reset_cb 0x0001229c Section 0 ap_demo.o(i.ap_reset_cb) + ap_reset_cb 0x0001229d Thumb Code 40 ap_demo.o(i.ap_reset_cb) + i.ap_set_backlight_51 0x000122dc Section 0 ap_demo.o(i.ap_set_backlight_51) + ap_set_backlight_51 0x000122dd Thumb Code 82 ap_demo.o(i.ap_set_backlight_51) + i.ap_set_display_off 0x00012334 Section 0 ap_demo.o(i.ap_set_display_off) + ap_set_display_off 0x00012335 Thumb Code 30 ap_demo.o(i.ap_set_display_off) + i.ap_set_display_on 0x00012378 Section 0 ap_demo.o(i.ap_set_display_on) + ap_set_display_on 0x00012379 Thumb Code 18 ap_demo.o(i.ap_set_display_on) + i.ap_set_enter_sleep_mode 0x000123ac Section 0 ap_demo.o(i.ap_set_enter_sleep_mode) + ap_set_enter_sleep_mode 0x000123ad Thumb Code 68 ap_demo.o(i.ap_set_enter_sleep_mode) + i.ap_set_exit_sleep_mode 0x00012420 Section 0 ap_demo.o(i.ap_set_exit_sleep_mode) + ap_set_exit_sleep_mode 0x00012421 Thumb Code 22 ap_demo.o(i.ap_set_exit_sleep_mode) + i.ap_set_tp_calibration_04 0x00012464 Section 0 ap_demo.o(i.ap_set_tp_calibration_04) + ap_set_tp_calibration_04 0x00012465 Thumb Code 22 ap_demo.o(i.ap_set_tp_calibration_04) + i.ap_tp_calibration 0x00012480 Section 0 app_tp_transfer.o(i.ap_tp_calibration) + i.app_ADC_IRQn_Handler 0x00012530 Section 0 drv_rxbr.o(i.app_ADC_IRQn_Handler) + i.app_AP_NRESET_IRQn_Handler 0x0001254c Section 0 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + i.app_EXTI_INT0_IRQn_Handler 0x00012570 Section 0 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + i.app_EXTI_INT1_IRQn_Handler 0x0001258c Section 0 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + i.app_EXTI_INT2_IRQn_Handler 0x000125a8 Section 0 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + i.app_EXTI_INT3_IRQn_Handler 0x000125c4 Section 0 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + i.app_EXTI_INT4_IRQn_Handler 0x000125e0 Section 0 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + i.app_EXTI_INT5_IRQn_Handler 0x000125fc Section 0 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + i.app_EXTI_INT6_IRQn_Handler 0x00012618 Section 0 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + i.app_EXTI_INT7_IRQn_Handler 0x00012634 Section 0 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + i.app_HardFault_Handler 0x00012650 Section 0 drv_common.o(i.app_HardFault_Handler) + i.app_I2C0_IRQn_Handler 0x00012698 Section 0 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + i.app_I2C1_IRQn_Handler 0x000126b0 Section 0 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + i.app_LCDC_IRQn_Handler 0x000126c0 Section 0 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + i.app_MEMC_IRQn_Handler 0x00012864 Section 0 drv_memc.o(i.app_MEMC_IRQn_Handler) + i.app_MIPI_RX_IRQn_Handler 0x000128ec Section 0 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + i.app_MIPI_TX_IRQn_Handler 0x00012b84 Section 0 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + i.app_PWMDET_IRQn_Handler 0x00012c24 Section 0 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + i.app_SPIM_IRQn_Handler 0x00012c6c Section 0 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + i.app_SPIS_IRQn_Handler 0x00012c9c Section 0 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + i.app_SWIRE_IRQn_Handler 0x00012e9c Section 0 drv_swire.o(i.app_SWIRE_IRQn_Handler) + i.app_SysTick_Handler 0x00012ebc Section 0 drv_common.o(i.app_SysTick_Handler) + i.app_TIMER0_IRQn_Handler 0x00012ed4 Section 0 drv_timer.o(i.app_TIMER0_IRQn_Handler) + i.app_TIMER1_IRQn_Handler 0x00012ede Section 0 drv_timer.o(i.app_TIMER1_IRQn_Handler) + i.app_TIMER2_IRQn_Handler 0x00012ee8 Section 0 drv_timer.o(i.app_TIMER2_IRQn_Handler) + i.app_TIMER3_IRQn_Handler 0x00012ef2 Section 0 drv_timer.o(i.app_TIMER3_IRQn_Handler) + i.app_VIDC_IRQn_Handler 0x00012efc Section 0 drv_vidc.o(i.app_VIDC_IRQn_Handler) + i.app_VPRE_IRQn_Handler 0x00012f18 Section 0 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + i.app_WDG_IRQn_Handler 0x00012f34 Section 0 drv_wdg.o(i.app_WDG_IRQn_Handler) + i.app_dma_irq_handler 0x00012f6c Section 0 drv_dma.o(i.app_dma_irq_handler) + i.app_fls_ctrl_Handler 0x00012f7c Section 0 norflash.o(i.app_fls_ctrl_Handler) + i.app_tp_I2C_init 0x00012fac Section 0 app_tp_transfer.o(i.app_tp_I2C_init) + i.app_tp_calibration_exec 0x00012fd0 Section 0 ap_demo.o(i.app_tp_calibration_exec) + i.app_tp_i2cs_callback 0x00012fe8 Section 0 app_tp_transfer.o(i.app_tp_i2cs_callback) + app_tp_i2cs_callback 0x00012fe9 Thumb Code 136 app_tp_transfer.o(i.app_tp_i2cs_callback) + i.app_tp_init 0x00013084 Section 0 app_tp_transfer.o(i.app_tp_init) + i.app_tp_m_read 0x000130c8 Section 0 app_tp_transfer.o(i.app_tp_m_read) + app_tp_m_read 0x000130c9 Thumb Code 32 app_tp_transfer.o(i.app_tp_m_read) + i.app_tp_m_write 0x000130e8 Section 0 app_tp_transfer.o(i.app_tp_m_write) + app_tp_m_write 0x000130e9 Thumb Code 8 app_tp_transfer.o(i.app_tp_m_write) + i.app_tp_phone_analysis_data 0x000130f0 Section 0 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + i.app_tp_s_read 0x000135b0 Section 0 app_tp_transfer.o(i.app_tp_s_read) + i.app_tp_s_write 0x000135b8 Section 0 app_tp_transfer.o(i.app_tp_s_write) + i.app_tp_screen_analysis_int 0x000135c0 Section 0 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + i.app_tp_screen_init 0x00013a58 Section 0 app_tp_transfer.o(i.app_tp_screen_init) + i.app_tp_screen_int_callback 0x00013a88 Section 0 app_tp_transfer.o(i.app_tp_screen_int_callback) + app_tp_screen_int_callback 0x00013a89 Thumb Code 8 app_tp_transfer.o(i.app_tp_screen_int_callback) + i.app_tp_transfer_screen_const 0x00013a94 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_const) + app_tp_transfer_screen_const 0x00013a95 Thumb Code 50 app_tp_transfer.o(i.app_tp_transfer_screen_const) + i.app_tp_transfer_screen_int 0x00013ad4 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_int) + i.app_tp_transfer_screen_start 0x00013be0 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_start) + i.board_Init 0x00013bf4 Section 0 board.o(i.board_Init) + i.calc_framebuffer_setting 0x00013c18 Section 0 hal_internal_vsync.o(i.calc_framebuffer_setting) + i.ceil 0x00014108 Section 0 ceil.o(i.ceil) + i.check_mipi_rx_tx_video_info 0x000141d0 Section 0 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + check_mipi_rx_tx_video_info 0x000141d1 Thumb Code 44 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + i.check_pkt_buf_rev 0x000141fc Section 0 hal_internal_vsync.o(i.check_pkt_buf_rev) + check_pkt_buf_rev 0x000141fd Thumb Code 90 hal_internal_vsync.o(i.check_pkt_buf_rev) + i.dcs_packet_fifo_alloc 0x00014290 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + i.dcs_packet_fifo_init 0x000142e8 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + i.dcs_packet_free_fifo_header 0x00014300 Section 0 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + i.dcs_packet_get_fifo_header 0x00014344 Section 0 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + i.dcs_sw_filter 0x00014368 Section 0 hal_internal_vsync.o(i.dcs_sw_filter) + dcs_sw_filter 0x00014369 Thumb Code 24 hal_internal_vsync.o(i.dcs_sw_filter) + i.delayMs 0x00014384 Section 0 tau_delay.o(i.delayMs) + i.delayUs 0x0001439c Section 0 tau_delay.o(i.delayUs) + i.drv_ap_rst_trig_edge_detect 0x000143c0 Section 0 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + i.drv_chip_info_get_info 0x000143f8 Section 0 drv_chip_info.o(i.drv_chip_info_get_info) + i.drv_chip_info_init 0x00014404 Section 0 drv_chip_info.o(i.drv_chip_info_init) + i.drv_chip_rx_info_check 0x00014444 Section 0 drv_chip_info.o(i.drv_chip_rx_info_check) + i.drv_chip_rx_init_done 0x000144f4 Section 0 drv_chip_info.o(i.drv_chip_rx_init_done) + i.drv_common_enable_systick 0x00014508 Section 0 drv_common.o(i.drv_common_enable_systick) + i.drv_common_system_init 0x00014560 Section 0 drv_common.o(i.drv_common_system_init) + i.drv_crgu_config_reset_modules 0x00014568 Section 0 drv_crgu.o(i.drv_crgu_config_reset_modules) + i.drv_crgu_set_ahb_pre_div 0x00014578 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + i.drv_crgu_set_ahb_src 0x0001458c Section 0 drv_crgu.o(i.drv_crgu_set_ahb_src) + i.drv_crgu_set_clock 0x000145a0 Section 0 drv_crgu.o(i.drv_crgu_set_clock) + i.drv_crgu_set_dpi_mux_src 0x000145c0 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + i.drv_crgu_set_dpi_pre_div 0x000145d4 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + i.drv_crgu_set_dpi_pre_src 0x000145ec Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + i.drv_crgu_set_dsc_core_div 0x00014600 Section 0 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + i.drv_crgu_set_dsco_src 0x00014614 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src) + i.drv_crgu_set_dsco_src_div 0x00014628 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + i.drv_crgu_set_fb_div 0x0001463c Section 0 drv_crgu.o(i.drv_crgu_set_fb_div) + i.drv_crgu_set_fb_src 0x00014650 Section 0 drv_crgu.o(i.drv_crgu_set_fb_src) + i.drv_crgu_set_lcdc_div 0x00014664 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_div) + i.drv_crgu_set_lcdc_src 0x00014678 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_src) + i.drv_crgu_set_mipi_cfg_src 0x0001468c Section 0 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + i.drv_crgu_set_mipi_ref_src 0x000146a0 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + i.drv_crgu_set_reset 0x000146b8 Section 0 drv_crgu.o(i.drv_crgu_set_reset) + i.drv_crgu_set_rxbr_div 0x000146d0 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_div) + i.drv_crgu_set_rxbr_src 0x000146e4 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_src) + i.drv_crgu_set_vidc_src 0x000146f8 Section 0 drv_crgu.o(i.drv_crgu_set_vidc_src) + i.drv_dma_clear_flag 0x0001470c Section 0 drv_dma.o(i.drv_dma_clear_flag) + i.drv_dma_create_handle 0x00014724 Section 0 drv_dma.o(i.drv_dma_create_handle) + i.drv_dma_disenable_channel 0x00014740 Section 0 drv_dma.o(i.drv_dma_disenable_channel) + i.drv_dma_enable_channel 0x00014750 Section 0 drv_dma.o(i.drv_dma_enable_channel) + i.drv_dma_enable_channel_interrupts 0x00014760 Section 0 drv_dma.o(i.drv_dma_enable_channel_interrupts) + i.drv_dma_get_channel_flag 0x00014784 Section 0 drv_dma.o(i.drv_dma_get_channel_flag) + i.drv_dma_irq_handler 0x00014790 Section 0 drv_dma.o(i.drv_dma_irq_handler) + i.drv_dma_prepar_transfer 0x00014820 Section 0 drv_dma.o(i.drv_dma_prepar_transfer) + i.drv_dma_set_burst 0x00014832 Section 0 drv_dma.o(i.drv_dma_set_burst) + i.drv_dma_set_callback 0x0001484c Section 0 drv_dma.o(i.drv_dma_set_callback) + i.drv_dma_set_transfer 0x00014854 Section 0 drv_dma.o(i.drv_dma_set_transfer) + i.drv_dsc_dec_convert_pps_rc_parameter 0x00014898 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + i.drv_dsc_dec_disable 0x000148ce Section 0 drv_dsc_dec.o(i.drv_dsc_dec_disable) + i.drv_dsc_dec_enable 0x000148dc Section 0 drv_dsc_dec.o(i.drv_dsc_dec_enable) + i.drv_dsc_dec_get_nslc 0x00014950 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + i.drv_dsc_dec_set_u8_pps 0x0001495a Section 0 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + i.drv_dsi_rx_calc_ipi_tx_delay 0x00014984 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + i.drv_dsi_rx_enable_irq 0x00014a88 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + i.drv_dsi_rx_get_color_bpp 0x00014ac8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + drv_dsi_rx_get_color_bpp 0x00014ac9 Thumb Code 62 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + i.drv_dsi_rx_get_color_pcc 0x00014b18 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + drv_dsi_rx_get_color_pcc 0x00014b19 Thumb Code 24 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + i.drv_dsi_rx_get_compression_en 0x00014b34 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + i.drv_dsi_rx_get_max_ret_size 0x00014b3c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + i.drv_dsi_rx_power_up 0x00014b42 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + i.drv_dsi_rx_set_ctrl_cfg 0x00014b50 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + i.drv_dsi_rx_set_ddi_cfg 0x00014b70 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + i.drv_dsi_rx_set_ipi_cfg 0x00014b80 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + i.drv_dsi_rx_set_lane_swap 0x00014b90 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + i.drv_dsi_rx_set_resp_cnt 0x00014bd6 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + i.drv_dsi_rx_set_up_phy 0x00014bfc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + i.drv_dsi_rx_shut_down 0x00014d00 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + i.drv_dsi_tx_command_header 0x00014d0e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + i.drv_dsi_tx_command_mode_cfg 0x00014d22 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + i.drv_dsi_tx_command_put_payload 0x00014d8e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + i.drv_dsi_tx_config_eotp 0x00014d92 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + i.drv_dsi_tx_config_int 0x00014daa Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + i.drv_dsi_tx_dpi_lpcmd_time 0x00014db2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + i.drv_dsi_tx_dpi_mode 0x00014dba Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + i.drv_dsi_tx_dpi_polarity 0x00014dc4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + i.drv_dsi_tx_edpi_cmd_size 0x00014de8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + i.drv_dsi_tx_get_cmd_status 0x00014dec Section 0 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + i.drv_dsi_tx_mode 0x00014df0 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_mode) + i.drv_dsi_tx_phy_clock_lane_auto_lp 0x00014df4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + i.drv_dsi_tx_phy_clock_lane_req_hs 0x00014e0c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + i.drv_dsi_tx_phy_lane_mode 0x00014e26 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + i.drv_dsi_tx_phy_status_ready 0x00014e32 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + i.drv_dsi_tx_phy_status_stopstate 0x00014e96 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + i.drv_dsi_tx_phy_test_setup 0x00014ed4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + i.drv_dsi_tx_phy_time_cfg 0x00015008 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + i.drv_dsi_tx_powerup 0x00015026 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + i.drv_dsi_tx_response_mode 0x0001502e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + i.drv_dsi_tx_set_bta_ack 0x0001504a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + i.drv_dsi_tx_set_esc_div 0x00015062 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + i.drv_dsi_tx_set_int 0x00015070 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + i.drv_dsi_tx_set_time_out_div 0x000150b0 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + i.drv_dsi_tx_set_video_chunk 0x000150c0 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + i.drv_dsi_tx_set_video_timing 0x000150c8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + i.drv_dsi_tx_shutdown 0x000150ea Section 0 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + i.drv_dsi_tx_timeout_cfg 0x000150f2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + i.drv_dsi_tx_video_mode_cfg 0x00015118 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + i.drv_dsi_tx_video_mode_disable_hact_cmd 0x000151c2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + i.drv_dsi_tx_video_mode_set_lp_cmd 0x000151d8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + i.drv_efuse_enter_inactive 0x000151f0 Section 0 drv_efuse.o(i.drv_efuse_enter_inactive) + i.drv_efuse_int_enable 0x0001521e Section 0 drv_efuse.o(i.drv_efuse_int_enable) + i.drv_efuse_read 0x0001522a Section 0 drv_efuse.o(i.drv_efuse_read) + i.drv_efuse_read_req 0x0001525c Section 0 drv_efuse.o(i.drv_efuse_read_req) + i.drv_gpio_get_input_data 0x00015274 Section 0 drv_gpio.o(i.drv_gpio_get_input_data) + i.drv_gpio_register_ap_reset_callback 0x0001528c Section 0 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + i.drv_gpio_register_callback 0x00015298 Section 0 drv_gpio.o(i.drv_gpio_register_callback) + i.drv_gpio_set_int 0x000152ac Section 0 drv_gpio.o(i.drv_gpio_set_int) + i.drv_gpio_set_ioe 0x000152fc Section 0 drv_gpio.o(i.drv_gpio_set_ioe) + i.drv_gpio_set_mode0 0x0001531c Section 0 drv_gpio.o(i.drv_gpio_set_mode0) + i.drv_gpio_set_mode1 0x0001532c Section 0 drv_gpio.o(i.drv_gpio_set_mode1) + i.drv_gpio_set_mode2 0x0001533c Section 0 drv_gpio.o(i.drv_gpio_set_mode2) + i.drv_gpio_set_mode3 0x0001534c Section 0 drv_gpio.o(i.drv_gpio_set_mode3) + i.drv_gpio_set_output_data 0x0001535c Section 0 hal_gpio.o(i.drv_gpio_set_output_data) + drv_gpio_set_output_data 0x0001535d Thumb Code 26 hal_gpio.o(i.drv_gpio_set_output_data) + i.drv_gpio_set_pull_state 0x0001537c Section 0 drv_gpio.o(i.drv_gpio_set_pull_state) + i.drv_i2c0_set_callback 0x000154ac Section 0 drv_i2c_slave.o(i.drv_i2c0_set_callback) + i.drv_i2c1_set_callback 0x000154b8 Section 0 drv_i2c_master.o(i.drv_i2c1_set_callback) + i.drv_i2c_dma_callback 0x000154c4 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_callback) + drv_i2c_dma_callback 0x000154c5 Thumb Code 40 drv_i2c_dma.o(i.drv_i2c_dma_callback) + i.drv_i2c_dma_init 0x000154f8 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_init) + i.drv_i2c_enable_rx_dma 0x000155a4 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + i.drv_i2c_enable_tx_dma 0x000155be Section 0 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + i.drv_i2c_m_clear_it_pending_bit 0x000155d8 Section 0 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + i.drv_i2c_m_enable 0x00015638 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable) + i.drv_i2c_m_enable_intr 0x00015648 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + i.drv_i2c_master_init 0x00015680 Section 0 drv_i2c_master.o(i.drv_i2c_master_init) + i.drv_i2c_master_read_dma 0x0001570c Section 0 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + i.drv_i2c_master_write_dma 0x00015768 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + i.drv_i2c_master_write_read_cmd 0x000157a4 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + drv_i2c_master_write_read_cmd 0x000157a5 Thumb Code 62 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + i.drv_i2c_s_clear_it_pending_bit 0x000157e2 Section 0 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + i.drv_i2c_s_config_intr 0x00015824 Section 0 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + i.drv_i2c_s_enable 0x00015828 Section 0 drv_i2c_slave.o(i.drv_i2c_s_enable) + i.drv_i2c_s_get_fifo_status 0x00015830 Section 0 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + i.drv_i2c_s_set_intr 0x00015844 Section 0 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + i.drv_i2c_s_write_data 0x00015894 Section 0 drv_i2c_slave.o(i.drv_i2c_s_write_data) + i.drv_i2c_set_dma_irq_callback 0x000158b0 Section 0 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + i.drv_i2c_slave_init 0x00015908 Section 0 drv_i2c_slave.o(i.drv_i2c_slave_init) + i.drv_i2c_slave_write_dma 0x0001593c Section 0 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + i.drv_lcdc_config_bypass 0x00015954 Section 0 drv_lcdc.o(i.drv_lcdc_config_bypass) + i.drv_lcdc_config_ccm 0x0001596c Section 0 drv_lcdc.o(i.drv_lcdc_config_ccm) + i.drv_lcdc_config_disp_mode 0x0001599c Section 0 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + i.drv_lcdc_config_dpi_polarity 0x000159b2 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + i.drv_lcdc_config_dpi_timing 0x000159d6 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + i.drv_lcdc_config_edpi_mode 0x000159fc Section 0 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + i.drv_lcdc_config_endianness 0x00015a12 Section 0 drv_lcdc.o(i.drv_lcdc_config_endianness) + i.drv_lcdc_config_input_size 0x00015a28 Section 0 drv_lcdc.o(i.drv_lcdc_config_input_size) + i.drv_lcdc_config_int 0x00015a34 Section 0 drv_lcdc.o(i.drv_lcdc_config_int) + i.drv_lcdc_config_int_single 0x00015a52 Section 0 drv_lcdc.o(i.drv_lcdc_config_int_single) + i.drv_lcdc_config_overwrite 0x00015a74 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite) + i.drv_lcdc_config_overwrite_rgb 0x00015a96 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + i.drv_lcdc_config_partial_display_area 0x00015aa2 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + i.drv_lcdc_config_partial_display_enable 0x00015abc Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + i.drv_lcdc_config_scale_up_coef 0x00015ade Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + i.drv_lcdc_config_scale_up_step 0x00015af8 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + i.drv_lcdc_config_src_parameter 0x00015b04 Section 0 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + i.drv_lcdc_config_thresh 0x00015b50 Section 0 drv_lcdc.o(i.drv_lcdc_config_thresh) + i.drv_lcdc_ctrl_flow 0x00015b56 Section 0 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + i.drv_lcdc_enable_shadow_reg 0x00015b68 Section 0 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + i.drv_lcdc_set_int 0x00015b88 Section 0 drv_lcdc.o(i.drv_lcdc_set_int) + i.drv_lcdc_set_video_hw_mode 0x00015bc8 Section 0 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + i.drv_lcdc_start 0x00015bdc Section 0 drv_lcdc.o(i.drv_lcdc_start) + i.drv_memc_clear_status 0x00015bfc Section 0 drv_memc.o(i.drv_memc_clear_status) + i.drv_memc_enable_irq 0x00015c08 Section 0 drv_memc.o(i.drv_memc_enable_irq) + i.drv_memc_gen_a_tear_signal 0x00015c48 Section 0 drv_memc.o(i.drv_memc_gen_a_tear_signal) + i.drv_memc_get_status 0x00015c54 Section 0 drv_memc.o(i.drv_memc_get_status) + i.drv_memc_rate_transfer_sel 0x00015c66 Section 0 drv_memc.o(i.drv_memc_rate_transfer_sel) + i.drv_memc_sel_vsync 0x00015c76 Section 0 drv_memc.o(i.drv_memc_sel_vsync) + i.drv_memc_set_active_height 0x00015c84 Section 0 drv_memc.o(i.drv_memc_set_active_height) + i.drv_memc_set_data_mode 0x00015c98 Section 0 drv_memc.o(i.drv_memc_set_data_mode) + i.drv_memc_set_double_buffer 0x00015ca4 Section 0 drv_memc.o(i.drv_memc_set_double_buffer) + i.drv_memc_set_double_buffer_reverse 0x00015cb4 Section 0 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + i.drv_memc_set_fs_en_conditions 0x00015cc6 Section 0 drv_memc.o(i.drv_memc_set_fs_en_conditions) + i.drv_memc_set_inten 0x00015cd6 Section 0 drv_memc.o(i.drv_memc_set_inten) + i.drv_memc_set_lcdc_st_conditions 0x00015cec Section 0 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + i.drv_memc_set_ltpo_mode 0x00015d04 Section 0 drv_memc.o(i.drv_memc_set_ltpo_mode) + i.drv_memc_set_tear_mode 0x00015d1e Section 0 drv_memc.o(i.drv_memc_set_tear_mode) + i.drv_memc_set_tear_waveform 0x00015d2c Section 0 drv_memc.o(i.drv_memc_set_tear_waveform) + i.drv_memc_set_vidc_sync_cnt 0x00015d54 Section 0 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + i.drv_param_init_get_ccm 0x00015d64 Section 0 drv_param_init.o(i.drv_param_init_get_ccm) + i.drv_param_init_get_scld_filter_h 0x00015d6c Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + i.drv_param_init_get_scld_filter_v 0x00015d80 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + i.drv_param_init_get_sclu_filter 0x00015d94 Section 0 drv_param_init.o(i.drv_param_init_get_sclu_filter) + i.drv_param_init_set_ccm 0x00015d9c Section 0 drv_param_init.o(i.drv_param_init_set_ccm) + i.drv_param_p2r_filter_init 0x00015db0 Section 0 drv_param_init.o(i.drv_param_p2r_filter_init) + i.drv_phy_enable_calibration 0x00015dd4 Section 0 drv_phy_common.o(i.drv_phy_enable_calibration) + i.drv_phy_get_calibration 0x00015de4 Section 0 drv_phy_common.o(i.drv_phy_get_calibration) + i.drv_phy_get_pll_para 0x00015e20 Section 0 drv_phy_common.o(i.drv_phy_get_pll_para) + i.drv_phy_get_rate_para 0x00015e80 Section 0 drv_phy_common.o(i.drv_phy_get_rate_para) + i.drv_phy_test_clear 0x00015ed4 Section 0 drv_phy_common.o(i.drv_phy_test_clear) + i.drv_phy_test_lock 0x00015ee4 Section 0 drv_phy_common.o(i.drv_phy_test_lock) + i.drv_phy_test_write_1_byte 0x00015efc Section 0 drv_phy_common.o(i.drv_phy_test_write_1_byte) + i.drv_phy_test_write_2_byte 0x00015f1c Section 0 drv_phy_common.o(i.drv_phy_test_write_2_byte) + i.drv_phy_test_write_code 0x00015f42 Section 0 drv_phy_common.o(i.drv_phy_test_write_code) + i.drv_phy_test_write_data 0x00015f60 Section 0 drv_phy_common.o(i.drv_phy_test_write_data) + drv_phy_test_write_data 0x00015f61 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_data) + i.drv_pwr_set_cp_mode 0x00015f80 Section 0 drv_pwr.o(i.drv_pwr_set_cp_mode) + i.drv_pwr_set_pvd_mode 0x00015fa0 Section 0 drv_pwr.o(i.drv_pwr_set_pvd_mode) + i.drv_pwr_set_system_clk_src 0x00015fb8 Section 0 drv_pwr.o(i.drv_pwr_set_system_clk_src) + i.drv_rx_phy_test_clear 0x00015ff0 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + drv_rx_phy_test_clear 0x00015ff1 Thumb Code 12 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + i.drv_rx_phy_test_lock 0x00015ffc Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + drv_rx_phy_test_lock 0x00015ffd Thumb Code 16 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + i.drv_rx_phy_test_write_1_byte 0x0001600c Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + drv_rx_phy_test_write_1_byte 0x0001600d Thumb Code 20 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + i.drv_rx_phy_test_write_2_byte 0x00016020 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + drv_rx_phy_test_write_2_byte 0x00016021 Thumb Code 22 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + i.drv_rxbr_clear_pkt_buffer 0x00016036 Section 0 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + i.drv_rxbr_clear_status0 0x00016040 Section 0 drv_rxbr.o(i.drv_rxbr_clear_status0) + i.drv_rxbr_enable_irq 0x00016044 Section 0 drv_rxbr.o(i.drv_rxbr_enable_irq) + i.drv_rxbr_frame_drop_cfg 0x000160a0 Section 0 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + i.drv_rxbr_get_clk 0x000160b4 Section 0 drv_rxbr.o(i.drv_rxbr_get_clk) + i.drv_rxbr_get_col_addr 0x00016118 Section 0 drv_rxbr.o(i.drv_rxbr_get_col_addr) + i.drv_rxbr_get_int_source 0x0001611c Section 0 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + drv_rxbr_get_int_source 0x0001611d Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + i.drv_rxbr_get_page_addr 0x0001612e Section 0 drv_rxbr.o(i.drv_rxbr_get_page_addr) + i.drv_rxbr_get_status0 0x00016132 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_status0) + drv_rxbr_get_status0 0x00016133 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_status0) + i.drv_rxbr_hline_rcv0_cfg 0x00016144 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + i.drv_rxbr_hline_rcv_cfg 0x00016150 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + i.drv_rxbr_register_irq0_callback 0x00016158 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + i.drv_rxbr_register_irq1_callback 0x00016164 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + i.drv_rxbr_set_ack_pkt_header 0x00016170 Section 0 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + i.drv_rxbr_set_cmd_filter 0x00016184 Section 0 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + i.drv_rxbr_set_color_format 0x00016250 Section 0 drv_rxbr.o(i.drv_rxbr_set_color_format) + i.drv_rxbr_set_inten 0x00016264 Section 0 drv_rxbr.o(i.drv_rxbr_set_inten) + i.drv_rxbr_set_ltpo_drop_th 0x00016278 Section 0 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + i.drv_rxbr_set_usr_cfg 0x00016288 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + i.drv_rxbr_set_usr_col 0x000162ae Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_col) + i.drv_rxbr_set_usr_row 0x000162b6 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_row) + i.drv_spi_m_read_data 0x000162c0 Section 0 drv_spi_master.o(i.drv_spi_m_read_data) + i.drv_swire_enable 0x000162e0 Section 0 drv_swire.o(i.drv_swire_enable) + i.drv_swire_set_int 0x000162fc Section 0 drv_swire.o(i.drv_swire_set_int) + i.drv_swire_set_power_down 0x00016350 Section 0 drv_swire.o(i.drv_swire_set_power_down) + i.drv_sys_cfg_clear_all_int 0x0001636c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + i.drv_sys_cfg_clear_pending 0x00016378 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + i.drv_sys_cfg_sel_ap_rst_lvl_trig 0x000163a0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + i.drv_sys_cfg_sel_ap_rst_trig 0x000163b8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + i.drv_sys_cfg_sel_gpio_group 0x000163d4 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + i.drv_sys_cfg_sel_int_trig 0x000163f8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + i.drv_sys_cfg_set_dma_rx_req 0x0001641c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + i.drv_sys_cfg_set_dma_tx_req 0x0001642c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + i.drv_sys_cfg_set_int 0x0001643c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + i.drv_timer_clear_status_flags 0x00016460 Section 0 drv_timer.o(i.drv_timer_clear_status_flags) + drv_timer_clear_status_flags 0x00016461 Thumb Code 26 drv_timer.o(i.drv_timer_clear_status_flags) + i.drv_timer_enable 0x0001647a Section 0 drv_timer.o(i.drv_timer_enable) + i.drv_timer_get_instance 0x0001649c Section 0 drv_timer.o(i.drv_timer_get_instance) + i.drv_timer_get_prescaler 0x000164ac Section 0 drv_timer.o(i.drv_timer_get_prescaler) + i.drv_timer_handle_interrupt 0x000164bc Section 0 drv_timer.o(i.drv_timer_handle_interrupt) + drv_timer_handle_interrupt 0x000164bd Thumb Code 62 drv_timer.o(i.drv_timer_handle_interrupt) + i.drv_timer_register_callback 0x00016500 Section 0 drv_timer.o(i.drv_timer_register_callback) + i.drv_timer_set_compare_val 0x00016514 Section 0 drv_timer.o(i.drv_timer_set_compare_val) + i.drv_timer_set_int 0x00016524 Section 0 drv_timer.o(i.drv_timer_set_int) + i.drv_timer_set_prescaler 0x00016578 Section 0 drv_timer.o(i.drv_timer_set_prescaler) + i.drv_timer_set_repeat 0x000165a0 Section 0 drv_timer.o(i.drv_timer_set_repeat) + i.drv_tx_phy_test_clear 0x000165b0 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + drv_tx_phy_test_clear 0x000165b1 Thumb Code 10 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + i.drv_tx_phy_test_enter 0x000165ba Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + i.drv_tx_phy_test_exit 0x000165d6 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + i.drv_tx_phy_test_write_1_byte 0x000165f2 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + drv_tx_phy_test_write_1_byte 0x000165f3 Thumb Code 18 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + i.drv_tx_phy_test_write_2_byte 0x00016604 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + drv_tx_phy_test_write_2_byte 0x00016605 Thumb Code 20 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + i.drv_tx_phy_test_write_code 0x00016618 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + drv_tx_phy_test_write_code 0x00016619 Thumb Code 16 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + i.drv_vidc_clear_irq 0x00016628 Section 0 drv_vidc.o(i.drv_vidc_clear_irq) + i.drv_vidc_enable 0x00016630 Section 0 drv_vidc.o(i.drv_vidc_enable) + i.drv_vidc_enable_irq 0x00016648 Section 0 drv_vidc.o(i.drv_vidc_enable_irq) + i.drv_vidc_get_irq_status 0x00016688 Section 0 drv_vidc.o(i.drv_vidc_get_irq_status) + i.drv_vidc_init_module_enable 0x0001669c Section 0 drv_vidc.o(i.drv_vidc_init_module_enable) + i.drv_vidc_register_callback 0x000166c4 Section 0 drv_vidc.o(i.drv_vidc_register_callback) + i.drv_vidc_reset 0x000166d0 Section 0 drv_vidc.o(i.drv_vidc_reset) + i.drv_vidc_set_dst_parameter 0x000166d6 Section 0 drv_vidc.o(i.drv_vidc_set_dst_parameter) + i.drv_vidc_set_irqen 0x00016712 Section 0 drv_vidc.o(i.drv_vidc_set_irqen) + i.drv_vidc_set_mirror 0x00016726 Section 0 drv_vidc.o(i.drv_vidc_set_mirror) + i.drv_vidc_set_p2r_hcoef0 0x00016736 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + i.drv_vidc_set_p2r_hinitb 0x0001673e Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + i.drv_vidc_set_p2r_hinitr 0x00016764 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + i.drv_vidc_set_pentile_swap 0x0001678c Section 0 drv_vidc.o(i.drv_vidc_set_pentile_swap) + i.drv_vidc_set_pu_ctrl 0x000167a4 Section 0 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + i.drv_vidc_set_rotation 0x000167ae Section 0 drv_vidc.o(i.drv_vidc_set_rotation) + i.drv_vidc_set_scld_hcoef0 0x000167be Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + i.drv_vidc_set_scld_hcoef1 0x000167c8 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + i.drv_vidc_set_scld_step 0x000167d2 Section 0 drv_vidc.o(i.drv_vidc_set_scld_step) + i.drv_vidc_set_scld_vcoef0 0x000167e4 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + i.drv_vidc_set_scld_vcoef1 0x000167ee Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + i.drv_vidc_set_src_parameter 0x000167f8 Section 0 drv_vidc.o(i.drv_vidc_set_src_parameter) + i.drv_wdg_clear_counter 0x00016810 Section 0 drv_wdg.o(i.drv_wdg_clear_counter) + i.drv_wdg_clear_edge_flag 0x00016820 Section 0 drv_wdg.o(i.drv_wdg_clear_edge_flag) + drv_wdg_clear_edge_flag 0x00016821 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_edge_flag) + i.drv_wdg_read_edge_flag 0x00016830 Section 0 drv_wdg.o(i.drv_wdg_read_edge_flag) + drv_wdg_read_edge_flag 0x00016831 Thumb Code 10 drv_wdg.o(i.drv_wdg_read_edge_flag) + i.drv_wdg_set_int 0x00016840 Section 0 drv_wdg.o(i.drv_wdg_set_int) + i.fls_clr_interrupt_flag 0x00016880 Section 0 drv_fls.o(i.fls_clr_interrupt_flag) + i.fputc 0x0001688a Section 0 tau_log.o(i.fputc) + i.hal_dsi_rx_ctrl_create_handle 0x000168a0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + i.hal_dsi_rx_ctrl_deinit 0x000168d4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + i.hal_dsi_rx_ctrl_dsc_async_handler 0x00016970 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + i.hal_dsi_rx_ctrl_gen_a_tear_signal 0x000169f4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + i.hal_dsi_rx_ctrl_get_max_ret_size 0x00016a1c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + i.hal_dsi_rx_ctrl_init 0x00016a44 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + i.hal_dsi_rx_ctrl_init_clk 0x00016aa4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + hal_dsi_rx_ctrl_init_clk 0x00016aa5 Thumb Code 332 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + i.hal_dsi_rx_ctrl_init_dsi_rx 0x00016c48 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + hal_dsi_rx_ctrl_init_dsi_rx 0x00016c49 Thumb Code 184 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + i.hal_dsi_rx_ctrl_init_memc 0x00016d20 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + hal_dsi_rx_ctrl_init_memc 0x00016d21 Thumb Code 334 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + i.hal_dsi_rx_ctrl_init_rxbr 0x00016e78 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + hal_dsi_rx_ctrl_init_rxbr 0x00016e79 Thumb Code 312 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + i.hal_dsi_rx_ctrl_init_vidc 0x00016fc0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + hal_dsi_rx_ctrl_init_vidc 0x00016fc1 Thumb Code 544 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + i.hal_dsi_rx_ctrl_send_ack_cmd 0x000171ec Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + i.hal_dsi_rx_ctrl_set_cus_sync_line 0x000172dc Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + i.hal_dsi_rx_ctrl_set_hw_tear_mode 0x00017310 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + i.hal_dsi_rx_ctrl_set_ipi_cfg 0x00017344 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + hal_dsi_rx_ctrl_set_ipi_cfg 0x00017345 Thumb Code 50 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + i.hal_dsi_rx_ctrl_set_rxbr_clk 0x0001737c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + hal_dsi_rx_ctrl_set_rxbr_clk 0x0001737d Thumb Code 114 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + i.hal_dsi_rx_ctrl_set_sw_tear_mode 0x000173f0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + i.hal_dsi_rx_ctrl_start 0x00017424 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + i.hal_dsi_rx_ctrl_stop 0x00017460 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + i.hal_dsi_rx_ctrl_toggle_resolution 0x0001749c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + i.hal_dsi_tx_calc_video_chunks 0x000174bc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + hal_dsi_tx_calc_video_chunks 0x000174bd Thumb Code 384 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + i.hal_dsi_tx_config_params_for_lane_rate 0x0001764c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + hal_dsi_tx_config_params_for_lane_rate 0x0001764d Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + i.hal_dsi_tx_count_lane_rate 0x00017680 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + hal_dsi_tx_count_lane_rate 0x00017681 Thumb Code 1022 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + i.hal_dsi_tx_ctrl_create_handle 0x00017ad0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + i.hal_dsi_tx_ctrl_deinit 0x00017afc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + i.hal_dsi_tx_ctrl_enter_init_panel_mode 0x00017b80 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + i.hal_dsi_tx_ctrl_exit_init_panel_mode 0x00017bcc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + i.hal_dsi_tx_ctrl_init 0x00017bf4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + i.hal_dsi_tx_ctrl_init_clk 0x00017c98 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + hal_dsi_tx_ctrl_init_clk 0x00017c99 Thumb Code 36 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + i.hal_dsi_tx_ctrl_panel_reset_pin 0x00017cbc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + i.hal_dsi_tx_ctrl_set_ccm 0x00017cc8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + i.hal_dsi_tx_ctrl_set_overwrite_rgb 0x00017ce8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + i.hal_dsi_tx_ctrl_set_partial_disp 0x00017cfc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + i.hal_dsi_tx_ctrl_set_partial_disp_area 0x00017d0c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + i.hal_dsi_tx_ctrl_start 0x00017d30 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + i.hal_dsi_tx_ctrl_stop 0x00017dcc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + i.hal_dsi_tx_ctrl_write_array_cmd 0x00017e10 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + i.hal_dsi_tx_ctrl_write_cmd 0x00017ee8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + i.hal_dsi_tx_init_data_mode 0x00017f98 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + hal_dsi_tx_init_data_mode 0x00017f99 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + i.hal_dsi_tx_init_dpi_cfg 0x00017fdc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + hal_dsi_tx_init_dpi_cfg 0x00017fdd Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + i.hal_dsi_tx_init_interrupt 0x0001800c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + hal_dsi_tx_init_interrupt 0x0001800d Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + i.hal_dsi_tx_init_phy_cfg 0x0001802c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + hal_dsi_tx_init_phy_cfg 0x0001802d Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + i.hal_dsi_tx_init_remains 0x0001804c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + hal_dsi_tx_init_remains 0x0001804d Thumb Code 142 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + i.hal_dsi_tx_init_video_mode 0x000180e0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + hal_dsi_tx_init_video_mode 0x000180e1 Thumb Code 82 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + i.hal_dsi_tx_send_cmd 0x00018138 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + hal_dsi_tx_send_cmd 0x00018139 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + i.hal_gpio_ctrl_eint 0x0001817c Section 0 hal_gpio.o(i.hal_gpio_ctrl_eint) + i.hal_gpio_get_input_data 0x00018194 Section 0 hal_gpio.o(i.hal_gpio_get_input_data) + i.hal_gpio_init_eint 0x000181a8 Section 0 hal_gpio.o(i.hal_gpio_init_eint) + i.hal_gpio_init_input 0x000181e8 Section 0 hal_gpio.o(i.hal_gpio_init_input) + i.hal_gpio_init_output 0x00018208 Section 0 hal_gpio.o(i.hal_gpio_init_output) + i.hal_gpio_reg_eint_cb 0x00018230 Section 0 hal_gpio.o(i.hal_gpio_reg_eint_cb) + i.hal_gpio_set_ap_reset_int 0x00018248 Section 0 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + i.hal_gpio_set_mode 0x00018298 Section 0 hal_gpio.o(i.hal_gpio_set_mode) + i.hal_gpio_set_output_data 0x000182f8 Section 0 hal_gpio.o(i.hal_gpio_set_output_data) + i.hal_gpio_set_pull_state 0x00018300 Section 0 hal_gpio.o(i.hal_gpio_set_pull_state) + i.hal_i2c_m_dma_init 0x00018320 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_init) + i.hal_i2c_m_dma_read 0x0001838c Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_read) + i.hal_i2c_m_dma_write 0x000183ac Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_write) + i.hal_i2c_m_transfer_complate 0x000183c8 Section 0 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + i.hal_i2c_master_irq_callback 0x000183d4 Section 0 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + hal_i2c_master_irq_callback 0x000183d5 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + i.hal_i2c_s_dma_user_callback 0x000183f4 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + hal_i2c_s_dma_user_callback 0x000183f5 Thumb Code 12 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + i.hal_i2c_s_dma_write 0x00018404 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + i.hal_i2c_s_init 0x00018450 Section 0 hal_i2c_slave.o(i.hal_i2c_s_init) + i.hal_i2c_s_nonblocking_read 0x00018518 Section 0 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + i.hal_i2c_s_set_transfer 0x0001852c Section 0 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + i.hal_i2c_slave_irq_callback 0x00018538 Section 0 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + hal_i2c_slave_irq_callback 0x00018539 Thumb Code 354 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + i.hal_internal_init_memc 0x000186ac Section 0 hal_internal_vsync.o(i.hal_internal_init_memc) + i.hal_internal_sync_get_fb_setting 0x000187a8 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + i.hal_internal_sync_get_hight_performan_mode 0x000187b8 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + i.hal_internal_sync_input_resolution_change 0x000187c8 Section 0 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + i.hal_internal_update_dpi_param 0x000189f4 Section 0 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + i.hal_internal_video_mode_auto_sync 0x00018a04 Section 0 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + i.hal_internal_vsync_deinit 0x00018b10 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + i.hal_internal_vsync_get_rx_state 0x00018b38 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + i.hal_internal_vsync_get_sync_line 0x00018b44 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + i.hal_internal_vsync_get_tear_mode 0x00018b5c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + i.hal_internal_vsync_get_tx_state 0x00018b68 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + i.hal_internal_vsync_init_rx 0x00018b74 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + i.hal_internal_vsync_init_tx 0x00018c8c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + i.hal_internal_vsync_set_auto_hw_filter 0x00018d3c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + i.hal_internal_vsync_set_rx_state 0x00018e58 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + i.hal_internal_vsync_set_sync_line 0x00018e6c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + i.hal_internal_vsync_set_tear_mode 0x00018e90 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + i.hal_internal_vsync_set_tx_state 0x00018ee0 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + i.hal_lcdc_config_ccm 0x00018f60 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + hal_lcdc_config_ccm 0x00018f61 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + i.hal_lcdc_config_remains 0x00018f84 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + hal_lcdc_config_remains 0x00018f85 Thumb Code 84 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + i.hal_lcdc_config_rgb_to_pentile 0x00018fdc Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + hal_lcdc_config_rgb_to_pentile 0x00018fdd Thumb Code 14 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + i.hal_lcdc_config_upscaler 0x00018ff0 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + hal_lcdc_config_upscaler 0x00018ff1 Thumb Code 348 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + i.hal_lcdc_init_cfg 0x00019154 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + hal_lcdc_init_cfg 0x00019155 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + i.hal_lcdc_init_clk 0x00019194 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + hal_lcdc_init_clk 0x00019195 Thumb Code 422 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + i.hal_lcdc_init_interrupt 0x00019344 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + hal_lcdc_init_interrupt 0x00019345 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + i.hal_spi_m_clear_rxfifo 0x00019384 Section 0 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + i.hal_swire_deinit 0x00019392 Section 0 hal_swire.o(i.hal_swire_deinit) + i.hal_swire_open 0x000193a4 Section 0 hal_swire.o(i.hal_swire_open) + i.hal_system_enable_systick 0x000193ba Section 0 hal_system.o(i.hal_system_enable_systick) + i.hal_system_init 0x000193c4 Section 0 hal_system.o(i.hal_system_init) + i.hal_system_init_console 0x0001944c Section 0 hal_system.o(i.hal_system_init_console) + i.hal_system_set_phy_calibration 0x00019468 Section 0 hal_system.o(i.hal_system_set_phy_calibration) + i.hal_system_set_pvd 0x00019470 Section 0 hal_system.o(i.hal_system_set_pvd) + i.hal_system_set_vcc 0x00019478 Section 0 hal_system.o(i.hal_system_set_vcc) + i.hal_timer_deinit 0x00019480 Section 0 hal_timer.o(i.hal_timer_deinit) + i.hal_timer_init 0x000194ae Section 0 hal_timer.o(i.hal_timer_init) + i.hal_timer_start 0x000194c8 Section 0 hal_timer.o(i.hal_timer_start) + i.hal_timer_stop 0x00019510 Section 0 hal_timer.o(i.hal_timer_stop) + i.hal_uart_init 0x00019538 Section 0 hal_uart.o(i.hal_uart_init) + i.hal_uart_transmit_blocking 0x000195c4 Section 0 hal_uart.o(i.hal_uart_transmit_blocking) + i.handle_init 0x000195d4 Section 0 irq_redirect .o(i.handle_init) + i.init_mipi_tx 0x000196e4 Section 0 ap_demo.o(i.init_mipi_tx) + init_mipi_tx 0x000196e5 Thumb Code 90 ap_demo.o(i.init_mipi_tx) + i.init_panel 0x00019744 Section 0 ap_demo.o(i.init_panel) + init_panel 0x00019745 Thumb Code 168 ap_demo.o(i.init_panel) + i.main 0x00019828 Section 0 main.o(i.main) + i.open_mipi_rx 0x00019834 Section 0 ap_demo.o(i.open_mipi_rx) + open_mipi_rx 0x00019835 Thumb Code 112 ap_demo.o(i.open_mipi_rx) + i.pps_update_handle 0x000198b8 Section 0 ap_demo.o(i.pps_update_handle) + pps_update_handle 0x000198b9 Thumb Code 80 ap_demo.o(i.pps_update_handle) + i.rx_get_dcs_packet_data 0x00019930 Section 0 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + rx_get_dcs_packet_data 0x00019931 Thumb Code 654 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + i.rx_partial_update 0x00019d24 Section 0 hal_internal_vsync.o(i.rx_partial_update) + rx_partial_update 0x00019d25 Thumb Code 358 hal_internal_vsync.o(i.rx_partial_update) + i.rx_receive_packet 0x00019e9c Section 0 hal_internal_vsync.o(i.rx_receive_packet) + rx_receive_packet 0x00019e9d Thumb Code 128 hal_internal_vsync.o(i.rx_receive_packet) + i.rx_receive_pps 0x00019f28 Section 0 hal_internal_vsync.o(i.rx_receive_pps) + rx_receive_pps 0x00019f29 Thumb Code 268 hal_internal_vsync.o(i.rx_receive_pps) + i.rxbr_irq0_callback 0x0001a0a8 Section 0 hal_internal_vsync.o(i.rxbr_irq0_callback) + rxbr_irq0_callback 0x0001a0a9 Thumb Code 158 hal_internal_vsync.o(i.rxbr_irq0_callback) + i.rxbr_irq1_callback 0x0001a14c Section 0 hal_internal_vsync.o(i.rxbr_irq1_callback) + rxbr_irq1_callback 0x0001a14d Thumb Code 316 hal_internal_vsync.o(i.rxbr_irq1_callback) + i.soft_gen_te 0x0001a320 Section 0 hal_internal_vsync.o(i.soft_gen_te) + soft_gen_te 0x0001a321 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te) + i.soft_gen_te_double_buffer 0x0001a3e4 Section 0 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + soft_gen_te_double_buffer 0x0001a3e5 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + i.soft_te_timer_cb 0x0001a4a4 Section 0 ap_demo.o(i.soft_te_timer_cb) + soft_te_timer_cb 0x0001a4a5 Thumb Code 36 ap_demo.o(i.soft_te_timer_cb) + i.soft_timer3_cb 0x0001a4d0 Section 0 ap_demo.o(i.soft_timer3_cb) + soft_timer3_cb 0x0001a4d1 Thumb Code 48 ap_demo.o(i.soft_timer3_cb) + i.sqrt 0x0001a510 Section 0 sqrt.o(i.sqrt) + i.vidc_callback 0x0001a558 Section 0 hal_internal_vsync.o(i.vidc_callback) + vidc_callback 0x0001a559 Thumb Code 232 hal_internal_vsync.o(i.vidc_callback) + i.vpre_err_reset 0x0001a660 Section 0 hal_internal_vsync.o(i.vpre_err_reset) + vpre_err_reset 0x0001a661 Thumb Code 184 hal_internal_vsync.o(i.vpre_err_reset) + i.vsync_set_te_mode 0x0001a730 Section 0 hal_internal_vsync.o(i.vsync_set_te_mode) + vsync_set_te_mode 0x0001a731 Thumb Code 300 hal_internal_vsync.o(i.vsync_set_te_mode) + .constdata 0x0001a8fc Section 10564 ap_demo.o(.constdata) + g_cus_rx_dcs_execute_table 0x0001a8fc Data 120 ap_demo.o(.constdata) + .constdata 0x0001d240 Section 3417 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001df99 Section 1 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001df9c Section 36 hal_dsi_tx_ctrl.o(.constdata) + .constdata 0x0001dfc0 Section 210 hal_gpio.o(.constdata) + s_gpio_map 0x0001dfc0 Data 120 hal_gpio.o(.constdata) + s_gpio_perf 0x0001e038 Data 90 hal_gpio.o(.constdata) + .constdata 0x0001e094 Section 32 hal_i2c_slave.o(.constdata) + sg_i2c_s_config 0x0001e094 Data 32 hal_i2c_slave.o(.constdata) + .constdata 0x0001e0b4 Section 8 drv_param_init.o(.constdata) + .constdata 0x0001e0bc Section 390 drv_phy_common.o(.constdata) + phy_para_mapping_h 0x0001e0bc Data 184 drv_phy_common.o(.constdata) + phy_para_mapping_l 0x0001e174 Data 128 drv_phy_common.o(.constdata) + phy_data_high_map 0x0001e1f4 Data 48 drv_phy_common.o(.constdata) + phy_data_lp_map 0x0001e224 Data 30 drv_phy_common.o(.constdata) + .conststring 0x0001e244 Section 76 ap_demo.o(.conststring) + .conststring 0x0001e290 Section 72 hal_dsi_rx_ctrl.o(.conststring) + .conststring 0x0001e2d8 Section 67 hal_dsi_tx_ctrl.o(.conststring) + .conststring 0x0001e31c Section 308 hal_internal_vsync.o(.conststring) + .ARM.__AT_0x00070100 0x00070100 Section 192 irq_redirect .o(.ARM.__AT_0x00070100) + .data 0x000701d0 Section 32 ap_demo.o(.data) + start_display_on 0x000701d0 Data 1 ap_demo.o(.data) + g_exit_sleep_mode 0x000701d1 Data 1 ap_demo.o(.data) + panel_display_done 0x000701d2 Data 1 ap_demo.o(.data) + input_compress_flag 0x000701d3 Data 1 ap_demo.o(.data) + g_calibration_flag 0x000701d4 Data 1 ap_demo.o(.data) + hbm_mode 0x000701d7 Data 1 ap_demo.o(.data) + g_need_enter_sleep_mode 0x000701d8 Data 1 ap_demo.o(.data) + g_rx_ctrl_handle 0x000701e4 Data 4 ap_demo.o(.data) + g_tx_ctrl_handle 0x000701e8 Data 4 ap_demo.o(.data) + value_reg_df 0x000701ec Data 4 ap_demo.o(.data) + .data 0x000701f0 Section 46 app_tp_transfer.o(.data) + s_spim_write 0x000701f0 Data 1 app_tp_transfer.o(.data) + s_screen_int_flag 0x000701f1 Data 1 app_tp_transfer.o(.data) + s_phone_reset_flag 0x000701f2 Data 1 app_tp_transfer.o(.data) + s_screen_int_transfer_status 0x000701f3 Data 1 app_tp_transfer.o(.data) + s_screen_const_transfer_count 0x000701f5 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_count 0x000701f6 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_buffer_ready 0x000701f7 Data 1 app_tp_transfer.o(.data) + .data 0x0007021e Section 226 app_tp_for_custom_s8.o(.data) + app_tp_count 0x0007022e Data 1 app_tp_for_custom_s8.o(.data) + u16CoordY 0x00070230 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX 0x00070232 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordY_back 0x00070234 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX_back 0x00070236 Data 2 app_tp_for_custom_s8.o(.data) + .data 0x00070300 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070301 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070302 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070303 Section 3 app_tp_for_custom_s8.o(.data) + .data 0x00070306 Section 5 app_tp_for_custom_s8.o(.data) + .data 0x0007030c Section 48 app_tp_for_custom_s8.o(.data) + .data 0x0007033c Section 8 hal_dsi_rx_ctrl.o(.data) + g_hw_auto_filter 0x0007033c Data 1 hal_dsi_rx_ctrl.o(.data) + g_esc_clk 0x00070340 Data 4 hal_dsi_rx_ctrl.o(.data) + .data 0x00070344 Section 3 hal_dsi_tx_ctrl.o(.data) + g_tx_vcom_en 0x00070344 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_vpg_en 0x00070345 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_mode 0x00070346 Data 1 hal_dsi_tx_ctrl.o(.data) + .data 0x00070347 Section 1 hal_i2c_master.o(.data) + s_i2c_m_transfer_end 0x00070347 Data 1 hal_i2c_master.o(.data) + .data 0x00070348 Section 32 hal_i2c_slave.o(.data) + s_txbuffer_complate 0x00070348 Data 1 hal_i2c_slave.o(.data) + s_i2c_s_dma_end 0x00070349 Data 1 hal_i2c_slave.o(.data) + s_i2c_s_receive_cnt 0x0007034a Data 1 hal_i2c_slave.o(.data) + sg_i2c_s_index 0x0007034b Data 1 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer 0x0007034c Data 4 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer_size 0x00070350 Data 4 hal_i2c_slave.o(.data) + hal_i2c_s_callback 0x00070354 Data 4 hal_i2c_slave.o(.data) + sg_tx_byte_num 0x00070358 Data 4 hal_i2c_slave.o(.data) + s_receive_count 0x0007035c Data 4 hal_i2c_slave.o(.data) + s_tx_buffer_t 0x00070360 Data 4 hal_i2c_slave.o(.data) + tx_sum 0x00070364 Data 4 hal_i2c_slave.o(.data) + .data 0x00070368 Section 18 norflash.o(.data) + tmprg 0x00070370 Data 4 norflash.o(.data) + .data 0x0007037c Section 12 drv_common.o(.data) + s_my_tick 0x0007037c Data 4 drv_common.o(.data) + .data 0x00070388 Section 4 drv_gpio.o(.data) + g_ap_reset_cb 0x00070388 Data 4 drv_gpio.o(.data) + .data 0x0007038c Section 8 drv_i2c_dma.o(.data) + i2c0_dma_callback 0x0007038c Data 4 drv_i2c_dma.o(.data) + i2c1_dma_callback 0x00070390 Data 4 drv_i2c_dma.o(.data) + .data 0x00070394 Section 4 drv_i2c_master.o(.data) + i2c1_intr_callback 0x00070394 Data 4 drv_i2c_master.o(.data) + .data 0x00070398 Section 4 drv_i2c_slave.o(.data) + i2c0_intr_callback 0x00070398 Data 4 drv_i2c_slave.o(.data) + .data 0x0007039c Section 1188 drv_param_init.o(.data) + .data 0x00070840 Section 4 drv_spi_master.o(.data) + SPIM_intr_callback 0x00070840 Data 4 drv_spi_master.o(.data) + .data 0x00070844 Section 8 drv_swire.o(.data) + s_swire_cb 0x00070844 Data 8 drv_swire.o(.data) + .data 0x0007084c Section 1 drv_sys_cfg.o(.data) + sg_ap_rstn_trigger_type 0x0007084c Data 1 drv_sys_cfg.o(.data) + .data 0x00070850 Section 80 drv_timer.o(.data) + sg_timer_info 0x00070850 Data 80 drv_timer.o(.data) + .data 0x000708a0 Section 12 hal_internal_vsync.o(.data) + sg_cmd_mode_tx_start 0x000708a0 Data 1 hal_internal_vsync.o(.data) + sg_cur_te_info 0x000708a4 Data 4 hal_internal_vsync.o(.data) + .data 0x000708ac Section 8 drv_rxbr.o(.data) + .data 0x000708b4 Section 4 drv_vidc.o(.data) + .data 0x000708b8 Section 1 drv_phy_common.o(.data) + g_phy_calibration 0x000708b8 Data 1 drv_phy_common.o(.data) + .data 0x000708bc Section 12 drv_chip_info.o(.data) + sg_chip_info 0x000708bc Data 4 drv_chip_info.o(.data) + sg_chip_function 0x000708c0 Data 4 drv_chip_info.o(.data) + sg_chip_encrypt 0x000708c4 Data 4 drv_chip_info.o(.data) + .data 0x000708c8 Section 12 drv_pwm.o(.data) + s_pwm_type 0x000708c8 Data 1 drv_pwm.o(.data) + s_pwm_cb 0x000708cc Data 8 drv_pwm.o(.data) + .data 0x000708d4 Section 8 drv_uart.o(.data) + s_UartFcrReg 0x000708d4 Data 4 drv_uart.o(.data) + uart_userData 0x000708d8 Data 4 drv_uart.o(.data) + .data 0x000708dc Section 12 drv_wdg.o(.data) + sg_wdg_repeat 0x000708dc Data 1 drv_wdg.o(.data) + sg_wdg_cb 0x000708e0 Data 8 drv_wdg.o(.data) + .data 0x000708e8 Section 4 stdout.o(.data) + .data 0x000708ec Section 4 errno.o(.data) + _errno 0x000708ec Data 4 errno.o(.data) + .bss 0x000708f0 Section 400 app_tp_transfer.o(.bss) + s_screen_read_buffer 0x000708f0 Data 200 app_tp_transfer.o(.bss) + s_phone_read_buffer 0x000709b8 Data 200 app_tp_transfer.o(.bss) + .bss 0x00070a80 Section 196 hal_dsi_rx_ctrl.o(.bss) + g_rx_ctrl_handle 0x00070a80 Data 196 hal_dsi_rx_ctrl.o(.bss) + .bss 0x00070b44 Section 76 hal_dsi_tx_ctrl.o(.bss) + g_tx_ctrl_handle 0x00070b44 Data 76 hal_dsi_tx_ctrl.o(.bss) + .bss 0x00070b90 Section 256 tau_log.o(.bss) + .bss 0x00070c90 Section 208 hal_uart.o(.bss) + .bss 0x00070d60 Section 28 drv_dma.o(.bss) + s_dma_handle 0x00070d60 Data 28 drv_dma.o(.bss) + .bss 0x00070d7c Section 64 drv_gpio.o(.bss) + s_gpio_cb 0x00070d7c Data 64 drv_gpio.o(.bss) + .bss 0x00070dbc Section 320 drv_i2c_dma.o(.bss) + i2c0_dma_slave_handle 0x00070dbc Data 160 drv_i2c_dma.o(.bss) + i2c1_dma_master_handle 0x00070e5c Data 160 drv_i2c_dma.o(.bss) + .bss 0x00070efc Section 2436 hal_internal_vsync.o(.bss) + g_imm_buffer 0x00071760 Data 255 hal_internal_vsync.o(.bss) + sg_te_info 0x00071860 Data 12 hal_internal_vsync.o(.bss) + g_imm_packet 0x0007186c Data 20 hal_internal_vsync.o(.bss) + .bss 0x00071880 Section 4144 dcs_packet_fifo.o(.bss) + .bss 0x000728b0 Section 32 hal_spi_slave.o(.bss) + STACK 0x000728d0 Section 4096 startup_armcm0.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x000000c0 Number 0 startup_armcm0.o ABSOLUTE + __Vectors 0x00010000 Data 4 startup_armcm0.o(RESET) + __Vectors_End 0x000100c0 Data 0 startup_armcm0.o(RESET) + __main 0x000100c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x000100c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x000100c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x000100c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x000100c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x000100c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x000100c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x000100d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x000100d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x000100d5 Thumb Code 28 startup_armcm0.o(.text) + NMI_Handler 0x000100f1 Thumb Code 2 startup_armcm0.o(.text) + SVC_Handler 0x000100f5 Thumb Code 2 startup_armcm0.o(.text) + PendSV_Handler 0x000100f7 Thumb Code 2 startup_armcm0.o(.text) + OTP_IRQn_Handler 0x00010123 Thumb Code 2 startup_armcm0.o(.text) + PVD_IRQn_Handler 0x00010127 Thumb Code 2 startup_armcm0.o(.text) + __aeabi_uidiv 0x0001014d Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x0001014d Thumb Code 44 uidiv.o(.text) + __aeabi_idiv 0x00010179 Thumb Code 0 idiv.o(.text) + __aeabi_idivmod 0x00010179 Thumb Code 40 idiv.o(.text) + __aeabi_memcpy 0x000101a1 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x000101c5 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x000101d3 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x000101d3 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x000101d3 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x000101d7 Thumb Code 18 memseta.o(.text) + __aeabi_fadd 0x000101e9 Thumb Code 162 fadd.o(.text) + __aeabi_fsub 0x0001028b Thumb Code 8 fadd.o(.text) + __aeabi_frsub 0x00010293 Thumb Code 8 fadd.o(.text) + __aeabi_fmul 0x0001029b Thumb Code 122 fmul.o(.text) + __aeabi_fdiv 0x00010315 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x00010391 Thumb Code 24 fscalb.o(.text) + scalbnf 0x00010391 Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x000103a9 Thumb Code 328 dadd.o(.text) + __aeabi_dsub 0x000104f1 Thumb Code 12 dadd.o(.text) + __aeabi_drsub 0x000104fd Thumb Code 12 dadd.o(.text) + __aeabi_dmul 0x0001050d Thumb Code 202 dmul.o(.text) + __aeabi_ddiv 0x000105dd Thumb Code 234 ddiv.o(.text) + __aeabi_i2f 0x000106cd Thumb Code 22 fflti.o(.text) + __aeabi_ui2f 0x000106e3 Thumb Code 14 ffltui.o(.text) + __aeabi_ui2d 0x000106f1 Thumb Code 24 dfltui.o(.text) + __aeabi_f2iz 0x0001070d Thumb Code 50 ffixi.o(.text) + __aeabi_f2uiz 0x0001073f Thumb Code 40 ffixui.o(.text) + __aeabi_d2iz 0x00010769 Thumb Code 62 dfixi.o(.text) + __aeabi_d2uiz 0x000107b1 Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x000107ed Thumb Code 40 f2d.o(.text) + __aeabi_cdcmpeq 0x00010815 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x00010815 Thumb Code 38 cdcmple.o(.text) + __aeabi_cfrcmple 0x0001083d Thumb Code 20 cfrcmple.o(.text) + __aeabi_uldivmod 0x00010851 Thumb Code 96 uldiv.o(.text) + __aeabi_llsl 0x000108b1 Thumb Code 32 llshl.o(.text) + _ll_shift_l 0x000108b1 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x000108d1 Thumb Code 34 llushr.o(.text) + _ll_ushift_r 0x000108d1 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x000108f3 Thumb Code 38 llsshr.o(.text) + _ll_sshift_r 0x000108f3 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x00010919 Thumb Code 0 iusefp.o(.text) + _float_round 0x00010919 Thumb Code 16 fepilogue.o(.text) + _float_epilogue 0x00010929 Thumb Code 114 fepilogue.o(.text) + _double_round 0x0001099b Thumb Code 26 depilogue.o(.text) + _double_epilogue 0x000109b5 Thumb Code 164 depilogue.o(.text) + _dsqrt 0x00010a59 Thumb Code 162 dsqrt.o(.text) + __aeabi_d2ulz 0x00010afd Thumb Code 54 dfixul.o(.text) + __aeabi_cdrcmple 0x00010b3d Thumb Code 38 cdrcmple.o(.text) + __scatterload 0x00010b65 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x00010b65 Thumb Code 0 init.o(.text) + __decompress 0x00010b89 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x00010b89 Thumb Code 86 __dczerorl2.o(.text) + ADC_IRQn_Handler 0x00010be1 Thumb Code 18 irq_redirect .o(i.ADC_IRQn_Handler) + AP_NRESET_IRQn_Handler 0x00010bf9 Thumb Code 18 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + DMA_IRQn_Handler 0x00010c11 Thumb Code 14 irq_redirect .o(i.DMA_IRQn_Handler) + EXTI_INT0_IRQn_Handler 0x00010c25 Thumb Code 22 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + EXTI_INT1_IRQn_Handler 0x00010c41 Thumb Code 22 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + EXTI_INT2_IRQn_Handler 0x00010c5d Thumb Code 22 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + EXTI_INT3_IRQn_Handler 0x00010c79 Thumb Code 22 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + EXTI_INT4_IRQn_Handler 0x00010c95 Thumb Code 22 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + EXTI_INT5_IRQn_Handler 0x00010cb1 Thumb Code 22 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + EXTI_INT6_IRQn_Handler 0x00010ccd Thumb Code 22 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + EXTI_INT7_IRQn_Handler 0x00010ce9 Thumb Code 22 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + FLSCTRL_IRQn_Handler 0x00010d05 Thumb Code 14 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + Gpio_swire_output 0x00010d19 Thumb Code 78 ap_demo.o(i.Gpio_swire_output) + HardFault_Handler 0x00010d69 Thumb Code 14 irq_redirect .o(i.HardFault_Handler) + I2C0_IRQn_Handler 0x00010d7d Thumb Code 18 irq_redirect .o(i.I2C0_IRQn_Handler) + I2C1_IRQn_Handler 0x00010d95 Thumb Code 18 irq_redirect .o(i.I2C1_IRQn_Handler) + LCDC_IRQn_Handler 0x00010dad Thumb Code 18 irq_redirect .o(i.LCDC_IRQn_Handler) + LOG_printf 0x00010dc5 Thumb Code 30 tau_log.o(i.LOG_printf) + MEMC_IRQn_Handler 0x00010ded Thumb Code 18 irq_redirect .o(i.MEMC_IRQn_Handler) + MIPI_RX_IRQn_Handler 0x00010e05 Thumb Code 18 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + MIPI_TX_IRQn_Handler 0x00010e1d Thumb Code 18 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + PWMDET_IRQn_Handler 0x00010e35 Thumb Code 22 irq_redirect .o(i.PWMDET_IRQn_Handler) + S20_Start_init 0x00010e51 Thumb Code 306 app_tp_transfer.o(i.S20_Start_init) + SPIM_IRQn_Handler 0x00010f9d Thumb Code 22 irq_redirect .o(i.SPIM_IRQn_Handler) + SPIS_IRQn_Handler 0x00010fb9 Thumb Code 22 irq_redirect .o(i.SPIS_IRQn_Handler) + SWIRE_IRQn_Handler 0x00010fd5 Thumb Code 22 irq_redirect .o(i.SWIRE_IRQn_Handler) + UART_DisableDma 0x00010ff1 Thumb Code 2 drv_uart.o(i.UART_DisableDma) + UART_GetInstance 0x00010ff3 Thumb Code 4 drv_uart.o(i.UART_GetInstance) + __scatterload_null 0x00010ff7 Thumb Code 2 handlers.o(i.__scatterload_null) + app_UART_IRQn_Handler 0x00010ff9 Thumb Code 8 drv_uart.o(i.app_UART_IRQn_Handler) + s_RAM_CK 0x00011000 Data 20 drv_common.o(.ARM.__at_0x11000) + drv_dsi_rx_set_inten 0x00011015 Thumb Code 4 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + s_debug_state 0x00011018 Data 4 drv_common.o(.ARM.__at_0x11018) + SysTick_Handler 0x0001101d Thumb Code 18 irq_redirect .o(i.SysTick_Handler) + TIMER0_IRQn_Handler 0x00011035 Thumb Code 18 irq_redirect .o(i.TIMER0_IRQn_Handler) + TIMER1_IRQn_Handler 0x0001104d Thumb Code 18 irq_redirect .o(i.TIMER1_IRQn_Handler) + TIMER2_IRQn_Handler 0x00011065 Thumb Code 18 irq_redirect .o(i.TIMER2_IRQn_Handler) + TIMER3_IRQn_Handler 0x0001107d Thumb Code 18 irq_redirect .o(i.TIMER3_IRQn_Handler) + UART0_IRQ_Handle 0x00011095 Thumb Code 20 drv_uart.o(i.UART0_IRQ_Handle) + UART_IRQn_Handler 0x000110b1 Thumb Code 18 irq_redirect .o(i.UART_IRQn_Handler) + UART_ResetRxFIFO 0x000110c9 Thumb Code 32 drv_uart.o(i.UART_ResetRxFIFO) + UART_SetBaudRate 0x000110ed Thumb Code 72 drv_uart.o(i.UART_SetBaudRate) + UART_SwitchSCLK 0x00011135 Thumb Code 26 drv_uart.o(i.UART_SwitchSCLK) + UART_TransferHandleIRQ 0x0001114f Thumb Code 308 drv_uart.o(i.UART_TransferHandleIRQ) + UART_WriteBlocking 0x00011283 Thumb Code 26 drv_uart.o(i.UART_WriteBlocking) + UART_init 0x0001129d Thumb Code 182 drv_uart.o(i.UART_init) + VIDC_IRQn_Handler 0x00011359 Thumb Code 18 irq_redirect .o(i.VIDC_IRQn_Handler) + VPRE_IRQn_Handler 0x00011371 Thumb Code 18 irq_redirect .o(i.VPRE_IRQn_Handler) + WDG_IRQn_Handler 0x00011389 Thumb Code 18 irq_redirect .o(i.WDG_IRQn_Handler) + __0printf 0x000113a1 Thumb Code 24 printfa.o(i.__0printf) + __1printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __2printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __c89printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __0vsprintf 0x000113c1 Thumb Code 30 printfa.o(i.__0vsprintf) + __1vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __2vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __c89vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __ARM_clz 0x000113e5 Thumb Code 46 depilogue.o(i.__ARM_clz) + __ARM_common_switch8 0x00011413 Thumb Code 26 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + __scatterload_copy 0x000114d9 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_zeroinit 0x000114e7 Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + __set_errno 0x000114f5 Thumb Code 6 errno.o(i.__set_errno) + ap_demo 0x00011f6d Thumb Code 358 ap_demo.o(i.ap_demo) + ap_tp_calibration 0x00012481 Thumb Code 170 app_tp_transfer.o(i.ap_tp_calibration) + app_ADC_IRQn_Handler 0x00012531 Thumb Code 22 drv_rxbr.o(i.app_ADC_IRQn_Handler) + app_AP_NRESET_IRQn_Handler 0x0001254d Thumb Code 32 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + app_EXTI_INT0_IRQn_Handler 0x00012571 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + app_EXTI_INT1_IRQn_Handler 0x0001258d Thumb Code 22 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + app_EXTI_INT2_IRQn_Handler 0x000125a9 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + app_EXTI_INT3_IRQn_Handler 0x000125c5 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + app_EXTI_INT4_IRQn_Handler 0x000125e1 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + app_EXTI_INT5_IRQn_Handler 0x000125fd Thumb Code 22 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + app_EXTI_INT6_IRQn_Handler 0x00012619 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + app_EXTI_INT7_IRQn_Handler 0x00012635 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + app_HardFault_Handler 0x00012651 Thumb Code 12 drv_common.o(i.app_HardFault_Handler) + app_I2C0_IRQn_Handler 0x00012699 Thumb Code 14 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + app_I2C1_IRQn_Handler 0x000126b1 Thumb Code 8 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + app_LCDC_IRQn_Handler 0x000126c1 Thumb Code 208 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + app_MEMC_IRQn_Handler 0x00012865 Thumb Code 132 drv_memc.o(i.app_MEMC_IRQn_Handler) + app_MIPI_RX_IRQn_Handler 0x000128ed Thumb Code 232 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + app_MIPI_TX_IRQn_Handler 0x00012b85 Thumb Code 56 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + app_PWMDET_IRQn_Handler 0x00012c25 Thumb Code 62 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + app_SPIM_IRQn_Handler 0x00012c6d Thumb Code 34 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + app_SPIS_IRQn_Handler 0x00012c9d Thumb Code 500 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + app_SWIRE_IRQn_Handler 0x00012e9d Thumb Code 28 drv_swire.o(i.app_SWIRE_IRQn_Handler) + app_SysTick_Handler 0x00012ebd Thumb Code 20 drv_common.o(i.app_SysTick_Handler) + app_TIMER0_IRQn_Handler 0x00012ed5 Thumb Code 10 drv_timer.o(i.app_TIMER0_IRQn_Handler) + app_TIMER1_IRQn_Handler 0x00012edf Thumb Code 10 drv_timer.o(i.app_TIMER1_IRQn_Handler) + app_TIMER2_IRQn_Handler 0x00012ee9 Thumb Code 10 drv_timer.o(i.app_TIMER2_IRQn_Handler) + app_TIMER3_IRQn_Handler 0x00012ef3 Thumb Code 10 drv_timer.o(i.app_TIMER3_IRQn_Handler) + app_VIDC_IRQn_Handler 0x00012efd Thumb Code 22 drv_vidc.o(i.app_VIDC_IRQn_Handler) + app_VPRE_IRQn_Handler 0x00012f19 Thumb Code 22 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + app_WDG_IRQn_Handler 0x00012f35 Thumb Code 52 drv_wdg.o(i.app_WDG_IRQn_Handler) + app_dma_irq_handler 0x00012f6d Thumb Code 10 drv_dma.o(i.app_dma_irq_handler) + app_fls_ctrl_Handler 0x00012f7d Thumb Code 38 norflash.o(i.app_fls_ctrl_Handler) + app_tp_I2C_init 0x00012fad Thumb Code 26 app_tp_transfer.o(i.app_tp_I2C_init) + app_tp_calibration_exec 0x00012fd1 Thumb Code 20 ap_demo.o(i.app_tp_calibration_exec) + app_tp_init 0x00013085 Thumb Code 56 app_tp_transfer.o(i.app_tp_init) + app_tp_phone_analysis_data 0x000130f1 Thumb Code 1200 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + app_tp_s_read 0x000135b1 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_read) + app_tp_s_write 0x000135b9 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_write) + app_tp_screen_analysis_int 0x000135c1 Thumb Code 1176 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + app_tp_screen_init 0x00013a59 Thumb Code 42 app_tp_transfer.o(i.app_tp_screen_init) + app_tp_transfer_screen_int 0x00013ad5 Thumb Code 250 app_tp_transfer.o(i.app_tp_transfer_screen_int) + app_tp_transfer_screen_start 0x00013be1 Thumb Code 16 app_tp_transfer.o(i.app_tp_transfer_screen_start) + board_Init 0x00013bf5 Thumb Code 30 board.o(i.board_Init) + calc_framebuffer_setting 0x00013c19 Thumb Code 1258 hal_internal_vsync.o(i.calc_framebuffer_setting) + ceil 0x00014109 Thumb Code 180 ceil.o(i.ceil) + dcs_packet_fifo_alloc 0x00014291 Thumb Code 80 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + dcs_packet_fifo_init 0x000142e9 Thumb Code 18 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + dcs_packet_free_fifo_header 0x00014301 Thumb Code 60 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + dcs_packet_get_fifo_header 0x00014345 Thumb Code 26 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + delayMs 0x00014385 Thumb Code 24 tau_delay.o(i.delayMs) + delayUs 0x0001439d Thumb Code 34 tau_delay.o(i.delayUs) + drv_ap_rst_trig_edge_detect 0x000143c1 Thumb Code 46 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + drv_chip_info_get_info 0x000143f9 Thumb Code 6 drv_chip_info.o(i.drv_chip_info_get_info) + drv_chip_info_init 0x00014405 Thumb Code 56 drv_chip_info.o(i.drv_chip_info_init) + drv_chip_rx_info_check 0x00014445 Thumb Code 98 drv_chip_info.o(i.drv_chip_rx_info_check) + drv_chip_rx_init_done 0x000144f5 Thumb Code 16 drv_chip_info.o(i.drv_chip_rx_init_done) + drv_common_enable_systick 0x00014509 Thumb Code 70 drv_common.o(i.drv_common_enable_systick) + drv_common_system_init 0x00014561 Thumb Code 8 drv_common.o(i.drv_common_system_init) + drv_crgu_config_reset_modules 0x00014569 Thumb Code 10 drv_crgu.o(i.drv_crgu_config_reset_modules) + drv_crgu_set_ahb_pre_div 0x00014579 Thumb Code 14 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + drv_crgu_set_ahb_src 0x0001458d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_ahb_src) + drv_crgu_set_clock 0x000145a1 Thumb Code 26 drv_crgu.o(i.drv_crgu_set_clock) + drv_crgu_set_dpi_mux_src 0x000145c1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + drv_crgu_set_dpi_pre_div 0x000145d5 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + drv_crgu_set_dpi_pre_src 0x000145ed Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + drv_crgu_set_dsc_core_div 0x00014601 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + drv_crgu_set_dsco_src 0x00014615 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src) + drv_crgu_set_dsco_src_div 0x00014629 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + drv_crgu_set_fb_div 0x0001463d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_div) + drv_crgu_set_fb_src 0x00014651 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_src) + drv_crgu_set_lcdc_div 0x00014665 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_div) + drv_crgu_set_lcdc_src 0x00014679 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_src) + drv_crgu_set_mipi_cfg_src 0x0001468d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + drv_crgu_set_mipi_ref_src 0x000146a1 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + drv_crgu_set_reset 0x000146b9 Thumb Code 20 drv_crgu.o(i.drv_crgu_set_reset) + drv_crgu_set_rxbr_div 0x000146d1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_div) + drv_crgu_set_rxbr_src 0x000146e5 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_src) + drv_crgu_set_vidc_src 0x000146f9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_vidc_src) + drv_dma_clear_flag 0x0001470d Thumb Code 24 drv_dma.o(i.drv_dma_clear_flag) + drv_dma_create_handle 0x00014725 Thumb Code 22 drv_dma.o(i.drv_dma_create_handle) + drv_dma_disenable_channel 0x00014741 Thumb Code 16 drv_dma.o(i.drv_dma_disenable_channel) + drv_dma_enable_channel 0x00014751 Thumb Code 16 drv_dma.o(i.drv_dma_enable_channel) + drv_dma_enable_channel_interrupts 0x00014761 Thumb Code 32 drv_dma.o(i.drv_dma_enable_channel_interrupts) + drv_dma_get_channel_flag 0x00014785 Thumb Code 12 drv_dma.o(i.drv_dma_get_channel_flag) + drv_dma_irq_handler 0x00014791 Thumb Code 138 drv_dma.o(i.drv_dma_irq_handler) + drv_dma_prepar_transfer 0x00014821 Thumb Code 18 drv_dma.o(i.drv_dma_prepar_transfer) + drv_dma_set_burst 0x00014833 Thumb Code 26 drv_dma.o(i.drv_dma_set_burst) + drv_dma_set_callback 0x0001484d Thumb Code 6 drv_dma.o(i.drv_dma_set_callback) + drv_dma_set_transfer 0x00014855 Thumb Code 62 drv_dma.o(i.drv_dma_set_transfer) + drv_dsc_dec_convert_pps_rc_parameter 0x00014899 Thumb Code 54 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + drv_dsc_dec_disable 0x000148cf Thumb Code 12 drv_dsc_dec.o(i.drv_dsc_dec_disable) + drv_dsc_dec_enable 0x000148dd Thumb Code 88 drv_dsc_dec.o(i.drv_dsc_dec_enable) + drv_dsc_dec_get_nslc 0x00014951 Thumb Code 10 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + drv_dsc_dec_set_u8_pps 0x0001495b Thumb Code 40 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + drv_dsi_rx_calc_ipi_tx_delay 0x00014985 Thumb Code 244 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + drv_dsi_rx_enable_irq 0x00014a89 Thumb Code 58 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + drv_dsi_rx_get_compression_en 0x00014b35 Thumb Code 8 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + drv_dsi_rx_get_max_ret_size 0x00014b3d Thumb Code 6 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + drv_dsi_rx_power_up 0x00014b43 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + drv_dsi_rx_set_ctrl_cfg 0x00014b51 Thumb Code 32 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + drv_dsi_rx_set_ddi_cfg 0x00014b71 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + drv_dsi_rx_set_ipi_cfg 0x00014b81 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + drv_dsi_rx_set_lane_swap 0x00014b91 Thumb Code 70 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + drv_dsi_rx_set_resp_cnt 0x00014bd7 Thumb Code 38 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + drv_dsi_rx_set_up_phy 0x00014bfd Thumb Code 256 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + drv_dsi_rx_shut_down 0x00014d01 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + drv_dsi_tx_command_header 0x00014d0f Thumb Code 20 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + drv_dsi_tx_command_mode_cfg 0x00014d23 Thumb Code 108 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + drv_dsi_tx_command_put_payload 0x00014d8f Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + drv_dsi_tx_config_eotp 0x00014d93 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + drv_dsi_tx_config_int 0x00014dab Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + drv_dsi_tx_dpi_lpcmd_time 0x00014db3 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + drv_dsi_tx_dpi_mode 0x00014dbb Thumb Code 10 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + drv_dsi_tx_dpi_polarity 0x00014dc5 Thumb Code 36 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + drv_dsi_tx_edpi_cmd_size 0x00014de9 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + drv_dsi_tx_get_cmd_status 0x00014ded Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + drv_dsi_tx_mode 0x00014df1 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_mode) + drv_dsi_tx_phy_clock_lane_auto_lp 0x00014df5 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + drv_dsi_tx_phy_clock_lane_req_hs 0x00014e0d Thumb Code 26 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + drv_dsi_tx_phy_lane_mode 0x00014e27 Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + drv_dsi_tx_phy_status_ready 0x00014e33 Thumb Code 100 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + drv_dsi_tx_phy_status_stopstate 0x00014e97 Thumb Code 62 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + drv_dsi_tx_phy_test_setup 0x00014ed5 Thumb Code 308 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + drv_dsi_tx_phy_time_cfg 0x00015009 Thumb Code 30 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + drv_dsi_tx_powerup 0x00015027 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + drv_dsi_tx_response_mode 0x0001502f Thumb Code 28 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + drv_dsi_tx_set_bta_ack 0x0001504b Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + drv_dsi_tx_set_esc_div 0x00015063 Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + drv_dsi_tx_set_int 0x00015071 Thumb Code 58 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + drv_dsi_tx_set_time_out_div 0x000150b1 Thumb Code 16 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + drv_dsi_tx_set_video_chunk 0x000150c1 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + drv_dsi_tx_set_video_timing 0x000150c9 Thumb Code 34 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + drv_dsi_tx_shutdown 0x000150eb Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + drv_dsi_tx_timeout_cfg 0x000150f3 Thumb Code 38 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + drv_dsi_tx_video_mode_cfg 0x00015119 Thumb Code 170 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + drv_dsi_tx_video_mode_disable_hact_cmd 0x000151c3 Thumb Code 22 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + drv_dsi_tx_video_mode_set_lp_cmd 0x000151d9 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + drv_efuse_enter_inactive 0x000151f1 Thumb Code 46 drv_efuse.o(i.drv_efuse_enter_inactive) + drv_efuse_int_enable 0x0001521f Thumb Code 12 drv_efuse.o(i.drv_efuse_int_enable) + drv_efuse_read 0x0001522b Thumb Code 50 drv_efuse.o(i.drv_efuse_read) + drv_efuse_read_req 0x0001525d Thumb Code 24 drv_efuse.o(i.drv_efuse_read_req) + drv_gpio_get_input_data 0x00015275 Thumb Code 20 drv_gpio.o(i.drv_gpio_get_input_data) + drv_gpio_register_ap_reset_callback 0x0001528d Thumb Code 6 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + drv_gpio_register_callback 0x00015299 Thumb Code 14 drv_gpio.o(i.drv_gpio_register_callback) + drv_gpio_set_int 0x000152ad Thumb Code 74 drv_gpio.o(i.drv_gpio_set_int) + drv_gpio_set_ioe 0x000152fd Thumb Code 26 drv_gpio.o(i.drv_gpio_set_ioe) + drv_gpio_set_mode0 0x0001531d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode0) + drv_gpio_set_mode1 0x0001532d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode1) + drv_gpio_set_mode2 0x0001533d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode2) + drv_gpio_set_mode3 0x0001534d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode3) + drv_gpio_set_pull_state 0x0001537d Thumb Code 298 drv_gpio.o(i.drv_gpio_set_pull_state) + drv_i2c0_set_callback 0x000154ad Thumb Code 6 drv_i2c_slave.o(i.drv_i2c0_set_callback) + drv_i2c1_set_callback 0x000154b9 Thumb Code 6 drv_i2c_master.o(i.drv_i2c1_set_callback) + drv_i2c_dma_init 0x000154f9 Thumb Code 146 drv_i2c_dma.o(i.drv_i2c_dma_init) + drv_i2c_enable_rx_dma 0x000155a5 Thumb Code 26 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + drv_i2c_enable_tx_dma 0x000155bf Thumb Code 24 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + drv_i2c_m_clear_it_pending_bit 0x000155d9 Thumb Code 86 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + drv_i2c_m_enable 0x00015639 Thumb Code 10 drv_i2c_master.o(i.drv_i2c_m_enable) + drv_i2c_m_enable_intr 0x00015649 Thumb Code 42 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + drv_i2c_master_init 0x00015681 Thumb Code 118 drv_i2c_master.o(i.drv_i2c_master_init) + drv_i2c_master_read_dma 0x0001570d Thumb Code 82 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + drv_i2c_master_write_dma 0x00015769 Thumb Code 50 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + drv_i2c_s_clear_it_pending_bit 0x000157e3 Thumb Code 66 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + drv_i2c_s_config_intr 0x00015825 Thumb Code 4 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + drv_i2c_s_enable 0x00015829 Thumb Code 8 drv_i2c_slave.o(i.drv_i2c_s_enable) + drv_i2c_s_get_fifo_status 0x00015831 Thumb Code 20 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + drv_i2c_s_set_intr 0x00015845 Thumb Code 74 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + drv_i2c_s_write_data 0x00015895 Thumb Code 28 drv_i2c_slave.o(i.drv_i2c_s_write_data) + drv_i2c_set_dma_irq_callback 0x000158b1 Thumb Code 68 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + drv_i2c_slave_init 0x00015909 Thumb Code 50 drv_i2c_slave.o(i.drv_i2c_slave_init) + drv_i2c_slave_write_dma 0x0001593d Thumb Code 20 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + drv_lcdc_config_bypass 0x00015955 Thumb Code 24 drv_lcdc.o(i.drv_lcdc_config_bypass) + drv_lcdc_config_ccm 0x0001596d Thumb Code 48 drv_lcdc.o(i.drv_lcdc_config_ccm) + drv_lcdc_config_disp_mode 0x0001599d Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + drv_lcdc_config_dpi_polarity 0x000159b3 Thumb Code 36 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + drv_lcdc_config_dpi_timing 0x000159d7 Thumb Code 38 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + drv_lcdc_config_edpi_mode 0x000159fd Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + drv_lcdc_config_endianness 0x00015a13 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_endianness) + drv_lcdc_config_input_size 0x00015a29 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_input_size) + drv_lcdc_config_int 0x00015a35 Thumb Code 30 drv_lcdc.o(i.drv_lcdc_config_int) + drv_lcdc_config_int_single 0x00015a53 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_int_single) + drv_lcdc_config_overwrite 0x00015a75 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_overwrite) + drv_lcdc_config_overwrite_rgb 0x00015a97 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + drv_lcdc_config_partial_display_area 0x00015aa3 Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + drv_lcdc_config_partial_display_enable 0x00015abd Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + drv_lcdc_config_scale_up_coef 0x00015adf Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + drv_lcdc_config_scale_up_step 0x00015af9 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + drv_lcdc_config_src_parameter 0x00015b05 Thumb Code 76 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + drv_lcdc_config_thresh 0x00015b51 Thumb Code 6 drv_lcdc.o(i.drv_lcdc_config_thresh) + drv_lcdc_ctrl_flow 0x00015b57 Thumb Code 18 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + drv_lcdc_enable_shadow_reg 0x00015b69 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + drv_lcdc_set_int 0x00015b89 Thumb Code 58 drv_lcdc.o(i.drv_lcdc_set_int) + drv_lcdc_set_video_hw_mode 0x00015bc9 Thumb Code 20 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + drv_lcdc_start 0x00015bdd Thumb Code 32 drv_lcdc.o(i.drv_lcdc_start) + drv_memc_clear_status 0x00015bfd Thumb Code 12 drv_memc.o(i.drv_memc_clear_status) + drv_memc_enable_irq 0x00015c09 Thumb Code 58 drv_memc.o(i.drv_memc_enable_irq) + drv_memc_gen_a_tear_signal 0x00015c49 Thumb Code 12 drv_memc.o(i.drv_memc_gen_a_tear_signal) + drv_memc_get_status 0x00015c55 Thumb Code 18 drv_memc.o(i.drv_memc_get_status) + drv_memc_rate_transfer_sel 0x00015c67 Thumb Code 16 drv_memc.o(i.drv_memc_rate_transfer_sel) + drv_memc_sel_vsync 0x00015c77 Thumb Code 14 drv_memc.o(i.drv_memc_sel_vsync) + drv_memc_set_active_height 0x00015c85 Thumb Code 14 drv_memc.o(i.drv_memc_set_active_height) + drv_memc_set_data_mode 0x00015c99 Thumb Code 12 drv_memc.o(i.drv_memc_set_data_mode) + drv_memc_set_double_buffer 0x00015ca5 Thumb Code 16 drv_memc.o(i.drv_memc_set_double_buffer) + drv_memc_set_double_buffer_reverse 0x00015cb5 Thumb Code 18 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + drv_memc_set_fs_en_conditions 0x00015cc7 Thumb Code 16 drv_memc.o(i.drv_memc_set_fs_en_conditions) + drv_memc_set_inten 0x00015cd7 Thumb Code 20 drv_memc.o(i.drv_memc_set_inten) + drv_memc_set_lcdc_st_conditions 0x00015ced Thumb Code 18 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + drv_memc_set_ltpo_mode 0x00015d05 Thumb Code 26 drv_memc.o(i.drv_memc_set_ltpo_mode) + drv_memc_set_tear_mode 0x00015d1f Thumb Code 14 drv_memc.o(i.drv_memc_set_tear_mode) + drv_memc_set_tear_waveform 0x00015d2d Thumb Code 34 drv_memc.o(i.drv_memc_set_tear_waveform) + drv_memc_set_vidc_sync_cnt 0x00015d55 Thumb Code 14 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + drv_param_init_get_ccm 0x00015d65 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_ccm) + drv_param_init_get_scld_filter_h 0x00015d6d Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + drv_param_init_get_scld_filter_v 0x00015d81 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + drv_param_init_get_sclu_filter 0x00015d95 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_sclu_filter) + drv_param_init_set_ccm 0x00015d9d Thumb Code 14 drv_param_init.o(i.drv_param_init_set_ccm) + drv_param_p2r_filter_init 0x00015db1 Thumb Code 30 drv_param_init.o(i.drv_param_p2r_filter_init) + drv_phy_enable_calibration 0x00015dd5 Thumb Code 12 drv_phy_common.o(i.drv_phy_enable_calibration) + drv_phy_get_calibration 0x00015de5 Thumb Code 50 drv_phy_common.o(i.drv_phy_get_calibration) + drv_phy_get_pll_para 0x00015e21 Thumb Code 88 drv_phy_common.o(i.drv_phy_get_pll_para) + drv_phy_get_rate_para 0x00015e81 Thumb Code 76 drv_phy_common.o(i.drv_phy_get_rate_para) + drv_phy_test_clear 0x00015ed5 Thumb Code 16 drv_phy_common.o(i.drv_phy_test_clear) + drv_phy_test_lock 0x00015ee5 Thumb Code 24 drv_phy_common.o(i.drv_phy_test_lock) + drv_phy_test_write_1_byte 0x00015efd Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_1_byte) + drv_phy_test_write_2_byte 0x00015f1d Thumb Code 38 drv_phy_common.o(i.drv_phy_test_write_2_byte) + drv_phy_test_write_code 0x00015f43 Thumb Code 30 drv_phy_common.o(i.drv_phy_test_write_code) + drv_pwr_set_cp_mode 0x00015f81 Thumb Code 26 drv_pwr.o(i.drv_pwr_set_cp_mode) + drv_pwr_set_pvd_mode 0x00015fa1 Thumb Code 18 drv_pwr.o(i.drv_pwr_set_pvd_mode) + drv_pwr_set_system_clk_src 0x00015fb9 Thumb Code 44 drv_pwr.o(i.drv_pwr_set_system_clk_src) + drv_rxbr_clear_pkt_buffer 0x00016037 Thumb Code 10 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + drv_rxbr_clear_status0 0x00016041 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_clear_status0) + drv_rxbr_enable_irq 0x00016045 Thumb Code 90 drv_rxbr.o(i.drv_rxbr_enable_irq) + drv_rxbr_frame_drop_cfg 0x000160a1 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + drv_rxbr_get_clk 0x000160b5 Thumb Code 66 drv_rxbr.o(i.drv_rxbr_get_clk) + drv_rxbr_get_col_addr 0x00016119 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_col_addr) + drv_rxbr_get_page_addr 0x0001612f Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_page_addr) + drv_rxbr_hline_rcv0_cfg 0x00016145 Thumb Code 12 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + drv_rxbr_hline_rcv_cfg 0x00016151 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + drv_rxbr_register_irq0_callback 0x00016159 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + drv_rxbr_register_irq1_callback 0x00016165 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + drv_rxbr_set_ack_pkt_header 0x00016171 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + drv_rxbr_set_cmd_filter 0x00016185 Thumb Code 204 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + drv_rxbr_set_color_format 0x00016251 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_color_format) + drv_rxbr_set_inten 0x00016265 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_inten) + drv_rxbr_set_ltpo_drop_th 0x00016279 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + drv_rxbr_set_usr_cfg 0x00016289 Thumb Code 38 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + drv_rxbr_set_usr_col 0x000162af Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_col) + drv_rxbr_set_usr_row 0x000162b7 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_row) + drv_spi_m_read_data 0x000162c1 Thumb Code 28 drv_spi_master.o(i.drv_spi_m_read_data) + drv_swire_enable 0x000162e1 Thumb Code 24 drv_swire.o(i.drv_swire_enable) + drv_swire_set_int 0x000162fd Thumb Code 76 drv_swire.o(i.drv_swire_set_int) + drv_swire_set_power_down 0x00016351 Thumb Code 24 drv_swire.o(i.drv_swire_set_power_down) + drv_sys_cfg_clear_all_int 0x0001636d Thumb Code 8 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + drv_sys_cfg_clear_pending 0x00016379 Thumb Code 32 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + drv_sys_cfg_sel_ap_rst_lvl_trig 0x000163a1 Thumb Code 18 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + drv_sys_cfg_sel_ap_rst_trig 0x000163b9 Thumb Code 22 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + drv_sys_cfg_sel_gpio_group 0x000163d5 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + drv_sys_cfg_sel_int_trig 0x000163f9 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + drv_sys_cfg_set_dma_rx_req 0x0001641d Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + drv_sys_cfg_set_dma_tx_req 0x0001642d Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + drv_sys_cfg_set_int 0x0001643d Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + drv_timer_enable 0x0001647b Thumb Code 32 drv_timer.o(i.drv_timer_enable) + drv_timer_get_instance 0x0001649d Thumb Code 10 drv_timer.o(i.drv_timer_get_instance) + drv_timer_get_prescaler 0x000164ad Thumb Code 12 drv_timer.o(i.drv_timer_get_prescaler) + drv_timer_register_callback 0x00016501 Thumb Code 14 drv_timer.o(i.drv_timer_register_callback) + drv_timer_set_compare_val 0x00016515 Thumb Code 16 drv_timer.o(i.drv_timer_set_compare_val) + drv_timer_set_int 0x00016525 Thumb Code 80 drv_timer.o(i.drv_timer_set_int) + drv_timer_set_prescaler 0x00016579 Thumb Code 36 drv_timer.o(i.drv_timer_set_prescaler) + drv_timer_set_repeat 0x000165a1 Thumb Code 12 drv_timer.o(i.drv_timer_set_repeat) + drv_tx_phy_test_enter 0x000165bb Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + drv_tx_phy_test_exit 0x000165d7 Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + drv_vidc_clear_irq 0x00016629 Thumb Code 8 drv_vidc.o(i.drv_vidc_clear_irq) + drv_vidc_enable 0x00016631 Thumb Code 24 drv_vidc.o(i.drv_vidc_enable) + drv_vidc_enable_irq 0x00016649 Thumb Code 58 drv_vidc.o(i.drv_vidc_enable_irq) + drv_vidc_get_irq_status 0x00016689 Thumb Code 18 drv_vidc.o(i.drv_vidc_get_irq_status) + drv_vidc_init_module_enable 0x0001669d Thumb Code 36 drv_vidc.o(i.drv_vidc_init_module_enable) + drv_vidc_register_callback 0x000166c5 Thumb Code 6 drv_vidc.o(i.drv_vidc_register_callback) + drv_vidc_reset 0x000166d1 Thumb Code 6 drv_vidc.o(i.drv_vidc_reset) + drv_vidc_set_dst_parameter 0x000166d7 Thumb Code 60 drv_vidc.o(i.drv_vidc_set_dst_parameter) + drv_vidc_set_irqen 0x00016713 Thumb Code 20 drv_vidc.o(i.drv_vidc_set_irqen) + drv_vidc_set_mirror 0x00016727 Thumb Code 16 drv_vidc.o(i.drv_vidc_set_mirror) + drv_vidc_set_p2r_hcoef0 0x00016737 Thumb Code 8 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + drv_vidc_set_p2r_hinitb 0x0001673f Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + drv_vidc_set_p2r_hinitr 0x00016765 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + drv_vidc_set_pentile_swap 0x0001678d Thumb Code 18 drv_vidc.o(i.drv_vidc_set_pentile_swap) + drv_vidc_set_pu_ctrl 0x000167a5 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + drv_vidc_set_rotation 0x000167af Thumb Code 16 drv_vidc.o(i.drv_vidc_set_rotation) + drv_vidc_set_scld_hcoef0 0x000167bf Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + drv_vidc_set_scld_hcoef1 0x000167c9 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + drv_vidc_set_scld_step 0x000167d3 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_scld_step) + drv_vidc_set_scld_vcoef0 0x000167e5 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + drv_vidc_set_scld_vcoef1 0x000167ef Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + drv_vidc_set_src_parameter 0x000167f9 Thumb Code 22 drv_vidc.o(i.drv_vidc_set_src_parameter) + drv_wdg_clear_counter 0x00016811 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_counter) + drv_wdg_set_int 0x00016841 Thumb Code 60 drv_wdg.o(i.drv_wdg_set_int) + fls_clr_interrupt_flag 0x00016881 Thumb Code 10 drv_fls.o(i.fls_clr_interrupt_flag) + fputc 0x0001688b Thumb Code 20 tau_log.o(i.fputc) + hal_dsi_rx_ctrl_create_handle 0x000168a1 Thumb Code 48 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + hal_dsi_rx_ctrl_deinit 0x000168d5 Thumb Code 148 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + hal_dsi_rx_ctrl_dsc_async_handler 0x00016971 Thumb Code 120 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + hal_dsi_rx_ctrl_gen_a_tear_signal 0x000169f5 Thumb Code 32 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + hal_dsi_rx_ctrl_get_max_ret_size 0x00016a1d Thumb Code 30 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + hal_dsi_rx_ctrl_init 0x00016a45 Thumb Code 88 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + hal_dsi_rx_ctrl_send_ack_cmd 0x000171ed Thumb Code 212 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + hal_dsi_rx_ctrl_set_cus_sync_line 0x000172dd Thumb Code 44 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + hal_dsi_rx_ctrl_set_hw_tear_mode 0x00017311 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + hal_dsi_rx_ctrl_set_sw_tear_mode 0x000173f1 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + hal_dsi_rx_ctrl_start 0x00017425 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + hal_dsi_rx_ctrl_stop 0x00017461 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + hal_dsi_rx_ctrl_toggle_resolution 0x0001749d Thumb Code 28 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + hal_dsi_tx_ctrl_create_handle 0x00017ad1 Thumb Code 34 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + hal_dsi_tx_ctrl_deinit 0x00017afd Thumb Code 118 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + hal_dsi_tx_ctrl_enter_init_panel_mode 0x00017b81 Thumb Code 68 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + hal_dsi_tx_ctrl_exit_init_panel_mode 0x00017bcd Thumb Code 32 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + hal_dsi_tx_ctrl_init 0x00017bf5 Thumb Code 154 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + hal_dsi_tx_ctrl_panel_reset_pin 0x00017cbd Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + hal_dsi_tx_ctrl_set_ccm 0x00017cc9 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + hal_dsi_tx_ctrl_set_overwrite_rgb 0x00017ce9 Thumb Code 16 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + hal_dsi_tx_ctrl_set_partial_disp 0x00017cfd Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + hal_dsi_tx_ctrl_set_partial_disp_area 0x00017d0d Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + hal_dsi_tx_ctrl_start 0x00017d31 Thumb Code 140 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + hal_dsi_tx_ctrl_stop 0x00017dcd Thumb Code 56 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + hal_dsi_tx_ctrl_write_array_cmd 0x00017e11 Thumb Code 210 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + hal_dsi_tx_ctrl_write_cmd 0x00017ee9 Thumb Code 172 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + hal_gpio_ctrl_eint 0x0001817d Thumb Code 18 hal_gpio.o(i.hal_gpio_ctrl_eint) + hal_gpio_get_input_data 0x00018195 Thumb Code 18 hal_gpio.o(i.hal_gpio_get_input_data) + hal_gpio_init_eint 0x000181a9 Thumb Code 58 hal_gpio.o(i.hal_gpio_init_eint) + hal_gpio_init_input 0x000181e9 Thumb Code 28 hal_gpio.o(i.hal_gpio_init_input) + hal_gpio_init_output 0x00018209 Thumb Code 34 hal_gpio.o(i.hal_gpio_init_output) + hal_gpio_reg_eint_cb 0x00018231 Thumb Code 20 hal_gpio.o(i.hal_gpio_reg_eint_cb) + hal_gpio_set_ap_reset_int 0x00018249 Thumb Code 76 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + hal_gpio_set_mode 0x00018299 Thumb Code 90 hal_gpio.o(i.hal_gpio_set_mode) + hal_gpio_set_output_data 0x000182f9 Thumb Code 8 hal_gpio.o(i.hal_gpio_set_output_data) + hal_gpio_set_pull_state 0x00018301 Thumb Code 26 hal_gpio.o(i.hal_gpio_set_pull_state) + hal_i2c_m_dma_init 0x00018321 Thumb Code 92 hal_i2c_master.o(i.hal_i2c_m_dma_init) + hal_i2c_m_dma_read 0x0001838d Thumb Code 26 hal_i2c_master.o(i.hal_i2c_m_dma_read) + hal_i2c_m_dma_write 0x000183ad Thumb Code 24 hal_i2c_master.o(i.hal_i2c_m_dma_write) + hal_i2c_m_transfer_complate 0x000183c9 Thumb Code 6 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + hal_i2c_s_dma_write 0x00018405 Thumb Code 62 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + hal_i2c_s_init 0x00018451 Thumb Code 176 hal_i2c_slave.o(i.hal_i2c_s_init) + hal_i2c_s_nonblocking_read 0x00018519 Thumb Code 14 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + hal_i2c_s_set_transfer 0x0001852d Thumb Code 6 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + hal_internal_init_memc 0x000186ad Thumb Code 170 hal_internal_vsync.o(i.hal_internal_init_memc) + hal_internal_sync_get_fb_setting 0x000187a9 Thumb Code 12 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + hal_internal_sync_get_hight_performan_mode 0x000187b9 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + hal_internal_sync_input_resolution_change 0x000187c9 Thumb Code 438 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + hal_internal_update_dpi_param 0x000189f5 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + hal_internal_video_mode_auto_sync 0x00018a05 Thumb Code 238 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + hal_internal_vsync_deinit 0x00018b11 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + hal_internal_vsync_get_rx_state 0x00018b39 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + hal_internal_vsync_get_sync_line 0x00018b45 Thumb Code 18 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + hal_internal_vsync_get_tear_mode 0x00018b5d Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + hal_internal_vsync_get_tx_state 0x00018b69 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + hal_internal_vsync_init_rx 0x00018b75 Thumb Code 236 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + hal_internal_vsync_init_tx 0x00018c8d Thumb Code 172 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + hal_internal_vsync_set_auto_hw_filter 0x00018d3d Thumb Code 222 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + hal_internal_vsync_set_rx_state 0x00018e59 Thumb Code 16 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + hal_internal_vsync_set_sync_line 0x00018e6d Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + hal_internal_vsync_set_tear_mode 0x00018e91 Thumb Code 72 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + hal_internal_vsync_set_tx_state 0x00018ee1 Thumb Code 118 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + hal_spi_m_clear_rxfifo 0x00019385 Thumb Code 14 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + hal_swire_deinit 0x00019393 Thumb Code 18 hal_swire.o(i.hal_swire_deinit) + hal_swire_open 0x000193a5 Thumb Code 22 hal_swire.o(i.hal_swire_open) + hal_system_enable_systick 0x000193bb Thumb Code 8 hal_system.o(i.hal_system_enable_systick) + hal_system_init 0x000193c5 Thumb Code 104 hal_system.o(i.hal_system_init) + hal_system_init_console 0x0001944d Thumb Code 28 hal_system.o(i.hal_system_init_console) + hal_system_set_phy_calibration 0x00019469 Thumb Code 8 hal_system.o(i.hal_system_set_phy_calibration) + hal_system_set_pvd 0x00019471 Thumb Code 8 hal_system.o(i.hal_system_set_pvd) + hal_system_set_vcc 0x00019479 Thumb Code 8 hal_system.o(i.hal_system_set_vcc) + hal_timer_deinit 0x00019481 Thumb Code 46 hal_timer.o(i.hal_timer_deinit) + hal_timer_init 0x000194af Thumb Code 26 hal_timer.o(i.hal_timer_init) + hal_timer_start 0x000194c9 Thumb Code 66 hal_timer.o(i.hal_timer_start) + hal_timer_stop 0x00019511 Thumb Code 40 hal_timer.o(i.hal_timer_stop) + hal_uart_init 0x00019539 Thumb Code 126 hal_uart.o(i.hal_uart_init) + hal_uart_transmit_blocking 0x000195c5 Thumb Code 12 hal_uart.o(i.hal_uart_transmit_blocking) + handle_init 0x000195d5 Thumb Code 140 irq_redirect .o(i.handle_init) + main 0x00019829 Thumb Code 10 main.o(i.main) + sqrt 0x0001a511 Thumb Code 66 sqrt.o(i.sqrt) + panel_init_code 0x0001a974 Data 10444 ap_demo.o(.constdata) + I2C_Ack_arr_0600_00 0x0001d240 Data 1 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0600_01 0x0001d241 Data 1 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A00 0x0001d242 Data 2 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0204 0x0001d244 Data 4 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_01 0x0001d248 Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_03 0x0001d24f Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_14 0x0001d256 Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0120 0x0001d25d Data 8 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0100 0x0001d265 Data 16 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A28 0x0001d275 Data 20 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_A019 0x0001d289 Data 24 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_01 0x0001d2a1 Data 1088 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_14 0x0001d6e1 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_1B 0x0001d7a9 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_1C 0x0001d871 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_02 0x0001d939 Data 1088 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_03 0x0001dd79 Data 544 app_tp_for_custom_s8.o(.constdata) + screen_reg_start_data_size 0x0001df99 Data 1 app_tp_for_custom_s8.o(.constdata) + Region$$Table$$Base 0x0001e450 Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0001e480 Number 0 anon$$obj.o(Region$$Table) + g_fun_handle 0x00070100 Data 192 irq_redirect .o(.ARM.__AT_0x00070100) + phone_start_flag 0x000701d5 Data 1 ap_demo.o(.data) + phone_DisplayOFF_flag 0x000701d6 Data 1 ap_demo.o(.data) + panel_mode 0x000701d9 Data 1 ap_demo.o(.data) + phone_DisplayOFF_count 0x000701da Data 2 ap_demo.o(.data) + rd_51_val2 0x000701dc Data 2 ap_demo.o(.data) + panel_r 0x000701de Data 2 ap_demo.o(.data) + panel_g 0x000701e0 Data 2 ap_demo.o(.data) + panel_b 0x000701e2 Data 2 ap_demo.o(.data) + s_screen_init_complate 0x000701f4 Data 1 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data1 0x000701f8 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data3 0x000701fb Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data4 0x000701fe Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data2 0x00070201 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data3 0x00070204 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data6 0x00070207 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data7 0x0007020a Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data8 0x0007020d Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data4 0x00070210 Data 4 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data5 0x00070214 Data 4 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data2 0x00070218 Data 6 app_tp_transfer.o(.data) + tp_flag 0x0007021e Data 1 app_tp_for_custom_s8.o(.data) + g_phone_output_int_pad 0x0007021f Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_in 0x00070220 Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_count 0x00070221 Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_clk_count 0x00070222 Data 1 app_tp_for_custom_s8.o(.data) + sleep_double_EN 0x00070223 Data 1 app_tp_for_custom_s8.o(.data) + Flag_EA_EN 0x00070224 Data 1 app_tp_for_custom_s8.o(.data) + Flag_touch_count 0x00070225 Data 1 app_tp_for_custom_s8.o(.data) + touchnum_bak 0x00070226 Data 1 app_tp_for_custom_s8.o(.data) + Flag_blacklight_EN 0x00070227 Data 1 app_tp_for_custom_s8.o(.data) + Flag_0A10 0x00070228 Data 1 app_tp_for_custom_s8.o(.data) + Flag_0610 0x00070229 Data 1 app_tp_for_custom_s8.o(.data) + Flag_2000 0x0007022a Data 1 app_tp_for_custom_s8.o(.data) + send_point 0x0007022b Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_flag 0x0007022c Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_enable 0x0007022d Data 1 app_tp_for_custom_s8.o(.data) + phone_reg_coord_back 0x00070238 Data 200 app_tp_for_custom_s8.o(.data) + g_screen_input_rst_pad 0x00070300 Data 1 app_tp_for_custom_s8.o(.data) + g_screen_input_int_pad 0x00070301 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_1 0x00070302 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_2 0x00070303 Data 3 app_tp_for_custom_s8.o(.data) + screen_data_write_3 0x00070306 Data 5 app_tp_for_custom_s8.o(.data) + screen_reg_int_data 0x0007030c Data 48 app_tp_for_custom_s8.o(.data) + g_fls_w_cmd 0x00070368 Data 1 norflash.o(.data) + g_fls_r_cmd 0x00070369 Data 1 norflash.o(.data) + g_fls_write_en_status 0x0007036a Data 1 norflash.o(.data) + isFlsTransferEnd 0x0007036b Data 1 norflash.o(.data) + isFlsFifoReq 0x0007036c Data 1 norflash.o(.data) + isNandWriteCompleted 0x0007036d Data 1 norflash.o(.data) + isNandReadCompleted 0x0007036e Data 1 norflash.o(.data) + g_fls_error_info 0x00070374 Data 6 norflash.o(.data) + g_systick_cb_func 0x00070380 Data 4 drv_common.o(.data) + g_system_clock 0x00070384 Data 4 drv_common.o(.data) + g_scld_fhd_filter_h 0x0007039c Data 256 drv_param_init.o(.data) + g_scld_fhd_filter_v 0x0007049c Data 256 drv_param_init.o(.data) + g_scld_hd_filter_h 0x0007059c Data 256 drv_param_init.o(.data) + g_scld_hd_filter_v 0x0007069c Data 256 drv_param_init.o(.data) + g_sclu_lanczos_filter 0x0007079c Data 128 drv_param_init.o(.data) + g_ccm_setting 0x0007081c Data 36 drv_param_init.o(.data) + g_sof_gen_te_func 0x000708a8 Data 4 hal_internal_vsync.o(.data) + g_int_rxbr_irq0_cb_func 0x000708ac Data 4 drv_rxbr.o(.data) + g_int_rxbr_irq1_cb_func 0x000708b0 Data 4 drv_rxbr.o(.data) + g_int_vidc_cb_func 0x000708b4 Data 4 drv_vidc.o(.data) + __stdout 0x000708e8 Data 4 stdout.o(.data) + string 0x00070b90 Data 256 tau_log.o(.bss) + hal_dmahandle 0x00070c90 Data 160 hal_uart.o(.bss) + hal_uarthandle_dma 0x00070d30 Data 32 hal_uart.o(.bss) + hal_uart_handle_global 0x00070d50 Data 16 hal_uart.o(.bss) + g_vsync_hande 0x00070efc Data 100 hal_internal_vsync.o(.bss) + g_dcs_execute_table 0x00070f60 Data 2048 hal_internal_vsync.o(.bss) + g_packet_fifo 0x00071880 Data 4144 dcs_packet_fifo.o(.bss) + g_spis_ctrl_handle 0x000728b0 Data 32 hal_spi_slave.o(.bss) + __stack_limit 0x000728d0 Data 0 startup_armcm0.o(STACK) + __initial_sp 0x000738d0 Data 0 startup_armcm0.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x000100c1 + + Load Region LR_IROM2 (Base: 0x00010000, Size: 0x0000eba0, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x0000e85c]) + + Execution Region ER_IROM2 (Exec base: 0x00010000, Load base: 0x00010000, Size: 0x0000e480, Max: 0x00010000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00010000 0x00010000 0x000000c0 Data RO 505 RESET startup_armcm0.o + 0x000100c0 0x000100c0 0x00000000 Code RO 2542 * .ARM.Collect$$$$00000000 mc_p.l(entry.o) + 0x000100c0 0x000100c0 0x00000004 Code RO 2852 .ARM.Collect$$$$00000001 mc_p.l(entry2.o) + 0x000100c4 0x000100c4 0x00000004 Code RO 2855 .ARM.Collect$$$$00000004 mc_p.l(entry5.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2857 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2859 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o) + 0x000100c8 0x000100c8 0x00000008 Code RO 2860 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2862 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2864 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o) + 0x000100d0 0x000100d0 0x00000004 Code RO 2853 .ARM.Collect$$$$00002712 mc_p.l(entry2.o) + 0x000100d4 0x000100d4 0x00000078 Code RO 506 .text startup_armcm0.o + 0x0001014c 0x0001014c 0x0000002c Code RO 2545 .text mc_p.l(uidiv.o) + 0x00010178 0x00010178 0x00000028 Code RO 2547 .text mc_p.l(idiv.o) + 0x000101a0 0x000101a0 0x00000024 Code RO 2549 .text mc_p.l(memcpya.o) + 0x000101c4 0x000101c4 0x00000024 Code RO 2551 .text mc_p.l(memseta.o) + 0x000101e8 0x000101e8 0x000000b2 Code RO 2816 .text mf_p.l(fadd.o) + 0x0001029a 0x0001029a 0x0000007a Code RO 2818 .text mf_p.l(fmul.o) + 0x00010314 0x00010314 0x0000007c Code RO 2820 .text mf_p.l(fdiv.o) + 0x00010390 0x00010390 0x00000018 Code RO 2822 .text mf_p.l(fscalb.o) + 0x000103a8 0x000103a8 0x00000164 Code RO 2824 .text mf_p.l(dadd.o) + 0x0001050c 0x0001050c 0x000000d0 Code RO 2826 .text mf_p.l(dmul.o) + 0x000105dc 0x000105dc 0x000000f0 Code RO 2828 .text mf_p.l(ddiv.o) + 0x000106cc 0x000106cc 0x00000016 Code RO 2830 .text mf_p.l(fflti.o) + 0x000106e2 0x000106e2 0x0000000e Code RO 2832 .text mf_p.l(ffltui.o) + 0x000106f0 0x000106f0 0x0000001c Code RO 2836 .text mf_p.l(dfltui.o) + 0x0001070c 0x0001070c 0x00000032 Code RO 2838 .text mf_p.l(ffixi.o) + 0x0001073e 0x0001073e 0x00000028 Code RO 2840 .text mf_p.l(ffixui.o) + 0x00010766 0x00010766 0x00000002 PAD + 0x00010768 0x00010768 0x00000048 Code RO 2842 .text mf_p.l(dfixi.o) + 0x000107b0 0x000107b0 0x0000003c Code RO 2844 .text mf_p.l(dfixui.o) + 0x000107ec 0x000107ec 0x00000028 Code RO 2846 .text mf_p.l(f2d.o) + 0x00010814 0x00010814 0x00000028 Code RO 2848 .text mf_p.l(cdcmple.o) + 0x0001083c 0x0001083c 0x00000014 Code RO 2850 .text mf_p.l(cfrcmple.o) + 0x00010850 0x00010850 0x00000060 Code RO 2867 .text mc_p.l(uldiv.o) + 0x000108b0 0x000108b0 0x00000020 Code RO 2869 .text mc_p.l(llshl.o) + 0x000108d0 0x000108d0 0x00000022 Code RO 2871 .text mc_p.l(llushr.o) + 0x000108f2 0x000108f2 0x00000026 Code RO 2873 .text mc_p.l(llsshr.o) + 0x00010918 0x00010918 0x00000000 Code RO 2882 .text mc_p.l(iusefp.o) + 0x00010918 0x00010918 0x00000082 Code RO 2883 .text mf_p.l(fepilogue.o) + 0x0001099a 0x0001099a 0x000000be Code RO 2885 .text mf_p.l(depilogue.o) + 0x00010a58 0x00010a58 0x000000a2 Code RO 2889 .text mf_p.l(dsqrt.o) + 0x00010afa 0x00010afa 0x00000002 PAD + 0x00010afc 0x00010afc 0x00000040 Code RO 2891 .text mf_p.l(dfixul.o) + 0x00010b3c 0x00010b3c 0x00000028 Code RO 2893 .text mf_p.l(cdrcmple.o) + 0x00010b64 0x00010b64 0x00000024 Code RO 2895 .text mc_p.l(init.o) + 0x00010b88 0x00010b88 0x00000056 Code RO 2905 .text mc_p.l(__dczerorl2.o) + 0x00010bde 0x00010bde 0x00000002 PAD + 0x00010be0 0x00010be0 0x00000018 Code RO 2137 i.ADC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010bf8 0x00010bf8 0x00000018 Code RO 2138 i.AP_NRESET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c10 0x00010c10 0x00000014 Code RO 2139 i.DMA_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c24 0x00010c24 0x0000001c Code RO 2140 i.EXTI_INT0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c40 0x00010c40 0x0000001c Code RO 2141 i.EXTI_INT1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c5c 0x00010c5c 0x0000001c Code RO 2142 i.EXTI_INT2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c78 0x00010c78 0x0000001c Code RO 2143 i.EXTI_INT3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c94 0x00010c94 0x0000001c Code RO 2144 i.EXTI_INT4_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cb0 0x00010cb0 0x0000001c Code RO 2145 i.EXTI_INT5_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ccc 0x00010ccc 0x0000001c Code RO 2146 i.EXTI_INT6_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ce8 0x00010ce8 0x0000001c Code RO 2147 i.EXTI_INT7_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d04 0x00010d04 0x00000014 Code RO 2148 i.FLSCTRL_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d18 0x00010d18 0x0000004e Code RO 86 i.Gpio_swire_output ap_demo.o + 0x00010d66 0x00010d66 0x00000002 PAD + 0x00010d68 0x00010d68 0x00000014 Code RO 2149 i.HardFault_Handler CVWL368.lib(irq_redirect .o) + 0x00010d7c 0x00010d7c 0x00000018 Code RO 2150 i.I2C0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d94 0x00010d94 0x00000018 Code RO 2151 i.I2C1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dac 0x00010dac 0x00000018 Code RO 2152 i.LCDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dc4 0x00010dc4 0x00000028 Code RO 918 i.LOG_printf CVWL368.lib(tau_log.o) + 0x00010dec 0x00010dec 0x00000018 Code RO 2153 i.MEMC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e04 0x00010e04 0x00000018 Code RO 2154 i.MIPI_RX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e1c 0x00010e1c 0x00000018 Code RO 2155 i.MIPI_TX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e34 0x00010e34 0x0000001c Code RO 2156 i.PWMDET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e50 0x00010e50 0x0000014c Code RO 252 i.S20_Start_init app_tp_transfer.o + 0x00010f9c 0x00010f9c 0x0000001c Code RO 2157 i.SPIM_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fb8 0x00010fb8 0x0000001c Code RO 2158 i.SPIS_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fd4 0x00010fd4 0x0000001c Code RO 2159 i.SWIRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ff0 0x00010ff0 0x00000002 Code RO 2424 i.UART_DisableDma CVWL368.lib(drv_uart.o) + 0x00010ff2 0x00010ff2 0x00000004 Code RO 2430 i.UART_GetInstance CVWL368.lib(drv_uart.o) + 0x00010ff6 0x00010ff6 0x00000002 Code RO 2900 i.__scatterload_null mc_p.l(handlers.o) + 0x00010ff8 0x00010ff8 0x00000008 Code RO 2448 i.app_UART_IRQn_Handler CVWL368.lib(drv_uart.o) + 0x00011000 0x00011000 0x00000014 Data RO 1040 .ARM.__at_0x11000 CVWL368.lib(drv_common.o) + 0x00011014 0x00011014 0x00000004 Code RO 1721 i.drv_dsi_rx_set_inten CVWL368.lib(drv_dsi_rx.o) + 0x00011018 0x00011018 0x00000004 Data RO 1041 .ARM.__at_0x11018 CVWL368.lib(drv_common.o) + 0x0001101c 0x0001101c 0x00000018 Code RO 2160 i.SysTick_Handler CVWL368.lib(irq_redirect .o) + 0x00011034 0x00011034 0x00000018 Code RO 2161 i.TIMER0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001104c 0x0001104c 0x00000018 Code RO 2162 i.TIMER1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011064 0x00011064 0x00000018 Code RO 2163 i.TIMER2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001107c 0x0001107c 0x00000018 Code RO 2164 i.TIMER3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011094 0x00011094 0x0000001c Code RO 2420 i.UART0_IRQ_Handle CVWL368.lib(drv_uart.o) + 0x000110b0 0x000110b0 0x00000018 Code RO 2165 i.UART_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110c8 0x000110c8 0x00000024 Code RO 2438 i.UART_ResetRxFIFO CVWL368.lib(drv_uart.o) + 0x000110ec 0x000110ec 0x00000048 Code RO 2441 i.UART_SetBaudRate CVWL368.lib(drv_uart.o) + 0x00011134 0x00011134 0x0000001a Code RO 2442 i.UART_SwitchSCLK CVWL368.lib(drv_uart.o) + 0x0001114e 0x0001114e 0x00000134 Code RO 2444 i.UART_TransferHandleIRQ CVWL368.lib(drv_uart.o) + 0x00011282 0x00011282 0x0000001a Code RO 2446 i.UART_WriteBlocking CVWL368.lib(drv_uart.o) + 0x0001129c 0x0001129c 0x000000bc Code RO 2447 i.UART_init CVWL368.lib(drv_uart.o) + 0x00011358 0x00011358 0x00000018 Code RO 2166 i.VIDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011370 0x00011370 0x00000018 Code RO 2167 i.VPRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011388 0x00011388 0x00000018 Code RO 2168 i.WDG_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113a0 0x000113a0 0x00000020 Code RO 2788 i.__0printf mc_p.l(printfa.o) + 0x000113c0 0x000113c0 0x00000024 Code RO 2794 i.__0vsprintf mc_p.l(printfa.o) + 0x000113e4 0x000113e4 0x0000002e Code RO 2887 i.__ARM_clz mf_p.l(depilogue.o) + 0x00011412 0x00011412 0x0000001a Code RO 603 i.__ARM_common_switch8 CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001142c 0x0001142c 0x00000018 Code RO 1361 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_i2c_master.o) + 0x00011444 0x00011444 0x00000018 Code RO 1485 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_spi_master.o) + 0x0001145c 0x0001145c 0x00000020 Code RO 1991 i.__NVIC_DisableIRQ CVWL368.lib(drv_rxbr.o) + 0x0001147c 0x0001147c 0x00000018 Code RO 1992 i.__NVIC_EnableIRQ CVWL368.lib(drv_rxbr.o) + 0x00011494 0x00011494 0x00000044 Code RO 2287 i.__NVIC_SetPriority CVWL368.lib(hal_spi_slave.o) + 0x000114d8 0x000114d8 0x0000000e Code RO 2899 i.__scatterload_copy mc_p.l(handlers.o) + 0x000114e6 0x000114e6 0x0000000e Code RO 2901 i.__scatterload_zeroinit mc_p.l(handlers.o) + 0x000114f4 0x000114f4 0x0000000c Code RO 2877 i.__set_errno mc_p.l(errno.o) + 0x00011500 0x00011500 0x00000174 Code RO 2795 i._fp_digits mc_p.l(printfa.o) + 0x00011674 0x00011674 0x000006ec Code RO 2796 i._printf_core mc_p.l(printfa.o) + 0x00011d60 0x00011d60 0x00000020 Code RO 2797 i._printf_post_padding mc_p.l(printfa.o) + 0x00011d80 0x00011d80 0x0000002c Code RO 2798 i._printf_pre_padding mc_p.l(printfa.o) + 0x00011dac 0x00011dac 0x0000000a Code RO 2800 i._sputc mc_p.l(printfa.o) + 0x00011db6 0x00011db6 0x00000002 PAD + 0x00011db8 0x00011db8 0x000001b4 Code RO 87 i.ap_dcs_read ap_demo.o + 0x00011f6c 0x00011f6c 0x00000208 Code RO 88 i.ap_demo ap_demo.o + 0x00012174 0x00012174 0x00000024 Code RO 89 i.ap_get_reg_53 ap_demo.o + 0x00012198 0x00012198 0x0000006c Code RO 90 i.ap_get_reg_7A ap_demo.o + 0x00012204 0x00012204 0x00000098 Code RO 91 i.ap_get_reg_df ap_demo.o + 0x0001229c 0x0001229c 0x00000040 Code RO 92 i.ap_reset_cb ap_demo.o + 0x000122dc 0x000122dc 0x00000058 Code RO 93 i.ap_set_backlight_51 ap_demo.o + 0x00012334 0x00012334 0x00000044 Code RO 94 i.ap_set_display_off ap_demo.o + 0x00012378 0x00012378 0x00000034 Code RO 95 i.ap_set_display_on ap_demo.o + 0x000123ac 0x000123ac 0x00000074 Code RO 96 i.ap_set_enter_sleep_mode ap_demo.o + 0x00012420 0x00012420 0x00000044 Code RO 97 i.ap_set_exit_sleep_mode ap_demo.o + 0x00012464 0x00012464 0x0000001c Code RO 98 i.ap_set_tp_calibration_04 ap_demo.o + 0x00012480 0x00012480 0x000000b0 Code RO 253 i.ap_tp_calibration app_tp_transfer.o + 0x00012530 0x00012530 0x0000001c Code RO 1993 i.app_ADC_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x0001254c 0x0001254c 0x00000024 Code RO 1285 i.app_AP_NRESET_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012570 0x00012570 0x0000001c Code RO 1286 i.app_EXTI_INT0_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x0001258c 0x0001258c 0x0000001c Code RO 1287 i.app_EXTI_INT1_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000125a8 0x000125a8 0x0000001c Code RO 1288 i.app_EXTI_INT2_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000125c4 0x000125c4 0x0000001c Code RO 1289 i.app_EXTI_INT3_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000125e0 0x000125e0 0x0000001c Code RO 1290 i.app_EXTI_INT4_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000125fc 0x000125fc 0x0000001c Code RO 1291 i.app_EXTI_INT5_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012618 0x00012618 0x0000001c Code RO 1292 i.app_EXTI_INT6_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012634 0x00012634 0x0000001c Code RO 1293 i.app_EXTI_INT7_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012650 0x00012650 0x00000048 Code RO 1032 i.app_HardFault_Handler CVWL368.lib(drv_common.o) + 0x00012698 0x00012698 0x00000018 Code RO 1396 i.app_I2C0_IRQn_Handler CVWL368.lib(drv_i2c_slave.o) + 0x000126b0 0x000126b0 0x00000010 Code RO 1362 i.app_I2C1_IRQn_Handler CVWL368.lib(drv_i2c_master.o) + 0x000126c0 0x000126c0 0x000001a4 Code RO 1603 i.app_LCDC_IRQn_Handler CVWL368.lib(hal_internal_vsync.o) + 0x00012864 0x00012864 0x00000088 Code RO 1935 i.app_MEMC_IRQn_Handler CVWL368.lib(drv_memc.o) + 0x000128ec 0x000128ec 0x00000298 Code RO 1707 i.app_MIPI_RX_IRQn_Handler CVWL368.lib(drv_dsi_rx.o) + 0x00012b84 0x00012b84 0x000000a0 Code RO 1763 i.app_MIPI_TX_IRQn_Handler CVWL368.lib(drv_dsi_tx.o) + 0x00012c24 0x00012c24 0x00000048 Code RO 2355 i.app_PWMDET_IRQn_Handler CVWL368.lib(drv_pwm.o) + 0x00012c6c 0x00012c6c 0x00000030 Code RO 1486 i.app_SPIM_IRQn_Handler CVWL368.lib(drv_spi_master.o) + 0x00012c9c 0x00012c9c 0x00000200 Code RO 2288 i.app_SPIS_IRQn_Handler CVWL368.lib(hal_spi_slave.o) + 0x00012e9c 0x00012e9c 0x00000020 Code RO 1518 i.app_SWIRE_IRQn_Handler CVWL368.lib(drv_swire.o) + 0x00012ebc 0x00012ebc 0x00000018 Code RO 1033 i.app_SysTick_Handler CVWL368.lib(drv_common.o) + 0x00012ed4 0x00012ed4 0x0000000a Code RO 1568 i.app_TIMER0_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012ede 0x00012ede 0x0000000a Code RO 1569 i.app_TIMER1_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012ee8 0x00012ee8 0x0000000a Code RO 1570 i.app_TIMER2_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012ef2 0x00012ef2 0x0000000a Code RO 1571 i.app_TIMER3_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012efc 0x00012efc 0x0000001c Code RO 2058 i.app_VIDC_IRQn_Handler CVWL368.lib(drv_vidc.o) + 0x00012f18 0x00012f18 0x0000001c Code RO 1994 i.app_VPRE_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00012f34 0x00012f34 0x00000038 Code RO 2507 i.app_WDG_IRQn_Handler CVWL368.lib(drv_wdg.o) + 0x00012f6c 0x00012f6c 0x00000010 Code RO 1147 i.app_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00012f7c 0x00012f7c 0x00000030 Code RO 948 i.app_fls_ctrl_Handler CVWL368.lib(norflash.o) + 0x00012fac 0x00012fac 0x00000024 Code RO 254 i.app_tp_I2C_init app_tp_transfer.o + 0x00012fd0 0x00012fd0 0x00000018 Code RO 99 i.app_tp_calibration_exec ap_demo.o + 0x00012fe8 0x00012fe8 0x0000009c Code RO 255 i.app_tp_i2cs_callback app_tp_transfer.o + 0x00013084 0x00013084 0x00000044 Code RO 256 i.app_tp_init app_tp_transfer.o + 0x000130c8 0x000130c8 0x00000020 Code RO 257 i.app_tp_m_read app_tp_transfer.o + 0x000130e8 0x000130e8 0x00000008 Code RO 259 i.app_tp_m_write app_tp_transfer.o + 0x000130f0 0x000130f0 0x000004c0 Code RO 402 i.app_tp_phone_analysis_data app_tp_for_custom_s8.o + 0x000135b0 0x000135b0 0x00000008 Code RO 262 i.app_tp_s_read app_tp_transfer.o + 0x000135b8 0x000135b8 0x00000008 Code RO 264 i.app_tp_s_write app_tp_transfer.o + 0x000135c0 0x000135c0 0x00000498 Code RO 404 i.app_tp_screen_analysis_int app_tp_for_custom_s8.o + 0x00013a58 0x00013a58 0x00000030 Code RO 265 i.app_tp_screen_init app_tp_transfer.o + 0x00013a88 0x00013a88 0x0000000c Code RO 266 i.app_tp_screen_int_callback app_tp_transfer.o + 0x00013a94 0x00013a94 0x00000040 Code RO 267 i.app_tp_transfer_screen_const app_tp_transfer.o + 0x00013ad4 0x00013ad4 0x0000010c Code RO 268 i.app_tp_transfer_screen_int app_tp_transfer.o + 0x00013be0 0x00013be0 0x00000014 Code RO 269 i.app_tp_transfer_screen_start app_tp_transfer.o + 0x00013bf4 0x00013bf4 0x00000024 Code RO 485 i.board_Init board.o + 0x00013c18 0x00013c18 0x000004f0 Code RO 1604 i.calc_framebuffer_setting CVWL368.lib(hal_internal_vsync.o) + 0x00014108 0x00014108 0x000000c8 Code RO 2531 i.ceil m_ps.l(ceil.o) + 0x000141d0 0x000141d0 0x0000002c Code RO 1605 i.check_mipi_rx_tx_video_info CVWL368.lib(hal_internal_vsync.o) + 0x000141fc 0x000141fc 0x00000094 Code RO 1606 i.check_pkt_buf_rev CVWL368.lib(hal_internal_vsync.o) + 0x00014290 0x00014290 0x00000058 Code RO 1694 i.dcs_packet_fifo_alloc CVWL368.lib(dcs_packet_fifo.o) + 0x000142e8 0x000142e8 0x00000018 Code RO 1695 i.dcs_packet_fifo_init CVWL368.lib(dcs_packet_fifo.o) + 0x00014300 0x00014300 0x00000044 Code RO 1696 i.dcs_packet_free_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x00014344 0x00014344 0x00000024 Code RO 1697 i.dcs_packet_get_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x00014368 0x00014368 0x0000001c Code RO 1607 i.dcs_sw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00014384 0x00014384 0x00000018 Code RO 910 i.delayMs CVWL368.lib(tau_delay.o) + 0x0001439c 0x0001439c 0x00000022 Code RO 911 i.delayUs CVWL368.lib(tau_delay.o) + 0x000143be 0x000143be 0x00000002 PAD + 0x000143c0 0x000143c0 0x00000038 Code RO 1537 i.drv_ap_rst_trig_edge_detect CVWL368.lib(drv_sys_cfg.o) + 0x000143f8 0x000143f8 0x0000000c Code RO 2258 i.drv_chip_info_get_info CVWL368.lib(drv_chip_info.o) + 0x00014404 0x00014404 0x00000040 Code RO 2259 i.drv_chip_info_init CVWL368.lib(drv_chip_info.o) + 0x00014444 0x00014444 0x000000b0 Code RO 2260 i.drv_chip_rx_info_check CVWL368.lib(drv_chip_info.o) + 0x000144f4 0x000144f4 0x00000014 Code RO 2261 i.drv_chip_rx_init_done CVWL368.lib(drv_chip_info.o) + 0x00014508 0x00014508 0x00000058 Code RO 1035 i.drv_common_enable_systick CVWL368.lib(drv_common.o) + 0x00014560 0x00014560 0x00000008 Code RO 1038 i.drv_common_system_init CVWL368.lib(drv_common.o) + 0x00014568 0x00014568 0x00000010 Code RO 1060 i.drv_crgu_config_reset_modules CVWL368.lib(drv_crgu.o) + 0x00014578 0x00014578 0x00000014 Code RO 1073 i.drv_crgu_set_ahb_pre_div CVWL368.lib(drv_crgu.o) + 0x0001458c 0x0001458c 0x00000014 Code RO 1074 i.drv_crgu_set_ahb_src CVWL368.lib(drv_crgu.o) + 0x000145a0 0x000145a0 0x00000020 Code RO 1077 i.drv_crgu_set_clock CVWL368.lib(drv_crgu.o) + 0x000145c0 0x000145c0 0x00000014 Code RO 1078 i.drv_crgu_set_dpi_mux_src CVWL368.lib(drv_crgu.o) + 0x000145d4 0x000145d4 0x00000018 Code RO 1079 i.drv_crgu_set_dpi_pre_div CVWL368.lib(drv_crgu.o) + 0x000145ec 0x000145ec 0x00000014 Code RO 1080 i.drv_crgu_set_dpi_pre_src CVWL368.lib(drv_crgu.o) + 0x00014600 0x00014600 0x00000014 Code RO 1081 i.drv_crgu_set_dsc_core_div CVWL368.lib(drv_crgu.o) + 0x00014614 0x00014614 0x00000014 Code RO 1082 i.drv_crgu_set_dsco_src CVWL368.lib(drv_crgu.o) + 0x00014628 0x00014628 0x00000014 Code RO 1083 i.drv_crgu_set_dsco_src_div CVWL368.lib(drv_crgu.o) + 0x0001463c 0x0001463c 0x00000014 Code RO 1084 i.drv_crgu_set_fb_div CVWL368.lib(drv_crgu.o) + 0x00014650 0x00014650 0x00000014 Code RO 1085 i.drv_crgu_set_fb_src CVWL368.lib(drv_crgu.o) + 0x00014664 0x00014664 0x00000014 Code RO 1088 i.drv_crgu_set_lcdc_div CVWL368.lib(drv_crgu.o) + 0x00014678 0x00014678 0x00000014 Code RO 1089 i.drv_crgu_set_lcdc_src CVWL368.lib(drv_crgu.o) + 0x0001468c 0x0001468c 0x00000014 Code RO 1090 i.drv_crgu_set_mipi_cfg_src CVWL368.lib(drv_crgu.o) + 0x000146a0 0x000146a0 0x00000018 Code RO 1091 i.drv_crgu_set_mipi_ref_src CVWL368.lib(drv_crgu.o) + 0x000146b8 0x000146b8 0x00000018 Code RO 1094 i.drv_crgu_set_reset CVWL368.lib(drv_crgu.o) + 0x000146d0 0x000146d0 0x00000014 Code RO 1095 i.drv_crgu_set_rxbr_div CVWL368.lib(drv_crgu.o) + 0x000146e4 0x000146e4 0x00000014 Code RO 1096 i.drv_crgu_set_rxbr_src CVWL368.lib(drv_crgu.o) + 0x000146f8 0x000146f8 0x00000014 Code RO 1098 i.drv_crgu_set_vidc_src CVWL368.lib(drv_crgu.o) + 0x0001470c 0x0001470c 0x00000018 Code RO 1151 i.drv_dma_clear_flag CVWL368.lib(drv_dma.o) + 0x00014724 0x00014724 0x0000001c Code RO 1152 i.drv_dma_create_handle CVWL368.lib(drv_dma.o) + 0x00014740 0x00014740 0x00000010 Code RO 1154 i.drv_dma_disenable_channel CVWL368.lib(drv_dma.o) + 0x00014750 0x00014750 0x00000010 Code RO 1156 i.drv_dma_enable_channel CVWL368.lib(drv_dma.o) + 0x00014760 0x00014760 0x00000024 Code RO 1157 i.drv_dma_enable_channel_interrupts CVWL368.lib(drv_dma.o) + 0x00014784 0x00014784 0x0000000c Code RO 1159 i.drv_dma_get_channel_flag CVWL368.lib(drv_dma.o) + 0x00014790 0x00014790 0x00000090 Code RO 1162 i.drv_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00014820 0x00014820 0x00000012 Code RO 1164 i.drv_dma_prepar_transfer CVWL368.lib(drv_dma.o) + 0x00014832 0x00014832 0x0000001a Code RO 1166 i.drv_dma_set_burst CVWL368.lib(drv_dma.o) + 0x0001484c 0x0001484c 0x00000006 Code RO 1167 i.drv_dma_set_callback CVWL368.lib(drv_dma.o) + 0x00014852 0x00014852 0x00000002 PAD + 0x00014854 0x00014854 0x00000044 Code RO 1169 i.drv_dma_set_transfer CVWL368.lib(drv_dma.o) + 0x00014898 0x00014898 0x00000036 Code RO 2271 i.drv_dsc_dec_convert_pps_rc_parameter CVWL368.lib(drv_dsc_dec.o) + 0x000148ce 0x000148ce 0x0000000c Code RO 2272 i.drv_dsc_dec_disable CVWL368.lib(drv_dsc_dec.o) + 0x000148da 0x000148da 0x00000002 PAD + 0x000148dc 0x000148dc 0x00000074 Code RO 2273 i.drv_dsc_dec_enable CVWL368.lib(drv_dsc_dec.o) + 0x00014950 0x00014950 0x0000000a Code RO 2274 i.drv_dsc_dec_get_nslc CVWL368.lib(drv_dsc_dec.o) + 0x0001495a 0x0001495a 0x00000028 Code RO 2276 i.drv_dsc_dec_set_u8_pps CVWL368.lib(drv_dsc_dec.o) + 0x00014982 0x00014982 0x00000002 PAD + 0x00014984 0x00014984 0x00000104 Code RO 1708 i.drv_dsi_rx_calc_ipi_tx_delay CVWL368.lib(drv_dsi_rx.o) + 0x00014a88 0x00014a88 0x00000040 Code RO 1709 i.drv_dsi_rx_enable_irq CVWL368.lib(drv_dsi_rx.o) + 0x00014ac8 0x00014ac8 0x00000050 Code RO 1710 i.drv_dsi_rx_get_color_bpp CVWL368.lib(drv_dsi_rx.o) + 0x00014b18 0x00014b18 0x0000001c Code RO 1711 i.drv_dsi_rx_get_color_pcc CVWL368.lib(drv_dsi_rx.o) + 0x00014b34 0x00014b34 0x00000008 Code RO 1712 i.drv_dsi_rx_get_compression_en CVWL368.lib(drv_dsi_rx.o) + 0x00014b3c 0x00014b3c 0x00000006 Code RO 1713 i.drv_dsi_rx_get_max_ret_size CVWL368.lib(drv_dsi_rx.o) + 0x00014b42 0x00014b42 0x0000000e Code RO 1717 i.drv_dsi_rx_power_up CVWL368.lib(drv_dsi_rx.o) + 0x00014b50 0x00014b50 0x00000020 Code RO 1718 i.drv_dsi_rx_set_ctrl_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014b70 0x00014b70 0x00000010 Code RO 1719 i.drv_dsi_rx_set_ddi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014b80 0x00014b80 0x00000010 Code RO 1722 i.drv_dsi_rx_set_ipi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014b90 0x00014b90 0x00000046 Code RO 1724 i.drv_dsi_rx_set_lane_swap CVWL368.lib(drv_dsi_rx.o) + 0x00014bd6 0x00014bd6 0x00000026 Code RO 1725 i.drv_dsi_rx_set_resp_cnt CVWL368.lib(drv_dsi_rx.o) + 0x00014bfc 0x00014bfc 0x00000104 Code RO 1726 i.drv_dsi_rx_set_up_phy CVWL368.lib(drv_dsi_rx.o) + 0x00014d00 0x00014d00 0x0000000e Code RO 1727 i.drv_dsi_rx_shut_down CVWL368.lib(drv_dsi_rx.o) + 0x00014d0e 0x00014d0e 0x00000014 Code RO 1765 i.drv_dsi_tx_command_header CVWL368.lib(drv_dsi_tx.o) + 0x00014d22 0x00014d22 0x0000006c Code RO 1766 i.drv_dsi_tx_command_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00014d8e 0x00014d8e 0x00000004 Code RO 1767 i.drv_dsi_tx_command_put_payload CVWL368.lib(drv_dsi_tx.o) + 0x00014d92 0x00014d92 0x00000018 Code RO 1768 i.drv_dsi_tx_config_eotp CVWL368.lib(drv_dsi_tx.o) + 0x00014daa 0x00014daa 0x00000008 Code RO 1769 i.drv_dsi_tx_config_int CVWL368.lib(drv_dsi_tx.o) + 0x00014db2 0x00014db2 0x00000008 Code RO 1770 i.drv_dsi_tx_dpi_lpcmd_time CVWL368.lib(drv_dsi_tx.o) + 0x00014dba 0x00014dba 0x0000000a Code RO 1771 i.drv_dsi_tx_dpi_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014dc4 0x00014dc4 0x00000024 Code RO 1772 i.drv_dsi_tx_dpi_polarity CVWL368.lib(drv_dsi_tx.o) + 0x00014de8 0x00014de8 0x00000004 Code RO 1773 i.drv_dsi_tx_edpi_cmd_size CVWL368.lib(drv_dsi_tx.o) + 0x00014dec 0x00014dec 0x00000004 Code RO 1775 i.drv_dsi_tx_get_cmd_status CVWL368.lib(drv_dsi_tx.o) + 0x00014df0 0x00014df0 0x00000004 Code RO 1777 i.drv_dsi_tx_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014df4 0x00014df4 0x00000018 Code RO 1778 i.drv_dsi_tx_phy_clock_lane_auto_lp CVWL368.lib(drv_dsi_tx.o) + 0x00014e0c 0x00014e0c 0x0000001a Code RO 1779 i.drv_dsi_tx_phy_clock_lane_req_hs CVWL368.lib(drv_dsi_tx.o) + 0x00014e26 0x00014e26 0x0000000c Code RO 1781 i.drv_dsi_tx_phy_lane_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014e32 0x00014e32 0x00000064 Code RO 1785 i.drv_dsi_tx_phy_status_ready CVWL368.lib(drv_dsi_tx.o) + 0x00014e96 0x00014e96 0x0000003e Code RO 1786 i.drv_dsi_tx_phy_status_stopstate CVWL368.lib(drv_dsi_tx.o) + 0x00014ed4 0x00014ed4 0x00000134 Code RO 1788 i.drv_dsi_tx_phy_test_setup CVWL368.lib(drv_dsi_tx.o) + 0x00015008 0x00015008 0x0000001e Code RO 1789 i.drv_dsi_tx_phy_time_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015026 0x00015026 0x00000008 Code RO 1793 i.drv_dsi_tx_powerup CVWL368.lib(drv_dsi_tx.o) + 0x0001502e 0x0001502e 0x0000001c Code RO 1794 i.drv_dsi_tx_response_mode CVWL368.lib(drv_dsi_tx.o) + 0x0001504a 0x0001504a 0x00000018 Code RO 1797 i.drv_dsi_tx_set_bta_ack CVWL368.lib(drv_dsi_tx.o) + 0x00015062 0x00015062 0x0000000c Code RO 1798 i.drv_dsi_tx_set_esc_div CVWL368.lib(drv_dsi_tx.o) + 0x0001506e 0x0001506e 0x00000002 PAD + 0x00015070 0x00015070 0x00000040 Code RO 1799 i.drv_dsi_tx_set_int CVWL368.lib(drv_dsi_tx.o) + 0x000150b0 0x000150b0 0x00000010 Code RO 1800 i.drv_dsi_tx_set_time_out_div CVWL368.lib(drv_dsi_tx.o) + 0x000150c0 0x000150c0 0x00000008 Code RO 1801 i.drv_dsi_tx_set_video_chunk CVWL368.lib(drv_dsi_tx.o) + 0x000150c8 0x000150c8 0x00000022 Code RO 1802 i.drv_dsi_tx_set_video_timing CVWL368.lib(drv_dsi_tx.o) + 0x000150ea 0x000150ea 0x00000008 Code RO 1804 i.drv_dsi_tx_shutdown CVWL368.lib(drv_dsi_tx.o) + 0x000150f2 0x000150f2 0x00000026 Code RO 1805 i.drv_dsi_tx_timeout_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015118 0x00015118 0x000000aa Code RO 1808 i.drv_dsi_tx_video_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x000151c2 0x000151c2 0x00000016 Code RO 1809 i.drv_dsi_tx_video_mode_disable_hact_cmd CVWL368.lib(drv_dsi_tx.o) + 0x000151d8 0x000151d8 0x00000018 Code RO 1810 i.drv_dsi_tx_video_mode_set_lp_cmd CVWL368.lib(drv_dsi_tx.o) + 0x000151f0 0x000151f0 0x0000002e Code RO 2209 i.drv_efuse_enter_inactive CVWL368.lib(drv_efuse.o) + 0x0001521e 0x0001521e 0x0000000c Code RO 2212 i.drv_efuse_int_enable CVWL368.lib(drv_efuse.o) + 0x0001522a 0x0001522a 0x00000032 Code RO 2213 i.drv_efuse_read CVWL368.lib(drv_efuse.o) + 0x0001525c 0x0001525c 0x00000018 Code RO 2214 i.drv_efuse_read_req CVWL368.lib(drv_efuse.o) + 0x00015274 0x00015274 0x00000018 Code RO 1294 i.drv_gpio_get_input_data CVWL368.lib(drv_gpio.o) + 0x0001528c 0x0001528c 0x0000000c Code RO 1296 i.drv_gpio_register_ap_reset_callback CVWL368.lib(drv_gpio.o) + 0x00015298 0x00015298 0x00000014 Code RO 1297 i.drv_gpio_register_callback CVWL368.lib(drv_gpio.o) + 0x000152ac 0x000152ac 0x00000050 Code RO 1299 i.drv_gpio_set_int CVWL368.lib(drv_gpio.o) + 0x000152fc 0x000152fc 0x00000020 Code RO 1300 i.drv_gpio_set_ioe CVWL368.lib(drv_gpio.o) + 0x0001531c 0x0001531c 0x00000010 Code RO 1301 i.drv_gpio_set_mode0 CVWL368.lib(drv_gpio.o) + 0x0001532c 0x0001532c 0x00000010 Code RO 1302 i.drv_gpio_set_mode1 CVWL368.lib(drv_gpio.o) + 0x0001533c 0x0001533c 0x00000010 Code RO 1303 i.drv_gpio_set_mode2 CVWL368.lib(drv_gpio.o) + 0x0001534c 0x0001534c 0x00000010 Code RO 1304 i.drv_gpio_set_mode3 CVWL368.lib(drv_gpio.o) + 0x0001535c 0x0001535c 0x00000020 Code RO 711 i.drv_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x0001537c 0x0001537c 0x00000130 Code RO 1305 i.drv_gpio_set_pull_state CVWL368.lib(drv_gpio.o) + 0x000154ac 0x000154ac 0x0000000c Code RO 1397 i.drv_i2c0_set_callback CVWL368.lib(drv_i2c_slave.o) + 0x000154b8 0x000154b8 0x0000000c Code RO 1363 i.drv_i2c1_set_callback CVWL368.lib(drv_i2c_master.o) + 0x000154c4 0x000154c4 0x00000034 Code RO 1337 i.drv_i2c_dma_callback CVWL368.lib(drv_i2c_dma.o) + 0x000154f8 0x000154f8 0x000000ac Code RO 1338 i.drv_i2c_dma_init CVWL368.lib(drv_i2c_dma.o) + 0x000155a4 0x000155a4 0x0000001a Code RO 1339 i.drv_i2c_enable_rx_dma CVWL368.lib(drv_i2c_dma.o) + 0x000155be 0x000155be 0x00000018 Code RO 1340 i.drv_i2c_enable_tx_dma CVWL368.lib(drv_i2c_dma.o) + 0x000155d6 0x000155d6 0x00000002 PAD + 0x000155d8 0x000155d8 0x00000060 Code RO 1365 i.drv_i2c_m_clear_it_pending_bit CVWL368.lib(drv_i2c_master.o) + 0x00015638 0x00015638 0x00000010 Code RO 1368 i.drv_i2c_m_enable CVWL368.lib(drv_i2c_master.o) + 0x00015648 0x00015648 0x00000038 Code RO 1369 i.drv_i2c_m_enable_intr CVWL368.lib(drv_i2c_master.o) + 0x00015680 0x00015680 0x0000008c Code RO 1375 i.drv_i2c_master_init CVWL368.lib(drv_i2c_master.o) + 0x0001570c 0x0001570c 0x0000005c Code RO 1341 i.drv_i2c_master_read_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015768 0x00015768 0x0000003c Code RO 1342 i.drv_i2c_master_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x000157a4 0x000157a4 0x0000003e Code RO 1343 i.drv_i2c_master_write_read_cmd CVWL368.lib(drv_i2c_dma.o) + 0x000157e2 0x000157e2 0x00000042 Code RO 1398 i.drv_i2c_s_clear_it_pending_bit CVWL368.lib(drv_i2c_slave.o) + 0x00015824 0x00015824 0x00000004 Code RO 1399 i.drv_i2c_s_config_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015828 0x00015828 0x00000008 Code RO 1400 i.drv_i2c_s_enable CVWL368.lib(drv_i2c_slave.o) + 0x00015830 0x00015830 0x00000014 Code RO 1401 i.drv_i2c_s_get_fifo_status CVWL368.lib(drv_i2c_slave.o) + 0x00015844 0x00015844 0x00000050 Code RO 1404 i.drv_i2c_s_set_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015894 0x00015894 0x0000001c Code RO 1405 i.drv_i2c_s_write_data CVWL368.lib(drv_i2c_slave.o) + 0x000158b0 0x000158b0 0x00000058 Code RO 1344 i.drv_i2c_set_dma_irq_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015908 0x00015908 0x00000032 Code RO 1406 i.drv_i2c_slave_init CVWL368.lib(drv_i2c_slave.o) + 0x0001593a 0x0001593a 0x00000002 PAD + 0x0001593c 0x0001593c 0x00000018 Code RO 1345 i.drv_i2c_slave_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015954 0x00015954 0x00000018 Code RO 1877 i.drv_lcdc_config_bypass CVWL368.lib(drv_lcdc.o) + 0x0001596c 0x0001596c 0x00000030 Code RO 1878 i.drv_lcdc_config_ccm CVWL368.lib(drv_lcdc.o) + 0x0001599c 0x0001599c 0x00000016 Code RO 1879 i.drv_lcdc_config_disp_mode CVWL368.lib(drv_lcdc.o) + 0x000159b2 0x000159b2 0x00000024 Code RO 1880 i.drv_lcdc_config_dpi_polarity CVWL368.lib(drv_lcdc.o) + 0x000159d6 0x000159d6 0x00000026 Code RO 1881 i.drv_lcdc_config_dpi_timing CVWL368.lib(drv_lcdc.o) + 0x000159fc 0x000159fc 0x00000016 Code RO 1882 i.drv_lcdc_config_edpi_mode CVWL368.lib(drv_lcdc.o) + 0x00015a12 0x00015a12 0x00000016 Code RO 1883 i.drv_lcdc_config_endianness CVWL368.lib(drv_lcdc.o) + 0x00015a28 0x00015a28 0x0000000c Code RO 1884 i.drv_lcdc_config_input_size CVWL368.lib(drv_lcdc.o) + 0x00015a34 0x00015a34 0x0000001e Code RO 1885 i.drv_lcdc_config_int CVWL368.lib(drv_lcdc.o) + 0x00015a52 0x00015a52 0x00000022 Code RO 1886 i.drv_lcdc_config_int_single CVWL368.lib(drv_lcdc.o) + 0x00015a74 0x00015a74 0x00000022 Code RO 1887 i.drv_lcdc_config_overwrite CVWL368.lib(drv_lcdc.o) + 0x00015a96 0x00015a96 0x0000000c Code RO 1888 i.drv_lcdc_config_overwrite_rgb CVWL368.lib(drv_lcdc.o) + 0x00015aa2 0x00015aa2 0x0000001a Code RO 1889 i.drv_lcdc_config_partial_display_area CVWL368.lib(drv_lcdc.o) + 0x00015abc 0x00015abc 0x00000022 Code RO 1890 i.drv_lcdc_config_partial_display_enable CVWL368.lib(drv_lcdc.o) + 0x00015ade 0x00015ade 0x0000001a Code RO 1892 i.drv_lcdc_config_scale_up_coef CVWL368.lib(drv_lcdc.o) + 0x00015af8 0x00015af8 0x0000000c Code RO 1893 i.drv_lcdc_config_scale_up_step CVWL368.lib(drv_lcdc.o) + 0x00015b04 0x00015b04 0x0000004c Code RO 1894 i.drv_lcdc_config_src_parameter CVWL368.lib(drv_lcdc.o) + 0x00015b50 0x00015b50 0x00000006 Code RO 1895 i.drv_lcdc_config_thresh CVWL368.lib(drv_lcdc.o) + 0x00015b56 0x00015b56 0x00000012 Code RO 1896 i.drv_lcdc_ctrl_flow CVWL368.lib(drv_lcdc.o) + 0x00015b68 0x00015b68 0x00000020 Code RO 1898 i.drv_lcdc_enable_shadow_reg CVWL368.lib(drv_lcdc.o) + 0x00015b88 0x00015b88 0x00000040 Code RO 1899 i.drv_lcdc_set_int CVWL368.lib(drv_lcdc.o) + 0x00015bc8 0x00015bc8 0x00000014 Code RO 1901 i.drv_lcdc_set_video_hw_mode CVWL368.lib(drv_lcdc.o) + 0x00015bdc 0x00015bdc 0x00000020 Code RO 1902 i.drv_lcdc_start CVWL368.lib(drv_lcdc.o) + 0x00015bfc 0x00015bfc 0x0000000c Code RO 1936 i.drv_memc_clear_status CVWL368.lib(drv_memc.o) + 0x00015c08 0x00015c08 0x00000040 Code RO 1937 i.drv_memc_enable_irq CVWL368.lib(drv_memc.o) + 0x00015c48 0x00015c48 0x0000000c Code RO 1938 i.drv_memc_gen_a_tear_signal CVWL368.lib(drv_memc.o) + 0x00015c54 0x00015c54 0x00000012 Code RO 1939 i.drv_memc_get_status CVWL368.lib(drv_memc.o) + 0x00015c66 0x00015c66 0x00000010 Code RO 1940 i.drv_memc_rate_transfer_sel CVWL368.lib(drv_memc.o) + 0x00015c76 0x00015c76 0x0000000e Code RO 1941 i.drv_memc_sel_vsync CVWL368.lib(drv_memc.o) + 0x00015c84 0x00015c84 0x00000014 Code RO 1942 i.drv_memc_set_active_height CVWL368.lib(drv_memc.o) + 0x00015c98 0x00015c98 0x0000000c Code RO 1943 i.drv_memc_set_data_mode CVWL368.lib(drv_memc.o) + 0x00015ca4 0x00015ca4 0x00000010 Code RO 1946 i.drv_memc_set_double_buffer CVWL368.lib(drv_memc.o) + 0x00015cb4 0x00015cb4 0x00000012 Code RO 1947 i.drv_memc_set_double_buffer_reverse CVWL368.lib(drv_memc.o) + 0x00015cc6 0x00015cc6 0x00000010 Code RO 1949 i.drv_memc_set_fs_en_conditions CVWL368.lib(drv_memc.o) + 0x00015cd6 0x00015cd6 0x00000014 Code RO 1950 i.drv_memc_set_inten CVWL368.lib(drv_memc.o) + 0x00015cea 0x00015cea 0x00000002 PAD + 0x00015cec 0x00015cec 0x00000018 Code RO 1951 i.drv_memc_set_lcdc_st_conditions CVWL368.lib(drv_memc.o) + 0x00015d04 0x00015d04 0x0000001a Code RO 1952 i.drv_memc_set_ltpo_mode CVWL368.lib(drv_memc.o) + 0x00015d1e 0x00015d1e 0x0000000e Code RO 1956 i.drv_memc_set_tear_mode CVWL368.lib(drv_memc.o) + 0x00015d2c 0x00015d2c 0x00000028 Code RO 1957 i.drv_memc_set_tear_waveform CVWL368.lib(drv_memc.o) + 0x00015d54 0x00015d54 0x0000000e Code RO 1959 i.drv_memc_set_vidc_sync_cnt CVWL368.lib(drv_memc.o) + 0x00015d62 0x00015d62 0x00000002 PAD + 0x00015d64 0x00015d64 0x00000008 Code RO 1423 i.drv_param_init_get_ccm CVWL368.lib(drv_param_init.o) + 0x00015d6c 0x00015d6c 0x00000014 Code RO 1424 i.drv_param_init_get_scld_filter_h CVWL368.lib(drv_param_init.o) + 0x00015d80 0x00015d80 0x00000014 Code RO 1425 i.drv_param_init_get_scld_filter_v CVWL368.lib(drv_param_init.o) + 0x00015d94 0x00015d94 0x00000008 Code RO 1426 i.drv_param_init_get_sclu_filter CVWL368.lib(drv_param_init.o) + 0x00015d9c 0x00015d9c 0x00000014 Code RO 1427 i.drv_param_init_set_ccm CVWL368.lib(drv_param_init.o) + 0x00015db0 0x00015db0 0x00000024 Code RO 1430 i.drv_param_p2r_filter_init CVWL368.lib(drv_param_init.o) + 0x00015dd4 0x00015dd4 0x00000010 Code RO 2230 i.drv_phy_enable_calibration CVWL368.lib(drv_phy_common.o) + 0x00015de4 0x00015de4 0x0000003c Code RO 2231 i.drv_phy_get_calibration CVWL368.lib(drv_phy_common.o) + 0x00015e20 0x00015e20 0x00000060 Code RO 2232 i.drv_phy_get_pll_para CVWL368.lib(drv_phy_common.o) + 0x00015e80 0x00015e80 0x00000054 Code RO 2233 i.drv_phy_get_rate_para CVWL368.lib(drv_phy_common.o) + 0x00015ed4 0x00015ed4 0x00000010 Code RO 2234 i.drv_phy_test_clear CVWL368.lib(drv_phy_common.o) + 0x00015ee4 0x00015ee4 0x00000018 Code RO 2235 i.drv_phy_test_lock CVWL368.lib(drv_phy_common.o) + 0x00015efc 0x00015efc 0x00000020 Code RO 2237 i.drv_phy_test_write_1_byte CVWL368.lib(drv_phy_common.o) + 0x00015f1c 0x00015f1c 0x00000026 Code RO 2238 i.drv_phy_test_write_2_byte CVWL368.lib(drv_phy_common.o) + 0x00015f42 0x00015f42 0x0000001e Code RO 2239 i.drv_phy_test_write_code CVWL368.lib(drv_phy_common.o) + 0x00015f60 0x00015f60 0x00000020 Code RO 2240 i.drv_phy_test_write_data CVWL368.lib(drv_phy_common.o) + 0x00015f80 0x00015f80 0x00000020 Code RO 1446 i.drv_pwr_set_cp_mode CVWL368.lib(drv_pwr.o) + 0x00015fa0 0x00015fa0 0x00000018 Code RO 1448 i.drv_pwr_set_pvd_mode CVWL368.lib(drv_pwr.o) + 0x00015fb8 0x00015fb8 0x00000038 Code RO 1449 i.drv_pwr_set_system_clk_src CVWL368.lib(drv_pwr.o) + 0x00015ff0 0x00015ff0 0x0000000c Code RO 1728 i.drv_rx_phy_test_clear CVWL368.lib(drv_dsi_rx.o) + 0x00015ffc 0x00015ffc 0x00000010 Code RO 1729 i.drv_rx_phy_test_lock CVWL368.lib(drv_dsi_rx.o) + 0x0001600c 0x0001600c 0x00000014 Code RO 1731 i.drv_rx_phy_test_write_1_byte CVWL368.lib(drv_dsi_rx.o) + 0x00016020 0x00016020 0x00000016 Code RO 1732 i.drv_rx_phy_test_write_2_byte CVWL368.lib(drv_dsi_rx.o) + 0x00016036 0x00016036 0x0000000a Code RO 1995 i.drv_rxbr_clear_pkt_buffer CVWL368.lib(drv_rxbr.o) + 0x00016040 0x00016040 0x00000004 Code RO 1996 i.drv_rxbr_clear_status0 CVWL368.lib(drv_rxbr.o) + 0x00016044 0x00016044 0x0000005a Code RO 1998 i.drv_rxbr_enable_irq CVWL368.lib(drv_rxbr.o) + 0x0001609e 0x0001609e 0x00000002 PAD + 0x000160a0 0x000160a0 0x00000014 Code RO 1999 i.drv_rxbr_frame_drop_cfg CVWL368.lib(drv_rxbr.o) + 0x000160b4 0x000160b4 0x00000064 Code RO 2000 i.drv_rxbr_get_clk CVWL368.lib(drv_rxbr.o) + 0x00016118 0x00016118 0x00000004 Code RO 2001 i.drv_rxbr_get_col_addr CVWL368.lib(drv_rxbr.o) + 0x0001611c 0x0001611c 0x00000012 Code RO 1608 i.drv_rxbr_get_int_source CVWL368.lib(hal_internal_vsync.o) + 0x0001612e 0x0001612e 0x00000004 Code RO 2004 i.drv_rxbr_get_page_addr CVWL368.lib(drv_rxbr.o) + 0x00016132 0x00016132 0x00000012 Code RO 1609 i.drv_rxbr_get_status0 CVWL368.lib(hal_internal_vsync.o) + 0x00016144 0x00016144 0x0000000c Code RO 2006 i.drv_rxbr_hline_rcv0_cfg CVWL368.lib(drv_rxbr.o) + 0x00016150 0x00016150 0x00000008 Code RO 2007 i.drv_rxbr_hline_rcv_cfg CVWL368.lib(drv_rxbr.o) + 0x00016158 0x00016158 0x0000000c Code RO 2008 i.drv_rxbr_register_irq0_callback CVWL368.lib(drv_rxbr.o) + 0x00016164 0x00016164 0x0000000c Code RO 2009 i.drv_rxbr_register_irq1_callback CVWL368.lib(drv_rxbr.o) + 0x00016170 0x00016170 0x00000014 Code RO 2010 i.drv_rxbr_set_ack_pkt_header CVWL368.lib(drv_rxbr.o) + 0x00016184 0x00016184 0x000000cc Code RO 2011 i.drv_rxbr_set_cmd_filter CVWL368.lib(drv_rxbr.o) + 0x00016250 0x00016250 0x00000014 Code RO 2013 i.drv_rxbr_set_color_format CVWL368.lib(drv_rxbr.o) + 0x00016264 0x00016264 0x00000014 Code RO 2015 i.drv_rxbr_set_inten CVWL368.lib(drv_rxbr.o) + 0x00016278 0x00016278 0x00000010 Code RO 2016 i.drv_rxbr_set_ltpo_drop_th CVWL368.lib(drv_rxbr.o) + 0x00016288 0x00016288 0x00000026 Code RO 2018 i.drv_rxbr_set_usr_cfg CVWL368.lib(drv_rxbr.o) + 0x000162ae 0x000162ae 0x00000008 Code RO 2019 i.drv_rxbr_set_usr_col CVWL368.lib(drv_rxbr.o) + 0x000162b6 0x000162b6 0x00000008 Code RO 2020 i.drv_rxbr_set_usr_row CVWL368.lib(drv_rxbr.o) + 0x000162be 0x000162be 0x00000002 PAD + 0x000162c0 0x000162c0 0x00000020 Code RO 1494 i.drv_spi_m_read_data CVWL368.lib(drv_spi_master.o) + 0x000162e0 0x000162e0 0x0000001c Code RO 1519 i.drv_swire_enable CVWL368.lib(drv_swire.o) + 0x000162fc 0x000162fc 0x00000054 Code RO 1522 i.drv_swire_set_int CVWL368.lib(drv_swire.o) + 0x00016350 0x00016350 0x0000001c Code RO 1523 i.drv_swire_set_power_down CVWL368.lib(drv_swire.o) + 0x0001636c 0x0001636c 0x0000000c Code RO 1538 i.drv_sys_cfg_clear_all_int CVWL368.lib(drv_sys_cfg.o) + 0x00016378 0x00016378 0x00000028 Code RO 1539 i.drv_sys_cfg_clear_pending CVWL368.lib(drv_sys_cfg.o) + 0x000163a0 0x000163a0 0x00000018 Code RO 1542 i.drv_sys_cfg_sel_ap_rst_lvl_trig CVWL368.lib(drv_sys_cfg.o) + 0x000163b8 0x000163b8 0x0000001c Code RO 1543 i.drv_sys_cfg_sel_ap_rst_trig CVWL368.lib(drv_sys_cfg.o) + 0x000163d4 0x000163d4 0x00000024 Code RO 1544 i.drv_sys_cfg_sel_gpio_group CVWL368.lib(drv_sys_cfg.o) + 0x000163f8 0x000163f8 0x00000024 Code RO 1545 i.drv_sys_cfg_sel_int_trig CVWL368.lib(drv_sys_cfg.o) + 0x0001641c 0x0001641c 0x00000010 Code RO 1547 i.drv_sys_cfg_set_dma_rx_req CVWL368.lib(drv_sys_cfg.o) + 0x0001642c 0x0001642c 0x00000010 Code RO 1548 i.drv_sys_cfg_set_dma_tx_req CVWL368.lib(drv_sys_cfg.o) + 0x0001643c 0x0001643c 0x00000024 Code RO 1549 i.drv_sys_cfg_set_int CVWL368.lib(drv_sys_cfg.o) + 0x00016460 0x00016460 0x0000001a Code RO 1572 i.drv_timer_clear_status_flags CVWL368.lib(drv_timer.o) + 0x0001647a 0x0001647a 0x00000020 Code RO 1573 i.drv_timer_enable CVWL368.lib(drv_timer.o) + 0x0001649a 0x0001649a 0x00000002 PAD + 0x0001649c 0x0001649c 0x00000010 Code RO 1574 i.drv_timer_get_instance CVWL368.lib(drv_timer.o) + 0x000164ac 0x000164ac 0x00000010 Code RO 1575 i.drv_timer_get_prescaler CVWL368.lib(drv_timer.o) + 0x000164bc 0x000164bc 0x00000044 Code RO 1577 i.drv_timer_handle_interrupt CVWL368.lib(drv_timer.o) + 0x00016500 0x00016500 0x00000014 Code RO 1578 i.drv_timer_register_callback CVWL368.lib(drv_timer.o) + 0x00016514 0x00016514 0x00000010 Code RO 1579 i.drv_timer_set_compare_val CVWL368.lib(drv_timer.o) + 0x00016524 0x00016524 0x00000054 Code RO 1580 i.drv_timer_set_int CVWL368.lib(drv_timer.o) + 0x00016578 0x00016578 0x00000028 Code RO 1581 i.drv_timer_set_prescaler CVWL368.lib(drv_timer.o) + 0x000165a0 0x000165a0 0x00000010 Code RO 1582 i.drv_timer_set_repeat CVWL368.lib(drv_timer.o) + 0x000165b0 0x000165b0 0x0000000a Code RO 1811 i.drv_tx_phy_test_clear CVWL368.lib(drv_dsi_tx.o) + 0x000165ba 0x000165ba 0x0000001c Code RO 1812 i.drv_tx_phy_test_enter CVWL368.lib(drv_dsi_tx.o) + 0x000165d6 0x000165d6 0x0000001c Code RO 1813 i.drv_tx_phy_test_exit CVWL368.lib(drv_dsi_tx.o) + 0x000165f2 0x000165f2 0x00000012 Code RO 1815 i.drv_tx_phy_test_write_1_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016604 0x00016604 0x00000014 Code RO 1816 i.drv_tx_phy_test_write_2_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016618 0x00016618 0x00000010 Code RO 1817 i.drv_tx_phy_test_write_code CVWL368.lib(drv_dsi_tx.o) + 0x00016628 0x00016628 0x00000008 Code RO 2059 i.drv_vidc_clear_irq CVWL368.lib(drv_vidc.o) + 0x00016630 0x00016630 0x00000018 Code RO 2063 i.drv_vidc_enable CVWL368.lib(drv_vidc.o) + 0x00016648 0x00016648 0x00000040 Code RO 2064 i.drv_vidc_enable_irq CVWL368.lib(drv_vidc.o) + 0x00016688 0x00016688 0x00000012 Code RO 2066 i.drv_vidc_get_irq_status CVWL368.lib(drv_vidc.o) + 0x0001669a 0x0001669a 0x00000002 PAD + 0x0001669c 0x0001669c 0x00000028 Code RO 2070 i.drv_vidc_init_module_enable CVWL368.lib(drv_vidc.o) + 0x000166c4 0x000166c4 0x0000000c Code RO 2071 i.drv_vidc_register_callback CVWL368.lib(drv_vidc.o) + 0x000166d0 0x000166d0 0x00000006 Code RO 2072 i.drv_vidc_reset CVWL368.lib(drv_vidc.o) + 0x000166d6 0x000166d6 0x0000003c Code RO 2074 i.drv_vidc_set_dst_parameter CVWL368.lib(drv_vidc.o) + 0x00016712 0x00016712 0x00000014 Code RO 2078 i.drv_vidc_set_irqen CVWL368.lib(drv_vidc.o) + 0x00016726 0x00016726 0x00000010 Code RO 2079 i.drv_vidc_set_mirror CVWL368.lib(drv_vidc.o) + 0x00016736 0x00016736 0x00000008 Code RO 2082 i.drv_vidc_set_p2r_hcoef0 CVWL368.lib(drv_vidc.o) + 0x0001673e 0x0001673e 0x00000026 Code RO 2083 i.drv_vidc_set_p2r_hinitb CVWL368.lib(drv_vidc.o) + 0x00016764 0x00016764 0x00000026 Code RO 2084 i.drv_vidc_set_p2r_hinitr CVWL368.lib(drv_vidc.o) + 0x0001678a 0x0001678a 0x00000002 PAD + 0x0001678c 0x0001678c 0x00000018 Code RO 2085 i.drv_vidc_set_pentile_swap CVWL368.lib(drv_vidc.o) + 0x000167a4 0x000167a4 0x0000000a Code RO 2086 i.drv_vidc_set_pu_ctrl CVWL368.lib(drv_vidc.o) + 0x000167ae 0x000167ae 0x00000010 Code RO 2087 i.drv_vidc_set_rotation CVWL368.lib(drv_vidc.o) + 0x000167be 0x000167be 0x0000000a Code RO 2088 i.drv_vidc_set_scld_hcoef0 CVWL368.lib(drv_vidc.o) + 0x000167c8 0x000167c8 0x0000000a Code RO 2089 i.drv_vidc_set_scld_hcoef1 CVWL368.lib(drv_vidc.o) + 0x000167d2 0x000167d2 0x00000012 Code RO 2090 i.drv_vidc_set_scld_step CVWL368.lib(drv_vidc.o) + 0x000167e4 0x000167e4 0x0000000a Code RO 2091 i.drv_vidc_set_scld_vcoef0 CVWL368.lib(drv_vidc.o) + 0x000167ee 0x000167ee 0x0000000a Code RO 2092 i.drv_vidc_set_scld_vcoef1 CVWL368.lib(drv_vidc.o) + 0x000167f8 0x000167f8 0x00000016 Code RO 2093 i.drv_vidc_set_src_parameter CVWL368.lib(drv_vidc.o) + 0x0001680e 0x0001680e 0x00000002 PAD + 0x00016810 0x00016810 0x00000010 Code RO 2508 i.drv_wdg_clear_counter CVWL368.lib(drv_wdg.o) + 0x00016820 0x00016820 0x00000010 Code RO 2509 i.drv_wdg_clear_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016830 0x00016830 0x00000010 Code RO 2512 i.drv_wdg_read_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016840 0x00016840 0x00000040 Code RO 2515 i.drv_wdg_set_int CVWL368.lib(drv_wdg.o) + 0x00016880 0x00016880 0x0000000a Code RO 1206 i.fls_clr_interrupt_flag CVWL368.lib(drv_fls.o) + 0x0001688a 0x0001688a 0x00000014 Code RO 920 i.fputc CVWL368.lib(tau_log.o) + 0x0001689e 0x0001689e 0x00000002 PAD + 0x000168a0 0x000168a0 0x00000034 Code RO 514 i.hal_dsi_rx_ctrl_create_handle CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000168d4 0x000168d4 0x0000009c Code RO 516 i.hal_dsi_rx_ctrl_deinit CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016970 0x00016970 0x00000084 Code RO 518 i.hal_dsi_rx_ctrl_dsc_async_handler CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000169f4 0x000169f4 0x00000028 Code RO 520 i.hal_dsi_rx_ctrl_gen_a_tear_signal CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016a1c 0x00016a1c 0x00000028 Code RO 522 i.hal_dsi_rx_ctrl_get_max_ret_size CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016a44 0x00016a44 0x00000060 Code RO 524 i.hal_dsi_rx_ctrl_init CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016aa4 0x00016aa4 0x000001a4 Code RO 525 i.hal_dsi_rx_ctrl_init_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016c48 0x00016c48 0x000000d8 Code RO 526 i.hal_dsi_rx_ctrl_init_dsi_rx CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016d20 0x00016d20 0x00000158 Code RO 527 i.hal_dsi_rx_ctrl_init_memc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e78 0x00016e78 0x00000148 Code RO 528 i.hal_dsi_rx_ctrl_init_rxbr CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016fc0 0x00016fc0 0x0000022c Code RO 529 i.hal_dsi_rx_ctrl_init_vidc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000171ec 0x000171ec 0x000000f0 Code RO 533 i.hal_dsi_rx_ctrl_send_ack_cmd CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000172dc 0x000172dc 0x00000034 Code RO 537 i.hal_dsi_rx_ctrl_set_cus_sync_line CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017310 0x00017310 0x00000034 Code RO 540 i.hal_dsi_rx_ctrl_set_hw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017344 0x00017344 0x00000038 Code RO 541 i.hal_dsi_rx_ctrl_set_ipi_cfg CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001737c 0x0001737c 0x00000072 Code RO 546 i.hal_dsi_rx_ctrl_set_rxbr_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000173ee 0x000173ee 0x00000002 PAD + 0x000173f0 0x000173f0 0x00000034 Code RO 547 i.hal_dsi_rx_ctrl_set_sw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017424 0x00017424 0x0000003c Code RO 550 i.hal_dsi_rx_ctrl_start CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017460 0x00017460 0x0000003c Code RO 551 i.hal_dsi_rx_ctrl_stop CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001749c 0x0001749c 0x00000020 Code RO 553 i.hal_dsi_rx_ctrl_toggle_resolution CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000174bc 0x000174bc 0x00000190 Code RO 607 i.hal_dsi_tx_calc_video_chunks CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001764c 0x0001764c 0x00000034 Code RO 608 i.hal_dsi_tx_config_params_for_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017680 0x00017680 0x00000450 Code RO 609 i.hal_dsi_tx_count_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ad0 0x00017ad0 0x0000002c Code RO 612 i.hal_dsi_tx_ctrl_create_handle CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017afc 0x00017afc 0x00000084 Code RO 613 i.hal_dsi_tx_ctrl_deinit CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017b80 0x00017b80 0x0000004c Code RO 617 i.hal_dsi_tx_ctrl_enter_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017bcc 0x00017bcc 0x00000028 Code RO 619 i.hal_dsi_tx_ctrl_exit_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017bf4 0x00017bf4 0x000000a4 Code RO 621 i.hal_dsi_tx_ctrl_init CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017c98 0x00017c98 0x00000024 Code RO 622 i.hal_dsi_tx_ctrl_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017cbc 0x00017cbc 0x0000000c Code RO 623 i.hal_dsi_tx_ctrl_panel_reset_pin CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017cc8 0x00017cc8 0x00000020 Code RO 626 i.hal_dsi_tx_ctrl_set_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ce8 0x00017ce8 0x00000014 Code RO 632 i.hal_dsi_tx_ctrl_set_overwrite_rgb CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017cfc 0x00017cfc 0x00000010 Code RO 633 i.hal_dsi_tx_ctrl_set_partial_disp CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017d0c 0x00017d0c 0x00000024 Code RO 634 i.hal_dsi_tx_ctrl_set_partial_disp_area CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017d30 0x00017d30 0x0000009c Code RO 637 i.hal_dsi_tx_ctrl_start CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017dcc 0x00017dcc 0x00000044 Code RO 638 i.hal_dsi_tx_ctrl_stop CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017e10 0x00017e10 0x000000d8 Code RO 639 i.hal_dsi_tx_ctrl_write_array_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ee8 0x00017ee8 0x000000b0 Code RO 640 i.hal_dsi_tx_ctrl_write_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017f98 0x00017f98 0x00000044 Code RO 641 i.hal_dsi_tx_init_data_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017fdc 0x00017fdc 0x00000030 Code RO 642 i.hal_dsi_tx_init_dpi_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001800c 0x0001800c 0x00000020 Code RO 643 i.hal_dsi_tx_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001802c 0x0001802c 0x00000020 Code RO 644 i.hal_dsi_tx_init_phy_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001804c 0x0001804c 0x00000094 Code RO 645 i.hal_dsi_tx_init_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180e0 0x000180e0 0x00000058 Code RO 646 i.hal_dsi_tx_init_video_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018138 0x00018138 0x00000044 Code RO 647 i.hal_dsi_tx_send_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001817c 0x0001817c 0x00000018 Code RO 712 i.hal_gpio_ctrl_eint CVWL368.lib(hal_gpio.o) + 0x00018194 0x00018194 0x00000012 Code RO 713 i.hal_gpio_get_input_data CVWL368.lib(hal_gpio.o) + 0x000181a6 0x000181a6 0x00000002 PAD + 0x000181a8 0x000181a8 0x00000040 Code RO 716 i.hal_gpio_init_eint CVWL368.lib(hal_gpio.o) + 0x000181e8 0x000181e8 0x00000020 Code RO 717 i.hal_gpio_init_input CVWL368.lib(hal_gpio.o) + 0x00018208 0x00018208 0x00000028 Code RO 718 i.hal_gpio_init_output CVWL368.lib(hal_gpio.o) + 0x00018230 0x00018230 0x00000018 Code RO 719 i.hal_gpio_reg_eint_cb CVWL368.lib(hal_gpio.o) + 0x00018248 0x00018248 0x00000050 Code RO 720 i.hal_gpio_set_ap_reset_int CVWL368.lib(hal_gpio.o) + 0x00018298 0x00018298 0x00000060 Code RO 722 i.hal_gpio_set_mode CVWL368.lib(hal_gpio.o) + 0x000182f8 0x000182f8 0x00000008 Code RO 723 i.hal_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x00018300 0x00018300 0x00000020 Code RO 725 i.hal_gpio_set_pull_state CVWL368.lib(hal_gpio.o) + 0x00018320 0x00018320 0x0000006c Code RO 751 i.hal_i2c_m_dma_init CVWL368.lib(hal_i2c_master.o) + 0x0001838c 0x0001838c 0x00000020 Code RO 752 i.hal_i2c_m_dma_read CVWL368.lib(hal_i2c_master.o) + 0x000183ac 0x000183ac 0x0000001c Code RO 753 i.hal_i2c_m_dma_write CVWL368.lib(hal_i2c_master.o) + 0x000183c8 0x000183c8 0x0000000c Code RO 755 i.hal_i2c_m_transfer_complate CVWL368.lib(hal_i2c_master.o) + 0x000183d4 0x000183d4 0x00000020 Code RO 756 i.hal_i2c_master_irq_callback CVWL368.lib(hal_i2c_master.o) + 0x000183f4 0x000183f4 0x00000010 Code RO 770 i.hal_i2c_s_dma_user_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018404 0x00018404 0x0000004c Code RO 771 i.hal_i2c_s_dma_write CVWL368.lib(hal_i2c_slave.o) + 0x00018450 0x00018450 0x000000c8 Code RO 773 i.hal_i2c_s_init CVWL368.lib(hal_i2c_slave.o) + 0x00018518 0x00018518 0x00000014 Code RO 774 i.hal_i2c_s_nonblocking_read CVWL368.lib(hal_i2c_slave.o) + 0x0001852c 0x0001852c 0x0000000c Code RO 782 i.hal_i2c_s_set_transfer CVWL368.lib(hal_i2c_slave.o) + 0x00018538 0x00018538 0x00000174 Code RO 785 i.hal_i2c_slave_irq_callback CVWL368.lib(hal_i2c_slave.o) + 0x000186ac 0x000186ac 0x000000fc Code RO 1610 i.hal_internal_init_memc CVWL368.lib(hal_internal_vsync.o) + 0x000187a8 0x000187a8 0x00000010 Code RO 1612 i.hal_internal_sync_get_fb_setting CVWL368.lib(hal_internal_vsync.o) + 0x000187b8 0x000187b8 0x00000010 Code RO 1613 i.hal_internal_sync_get_hight_performan_mode CVWL368.lib(hal_internal_vsync.o) + 0x000187c8 0x000187c8 0x0000022c Code RO 1614 i.hal_internal_sync_input_resolution_change CVWL368.lib(hal_internal_vsync.o) + 0x000189f4 0x000189f4 0x00000010 Code RO 1617 i.hal_internal_update_dpi_param CVWL368.lib(hal_internal_vsync.o) + 0x00018a04 0x00018a04 0x0000010c Code RO 1618 i.hal_internal_video_mode_auto_sync CVWL368.lib(hal_internal_vsync.o) + 0x00018b10 0x00018b10 0x00000028 Code RO 1619 i.hal_internal_vsync_deinit CVWL368.lib(hal_internal_vsync.o) + 0x00018b38 0x00018b38 0x0000000c Code RO 1620 i.hal_internal_vsync_get_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018b44 0x00018b44 0x00000018 Code RO 1621 i.hal_internal_vsync_get_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00018b5c 0x00018b5c 0x0000000c Code RO 1622 i.hal_internal_vsync_get_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018b68 0x00018b68 0x0000000c Code RO 1623 i.hal_internal_vsync_get_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018b74 0x00018b74 0x00000118 Code RO 1624 i.hal_internal_vsync_init_rx CVWL368.lib(hal_internal_vsync.o) + 0x00018c8c 0x00018c8c 0x000000b0 Code RO 1625 i.hal_internal_vsync_init_tx CVWL368.lib(hal_internal_vsync.o) + 0x00018d3c 0x00018d3c 0x0000011c Code RO 1626 i.hal_internal_vsync_set_auto_hw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00018e58 0x00018e58 0x00000014 Code RO 1628 i.hal_internal_vsync_set_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018e6c 0x00018e6c 0x00000024 Code RO 1629 i.hal_internal_vsync_set_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00018e90 0x00018e90 0x00000050 Code RO 1630 i.hal_internal_vsync_set_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018ee0 0x00018ee0 0x00000080 Code RO 1631 i.hal_internal_vsync_set_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018f60 0x00018f60 0x00000024 Code RO 648 i.hal_lcdc_config_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018f84 0x00018f84 0x00000058 Code RO 649 i.hal_lcdc_config_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018fdc 0x00018fdc 0x00000014 Code RO 650 i.hal_lcdc_config_rgb_to_pentile CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018ff0 0x00018ff0 0x00000164 Code RO 651 i.hal_lcdc_config_upscaler CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019154 0x00019154 0x00000040 Code RO 652 i.hal_lcdc_init_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019194 0x00019194 0x000001b0 Code RO 653 i.hal_lcdc_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019344 0x00019344 0x00000040 Code RO 654 i.hal_lcdc_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019384 0x00019384 0x0000000e Code RO 810 i.hal_spi_m_clear_rxfifo CVWL368.lib(hal_spi_master.o) + 0x00019392 0x00019392 0x00000012 Code RO 834 i.hal_swire_deinit CVWL368.lib(hal_swire.o) + 0x000193a4 0x000193a4 0x00000016 Code RO 836 i.hal_swire_open CVWL368.lib(hal_swire.o) + 0x000193ba 0x000193ba 0x00000008 Code RO 851 i.hal_system_enable_systick CVWL368.lib(hal_system.o) + 0x000193c2 0x000193c2 0x00000002 PAD + 0x000193c4 0x000193c4 0x00000088 Code RO 859 i.hal_system_init CVWL368.lib(hal_system.o) + 0x0001944c 0x0001944c 0x0000001c Code RO 860 i.hal_system_init_console CVWL368.lib(hal_system.o) + 0x00019468 0x00019468 0x00000008 Code RO 863 i.hal_system_set_phy_calibration CVWL368.lib(hal_system.o) + 0x00019470 0x00019470 0x00000008 Code RO 864 i.hal_system_set_pvd CVWL368.lib(hal_system.o) + 0x00019478 0x00019478 0x00000008 Code RO 865 i.hal_system_set_vcc CVWL368.lib(hal_system.o) + 0x00019480 0x00019480 0x0000002e Code RO 892 i.hal_timer_deinit CVWL368.lib(hal_timer.o) + 0x000194ae 0x000194ae 0x0000001a Code RO 894 i.hal_timer_init CVWL368.lib(hal_timer.o) + 0x000194c8 0x000194c8 0x00000048 Code RO 896 i.hal_timer_start CVWL368.lib(hal_timer.o) + 0x00019510 0x00019510 0x00000028 Code RO 898 i.hal_timer_stop CVWL368.lib(hal_timer.o) + 0x00019538 0x00019538 0x0000008c Code RO 931 i.hal_uart_init CVWL368.lib(hal_uart.o) + 0x000195c4 0x000195c4 0x00000010 Code RO 934 i.hal_uart_transmit_blocking CVWL368.lib(hal_uart.o) + 0x000195d4 0x000195d4 0x00000110 Code RO 2169 i.handle_init CVWL368.lib(irq_redirect .o) + 0x000196e4 0x000196e4 0x00000060 Code RO 100 i.init_mipi_tx ap_demo.o + 0x00019744 0x00019744 0x000000e4 Code RO 101 i.init_panel ap_demo.o + 0x00019828 0x00019828 0x0000000a Code RO 3 i.main main.o + 0x00019832 0x00019832 0x00000002 PAD + 0x00019834 0x00019834 0x00000084 Code RO 102 i.open_mipi_rx ap_demo.o + 0x000198b8 0x000198b8 0x00000078 Code RO 103 i.pps_update_handle ap_demo.o + 0x00019930 0x00019930 0x000003f4 Code RO 1635 i.rx_get_dcs_packet_data CVWL368.lib(hal_internal_vsync.o) + 0x00019d24 0x00019d24 0x00000178 Code RO 1636 i.rx_partial_update CVWL368.lib(hal_internal_vsync.o) + 0x00019e9c 0x00019e9c 0x0000008c Code RO 1637 i.rx_receive_packet CVWL368.lib(hal_internal_vsync.o) + 0x00019f28 0x00019f28 0x00000180 Code RO 1638 i.rx_receive_pps CVWL368.lib(hal_internal_vsync.o) + 0x0001a0a8 0x0001a0a8 0x000000a4 Code RO 1639 i.rxbr_irq0_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a14c 0x0001a14c 0x000001d4 Code RO 1640 i.rxbr_irq1_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a320 0x0001a320 0x000000c4 Code RO 1641 i.soft_gen_te CVWL368.lib(hal_internal_vsync.o) + 0x0001a3e4 0x0001a3e4 0x000000c0 Code RO 1642 i.soft_gen_te_double_buffer CVWL368.lib(hal_internal_vsync.o) + 0x0001a4a4 0x0001a4a4 0x0000002c Code RO 104 i.soft_te_timer_cb ap_demo.o + 0x0001a4d0 0x0001a4d0 0x00000040 Code RO 105 i.soft_timer3_cb ap_demo.o + 0x0001a510 0x0001a510 0x00000048 Code RO 2535 i.sqrt m_ps.l(sqrt.o) + 0x0001a558 0x0001a558 0x00000108 Code RO 1643 i.vidc_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a660 0x0001a660 0x000000d0 Code RO 1644 i.vpre_err_reset CVWL368.lib(hal_internal_vsync.o) + 0x0001a730 0x0001a730 0x000001cc Code RO 1645 i.vsync_set_te_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001a8fc 0x0001a8fc 0x00002944 Data RO 106 .constdata ap_demo.o + 0x0001d240 0x0001d240 0x00000d59 Data RO 406 .constdata app_tp_for_custom_s8.o + 0x0001df99 0x0001df99 0x00000001 Data RO 412 .constdata app_tp_for_custom_s8.o + 0x0001df9a 0x0001df9a 0x00000002 PAD + 0x0001df9c 0x0001df9c 0x00000024 Data RO 656 .constdata CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001dfc0 0x0001dfc0 0x000000d2 Data RO 728 .constdata CVWL368.lib(hal_gpio.o) + 0x0001e092 0x0001e092 0x00000002 PAD + 0x0001e094 0x0001e094 0x00000020 Data RO 786 .constdata CVWL368.lib(hal_i2c_slave.o) + 0x0001e0b4 0x0001e0b4 0x00000008 Data RO 1431 .constdata CVWL368.lib(drv_param_init.o) + 0x0001e0bc 0x0001e0bc 0x00000186 Data RO 2241 .constdata CVWL368.lib(drv_phy_common.o) + 0x0001e242 0x0001e242 0x00000002 PAD + 0x0001e244 0x0001e244 0x0000004c Data RO 107 .conststring ap_demo.o + 0x0001e290 0x0001e290 0x00000048 Data RO 556 .conststring CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001e2d8 0x0001e2d8 0x00000043 Data RO 657 .conststring CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001e31b 0x0001e31b 0x00000001 PAD + 0x0001e31c 0x0001e31c 0x00000134 Data RO 1647 .conststring CVWL368.lib(hal_internal_vsync.o) + 0x0001e450 0x0001e450 0x00000030 Data RO 2897 Region$$Table anon$$obj.o + + + Execution Region RW_RAM1 (Exec base: 0x00070000, Load base: 0x0001e480, Size: 0x00000000, Max: 0x000000f0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM2 (Exec base: 0x00070100, Load base: 0x0001e480, Size: 0x000000c0, Max: 0x000000d0, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00070100 - 0x000000c0 Zero RW 2170 .ARM.__AT_0x00070100 CVWL368.lib(irq_redirect .o) + + + Execution Region RW_RAM3 (Exec base: 0x000701d0, Load base: 0x0001e480, Size: 0x00003700, Max: 0x00007e30, ABSOLUTE, COMPRESSED[0x000003dc]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x000701d0 COMPRESSED 0x00000020 Data RW 108 .data ap_demo.o + 0x000701f0 COMPRESSED 0x0000002e Data RW 271 .data app_tp_transfer.o + 0x0007021e COMPRESSED 0x000000e2 Data RW 413 .data app_tp_for_custom_s8.o + 0x00070300 COMPRESSED 0x00000001 Data RW 416 .data app_tp_for_custom_s8.o + 0x00070301 COMPRESSED 0x00000001 Data RW 417 .data app_tp_for_custom_s8.o + 0x00070302 COMPRESSED 0x00000001 Data RW 422 .data app_tp_for_custom_s8.o + 0x00070303 COMPRESSED 0x00000003 Data RW 423 .data app_tp_for_custom_s8.o + 0x00070306 COMPRESSED 0x00000005 Data RW 424 .data app_tp_for_custom_s8.o + 0x0007030b COMPRESSED 0x00000001 PAD + 0x0007030c COMPRESSED 0x00000030 Data RW 436 .data app_tp_for_custom_s8.o + 0x0007033c COMPRESSED 0x00000008 Data RW 557 .data CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070344 COMPRESSED 0x00000003 Data RW 658 .data CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070347 COMPRESSED 0x00000001 Data RW 757 .data CVWL368.lib(hal_i2c_master.o) + 0x00070348 COMPRESSED 0x00000020 Data RW 787 .data CVWL368.lib(hal_i2c_slave.o) + 0x00070368 COMPRESSED 0x00000012 Data RW 988 .data CVWL368.lib(norflash.o) + 0x0007037a COMPRESSED 0x00000002 PAD + 0x0007037c COMPRESSED 0x0000000c Data RW 1042 .data CVWL368.lib(drv_common.o) + 0x00070388 COMPRESSED 0x00000004 Data RW 1309 .data CVWL368.lib(drv_gpio.o) + 0x0007038c COMPRESSED 0x00000008 Data RW 1347 .data CVWL368.lib(drv_i2c_dma.o) + 0x00070394 COMPRESSED 0x00000004 Data RW 1376 .data CVWL368.lib(drv_i2c_master.o) + 0x00070398 COMPRESSED 0x00000004 Data RW 1407 .data CVWL368.lib(drv_i2c_slave.o) + 0x0007039c COMPRESSED 0x000004a4 Data RW 1432 .data CVWL368.lib(drv_param_init.o) + 0x00070840 COMPRESSED 0x00000004 Data RW 1499 .data CVWL368.lib(drv_spi_master.o) + 0x00070844 COMPRESSED 0x00000008 Data RW 1525 .data CVWL368.lib(drv_swire.o) + 0x0007084c COMPRESSED 0x00000001 Data RW 1550 .data CVWL368.lib(drv_sys_cfg.o) + 0x0007084d COMPRESSED 0x00000003 PAD + 0x00070850 COMPRESSED 0x00000050 Data RW 1583 .data CVWL368.lib(drv_timer.o) + 0x000708a0 COMPRESSED 0x0000000c Data RW 1648 .data CVWL368.lib(hal_internal_vsync.o) + 0x000708ac COMPRESSED 0x00000008 Data RW 2022 .data CVWL368.lib(drv_rxbr.o) + 0x000708b4 COMPRESSED 0x00000004 Data RW 2095 .data CVWL368.lib(drv_vidc.o) + 0x000708b8 COMPRESSED 0x00000001 Data RW 2242 .data CVWL368.lib(drv_phy_common.o) + 0x000708b9 COMPRESSED 0x00000003 PAD + 0x000708bc COMPRESSED 0x0000000c Data RW 2262 .data CVWL368.lib(drv_chip_info.o) + 0x000708c8 COMPRESSED 0x0000000c Data RW 2372 .data CVWL368.lib(drv_pwm.o) + 0x000708d4 COMPRESSED 0x00000008 Data RW 2450 .data CVWL368.lib(drv_uart.o) + 0x000708dc COMPRESSED 0x0000000c Data RW 2517 .data CVWL368.lib(drv_wdg.o) + 0x000708e8 COMPRESSED 0x00000004 Data RW 2866 .data mc_p.l(stdout.o) + 0x000708ec COMPRESSED 0x00000004 Data RW 2878 .data mc_p.l(errno.o) + 0x000708f0 - 0x00000190 Zero RW 270 .bss app_tp_transfer.o + 0x00070a80 - 0x000000c4 Zero RW 555 .bss CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070b44 - 0x0000004c Zero RW 655 .bss CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070b90 - 0x00000100 Zero RW 921 .bss CVWL368.lib(tau_log.o) + 0x00070c90 - 0x000000d0 Zero RW 936 .bss CVWL368.lib(hal_uart.o) + 0x00070d60 - 0x0000001c Zero RW 1171 .bss CVWL368.lib(drv_dma.o) + 0x00070d7c - 0x00000040 Zero RW 1308 .bss CVWL368.lib(drv_gpio.o) + 0x00070dbc - 0x00000140 Zero RW 1346 .bss CVWL368.lib(drv_i2c_dma.o) + 0x00070efc - 0x00000984 Zero RW 1646 .bss CVWL368.lib(hal_internal_vsync.o) + 0x00071880 - 0x00001030 Zero RW 1699 .bss CVWL368.lib(dcs_packet_fifo.o) + 0x000728b0 - 0x00000020 Zero RW 2306 .bss CVWL368.lib(hal_spi_slave.o) + 0x000728d0 - 0x00001000 Zero RW 503 STACK startup_armcm0.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 2522 592 10640 32 0 38610 ap_demo.o + 2392 82 3418 285 0 13743 app_tp_for_custom_s8.o + 1236 120 0 46 400 13356 app_tp_transfer.o + 36 6 0 0 0 517 board.o + 10 0 0 0 0 7247 main.o + 120 18 192 0 4096 2100 startup_armcm0.o + + ---------------------------------------------------------------------- + 6320 818 14300 364 4496 75573 Object Totals + 0 0 48 0 0 0 (incl. Generated) + 4 0 2 1 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 216 32 0 0 4144 252 dcs_packet_fifo.o + 272 96 0 12 0 256 drv_chip_info.o + 192 82 24 12 0 264 drv_common.o + 420 90 0 0 0 1200 drv_crgu.o + 410 28 0 0 28 796 drv_dma.o + 232 28 0 0 0 340 drv_dsc_dec.o + 1644 494 0 0 0 1336 drv_dsi_rx.o + 1528 118 0 0 0 2428 drv_dsi_tx.o + 132 0 0 0 0 256 drv_efuse.o + 10 0 0 0 0 60 drv_fls.o + 796 112 0 4 64 1236 drv_gpio.o + 600 82 0 8 320 624 drv_i2c_dma.o + 360 86 0 4 0 456 drv_i2c_master.o + 292 36 0 4 0 580 drv_i2c_slave.o + 680 6 0 0 0 1444 drv_lcdc.o + 492 28 0 0 0 1112 drv_memc.o + 112 36 8 1188 0 376 drv_param_init.o + 428 30 390 1 0 664 drv_phy_common.o + 72 10 0 12 0 76 drv_pwm.o + 112 24 0 0 0 180 drv_pwr.o + 722 84 0 8 0 1456 drv_rxbr.o + 104 24 0 4 0 188 drv_spi_master.o + 172 20 0 8 0 260 drv_swire.o + 300 64 0 1 0 628 drv_sys_cfg.o + 374 34 0 80 0 932 drv_timer.o + 698 18 0 8 0 680 drv_uart.o + 510 28 0 4 0 1452 drv_vidc.o + 168 22 0 12 0 316 drv_wdg.o + 3124 310 72 8 196 1528 hal_dsi_rx_ctrl.o + 4324 302 103 3 76 2408 hal_dsi_tx_ctrl.o + 450 48 210 0 0 752 hal_gpio.o + 212 40 0 1 0 340 hal_i2c_master.o + 696 72 32 32 0 408 hal_i2c_slave.o + 8032 1706 308 12 2436 2616 hal_internal_vsync.o + 14 0 0 0 0 68 hal_spi_master.o + 580 32 0 0 32 136 hal_spi_slave.o + 40 0 0 0 0 136 hal_swire.o + 196 32 0 0 0 408 hal_system.o + 184 6 0 0 0 276 hal_timer.o + 156 18 0 0 208 144 hal_uart.o + 1076 324 0 0 192 1980 irq_redirect .o + 48 10 0 18 0 68 norflash.o + 58 0 0 0 0 128 tau_delay.o + 60 10 0 0 256 156 tau_log.o + 200 20 0 0 0 76 ceil.o + 72 6 0 0 0 76 sqrt.o + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 12 6 0 4 0 60 errno.o + 30 0 0 0 0 0 handlers.o + 40 0 0 0 0 72 idiv.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 32 0 0 0 0 68 llshl.o + 38 0 0 0 0 68 llsshr.o + 34 0 0 0 0 68 llushr.o + 36 0 0 0 0 60 memcpya.o + 36 0 0 0 0 100 memseta.o + 2298 104 0 0 0 544 printfa.o + 0 0 0 4 0 0 stdout.o + 44 0 0 0 0 72 uidiv.o + 96 0 0 0 0 84 uldiv.o + 40 2 0 0 0 68 cdcmple.o + 40 2 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfrcmple.o + 356 4 0 0 0 140 dadd.o + 240 6 0 0 0 84 ddiv.o + 236 0 0 0 0 216 depilogue.o + 72 10 0 0 0 72 dfixi.o + 60 10 0 0 0 68 dfixui.o + 64 10 0 0 0 68 dfixul.o + 28 4 0 0 0 68 dfltui.o + 208 6 0 0 0 88 dmul.o + 162 0 0 0 0 80 dsqrt.o + 40 0 0 0 0 60 f2d.o + 178 0 0 0 0 108 fadd.o + 124 0 0 0 0 72 fdiv.o + 130 0 0 0 0 144 fepilogue.o + 50 0 0 0 0 60 ffixi.o + 40 0 0 0 0 60 ffixui.o + 22 0 0 0 0 68 fflti.o + 14 0 0 0 0 68 ffltui.o + 122 0 0 0 0 72 fmul.o + 24 0 0 0 0 60 fscalb.o + + ---------------------------------------------------------------------- + 36724 4828 1152 1460 7952 34676 Library Totals + 46 0 5 8 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 31298 4622 1147 1444 7952 31400 CVWL368.lib + 272 26 0 0 0 152 m_ps.l + 2838 126 0 8 0 1264 mc_p.l + 2270 54 0 0 0 1860 mf_p.l + + ---------------------------------------------------------------------- + 36724 4828 1152 1460 7952 34676 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 43044 5646 15452 1824 12448 86337 Grand Totals + 43044 5646 15452 988 12448 86337 ELF Image Totals (compressed) + 43044 5646 15452 988 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 58496 ( 57.13kB) + Total RW Size (RW Data + ZI Data) 14272 ( 13.94kB) + Total ROM Size (Code + RO Data + RW Data) 59484 ( 58.09kB) + +============================================================================== + diff --git a/project/ISP_368/Listings/ISP368_N10Lite_CSOT667.map b/project/ISP_368/Listings/ISP368_N10Lite_CSOT667.map new file mode 100644 index 0000000..3c6fa7a --- /dev/null +++ b/project/ISP_368/Listings/ISP368_N10Lite_CSOT667.map @@ -0,0 +1,5359 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) for ap_get_tp_calibration_status_01 + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.tp_heartbeat_exec) for tp_heartbeat_exec + ap_demo.o(i.ap_demo) refers to app_tp_st_touch.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) for ap_tp_st_touch_scan_point_record_event_exec + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_53) refers to app_tp_for_custom_s8.o(.data) for fingerprint_flag + ap_demo.o(i.ap_get_reg_53) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_get_reg_7A) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_pvd) for hal_system_set_pvd + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_reset_cb) refers to ap_demo.o(.conststring) for .conststring + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_display_on) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) for hal_dsi_tx_crop_pic + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.init_panel) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.init_panel) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.init_panel) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.init_panel) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.init_panel) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to ap_demo.o(i.soft_te_timer_cb) for soft_te_timer_cb + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) for hal_dsi_rx_ctrl_toggle_resolution + ap_demo.o(i.pps_update_handle) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + ap_demo.o(i.soft_te_timer_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_te_timer_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.tp_heartbeat_exec) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + ap_demo.o(i.tp_heartbeat_exec) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.tp_heartbeat_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) for ap_tp_st_touch_software_reset + ap_demo.o(i.tp_heartbeat_exec) refers to app_tp_transfer.o(.data) for s_screen_init_complate + ap_demo.o(i.tp_heartbeat_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_53) for ap_get_reg_53 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_7A) for ap_get_reg_7A + ap_demo.o(.constdata) refers to app_tp_st_touch.o(i.ap_set_tp_calibration_04) for ap_set_tp_calibration_04 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(.data) for send_point + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_st_touch.o(i.CRC16_2) refers to app_tp_st_touch.o(.constdata) for .constdata + app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to memseta.o(.text) for __aeabi_memclr4 + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to printfa.o(i.__0printf) for __2printf + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to app_tp_st_touch.o(i.CRC16_2) for CRC16_2 + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_F3) refers to app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) for ap_tp_st_touch_software_reset + app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_FF) refers to app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) for ap_tp_st_touch_software_reset + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to memseta.o(.text) for __aeabi_memclr4 + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to tau_log.o(i.LOG_printf) for LOG_printf + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) for ap_tp_st_touch_simulate_finger_release_event + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) for ap_tp_st_touch_scan_point_init + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) refers to app_tp_st_touch.o(.bss) for .bss + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event) refers to app_tp_st_touch.o(.bss) for .bss + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to printfa.o(i.__0printf) for __2printf + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) for ap_tp_st_touch_simulate_finger_release_event + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) for ap_tp_st_touch_scan_point_init + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to app_tp_st_touch.o(.bss) for .bss + app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to tau_log.o(i.LOG_printf) for LOG_printf + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) for ap_tp_st_touch_simulate_finger_release_event + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) for ap_tp_st_touch_scan_point_init + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_calibration) for ap_tp_st_touch_calibration + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) for ap_tp_st_touch_get_calibration_success_mark + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to tau_log.o(i.LOG_printf) for LOG_printf + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to app_tp_st_touch.o(.data) for .data + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + board.o(i.board_Init) refers to hal_system.o(i.hal_system_set_phy_calibration) for hal_system_set_phy_calibration + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) for hal_internal_vsync_toggle_input_frame_rate + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_update_dpi_param) for hal_internal_update_dpi_param + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_release_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_release_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + app_tp_for_custom_s8.o(i.EncryptCheckEx) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(i.EncryptCheckEx) for EncryptCheckEx + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_update_dpi_param) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fmul.o(.text) for __aeabi_fmul + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ceil.o(i.ceil) for ceil + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) for hal_internal_video_mode_auto_sync + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.ap_tp_calibration), (176 bytes). + Removing app_tp_transfer.o(i.app_tp_m_transfer_complate), (8 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_st_touch.o(.rev16_text), (4 bytes). + Removing app_tp_st_touch.o(.revsh_text), (4 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_F3), (26 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_FF), (32 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset), (196 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event), (156 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en), (16 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter), (108 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex), (14 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (10 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd), (140 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (108 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_release_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (16 bytes). + Removing app_tp_for_custom_s8.o(.data), (16 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_scld_filter), (100 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex), (468 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate), (560 bytes). + Removing hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler), (476 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_set_prefetch), (24 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +580 unused section(s) (total 26602 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 idiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE + ../mathlib/ceil.c 0x00000000 Number 0 ceil.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE + ..\..\..\src\common\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\..\..\src\common\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\dcs_packet_fifo.c 0x00000000 Number 0 dcs_packet_fifo.o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\internal\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\..\src\app\demo\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\..\src\app\demo\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\..\src\app\demo\app_tp_st_touch.c 0x00000000 Number 0 app_tp_st_touch.o ABSOLUTE + ..\..\src\app\demo\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\..\src\app\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\..\src\board\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\..\src\board\startup\startup_ARMCM0.s 0x00000000 Number 0 startup_armcm0.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\hal\\internal\\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\internal\\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\\..\\src\\app\\demo\\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_st_touch.c 0x00000000 Number 0 app_tp_st_touch.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\\..\\src\\app\\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\\..\\src\\board\\board.c 0x00000000 Number 0 board.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + RESET 0x00010000 Section 192 startup_armcm0.o(RESET) + .ARM.Collect$$$$00000000 0x000100c0 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x000100c0 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x000100c4 Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x000100c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x000100c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x000100c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x000100d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x000100d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x000100d0 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x000100d0 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x000100d4 Section 120 startup_armcm0.o(.text) + .text 0x0001014c Section 0 uidiv.o(.text) + .text 0x00010178 Section 0 idiv.o(.text) + .text 0x000101a0 Section 0 memcpya.o(.text) + .text 0x000101c4 Section 0 memseta.o(.text) + .text 0x000101e8 Section 0 fadd.o(.text) + .text 0x0001029a Section 0 fmul.o(.text) + .text 0x00010314 Section 0 fdiv.o(.text) + .text 0x00010390 Section 0 fscalb.o(.text) + .text 0x000103a8 Section 0 dadd.o(.text) + .text 0x0001050c Section 0 dmul.o(.text) + .text 0x000105dc Section 0 ddiv.o(.text) + .text 0x000106cc Section 0 fflti.o(.text) + .text 0x000106e2 Section 0 ffltui.o(.text) + .text 0x000106f0 Section 0 dfltui.o(.text) + .text 0x0001070c Section 0 ffixi.o(.text) + .text 0x0001073e Section 0 ffixui.o(.text) + .text 0x00010768 Section 0 dfixi.o(.text) + .text 0x000107b0 Section 0 dfixui.o(.text) + .text 0x000107ec Section 0 f2d.o(.text) + .text 0x00010814 Section 40 cdcmple.o(.text) + .text 0x0001083c Section 20 cfrcmple.o(.text) + .text 0x00010850 Section 0 uldiv.o(.text) + .text 0x000108b0 Section 0 llshl.o(.text) + .text 0x000108d0 Section 0 llushr.o(.text) + .text 0x000108f2 Section 0 llsshr.o(.text) + .text 0x00010918 Section 0 fepilogue.o(.text) + .text 0x00010918 Section 0 iusefp.o(.text) + .text 0x0001099a Section 0 depilogue.o(.text) + .text 0x00010a58 Section 0 dsqrt.o(.text) + .text 0x00010afc Section 0 dfixul.o(.text) + .text 0x00010b3c Section 40 cdrcmple.o(.text) + .text 0x00010b64 Section 36 init.o(.text) + .text 0x00010b88 Section 0 __dczerorl2.o(.text) + i.ADC_IRQn_Handler 0x00010be0 Section 0 irq_redirect .o(i.ADC_IRQn_Handler) + i.AP_NRESET_IRQn_Handler 0x00010bf8 Section 0 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + i.CRC16_2 0x00010c10 Section 0 app_tp_st_touch.o(i.CRC16_2) + i.DMA_IRQn_Handler 0x00010c50 Section 0 irq_redirect .o(i.DMA_IRQn_Handler) + i.EXTI_INT0_IRQn_Handler 0x00010c64 Section 0 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + i.EXTI_INT1_IRQn_Handler 0x00010c80 Section 0 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + i.EXTI_INT2_IRQn_Handler 0x00010c9c Section 0 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + i.EXTI_INT3_IRQn_Handler 0x00010cb8 Section 0 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + i.EXTI_INT4_IRQn_Handler 0x00010cd4 Section 0 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + i.EXTI_INT5_IRQn_Handler 0x00010cf0 Section 0 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + i.EXTI_INT6_IRQn_Handler 0x00010d0c Section 0 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + i.EXTI_INT7_IRQn_Handler 0x00010d28 Section 0 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + i.EncryptCheckEx 0x00010d44 Section 0 app_tp_for_custom_s8.o(i.EncryptCheckEx) + i.FLSCTRL_IRQn_Handler 0x00010d68 Section 0 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + i.Gpio_swire_output 0x00010d7c Section 0 ap_demo.o(i.Gpio_swire_output) + i.HardFault_Handler 0x00010dcc Section 0 irq_redirect .o(i.HardFault_Handler) + i.I2C0_IRQn_Handler 0x00010de0 Section 0 irq_redirect .o(i.I2C0_IRQn_Handler) + i.I2C1_IRQn_Handler 0x00010df8 Section 0 irq_redirect .o(i.I2C1_IRQn_Handler) + i.LCDC_IRQn_Handler 0x00010e10 Section 0 irq_redirect .o(i.LCDC_IRQn_Handler) + i.LOG_printf 0x00010e28 Section 0 tau_log.o(i.LOG_printf) + i.MEMC_IRQn_Handler 0x00010e50 Section 0 irq_redirect .o(i.MEMC_IRQn_Handler) + i.MIPI_RX_IRQn_Handler 0x00010e68 Section 0 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + i.MIPI_TX_IRQn_Handler 0x00010e80 Section 0 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + i.PWMDET_IRQn_Handler 0x00010e98 Section 0 irq_redirect .o(i.PWMDET_IRQn_Handler) + i.S20_Start_init 0x00010eb4 Section 0 app_tp_transfer.o(i.S20_Start_init) + .ARM.__at_0x11000 0x00011000 Section 20 drv_common.o(.ARM.__at_0x11000) + i.UART_DisableDma 0x00011014 Section 0 drv_uart.o(i.UART_DisableDma) + i.__scatterload_null 0x00011016 Section 2 handlers.o(i.__scatterload_null) + .ARM.__at_0x11018 0x00011018 Section 4 drv_common.o(.ARM.__at_0x11018) + i.SPIM_IRQn_Handler 0x0001101c Section 0 irq_redirect .o(i.SPIM_IRQn_Handler) + i.SPIS_IRQn_Handler 0x00011038 Section 0 irq_redirect .o(i.SPIS_IRQn_Handler) + i.SWIRE_IRQn_Handler 0x00011054 Section 0 irq_redirect .o(i.SWIRE_IRQn_Handler) + i.SysTick_Handler 0x00011070 Section 0 irq_redirect .o(i.SysTick_Handler) + i.TIMER0_IRQn_Handler 0x00011088 Section 0 irq_redirect .o(i.TIMER0_IRQn_Handler) + i.TIMER1_IRQn_Handler 0x000110a0 Section 0 irq_redirect .o(i.TIMER1_IRQn_Handler) + i.TIMER2_IRQn_Handler 0x000110b8 Section 0 irq_redirect .o(i.TIMER2_IRQn_Handler) + i.TIMER3_IRQn_Handler 0x000110d0 Section 0 irq_redirect .o(i.TIMER3_IRQn_Handler) + i.UART0_IRQ_Handle 0x000110e8 Section 0 drv_uart.o(i.UART0_IRQ_Handle) + i.UART_GetInstance 0x00011104 Section 0 drv_uart.o(i.UART_GetInstance) + i.UART_IRQn_Handler 0x00011108 Section 0 irq_redirect .o(i.UART_IRQn_Handler) + i.UART_ResetRxFIFO 0x00011120 Section 0 drv_uart.o(i.UART_ResetRxFIFO) + i.UART_SetBaudRate 0x00011144 Section 0 drv_uart.o(i.UART_SetBaudRate) + i.UART_SwitchSCLK 0x0001118c Section 0 drv_uart.o(i.UART_SwitchSCLK) + i.UART_TransferHandleIRQ 0x000111a6 Section 0 drv_uart.o(i.UART_TransferHandleIRQ) + i.UART_WriteBlocking 0x000112da Section 0 drv_uart.o(i.UART_WriteBlocking) + i.UART_init 0x000112f4 Section 0 drv_uart.o(i.UART_init) + i.VIDC_IRQn_Handler 0x000113b0 Section 0 irq_redirect .o(i.VIDC_IRQn_Handler) + i.VPRE_IRQn_Handler 0x000113c8 Section 0 irq_redirect .o(i.VPRE_IRQn_Handler) + i.WDG_IRQn_Handler 0x000113e0 Section 0 irq_redirect .o(i.WDG_IRQn_Handler) + i.__0printf 0x000113f8 Section 0 printfa.o(i.__0printf) + i.__0vsprintf 0x00011418 Section 0 printfa.o(i.__0vsprintf) + i.__ARM_clz 0x0001143c Section 0 depilogue.o(i.__ARM_clz) + i.__ARM_common_switch8 0x0001146a Section 0 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + i.__NVIC_ClearPendingIRQ 0x00011484 Section 0 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x00011485 Thumb Code 18 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_ClearPendingIRQ 0x0001149c Section 0 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x0001149d Thumb Code 18 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_DisableIRQ 0x000114b4 Section 0 drv_rxbr.o(i.__NVIC_DisableIRQ) + __NVIC_DisableIRQ 0x000114b5 Thumb Code 26 drv_rxbr.o(i.__NVIC_DisableIRQ) + i.__NVIC_EnableIRQ 0x000114d4 Section 0 drv_rxbr.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x000114d5 Thumb Code 18 drv_rxbr.o(i.__NVIC_EnableIRQ) + i.__NVIC_SetPriority 0x000114ec Section 0 hal_spi_slave.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x000114ed Thumb Code 60 hal_spi_slave.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x00011530 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_zeroinit 0x0001153e Section 14 handlers.o(i.__scatterload_zeroinit) + i.__set_errno 0x0001154c Section 0 errno.o(i.__set_errno) + i._fp_digits 0x00011558 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x00011559 Thumb Code 344 printfa.o(i._fp_digits) + i._printf_core 0x000116cc Section 0 printfa.o(i._printf_core) + _printf_core 0x000116cd Thumb Code 1754 printfa.o(i._printf_core) + i._printf_post_padding 0x00011db8 Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x00011db9 Thumb Code 32 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x00011dd8 Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x00011dd9 Thumb Code 44 printfa.o(i._printf_pre_padding) + i._sputc 0x00011e04 Section 0 printfa.o(i._sputc) + _sputc 0x00011e05 Thumb Code 10 printfa.o(i._sputc) + i.ap_dcs_read 0x00011e10 Section 0 ap_demo.o(i.ap_dcs_read) + ap_dcs_read 0x00011e11 Thumb Code 402 ap_demo.o(i.ap_dcs_read) + i.ap_demo 0x00011fdc Section 0 ap_demo.o(i.ap_demo) + i.ap_get_reg_53 0x000122a4 Section 0 ap_demo.o(i.ap_get_reg_53) + ap_get_reg_53 0x000122a5 Thumb Code 34 ap_demo.o(i.ap_get_reg_53) + i.ap_get_reg_7A 0x000122d0 Section 0 ap_demo.o(i.ap_get_reg_7A) + ap_get_reg_7A 0x000122d1 Thumb Code 84 ap_demo.o(i.ap_get_reg_7A) + i.ap_get_reg_df 0x00012324 Section 0 ap_demo.o(i.ap_get_reg_df) + ap_get_reg_df 0x00012325 Thumb Code 146 ap_demo.o(i.ap_get_reg_df) + i.ap_get_tp_calibration_status_01 0x000123bc Section 0 app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) + i.ap_reset_cb 0x000123dc Section 0 ap_demo.o(i.ap_reset_cb) + ap_reset_cb 0x000123dd Thumb Code 40 ap_demo.o(i.ap_reset_cb) + i.ap_set_backlight_51 0x00012420 Section 0 ap_demo.o(i.ap_set_backlight_51) + ap_set_backlight_51 0x00012421 Thumb Code 62 ap_demo.o(i.ap_set_backlight_51) + i.ap_set_display_off 0x00012464 Section 0 ap_demo.o(i.ap_set_display_off) + ap_set_display_off 0x00012465 Thumb Code 30 ap_demo.o(i.ap_set_display_off) + i.ap_set_display_on 0x000124ac Section 0 ap_demo.o(i.ap_set_display_on) + ap_set_display_on 0x000124ad Thumb Code 18 ap_demo.o(i.ap_set_display_on) + i.ap_set_enter_sleep_mode 0x000124e4 Section 0 ap_demo.o(i.ap_set_enter_sleep_mode) + ap_set_enter_sleep_mode 0x000124e5 Thumb Code 68 ap_demo.o(i.ap_set_enter_sleep_mode) + i.ap_set_exit_sleep_mode 0x0001255c Section 0 ap_demo.o(i.ap_set_exit_sleep_mode) + ap_set_exit_sleep_mode 0x0001255d Thumb Code 22 ap_demo.o(i.ap_set_exit_sleep_mode) + i.ap_set_tp_calibration_04 0x000125a4 Section 0 app_tp_st_touch.o(i.ap_set_tp_calibration_04) + i.ap_tp_st_touch_calibration 0x0001263c Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_calibration) + i.ap_tp_st_touch_get_calibration_success_mark 0x000126ec Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) + i.ap_tp_st_touch_scan_point_init 0x00012794 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) + i.ap_tp_st_touch_scan_point_record_event_exec 0x000127b0 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) + i.ap_tp_st_touch_simulate_finger_release_event 0x00012800 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) + i.ap_tp_st_touch_software_reset 0x00012834 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) + i.app_ADC_IRQn_Handler 0x000128e0 Section 0 drv_rxbr.o(i.app_ADC_IRQn_Handler) + i.app_AP_NRESET_IRQn_Handler 0x000128fc Section 0 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + i.app_EXTI_INT0_IRQn_Handler 0x00012920 Section 0 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + i.app_EXTI_INT1_IRQn_Handler 0x0001293c Section 0 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + i.app_EXTI_INT2_IRQn_Handler 0x00012958 Section 0 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + i.app_EXTI_INT3_IRQn_Handler 0x00012974 Section 0 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + i.app_EXTI_INT4_IRQn_Handler 0x00012990 Section 0 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + i.app_EXTI_INT5_IRQn_Handler 0x000129ac Section 0 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + i.app_EXTI_INT6_IRQn_Handler 0x000129c8 Section 0 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + i.app_EXTI_INT7_IRQn_Handler 0x000129e4 Section 0 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + i.app_HardFault_Handler 0x00012a00 Section 0 drv_common.o(i.app_HardFault_Handler) + i.app_I2C0_IRQn_Handler 0x00012a48 Section 0 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + i.app_I2C1_IRQn_Handler 0x00012a60 Section 0 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + i.app_LCDC_IRQn_Handler 0x00012a70 Section 0 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + i.app_MEMC_IRQn_Handler 0x00012c14 Section 0 drv_memc.o(i.app_MEMC_IRQn_Handler) + i.app_MIPI_RX_IRQn_Handler 0x00012c9c Section 0 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + i.app_MIPI_TX_IRQn_Handler 0x00012f34 Section 0 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + i.app_PWMDET_IRQn_Handler 0x00012fd4 Section 0 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + i.app_SPIM_IRQn_Handler 0x0001301c Section 0 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + i.app_SPIS_IRQn_Handler 0x0001304c Section 0 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + i.app_SWIRE_IRQn_Handler 0x0001324c Section 0 drv_swire.o(i.app_SWIRE_IRQn_Handler) + i.app_SysTick_Handler 0x0001326c Section 0 drv_common.o(i.app_SysTick_Handler) + i.app_TIMER0_IRQn_Handler 0x00013284 Section 0 drv_timer.o(i.app_TIMER0_IRQn_Handler) + i.app_TIMER1_IRQn_Handler 0x0001328e Section 0 drv_timer.o(i.app_TIMER1_IRQn_Handler) + i.app_TIMER2_IRQn_Handler 0x00013298 Section 0 drv_timer.o(i.app_TIMER2_IRQn_Handler) + i.app_TIMER3_IRQn_Handler 0x000132a2 Section 0 drv_timer.o(i.app_TIMER3_IRQn_Handler) + i.app_UART_IRQn_Handler 0x000132ac Section 0 drv_uart.o(i.app_UART_IRQn_Handler) + i.app_VIDC_IRQn_Handler 0x000132b4 Section 0 drv_vidc.o(i.app_VIDC_IRQn_Handler) + i.app_VPRE_IRQn_Handler 0x000132d0 Section 0 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + i.app_WDG_IRQn_Handler 0x000132ec Section 0 drv_wdg.o(i.app_WDG_IRQn_Handler) + i.app_dma_irq_handler 0x00013324 Section 0 drv_dma.o(i.app_dma_irq_handler) + i.app_fls_ctrl_Handler 0x00013334 Section 0 norflash.o(i.app_fls_ctrl_Handler) + i.app_tp_I2C_init 0x00013364 Section 0 app_tp_transfer.o(i.app_tp_I2C_init) + i.app_tp_calibration_exec 0x00013388 Section 0 app_tp_st_touch.o(i.app_tp_calibration_exec) + i.app_tp_i2cs_callback 0x00013430 Section 0 app_tp_transfer.o(i.app_tp_i2cs_callback) + app_tp_i2cs_callback 0x00013431 Thumb Code 136 app_tp_transfer.o(i.app_tp_i2cs_callback) + i.app_tp_init 0x000134cc Section 0 app_tp_transfer.o(i.app_tp_init) + i.app_tp_m_read 0x00013510 Section 0 app_tp_transfer.o(i.app_tp_m_read) + i.app_tp_m_write 0x00013530 Section 0 app_tp_transfer.o(i.app_tp_m_write) + i.app_tp_phone_analysis_data 0x00013538 Section 0 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + i.app_tp_s_read 0x000139f8 Section 0 app_tp_transfer.o(i.app_tp_s_read) + i.app_tp_s_write 0x00013a00 Section 0 app_tp_transfer.o(i.app_tp_s_write) + i.app_tp_screen_analysis_int 0x00013a08 Section 0 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + i.app_tp_screen_init 0x00013e8c Section 0 app_tp_transfer.o(i.app_tp_screen_init) + i.app_tp_screen_int_callback 0x00013ebc Section 0 app_tp_transfer.o(i.app_tp_screen_int_callback) + app_tp_screen_int_callback 0x00013ebd Thumb Code 8 app_tp_transfer.o(i.app_tp_screen_int_callback) + i.app_tp_transfer_screen_const 0x00013ec8 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_const) + app_tp_transfer_screen_const 0x00013ec9 Thumb Code 50 app_tp_transfer.o(i.app_tp_transfer_screen_const) + i.app_tp_transfer_screen_int 0x00013f08 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_int) + i.app_tp_transfer_screen_start 0x00014014 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_start) + i.board_Init 0x00014028 Section 0 board.o(i.board_Init) + i.calc_framebuffer_setting 0x0001404c Section 0 hal_internal_vsync.o(i.calc_framebuffer_setting) + i.ceil 0x0001453c Section 0 ceil.o(i.ceil) + i.check_mipi_rx_tx_video_info 0x00014604 Section 0 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + check_mipi_rx_tx_video_info 0x00014605 Thumb Code 44 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + i.check_pkt_buf_rev 0x00014630 Section 0 hal_internal_vsync.o(i.check_pkt_buf_rev) + check_pkt_buf_rev 0x00014631 Thumb Code 90 hal_internal_vsync.o(i.check_pkt_buf_rev) + i.dcs_packet_fifo_alloc 0x000146c4 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + i.dcs_packet_fifo_init 0x0001471c Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + i.dcs_packet_free_fifo_header 0x00014734 Section 0 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + i.dcs_packet_get_fifo_header 0x00014778 Section 0 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + i.dcs_sw_filter 0x0001479c Section 0 hal_internal_vsync.o(i.dcs_sw_filter) + dcs_sw_filter 0x0001479d Thumb Code 24 hal_internal_vsync.o(i.dcs_sw_filter) + i.delayMs 0x000147b8 Section 0 tau_delay.o(i.delayMs) + i.delayUs 0x000147d0 Section 0 tau_delay.o(i.delayUs) + i.drv_ap_rst_trig_edge_detect 0x000147f4 Section 0 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + i.drv_chip_info_get_info 0x0001482c Section 0 drv_chip_info.o(i.drv_chip_info_get_info) + i.drv_chip_info_init 0x00014838 Section 0 drv_chip_info.o(i.drv_chip_info_init) + i.drv_chip_rx_info_check 0x00014878 Section 0 drv_chip_info.o(i.drv_chip_rx_info_check) + i.drv_chip_rx_init_done 0x00014928 Section 0 drv_chip_info.o(i.drv_chip_rx_init_done) + i.drv_common_enable_systick 0x0001493c Section 0 drv_common.o(i.drv_common_enable_systick) + i.drv_common_system_init 0x00014994 Section 0 drv_common.o(i.drv_common_system_init) + i.drv_crgu_config_reset_modules 0x0001499c Section 0 drv_crgu.o(i.drv_crgu_config_reset_modules) + i.drv_crgu_set_ahb_pre_div 0x000149ac Section 0 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + i.drv_crgu_set_ahb_src 0x000149c0 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_src) + i.drv_crgu_set_clock 0x000149d4 Section 0 drv_crgu.o(i.drv_crgu_set_clock) + i.drv_crgu_set_dpi_mux_src 0x000149f4 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + i.drv_crgu_set_dpi_pre_div 0x00014a08 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + i.drv_crgu_set_dpi_pre_src 0x00014a20 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + i.drv_crgu_set_dsc_core_div 0x00014a34 Section 0 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + i.drv_crgu_set_dsco_src 0x00014a48 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src) + i.drv_crgu_set_dsco_src_div 0x00014a5c Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + i.drv_crgu_set_fb_div 0x00014a70 Section 0 drv_crgu.o(i.drv_crgu_set_fb_div) + i.drv_crgu_set_fb_src 0x00014a84 Section 0 drv_crgu.o(i.drv_crgu_set_fb_src) + i.drv_crgu_set_lcdc_div 0x00014a98 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_div) + i.drv_crgu_set_lcdc_src 0x00014aac Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_src) + i.drv_crgu_set_mipi_cfg_src 0x00014ac0 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + i.drv_crgu_set_mipi_ref_src 0x00014ad4 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + i.drv_crgu_set_reset 0x00014aec Section 0 drv_crgu.o(i.drv_crgu_set_reset) + i.drv_crgu_set_rxbr_div 0x00014b04 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_div) + i.drv_crgu_set_rxbr_src 0x00014b18 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_src) + i.drv_crgu_set_vidc_src 0x00014b2c Section 0 drv_crgu.o(i.drv_crgu_set_vidc_src) + i.drv_dma_clear_flag 0x00014b40 Section 0 drv_dma.o(i.drv_dma_clear_flag) + i.drv_dma_create_handle 0x00014b58 Section 0 drv_dma.o(i.drv_dma_create_handle) + i.drv_dma_disenable_channel 0x00014b74 Section 0 drv_dma.o(i.drv_dma_disenable_channel) + i.drv_dma_enable_channel 0x00014b84 Section 0 drv_dma.o(i.drv_dma_enable_channel) + i.drv_dma_enable_channel_interrupts 0x00014b94 Section 0 drv_dma.o(i.drv_dma_enable_channel_interrupts) + i.drv_dma_get_channel_flag 0x00014bb8 Section 0 drv_dma.o(i.drv_dma_get_channel_flag) + i.drv_dma_irq_handler 0x00014bc4 Section 0 drv_dma.o(i.drv_dma_irq_handler) + i.drv_dma_prepar_transfer 0x00014c54 Section 0 drv_dma.o(i.drv_dma_prepar_transfer) + i.drv_dma_set_burst 0x00014c66 Section 0 drv_dma.o(i.drv_dma_set_burst) + i.drv_dma_set_callback 0x00014c80 Section 0 drv_dma.o(i.drv_dma_set_callback) + i.drv_dma_set_transfer 0x00014c88 Section 0 drv_dma.o(i.drv_dma_set_transfer) + i.drv_dsc_dec_convert_pps_rc_parameter 0x00014ccc Section 0 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + i.drv_dsc_dec_disable 0x00014d02 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_disable) + i.drv_dsc_dec_enable 0x00014d10 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_enable) + i.drv_dsc_dec_get_nslc 0x00014d84 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + i.drv_dsc_dec_set_u8_pps 0x00014d8e Section 0 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + i.drv_dsi_rx_calc_ipi_tx_delay 0x00014db8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + i.drv_dsi_rx_enable_irq 0x00014ebc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + i.drv_dsi_rx_get_color_bpp 0x00014efc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + drv_dsi_rx_get_color_bpp 0x00014efd Thumb Code 62 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + i.drv_dsi_rx_get_color_pcc 0x00014f4c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + drv_dsi_rx_get_color_pcc 0x00014f4d Thumb Code 24 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + i.drv_dsi_rx_get_compression_en 0x00014f68 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + i.drv_dsi_rx_get_max_ret_size 0x00014f70 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + i.drv_dsi_rx_power_up 0x00014f76 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + i.drv_dsi_rx_set_ctrl_cfg 0x00014f84 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + i.drv_dsi_rx_set_ddi_cfg 0x00014fa4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + i.drv_dsi_rx_set_inten 0x00014fb4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + i.drv_dsi_rx_set_ipi_cfg 0x00014fb8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + i.drv_dsi_rx_set_lane_swap 0x00014fc8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + i.drv_dsi_rx_set_resp_cnt 0x0001500e Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + i.drv_dsi_rx_set_up_phy 0x00015034 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + i.drv_dsi_rx_shut_down 0x00015138 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + i.drv_dsi_tx_command_header 0x00015146 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + i.drv_dsi_tx_command_mode_cfg 0x0001515a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + i.drv_dsi_tx_command_put_payload 0x000151c6 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + i.drv_dsi_tx_config_eotp 0x000151ca Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + i.drv_dsi_tx_config_int 0x000151e2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + i.drv_dsi_tx_dpi_lpcmd_time 0x000151ea Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + i.drv_dsi_tx_dpi_mode 0x000151f2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + i.drv_dsi_tx_dpi_polarity 0x000151fc Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + i.drv_dsi_tx_edpi_cmd_size 0x00015220 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + i.drv_dsi_tx_get_cmd_status 0x00015224 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + i.drv_dsi_tx_mode 0x00015228 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_mode) + i.drv_dsi_tx_phy_clock_lane_auto_lp 0x0001522c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + i.drv_dsi_tx_phy_clock_lane_req_hs 0x00015244 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + i.drv_dsi_tx_phy_lane_mode 0x0001525e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + i.drv_dsi_tx_phy_status_ready 0x0001526a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + i.drv_dsi_tx_phy_status_stopstate 0x000152ce Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + i.drv_dsi_tx_phy_test_setup 0x0001530c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + i.drv_dsi_tx_phy_time_cfg 0x00015440 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + i.drv_dsi_tx_powerup 0x0001545e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + i.drv_dsi_tx_response_mode 0x00015466 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + i.drv_dsi_tx_set_bta_ack 0x00015482 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + i.drv_dsi_tx_set_esc_div 0x0001549a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + i.drv_dsi_tx_set_int 0x000154a8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + i.drv_dsi_tx_set_time_out_div 0x000154e8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + i.drv_dsi_tx_set_video_chunk 0x000154f8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + i.drv_dsi_tx_set_video_timing 0x00015500 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + i.drv_dsi_tx_shutdown 0x00015522 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + i.drv_dsi_tx_timeout_cfg 0x0001552a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + i.drv_dsi_tx_video_mode_cfg 0x00015550 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + i.drv_dsi_tx_video_mode_disable_hact_cmd 0x000155fa Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + i.drv_dsi_tx_video_mode_set_lp_cmd 0x00015610 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + i.drv_efuse_enter_inactive 0x00015628 Section 0 drv_efuse.o(i.drv_efuse_enter_inactive) + i.drv_efuse_int_enable 0x00015656 Section 0 drv_efuse.o(i.drv_efuse_int_enable) + i.drv_efuse_read 0x00015662 Section 0 drv_efuse.o(i.drv_efuse_read) + i.drv_efuse_read_req 0x00015694 Section 0 drv_efuse.o(i.drv_efuse_read_req) + i.drv_gpio_get_input_data 0x000156ac Section 0 drv_gpio.o(i.drv_gpio_get_input_data) + i.drv_gpio_register_ap_reset_callback 0x000156c4 Section 0 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + i.drv_gpio_register_callback 0x000156d0 Section 0 drv_gpio.o(i.drv_gpio_register_callback) + i.drv_gpio_set_int 0x000156e4 Section 0 drv_gpio.o(i.drv_gpio_set_int) + i.drv_gpio_set_ioe 0x00015734 Section 0 drv_gpio.o(i.drv_gpio_set_ioe) + i.drv_gpio_set_mode0 0x00015754 Section 0 drv_gpio.o(i.drv_gpio_set_mode0) + i.drv_gpio_set_mode1 0x00015764 Section 0 drv_gpio.o(i.drv_gpio_set_mode1) + i.drv_gpio_set_mode2 0x00015774 Section 0 drv_gpio.o(i.drv_gpio_set_mode2) + i.drv_gpio_set_mode3 0x00015784 Section 0 drv_gpio.o(i.drv_gpio_set_mode3) + i.drv_gpio_set_output_data 0x00015794 Section 0 hal_gpio.o(i.drv_gpio_set_output_data) + drv_gpio_set_output_data 0x00015795 Thumb Code 26 hal_gpio.o(i.drv_gpio_set_output_data) + i.drv_gpio_set_pull_state 0x000157b4 Section 0 drv_gpio.o(i.drv_gpio_set_pull_state) + i.drv_i2c0_set_callback 0x000158e4 Section 0 drv_i2c_slave.o(i.drv_i2c0_set_callback) + i.drv_i2c1_set_callback 0x000158f0 Section 0 drv_i2c_master.o(i.drv_i2c1_set_callback) + i.drv_i2c_dma_callback 0x000158fc Section 0 drv_i2c_dma.o(i.drv_i2c_dma_callback) + drv_i2c_dma_callback 0x000158fd Thumb Code 40 drv_i2c_dma.o(i.drv_i2c_dma_callback) + i.drv_i2c_dma_init 0x00015930 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_init) + i.drv_i2c_enable_rx_dma 0x000159dc Section 0 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + i.drv_i2c_enable_tx_dma 0x000159f6 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + i.drv_i2c_m_clear_it_pending_bit 0x00015a10 Section 0 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + i.drv_i2c_m_enable 0x00015a70 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable) + i.drv_i2c_m_enable_intr 0x00015a80 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + i.drv_i2c_master_init 0x00015ab8 Section 0 drv_i2c_master.o(i.drv_i2c_master_init) + i.drv_i2c_master_read_dma 0x00015b44 Section 0 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + i.drv_i2c_master_write_dma 0x00015ba0 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + i.drv_i2c_master_write_read_cmd 0x00015bdc Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + drv_i2c_master_write_read_cmd 0x00015bdd Thumb Code 62 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + i.drv_i2c_s_clear_it_pending_bit 0x00015c1a Section 0 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + i.drv_i2c_s_config_intr 0x00015c5c Section 0 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + i.drv_i2c_s_enable 0x00015c60 Section 0 drv_i2c_slave.o(i.drv_i2c_s_enable) + i.drv_i2c_s_get_fifo_status 0x00015c68 Section 0 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + i.drv_i2c_s_set_intr 0x00015c7c Section 0 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + i.drv_i2c_s_write_data 0x00015ccc Section 0 drv_i2c_slave.o(i.drv_i2c_s_write_data) + i.drv_i2c_set_dma_irq_callback 0x00015ce8 Section 0 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + i.drv_i2c_slave_init 0x00015d40 Section 0 drv_i2c_slave.o(i.drv_i2c_slave_init) + i.drv_i2c_slave_write_dma 0x00015d74 Section 0 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + i.drv_lcdc_config_bypass 0x00015d8c Section 0 drv_lcdc.o(i.drv_lcdc_config_bypass) + i.drv_lcdc_config_ccm 0x00015da4 Section 0 drv_lcdc.o(i.drv_lcdc_config_ccm) + i.drv_lcdc_config_disp_mode 0x00015dd4 Section 0 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + i.drv_lcdc_config_dpi_polarity 0x00015dea Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + i.drv_lcdc_config_dpi_timing 0x00015e0e Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + i.drv_lcdc_config_edpi_mode 0x00015e34 Section 0 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + i.drv_lcdc_config_endianness 0x00015e4a Section 0 drv_lcdc.o(i.drv_lcdc_config_endianness) + i.drv_lcdc_config_input_size 0x00015e60 Section 0 drv_lcdc.o(i.drv_lcdc_config_input_size) + i.drv_lcdc_config_int 0x00015e6c Section 0 drv_lcdc.o(i.drv_lcdc_config_int) + i.drv_lcdc_config_int_single 0x00015e8a Section 0 drv_lcdc.o(i.drv_lcdc_config_int_single) + i.drv_lcdc_config_overwrite 0x00015eac Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite) + i.drv_lcdc_config_overwrite_rgb 0x00015ece Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + i.drv_lcdc_config_partial_display_area 0x00015eda Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + i.drv_lcdc_config_partial_display_enable 0x00015ef4 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + i.drv_lcdc_config_scale_up_coef 0x00015f16 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + i.drv_lcdc_config_scale_up_step 0x00015f30 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + i.drv_lcdc_config_src_parameter 0x00015f3c Section 0 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + i.drv_lcdc_config_thresh 0x00015f88 Section 0 drv_lcdc.o(i.drv_lcdc_config_thresh) + i.drv_lcdc_ctrl_flow 0x00015f8e Section 0 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + i.drv_lcdc_enable_shadow_reg 0x00015fa0 Section 0 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + i.drv_lcdc_set_int 0x00015fc0 Section 0 drv_lcdc.o(i.drv_lcdc_set_int) + i.drv_lcdc_set_video_hw_mode 0x00016000 Section 0 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + i.drv_lcdc_start 0x00016014 Section 0 drv_lcdc.o(i.drv_lcdc_start) + i.drv_memc_clear_status 0x00016034 Section 0 drv_memc.o(i.drv_memc_clear_status) + i.drv_memc_enable_irq 0x00016040 Section 0 drv_memc.o(i.drv_memc_enable_irq) + i.drv_memc_gen_a_tear_signal 0x00016080 Section 0 drv_memc.o(i.drv_memc_gen_a_tear_signal) + i.drv_memc_get_status 0x0001608c Section 0 drv_memc.o(i.drv_memc_get_status) + i.drv_memc_rate_transfer_sel 0x0001609e Section 0 drv_memc.o(i.drv_memc_rate_transfer_sel) + i.drv_memc_sel_vsync 0x000160ae Section 0 drv_memc.o(i.drv_memc_sel_vsync) + i.drv_memc_set_active_height 0x000160bc Section 0 drv_memc.o(i.drv_memc_set_active_height) + i.drv_memc_set_data_mode 0x000160d0 Section 0 drv_memc.o(i.drv_memc_set_data_mode) + i.drv_memc_set_double_buffer 0x000160dc Section 0 drv_memc.o(i.drv_memc_set_double_buffer) + i.drv_memc_set_double_buffer_reverse 0x000160ec Section 0 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + i.drv_memc_set_fs_en_conditions 0x000160fe Section 0 drv_memc.o(i.drv_memc_set_fs_en_conditions) + i.drv_memc_set_inten 0x0001610e Section 0 drv_memc.o(i.drv_memc_set_inten) + i.drv_memc_set_lcdc_st_conditions 0x00016124 Section 0 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + i.drv_memc_set_ltpo_mode 0x0001613c Section 0 drv_memc.o(i.drv_memc_set_ltpo_mode) + i.drv_memc_set_tear_mode 0x00016156 Section 0 drv_memc.o(i.drv_memc_set_tear_mode) + i.drv_memc_set_tear_waveform 0x00016164 Section 0 drv_memc.o(i.drv_memc_set_tear_waveform) + i.drv_memc_set_vidc_sync_cnt 0x0001618c Section 0 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + i.drv_param_init_get_ccm 0x0001619c Section 0 drv_param_init.o(i.drv_param_init_get_ccm) + i.drv_param_init_get_scld_filter_h 0x000161a4 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + i.drv_param_init_get_scld_filter_v 0x000161b8 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + i.drv_param_init_get_sclu_filter 0x000161cc Section 0 drv_param_init.o(i.drv_param_init_get_sclu_filter) + i.drv_param_init_set_ccm 0x000161d4 Section 0 drv_param_init.o(i.drv_param_init_set_ccm) + i.drv_param_p2r_filter_init 0x000161e8 Section 0 drv_param_init.o(i.drv_param_p2r_filter_init) + i.drv_phy_enable_calibration 0x0001620c Section 0 drv_phy_common.o(i.drv_phy_enable_calibration) + i.drv_phy_get_calibration 0x0001621c Section 0 drv_phy_common.o(i.drv_phy_get_calibration) + i.drv_phy_get_pll_para 0x00016258 Section 0 drv_phy_common.o(i.drv_phy_get_pll_para) + i.drv_phy_get_rate_para 0x000162b8 Section 0 drv_phy_common.o(i.drv_phy_get_rate_para) + i.drv_phy_test_clear 0x0001630c Section 0 drv_phy_common.o(i.drv_phy_test_clear) + i.drv_phy_test_lock 0x0001631c Section 0 drv_phy_common.o(i.drv_phy_test_lock) + i.drv_phy_test_write_1_byte 0x00016334 Section 0 drv_phy_common.o(i.drv_phy_test_write_1_byte) + i.drv_phy_test_write_2_byte 0x00016354 Section 0 drv_phy_common.o(i.drv_phy_test_write_2_byte) + i.drv_phy_test_write_code 0x0001637a Section 0 drv_phy_common.o(i.drv_phy_test_write_code) + i.drv_phy_test_write_data 0x00016398 Section 0 drv_phy_common.o(i.drv_phy_test_write_data) + drv_phy_test_write_data 0x00016399 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_data) + i.drv_pwr_set_cp_mode 0x000163b8 Section 0 drv_pwr.o(i.drv_pwr_set_cp_mode) + i.drv_pwr_set_pvd_mode 0x000163d8 Section 0 drv_pwr.o(i.drv_pwr_set_pvd_mode) + i.drv_pwr_set_system_clk_src 0x000163f0 Section 0 drv_pwr.o(i.drv_pwr_set_system_clk_src) + i.drv_rx_phy_test_clear 0x00016428 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + drv_rx_phy_test_clear 0x00016429 Thumb Code 12 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + i.drv_rx_phy_test_lock 0x00016434 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + drv_rx_phy_test_lock 0x00016435 Thumb Code 16 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + i.drv_rx_phy_test_write_1_byte 0x00016444 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + drv_rx_phy_test_write_1_byte 0x00016445 Thumb Code 20 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + i.drv_rx_phy_test_write_2_byte 0x00016458 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + drv_rx_phy_test_write_2_byte 0x00016459 Thumb Code 22 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + i.drv_rxbr_clear_pkt_buffer 0x0001646e Section 0 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + i.drv_rxbr_clear_status0 0x00016478 Section 0 drv_rxbr.o(i.drv_rxbr_clear_status0) + i.drv_rxbr_enable_irq 0x0001647c Section 0 drv_rxbr.o(i.drv_rxbr_enable_irq) + i.drv_rxbr_frame_drop_cfg 0x000164d8 Section 0 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + i.drv_rxbr_get_clk 0x000164ec Section 0 drv_rxbr.o(i.drv_rxbr_get_clk) + i.drv_rxbr_get_col_addr 0x00016550 Section 0 drv_rxbr.o(i.drv_rxbr_get_col_addr) + i.drv_rxbr_get_int_source 0x00016554 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + drv_rxbr_get_int_source 0x00016555 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + i.drv_rxbr_get_page_addr 0x00016566 Section 0 drv_rxbr.o(i.drv_rxbr_get_page_addr) + i.drv_rxbr_get_status0 0x0001656a Section 0 hal_internal_vsync.o(i.drv_rxbr_get_status0) + drv_rxbr_get_status0 0x0001656b Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_status0) + i.drv_rxbr_hline_rcv0_cfg 0x0001657c Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + i.drv_rxbr_hline_rcv_cfg 0x00016588 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + i.drv_rxbr_register_irq0_callback 0x00016590 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + i.drv_rxbr_register_irq1_callback 0x0001659c Section 0 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + i.drv_rxbr_set_ack_pkt_header 0x000165a8 Section 0 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + i.drv_rxbr_set_cmd_filter 0x000165bc Section 0 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + i.drv_rxbr_set_color_format 0x00016688 Section 0 drv_rxbr.o(i.drv_rxbr_set_color_format) + i.drv_rxbr_set_inten 0x0001669c Section 0 drv_rxbr.o(i.drv_rxbr_set_inten) + i.drv_rxbr_set_ltpo_drop_th 0x000166b0 Section 0 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + i.drv_rxbr_set_usr_cfg 0x000166c0 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + i.drv_rxbr_set_usr_col 0x000166e6 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_col) + i.drv_rxbr_set_usr_row 0x000166ee Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_row) + i.drv_spi_m_read_data 0x000166f8 Section 0 drv_spi_master.o(i.drv_spi_m_read_data) + i.drv_swire_enable 0x00016718 Section 0 drv_swire.o(i.drv_swire_enable) + i.drv_swire_set_int 0x00016734 Section 0 drv_swire.o(i.drv_swire_set_int) + i.drv_swire_set_power_down 0x00016788 Section 0 drv_swire.o(i.drv_swire_set_power_down) + i.drv_sys_cfg_clear_all_int 0x000167a4 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + i.drv_sys_cfg_clear_pending 0x000167b0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + i.drv_sys_cfg_sel_ap_rst_lvl_trig 0x000167d8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + i.drv_sys_cfg_sel_ap_rst_trig 0x000167f0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + i.drv_sys_cfg_sel_gpio_group 0x0001680c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + i.drv_sys_cfg_sel_int_trig 0x00016830 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + i.drv_sys_cfg_set_dma_rx_req 0x00016854 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + i.drv_sys_cfg_set_dma_tx_req 0x00016864 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + i.drv_sys_cfg_set_int 0x00016874 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + i.drv_timer_clear_status_flags 0x00016898 Section 0 drv_timer.o(i.drv_timer_clear_status_flags) + drv_timer_clear_status_flags 0x00016899 Thumb Code 26 drv_timer.o(i.drv_timer_clear_status_flags) + i.drv_timer_enable 0x000168b2 Section 0 drv_timer.o(i.drv_timer_enable) + i.drv_timer_get_instance 0x000168d4 Section 0 drv_timer.o(i.drv_timer_get_instance) + i.drv_timer_get_prescaler 0x000168e4 Section 0 drv_timer.o(i.drv_timer_get_prescaler) + i.drv_timer_handle_interrupt 0x000168f4 Section 0 drv_timer.o(i.drv_timer_handle_interrupt) + drv_timer_handle_interrupt 0x000168f5 Thumb Code 62 drv_timer.o(i.drv_timer_handle_interrupt) + i.drv_timer_register_callback 0x00016938 Section 0 drv_timer.o(i.drv_timer_register_callback) + i.drv_timer_set_compare_val 0x0001694c Section 0 drv_timer.o(i.drv_timer_set_compare_val) + i.drv_timer_set_int 0x0001695c Section 0 drv_timer.o(i.drv_timer_set_int) + i.drv_timer_set_prescaler 0x000169b0 Section 0 drv_timer.o(i.drv_timer_set_prescaler) + i.drv_timer_set_repeat 0x000169d8 Section 0 drv_timer.o(i.drv_timer_set_repeat) + i.drv_tx_phy_test_clear 0x000169e8 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + drv_tx_phy_test_clear 0x000169e9 Thumb Code 10 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + i.drv_tx_phy_test_enter 0x000169f2 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + i.drv_tx_phy_test_exit 0x00016a0e Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + i.drv_tx_phy_test_write_1_byte 0x00016a2a Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + drv_tx_phy_test_write_1_byte 0x00016a2b Thumb Code 18 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + i.drv_tx_phy_test_write_2_byte 0x00016a3c Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + drv_tx_phy_test_write_2_byte 0x00016a3d Thumb Code 20 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + i.drv_tx_phy_test_write_code 0x00016a50 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + drv_tx_phy_test_write_code 0x00016a51 Thumb Code 16 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + i.drv_vidc_clear_irq 0x00016a60 Section 0 drv_vidc.o(i.drv_vidc_clear_irq) + i.drv_vidc_enable 0x00016a68 Section 0 drv_vidc.o(i.drv_vidc_enable) + i.drv_vidc_enable_irq 0x00016a80 Section 0 drv_vidc.o(i.drv_vidc_enable_irq) + i.drv_vidc_get_irq_status 0x00016ac0 Section 0 drv_vidc.o(i.drv_vidc_get_irq_status) + i.drv_vidc_init_module_enable 0x00016ad4 Section 0 drv_vidc.o(i.drv_vidc_init_module_enable) + i.drv_vidc_register_callback 0x00016afc Section 0 drv_vidc.o(i.drv_vidc_register_callback) + i.drv_vidc_reset 0x00016b08 Section 0 drv_vidc.o(i.drv_vidc_reset) + i.drv_vidc_set_dst_parameter 0x00016b0e Section 0 drv_vidc.o(i.drv_vidc_set_dst_parameter) + i.drv_vidc_set_irqen 0x00016b4a Section 0 drv_vidc.o(i.drv_vidc_set_irqen) + i.drv_vidc_set_mirror 0x00016b5e Section 0 drv_vidc.o(i.drv_vidc_set_mirror) + i.drv_vidc_set_p2r_hcoef0 0x00016b6e Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + i.drv_vidc_set_p2r_hinitb 0x00016b76 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + i.drv_vidc_set_p2r_hinitr 0x00016b9c Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + i.drv_vidc_set_pentile_swap 0x00016bc4 Section 0 drv_vidc.o(i.drv_vidc_set_pentile_swap) + i.drv_vidc_set_pu_ctrl 0x00016bdc Section 0 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + i.drv_vidc_set_rotation 0x00016be6 Section 0 drv_vidc.o(i.drv_vidc_set_rotation) + i.drv_vidc_set_scld_hcoef0 0x00016bf6 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + i.drv_vidc_set_scld_hcoef1 0x00016c00 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + i.drv_vidc_set_scld_step 0x00016c0a Section 0 drv_vidc.o(i.drv_vidc_set_scld_step) + i.drv_vidc_set_scld_vcoef0 0x00016c1c Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + i.drv_vidc_set_scld_vcoef1 0x00016c26 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + i.drv_vidc_set_src_parameter 0x00016c30 Section 0 drv_vidc.o(i.drv_vidc_set_src_parameter) + i.drv_wdg_clear_counter 0x00016c48 Section 0 drv_wdg.o(i.drv_wdg_clear_counter) + i.drv_wdg_clear_edge_flag 0x00016c58 Section 0 drv_wdg.o(i.drv_wdg_clear_edge_flag) + drv_wdg_clear_edge_flag 0x00016c59 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_edge_flag) + i.drv_wdg_read_edge_flag 0x00016c68 Section 0 drv_wdg.o(i.drv_wdg_read_edge_flag) + drv_wdg_read_edge_flag 0x00016c69 Thumb Code 10 drv_wdg.o(i.drv_wdg_read_edge_flag) + i.drv_wdg_set_int 0x00016c78 Section 0 drv_wdg.o(i.drv_wdg_set_int) + i.fls_clr_interrupt_flag 0x00016cb8 Section 0 drv_fls.o(i.fls_clr_interrupt_flag) + i.fputc 0x00016cc2 Section 0 tau_log.o(i.fputc) + i.hal_dsi_rx_ctrl_create_handle 0x00016cd8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + i.hal_dsi_rx_ctrl_deinit 0x00016d0c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + i.hal_dsi_rx_ctrl_dsc_async_handler 0x00016da8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + i.hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016e2c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + i.hal_dsi_rx_ctrl_get_max_ret_size 0x00016e54 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + i.hal_dsi_rx_ctrl_init 0x00016e7c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + i.hal_dsi_rx_ctrl_init_clk 0x00016edc Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + hal_dsi_rx_ctrl_init_clk 0x00016edd Thumb Code 332 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + i.hal_dsi_rx_ctrl_init_dsi_rx 0x00017080 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + hal_dsi_rx_ctrl_init_dsi_rx 0x00017081 Thumb Code 184 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + i.hal_dsi_rx_ctrl_init_memc 0x00017158 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + hal_dsi_rx_ctrl_init_memc 0x00017159 Thumb Code 334 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + i.hal_dsi_rx_ctrl_init_rxbr 0x000172b0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + hal_dsi_rx_ctrl_init_rxbr 0x000172b1 Thumb Code 312 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + i.hal_dsi_rx_ctrl_init_vidc 0x000173f8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + hal_dsi_rx_ctrl_init_vidc 0x000173f9 Thumb Code 544 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + i.hal_dsi_rx_ctrl_send_ack_cmd 0x00017624 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + i.hal_dsi_rx_ctrl_set_cus_sync_line 0x00017714 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + i.hal_dsi_rx_ctrl_set_hw_tear_mode 0x00017748 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + i.hal_dsi_rx_ctrl_set_ipi_cfg 0x0001777c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + hal_dsi_rx_ctrl_set_ipi_cfg 0x0001777d Thumb Code 50 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + i.hal_dsi_rx_ctrl_set_rxbr_clk 0x000177b4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + hal_dsi_rx_ctrl_set_rxbr_clk 0x000177b5 Thumb Code 114 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + i.hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017828 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + i.hal_dsi_rx_ctrl_start 0x0001785c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + i.hal_dsi_rx_ctrl_stop 0x00017898 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + i.hal_dsi_rx_ctrl_toggle_resolution 0x000178d4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + i.hal_dsi_tx_calc_video_chunks 0x000178f4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + hal_dsi_tx_calc_video_chunks 0x000178f5 Thumb Code 384 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + i.hal_dsi_tx_config_params_for_lane_rate 0x00017a84 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + hal_dsi_tx_config_params_for_lane_rate 0x00017a85 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + i.hal_dsi_tx_count_lane_rate 0x00017ab8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + hal_dsi_tx_count_lane_rate 0x00017ab9 Thumb Code 1022 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + i.hal_dsi_tx_crop_pic 0x00017f08 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) + i.hal_dsi_tx_ctrl_create_handle 0x00017f9c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + i.hal_dsi_tx_ctrl_deinit 0x00017fc8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + i.hal_dsi_tx_ctrl_enter_init_panel_mode 0x0001804c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + i.hal_dsi_tx_ctrl_exit_init_panel_mode 0x00018098 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + i.hal_dsi_tx_ctrl_init 0x000180c0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + i.hal_dsi_tx_ctrl_init_clk 0x00018164 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + hal_dsi_tx_ctrl_init_clk 0x00018165 Thumb Code 36 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + i.hal_dsi_tx_ctrl_panel_reset_pin 0x00018188 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + i.hal_dsi_tx_ctrl_set_ccm 0x00018194 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + i.hal_dsi_tx_ctrl_set_overwrite_rgb 0x000181b4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + i.hal_dsi_tx_ctrl_set_partial_disp 0x000181c8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + i.hal_dsi_tx_ctrl_set_partial_disp_area 0x000181d8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + i.hal_dsi_tx_ctrl_start 0x000181fc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + i.hal_dsi_tx_ctrl_stop 0x00018298 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + i.hal_dsi_tx_ctrl_write_array_cmd 0x000182dc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + i.hal_dsi_tx_ctrl_write_cmd 0x000183b4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + i.hal_dsi_tx_init_data_mode 0x00018464 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + hal_dsi_tx_init_data_mode 0x00018465 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + i.hal_dsi_tx_init_dpi_cfg 0x000184a8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + hal_dsi_tx_init_dpi_cfg 0x000184a9 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + i.hal_dsi_tx_init_interrupt 0x000184d8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + hal_dsi_tx_init_interrupt 0x000184d9 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + i.hal_dsi_tx_init_phy_cfg 0x000184f8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + hal_dsi_tx_init_phy_cfg 0x000184f9 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + i.hal_dsi_tx_init_remains 0x00018518 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + hal_dsi_tx_init_remains 0x00018519 Thumb Code 142 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + i.hal_dsi_tx_init_video_mode 0x000185ac Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + hal_dsi_tx_init_video_mode 0x000185ad Thumb Code 82 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + i.hal_dsi_tx_send_cmd 0x00018604 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + hal_dsi_tx_send_cmd 0x00018605 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + i.hal_gpio_ctrl_eint 0x00018648 Section 0 hal_gpio.o(i.hal_gpio_ctrl_eint) + i.hal_gpio_get_input_data 0x00018660 Section 0 hal_gpio.o(i.hal_gpio_get_input_data) + i.hal_gpio_init_eint 0x00018674 Section 0 hal_gpio.o(i.hal_gpio_init_eint) + i.hal_gpio_init_input 0x000186b4 Section 0 hal_gpio.o(i.hal_gpio_init_input) + i.hal_gpio_init_output 0x000186d4 Section 0 hal_gpio.o(i.hal_gpio_init_output) + i.hal_gpio_reg_eint_cb 0x000186fc Section 0 hal_gpio.o(i.hal_gpio_reg_eint_cb) + i.hal_gpio_set_ap_reset_int 0x00018714 Section 0 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + i.hal_gpio_set_mode 0x00018764 Section 0 hal_gpio.o(i.hal_gpio_set_mode) + i.hal_gpio_set_output_data 0x000187c4 Section 0 hal_gpio.o(i.hal_gpio_set_output_data) + i.hal_gpio_set_pull_state 0x000187cc Section 0 hal_gpio.o(i.hal_gpio_set_pull_state) + i.hal_i2c_m_dma_init 0x000187ec Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_init) + i.hal_i2c_m_dma_read 0x00018858 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_read) + i.hal_i2c_m_dma_write 0x00018878 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_write) + i.hal_i2c_m_transfer_complate 0x00018894 Section 0 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + i.hal_i2c_master_irq_callback 0x000188a0 Section 0 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + hal_i2c_master_irq_callback 0x000188a1 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + i.hal_i2c_s_dma_user_callback 0x000188c0 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + hal_i2c_s_dma_user_callback 0x000188c1 Thumb Code 12 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + i.hal_i2c_s_dma_write 0x000188d0 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + i.hal_i2c_s_init 0x0001891c Section 0 hal_i2c_slave.o(i.hal_i2c_s_init) + i.hal_i2c_s_nonblocking_read 0x000189e4 Section 0 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + i.hal_i2c_s_set_transfer 0x000189f8 Section 0 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + i.hal_i2c_slave_irq_callback 0x00018a04 Section 0 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + hal_i2c_slave_irq_callback 0x00018a05 Thumb Code 354 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + i.hal_internal_init_memc 0x00018b78 Section 0 hal_internal_vsync.o(i.hal_internal_init_memc) + i.hal_internal_sync_get_fb_setting 0x00018c74 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + i.hal_internal_sync_get_hight_performan_mode 0x00018c84 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + i.hal_internal_sync_input_resolution_change 0x00018c94 Section 0 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + i.hal_internal_update_dpi_param 0x00018ec0 Section 0 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + i.hal_internal_video_mode_auto_sync 0x00018ed0 Section 0 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + i.hal_internal_vsync_deinit 0x00018fdc Section 0 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + i.hal_internal_vsync_get_rx_state 0x00019004 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + i.hal_internal_vsync_get_sync_line 0x00019010 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + i.hal_internal_vsync_get_tear_mode 0x00019028 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + i.hal_internal_vsync_get_tx_state 0x00019034 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + i.hal_internal_vsync_init_rx 0x00019040 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + i.hal_internal_vsync_init_tx 0x00019158 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + i.hal_internal_vsync_set_auto_hw_filter 0x00019208 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + i.hal_internal_vsync_set_rx_state 0x00019324 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + i.hal_internal_vsync_set_sync_line 0x00019338 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + i.hal_internal_vsync_set_tear_mode 0x0001935c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + i.hal_internal_vsync_set_tx_state 0x000193ac Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + i.hal_internal_vsync_update_lcdc_addr 0x0001942c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) + i.hal_lcdc_config_ccm 0x0001945c Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + hal_lcdc_config_ccm 0x0001945d Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + i.hal_lcdc_config_remains 0x00019480 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + hal_lcdc_config_remains 0x00019481 Thumb Code 84 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + i.hal_lcdc_config_rgb_to_pentile 0x000194d8 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + hal_lcdc_config_rgb_to_pentile 0x000194d9 Thumb Code 14 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + i.hal_lcdc_config_upscaler 0x000194ec Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + hal_lcdc_config_upscaler 0x000194ed Thumb Code 348 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + i.hal_lcdc_init_cfg 0x00019650 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + hal_lcdc_init_cfg 0x00019651 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + i.hal_lcdc_init_clk 0x00019690 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + hal_lcdc_init_clk 0x00019691 Thumb Code 422 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + i.hal_lcdc_init_interrupt 0x00019840 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + hal_lcdc_init_interrupt 0x00019841 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + i.hal_spi_m_clear_rxfifo 0x00019880 Section 0 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + i.hal_swire_deinit 0x0001988e Section 0 hal_swire.o(i.hal_swire_deinit) + i.hal_swire_open 0x000198a0 Section 0 hal_swire.o(i.hal_swire_open) + i.hal_system_enable_systick 0x000198b6 Section 0 hal_system.o(i.hal_system_enable_systick) + i.hal_system_init 0x000198c0 Section 0 hal_system.o(i.hal_system_init) + i.hal_system_init_console 0x00019948 Section 0 hal_system.o(i.hal_system_init_console) + i.hal_system_set_phy_calibration 0x00019964 Section 0 hal_system.o(i.hal_system_set_phy_calibration) + i.hal_system_set_pvd 0x0001996c Section 0 hal_system.o(i.hal_system_set_pvd) + i.hal_system_set_vcc 0x00019974 Section 0 hal_system.o(i.hal_system_set_vcc) + i.hal_timer_deinit 0x0001997c Section 0 hal_timer.o(i.hal_timer_deinit) + i.hal_timer_init 0x000199aa Section 0 hal_timer.o(i.hal_timer_init) + i.hal_timer_start 0x000199c4 Section 0 hal_timer.o(i.hal_timer_start) + i.hal_timer_stop 0x00019a0c Section 0 hal_timer.o(i.hal_timer_stop) + i.hal_uart_init 0x00019a34 Section 0 hal_uart.o(i.hal_uart_init) + i.hal_uart_transmit_blocking 0x00019ac0 Section 0 hal_uart.o(i.hal_uart_transmit_blocking) + i.handle_init 0x00019ad0 Section 0 irq_redirect .o(i.handle_init) + i.init_mipi_tx 0x00019be0 Section 0 ap_demo.o(i.init_mipi_tx) + init_mipi_tx 0x00019be1 Thumb Code 110 ap_demo.o(i.init_mipi_tx) + i.init_panel 0x00019c54 Section 0 ap_demo.o(i.init_panel) + init_panel 0x00019c55 Thumb Code 186 ap_demo.o(i.init_panel) + i.main 0x00019d54 Section 0 main.o(i.main) + i.open_mipi_rx 0x00019d60 Section 0 ap_demo.o(i.open_mipi_rx) + open_mipi_rx 0x00019d61 Thumb Code 112 ap_demo.o(i.open_mipi_rx) + i.pps_update_handle 0x00019de4 Section 0 ap_demo.o(i.pps_update_handle) + pps_update_handle 0x00019de5 Thumb Code 80 ap_demo.o(i.pps_update_handle) + i.rx_get_dcs_packet_data 0x00019e60 Section 0 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + rx_get_dcs_packet_data 0x00019e61 Thumb Code 654 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + i.rx_partial_update 0x0001a254 Section 0 hal_internal_vsync.o(i.rx_partial_update) + rx_partial_update 0x0001a255 Thumb Code 358 hal_internal_vsync.o(i.rx_partial_update) + i.rx_receive_packet 0x0001a3cc Section 0 hal_internal_vsync.o(i.rx_receive_packet) + rx_receive_packet 0x0001a3cd Thumb Code 128 hal_internal_vsync.o(i.rx_receive_packet) + i.rx_receive_pps 0x0001a458 Section 0 hal_internal_vsync.o(i.rx_receive_pps) + rx_receive_pps 0x0001a459 Thumb Code 268 hal_internal_vsync.o(i.rx_receive_pps) + i.rxbr_irq0_callback 0x0001a5d8 Section 0 hal_internal_vsync.o(i.rxbr_irq0_callback) + rxbr_irq0_callback 0x0001a5d9 Thumb Code 158 hal_internal_vsync.o(i.rxbr_irq0_callback) + i.rxbr_irq1_callback 0x0001a67c Section 0 hal_internal_vsync.o(i.rxbr_irq1_callback) + rxbr_irq1_callback 0x0001a67d Thumb Code 316 hal_internal_vsync.o(i.rxbr_irq1_callback) + i.soft_gen_te 0x0001a850 Section 0 hal_internal_vsync.o(i.soft_gen_te) + soft_gen_te 0x0001a851 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te) + i.soft_gen_te_double_buffer 0x0001a914 Section 0 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + soft_gen_te_double_buffer 0x0001a915 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + i.soft_te_timer_cb 0x0001a9d4 Section 0 ap_demo.o(i.soft_te_timer_cb) + soft_te_timer_cb 0x0001a9d5 Thumb Code 36 ap_demo.o(i.soft_te_timer_cb) + i.soft_timer3_cb 0x0001aa00 Section 0 ap_demo.o(i.soft_timer3_cb) + soft_timer3_cb 0x0001aa01 Thumb Code 48 ap_demo.o(i.soft_timer3_cb) + i.sqrt 0x0001aa40 Section 0 sqrt.o(i.sqrt) + i.tp_heartbeat_exec 0x0001aa88 Section 0 ap_demo.o(i.tp_heartbeat_exec) + i.vidc_callback 0x0001aaf8 Section 0 hal_internal_vsync.o(i.vidc_callback) + vidc_callback 0x0001aaf9 Thumb Code 232 hal_internal_vsync.o(i.vidc_callback) + i.vpre_err_reset 0x0001ac00 Section 0 hal_internal_vsync.o(i.vpre_err_reset) + vpre_err_reset 0x0001ac01 Thumb Code 184 hal_internal_vsync.o(i.vpre_err_reset) + i.vsync_set_te_mode 0x0001acd0 Section 0 hal_internal_vsync.o(i.vsync_set_te_mode) + vsync_set_te_mode 0x0001acd1 Thumb Code 300 hal_internal_vsync.o(i.vsync_set_te_mode) + .constdata 0x0001ae9c Section 10564 ap_demo.o(.constdata) + g_cus_rx_dcs_execute_table 0x0001ae9c Data 120 ap_demo.o(.constdata) + .constdata 0x0001d7e0 Section 32 app_tp_st_touch.o(.constdata) + .constdata 0x0001d800 Section 36 hal_dsi_tx_ctrl.o(.constdata) + .constdata 0x0001d824 Section 210 hal_gpio.o(.constdata) + s_gpio_map 0x0001d824 Data 120 hal_gpio.o(.constdata) + s_gpio_perf 0x0001d89c Data 90 hal_gpio.o(.constdata) + .constdata 0x0001d8f8 Section 32 hal_i2c_slave.o(.constdata) + sg_i2c_s_config 0x0001d8f8 Data 32 hal_i2c_slave.o(.constdata) + .constdata 0x0001d918 Section 3417 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001e671 Section 1 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001e674 Section 8 drv_param_init.o(.constdata) + .constdata 0x0001e67c Section 390 drv_phy_common.o(.constdata) + phy_para_mapping_h 0x0001e67c Data 184 drv_phy_common.o(.constdata) + phy_para_mapping_l 0x0001e734 Data 128 drv_phy_common.o(.constdata) + phy_data_high_map 0x0001e7b4 Data 48 drv_phy_common.o(.constdata) + phy_data_lp_map 0x0001e7e4 Data 30 drv_phy_common.o(.constdata) + .conststring 0x0001e804 Section 76 ap_demo.o(.conststring) + .conststring 0x0001e850 Section 72 hal_dsi_rx_ctrl.o(.conststring) + .conststring 0x0001e898 Section 67 hal_dsi_tx_ctrl.o(.conststring) + .conststring 0x0001e8dc Section 308 hal_internal_vsync.o(.conststring) + .ARM.__AT_0x00070100 0x00070100 Section 192 irq_redirect .o(.ARM.__AT_0x00070100) + .data 0x000701d0 Section 40 ap_demo.o(.data) + start_display_on 0x000701d0 Data 1 ap_demo.o(.data) + g_exit_sleep_mode 0x000701d1 Data 1 ap_demo.o(.data) + panel_display_done 0x000701d2 Data 1 ap_demo.o(.data) + input_compress_flag 0x000701d3 Data 1 ap_demo.o(.data) + enter_hbm_mode_cnt 0x000701d4 Data 1 ap_demo.o(.data) + exit_hbm_mode_cnt 0x000701d5 Data 1 ap_demo.o(.data) + BL_ADJ_flag 0x000701d6 Data 1 ap_demo.o(.data) + phone_off_flag 0x000701d7 Data 1 ap_demo.o(.data) + hbm_mode 0x000701da Data 1 ap_demo.o(.data) + g_need_enter_sleep_mode 0x000701db Data 1 ap_demo.o(.data) + g_rx_ctrl_handle 0x000701e8 Data 4 ap_demo.o(.data) + g_tx_ctrl_handle 0x000701ec Data 4 ap_demo.o(.data) + value_reg_df 0x000701f0 Data 4 ap_demo.o(.data) + .data 0x000701f8 Section 46 app_tp_transfer.o(.data) + s_spim_write 0x000701f8 Data 1 app_tp_transfer.o(.data) + s_screen_int_flag 0x000701f9 Data 1 app_tp_transfer.o(.data) + s_phone_reset_flag 0x000701fa Data 1 app_tp_transfer.o(.data) + s_screen_int_transfer_status 0x000701fb Data 1 app_tp_transfer.o(.data) + s_screen_const_transfer_count 0x000701fd Data 1 app_tp_transfer.o(.data) + screen_int_transfer_count 0x000701fe Data 1 app_tp_transfer.o(.data) + screen_int_transfer_buffer_ready 0x000701ff Data 1 app_tp_transfer.o(.data) + .data 0x00070226 Section 40 app_tp_st_touch.o(.data) + s_calibration_flag 0x00070226 Data 1 app_tp_st_touch.o(.data) + s_calibration_correct_flag 0x00070227 Data 1 app_tp_st_touch.o(.data) + .data 0x00070250 Section 8 hal_dsi_rx_ctrl.o(.data) + g_hw_auto_filter 0x00070250 Data 1 hal_dsi_rx_ctrl.o(.data) + g_esc_clk 0x00070254 Data 4 hal_dsi_rx_ctrl.o(.data) + .data 0x00070258 Section 3 hal_dsi_tx_ctrl.o(.data) + g_tx_vcom_en 0x00070258 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_vpg_en 0x00070259 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_mode 0x0007025a Data 1 hal_dsi_tx_ctrl.o(.data) + .data 0x0007025b Section 1 hal_i2c_master.o(.data) + s_i2c_m_transfer_end 0x0007025b Data 1 hal_i2c_master.o(.data) + .data 0x0007025c Section 32 hal_i2c_slave.o(.data) + s_txbuffer_complate 0x0007025c Data 1 hal_i2c_slave.o(.data) + s_i2c_s_dma_end 0x0007025d Data 1 hal_i2c_slave.o(.data) + s_i2c_s_receive_cnt 0x0007025e Data 1 hal_i2c_slave.o(.data) + sg_i2c_s_index 0x0007025f Data 1 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer 0x00070260 Data 4 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer_size 0x00070264 Data 4 hal_i2c_slave.o(.data) + hal_i2c_s_callback 0x00070268 Data 4 hal_i2c_slave.o(.data) + sg_tx_byte_num 0x0007026c Data 4 hal_i2c_slave.o(.data) + s_receive_count 0x00070270 Data 4 hal_i2c_slave.o(.data) + s_tx_buffer_t 0x00070274 Data 4 hal_i2c_slave.o(.data) + tx_sum 0x00070278 Data 4 hal_i2c_slave.o(.data) + .data 0x0007027c Section 232 app_tp_for_custom_s8.o(.data) + app_tp_count 0x0007028c Data 1 app_tp_for_custom_s8.o(.data) + u16CoordY 0x0007028e Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX 0x00070290 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordY_back 0x00070292 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX_back 0x00070294 Data 2 app_tp_for_custom_s8.o(.data) + enctryptCnt 0x00070298 Data 4 app_tp_for_custom_s8.o(.data) + .data 0x00070364 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070365 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070366 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070367 Section 3 app_tp_for_custom_s8.o(.data) + .data 0x0007036a Section 5 app_tp_for_custom_s8.o(.data) + .data 0x00070370 Section 48 app_tp_for_custom_s8.o(.data) + .data 0x000703a0 Section 18 norflash.o(.data) + tmprg 0x000703a8 Data 4 norflash.o(.data) + .data 0x000703b4 Section 12 drv_common.o(.data) + s_my_tick 0x000703b4 Data 4 drv_common.o(.data) + .data 0x000703c0 Section 4 drv_gpio.o(.data) + g_ap_reset_cb 0x000703c0 Data 4 drv_gpio.o(.data) + .data 0x000703c4 Section 8 drv_i2c_dma.o(.data) + i2c0_dma_callback 0x000703c4 Data 4 drv_i2c_dma.o(.data) + i2c1_dma_callback 0x000703c8 Data 4 drv_i2c_dma.o(.data) + .data 0x000703cc Section 4 drv_i2c_master.o(.data) + i2c1_intr_callback 0x000703cc Data 4 drv_i2c_master.o(.data) + .data 0x000703d0 Section 4 drv_i2c_slave.o(.data) + i2c0_intr_callback 0x000703d0 Data 4 drv_i2c_slave.o(.data) + .data 0x000703d4 Section 1188 drv_param_init.o(.data) + .data 0x00070878 Section 4 drv_spi_master.o(.data) + SPIM_intr_callback 0x00070878 Data 4 drv_spi_master.o(.data) + .data 0x0007087c Section 8 drv_swire.o(.data) + s_swire_cb 0x0007087c Data 8 drv_swire.o(.data) + .data 0x00070884 Section 1 drv_sys_cfg.o(.data) + sg_ap_rstn_trigger_type 0x00070884 Data 1 drv_sys_cfg.o(.data) + .data 0x00070888 Section 80 drv_timer.o(.data) + sg_timer_info 0x00070888 Data 80 drv_timer.o(.data) + .data 0x000708d8 Section 12 hal_internal_vsync.o(.data) + sg_cmd_mode_tx_start 0x000708d8 Data 1 hal_internal_vsync.o(.data) + sg_cur_te_info 0x000708dc Data 4 hal_internal_vsync.o(.data) + .data 0x000708e4 Section 8 drv_rxbr.o(.data) + .data 0x000708ec Section 4 drv_vidc.o(.data) + .data 0x000708f0 Section 1 drv_phy_common.o(.data) + g_phy_calibration 0x000708f0 Data 1 drv_phy_common.o(.data) + .data 0x000708f4 Section 12 drv_chip_info.o(.data) + sg_chip_info 0x000708f4 Data 4 drv_chip_info.o(.data) + sg_chip_function 0x000708f8 Data 4 drv_chip_info.o(.data) + sg_chip_encrypt 0x000708fc Data 4 drv_chip_info.o(.data) + .data 0x00070900 Section 12 drv_pwm.o(.data) + s_pwm_type 0x00070900 Data 1 drv_pwm.o(.data) + s_pwm_cb 0x00070904 Data 8 drv_pwm.o(.data) + .data 0x0007090c Section 8 drv_uart.o(.data) + s_UartFcrReg 0x0007090c Data 4 drv_uart.o(.data) + uart_userData 0x00070910 Data 4 drv_uart.o(.data) + .data 0x00070914 Section 12 drv_wdg.o(.data) + sg_wdg_repeat 0x00070914 Data 1 drv_wdg.o(.data) + sg_wdg_cb 0x00070918 Data 8 drv_wdg.o(.data) + .data 0x00070920 Section 4 stdout.o(.data) + .data 0x00070924 Section 4 errno.o(.data) + _errno 0x00070924 Data 4 errno.o(.data) + .bss 0x00070928 Section 400 app_tp_transfer.o(.bss) + s_screen_read_buffer 0x00070928 Data 200 app_tp_transfer.o(.bss) + s_phone_read_buffer 0x000709f0 Data 200 app_tp_transfer.o(.bss) + .bss 0x00070ab8 Section 12 app_tp_st_touch.o(.bss) + .bss 0x00070ac4 Section 196 hal_dsi_rx_ctrl.o(.bss) + g_rx_ctrl_handle 0x00070ac4 Data 196 hal_dsi_rx_ctrl.o(.bss) + .bss 0x00070b88 Section 76 hal_dsi_tx_ctrl.o(.bss) + g_tx_ctrl_handle 0x00070b88 Data 76 hal_dsi_tx_ctrl.o(.bss) + .bss 0x00070bd4 Section 256 tau_log.o(.bss) + .bss 0x00070cd4 Section 208 hal_uart.o(.bss) + .bss 0x00070da4 Section 28 drv_dma.o(.bss) + s_dma_handle 0x00070da4 Data 28 drv_dma.o(.bss) + .bss 0x00070dc0 Section 64 drv_gpio.o(.bss) + s_gpio_cb 0x00070dc0 Data 64 drv_gpio.o(.bss) + .bss 0x00070e00 Section 320 drv_i2c_dma.o(.bss) + i2c0_dma_slave_handle 0x00070e00 Data 160 drv_i2c_dma.o(.bss) + i2c1_dma_master_handle 0x00070ea0 Data 160 drv_i2c_dma.o(.bss) + .bss 0x00070f40 Section 2436 hal_internal_vsync.o(.bss) + g_imm_buffer 0x000717a4 Data 255 hal_internal_vsync.o(.bss) + sg_te_info 0x000718a4 Data 12 hal_internal_vsync.o(.bss) + g_imm_packet 0x000718b0 Data 20 hal_internal_vsync.o(.bss) + .bss 0x000718c4 Section 4144 dcs_packet_fifo.o(.bss) + .bss 0x000728f4 Section 32 hal_spi_slave.o(.bss) + STACK 0x00072918 Section 4096 startup_armcm0.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x000000c0 Number 0 startup_armcm0.o ABSOLUTE + __Vectors 0x00010000 Data 4 startup_armcm0.o(RESET) + __Vectors_End 0x000100c0 Data 0 startup_armcm0.o(RESET) + __main 0x000100c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x000100c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x000100c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x000100c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x000100c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x000100c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x000100c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x000100d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x000100d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x000100d5 Thumb Code 28 startup_armcm0.o(.text) + NMI_Handler 0x000100f1 Thumb Code 2 startup_armcm0.o(.text) + SVC_Handler 0x000100f5 Thumb Code 2 startup_armcm0.o(.text) + PendSV_Handler 0x000100f7 Thumb Code 2 startup_armcm0.o(.text) + OTP_IRQn_Handler 0x00010123 Thumb Code 2 startup_armcm0.o(.text) + PVD_IRQn_Handler 0x00010127 Thumb Code 2 startup_armcm0.o(.text) + __aeabi_uidiv 0x0001014d Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x0001014d Thumb Code 44 uidiv.o(.text) + __aeabi_idiv 0x00010179 Thumb Code 0 idiv.o(.text) + __aeabi_idivmod 0x00010179 Thumb Code 40 idiv.o(.text) + __aeabi_memcpy 0x000101a1 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x000101c5 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x000101d3 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x000101d3 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x000101d3 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x000101d7 Thumb Code 18 memseta.o(.text) + __aeabi_fadd 0x000101e9 Thumb Code 162 fadd.o(.text) + __aeabi_fsub 0x0001028b Thumb Code 8 fadd.o(.text) + __aeabi_frsub 0x00010293 Thumb Code 8 fadd.o(.text) + __aeabi_fmul 0x0001029b Thumb Code 122 fmul.o(.text) + __aeabi_fdiv 0x00010315 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x00010391 Thumb Code 24 fscalb.o(.text) + scalbnf 0x00010391 Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x000103a9 Thumb Code 328 dadd.o(.text) + __aeabi_dsub 0x000104f1 Thumb Code 12 dadd.o(.text) + __aeabi_drsub 0x000104fd Thumb Code 12 dadd.o(.text) + __aeabi_dmul 0x0001050d Thumb Code 202 dmul.o(.text) + __aeabi_ddiv 0x000105dd Thumb Code 234 ddiv.o(.text) + __aeabi_i2f 0x000106cd Thumb Code 22 fflti.o(.text) + __aeabi_ui2f 0x000106e3 Thumb Code 14 ffltui.o(.text) + __aeabi_ui2d 0x000106f1 Thumb Code 24 dfltui.o(.text) + __aeabi_f2iz 0x0001070d Thumb Code 50 ffixi.o(.text) + __aeabi_f2uiz 0x0001073f Thumb Code 40 ffixui.o(.text) + __aeabi_d2iz 0x00010769 Thumb Code 62 dfixi.o(.text) + __aeabi_d2uiz 0x000107b1 Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x000107ed Thumb Code 40 f2d.o(.text) + __aeabi_cdcmpeq 0x00010815 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x00010815 Thumb Code 38 cdcmple.o(.text) + __aeabi_cfrcmple 0x0001083d Thumb Code 20 cfrcmple.o(.text) + __aeabi_uldivmod 0x00010851 Thumb Code 96 uldiv.o(.text) + __aeabi_llsl 0x000108b1 Thumb Code 32 llshl.o(.text) + _ll_shift_l 0x000108b1 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x000108d1 Thumb Code 34 llushr.o(.text) + _ll_ushift_r 0x000108d1 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x000108f3 Thumb Code 38 llsshr.o(.text) + _ll_sshift_r 0x000108f3 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x00010919 Thumb Code 0 iusefp.o(.text) + _float_round 0x00010919 Thumb Code 16 fepilogue.o(.text) + _float_epilogue 0x00010929 Thumb Code 114 fepilogue.o(.text) + _double_round 0x0001099b Thumb Code 26 depilogue.o(.text) + _double_epilogue 0x000109b5 Thumb Code 164 depilogue.o(.text) + _dsqrt 0x00010a59 Thumb Code 162 dsqrt.o(.text) + __aeabi_d2ulz 0x00010afd Thumb Code 54 dfixul.o(.text) + __aeabi_cdrcmple 0x00010b3d Thumb Code 38 cdrcmple.o(.text) + __scatterload 0x00010b65 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x00010b65 Thumb Code 0 init.o(.text) + __decompress 0x00010b89 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x00010b89 Thumb Code 86 __dczerorl2.o(.text) + ADC_IRQn_Handler 0x00010be1 Thumb Code 18 irq_redirect .o(i.ADC_IRQn_Handler) + AP_NRESET_IRQn_Handler 0x00010bf9 Thumb Code 18 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + CRC16_2 0x00010c11 Thumb Code 54 app_tp_st_touch.o(i.CRC16_2) + DMA_IRQn_Handler 0x00010c51 Thumb Code 14 irq_redirect .o(i.DMA_IRQn_Handler) + EXTI_INT0_IRQn_Handler 0x00010c65 Thumb Code 22 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + EXTI_INT1_IRQn_Handler 0x00010c81 Thumb Code 22 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + EXTI_INT2_IRQn_Handler 0x00010c9d Thumb Code 22 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + EXTI_INT3_IRQn_Handler 0x00010cb9 Thumb Code 22 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + EXTI_INT4_IRQn_Handler 0x00010cd5 Thumb Code 22 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + EXTI_INT5_IRQn_Handler 0x00010cf1 Thumb Code 22 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + EXTI_INT6_IRQn_Handler 0x00010d0d Thumb Code 22 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + EXTI_INT7_IRQn_Handler 0x00010d29 Thumb Code 22 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + EncryptCheckEx 0x00010d45 Thumb Code 32 app_tp_for_custom_s8.o(i.EncryptCheckEx) + FLSCTRL_IRQn_Handler 0x00010d69 Thumb Code 14 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + Gpio_swire_output 0x00010d7d Thumb Code 78 ap_demo.o(i.Gpio_swire_output) + HardFault_Handler 0x00010dcd Thumb Code 14 irq_redirect .o(i.HardFault_Handler) + I2C0_IRQn_Handler 0x00010de1 Thumb Code 18 irq_redirect .o(i.I2C0_IRQn_Handler) + I2C1_IRQn_Handler 0x00010df9 Thumb Code 18 irq_redirect .o(i.I2C1_IRQn_Handler) + LCDC_IRQn_Handler 0x00010e11 Thumb Code 18 irq_redirect .o(i.LCDC_IRQn_Handler) + LOG_printf 0x00010e29 Thumb Code 30 tau_log.o(i.LOG_printf) + MEMC_IRQn_Handler 0x00010e51 Thumb Code 18 irq_redirect .o(i.MEMC_IRQn_Handler) + MIPI_RX_IRQn_Handler 0x00010e69 Thumb Code 18 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + MIPI_TX_IRQn_Handler 0x00010e81 Thumb Code 18 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + PWMDET_IRQn_Handler 0x00010e99 Thumb Code 22 irq_redirect .o(i.PWMDET_IRQn_Handler) + S20_Start_init 0x00010eb5 Thumb Code 306 app_tp_transfer.o(i.S20_Start_init) + s_RAM_CK 0x00011000 Data 20 drv_common.o(.ARM.__at_0x11000) + UART_DisableDma 0x00011015 Thumb Code 2 drv_uart.o(i.UART_DisableDma) + __scatterload_null 0x00011017 Thumb Code 2 handlers.o(i.__scatterload_null) + s_debug_state 0x00011018 Data 4 drv_common.o(.ARM.__at_0x11018) + SPIM_IRQn_Handler 0x0001101d Thumb Code 22 irq_redirect .o(i.SPIM_IRQn_Handler) + SPIS_IRQn_Handler 0x00011039 Thumb Code 22 irq_redirect .o(i.SPIS_IRQn_Handler) + SWIRE_IRQn_Handler 0x00011055 Thumb Code 22 irq_redirect .o(i.SWIRE_IRQn_Handler) + SysTick_Handler 0x00011071 Thumb Code 18 irq_redirect .o(i.SysTick_Handler) + TIMER0_IRQn_Handler 0x00011089 Thumb Code 18 irq_redirect .o(i.TIMER0_IRQn_Handler) + TIMER1_IRQn_Handler 0x000110a1 Thumb Code 18 irq_redirect .o(i.TIMER1_IRQn_Handler) + TIMER2_IRQn_Handler 0x000110b9 Thumb Code 18 irq_redirect .o(i.TIMER2_IRQn_Handler) + TIMER3_IRQn_Handler 0x000110d1 Thumb Code 18 irq_redirect .o(i.TIMER3_IRQn_Handler) + UART0_IRQ_Handle 0x000110e9 Thumb Code 20 drv_uart.o(i.UART0_IRQ_Handle) + UART_GetInstance 0x00011105 Thumb Code 4 drv_uart.o(i.UART_GetInstance) + UART_IRQn_Handler 0x00011109 Thumb Code 18 irq_redirect .o(i.UART_IRQn_Handler) + UART_ResetRxFIFO 0x00011121 Thumb Code 32 drv_uart.o(i.UART_ResetRxFIFO) + UART_SetBaudRate 0x00011145 Thumb Code 72 drv_uart.o(i.UART_SetBaudRate) + UART_SwitchSCLK 0x0001118d Thumb Code 26 drv_uart.o(i.UART_SwitchSCLK) + UART_TransferHandleIRQ 0x000111a7 Thumb Code 308 drv_uart.o(i.UART_TransferHandleIRQ) + UART_WriteBlocking 0x000112db Thumb Code 26 drv_uart.o(i.UART_WriteBlocking) + UART_init 0x000112f5 Thumb Code 182 drv_uart.o(i.UART_init) + VIDC_IRQn_Handler 0x000113b1 Thumb Code 18 irq_redirect .o(i.VIDC_IRQn_Handler) + VPRE_IRQn_Handler 0x000113c9 Thumb Code 18 irq_redirect .o(i.VPRE_IRQn_Handler) + WDG_IRQn_Handler 0x000113e1 Thumb Code 18 irq_redirect .o(i.WDG_IRQn_Handler) + __0printf 0x000113f9 Thumb Code 24 printfa.o(i.__0printf) + __1printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + __2printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + __c89printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + __0vsprintf 0x00011419 Thumb Code 30 printfa.o(i.__0vsprintf) + __1vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + __2vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + __c89vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + __ARM_clz 0x0001143d Thumb Code 46 depilogue.o(i.__ARM_clz) + __ARM_common_switch8 0x0001146b Thumb Code 26 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + __scatterload_copy 0x00011531 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_zeroinit 0x0001153f Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + __set_errno 0x0001154d Thumb Code 6 errno.o(i.__set_errno) + ap_demo 0x00011fdd Thumb Code 482 ap_demo.o(i.ap_demo) + ap_get_tp_calibration_status_01 0x000123bd Thumb Code 28 app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) + ap_set_tp_calibration_04 0x000125a5 Thumb Code 138 app_tp_st_touch.o(i.ap_set_tp_calibration_04) + ap_tp_st_touch_calibration 0x0001263d Thumb Code 170 app_tp_st_touch.o(i.ap_tp_st_touch_calibration) + ap_tp_st_touch_get_calibration_success_mark 0x000126ed Thumb Code 150 app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) + ap_tp_st_touch_scan_point_init 0x00012795 Thumb Code 24 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) + ap_tp_st_touch_scan_point_record_event_exec 0x000127b1 Thumb Code 50 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) + ap_tp_st_touch_simulate_finger_release_event 0x00012801 Thumb Code 44 app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) + ap_tp_st_touch_software_reset 0x00012835 Thumb Code 118 app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) + app_ADC_IRQn_Handler 0x000128e1 Thumb Code 22 drv_rxbr.o(i.app_ADC_IRQn_Handler) + app_AP_NRESET_IRQn_Handler 0x000128fd Thumb Code 32 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + app_EXTI_INT0_IRQn_Handler 0x00012921 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + app_EXTI_INT1_IRQn_Handler 0x0001293d Thumb Code 22 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + app_EXTI_INT2_IRQn_Handler 0x00012959 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + app_EXTI_INT3_IRQn_Handler 0x00012975 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + app_EXTI_INT4_IRQn_Handler 0x00012991 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + app_EXTI_INT5_IRQn_Handler 0x000129ad Thumb Code 22 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + app_EXTI_INT6_IRQn_Handler 0x000129c9 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + app_EXTI_INT7_IRQn_Handler 0x000129e5 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + app_HardFault_Handler 0x00012a01 Thumb Code 12 drv_common.o(i.app_HardFault_Handler) + app_I2C0_IRQn_Handler 0x00012a49 Thumb Code 14 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + app_I2C1_IRQn_Handler 0x00012a61 Thumb Code 8 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + app_LCDC_IRQn_Handler 0x00012a71 Thumb Code 208 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + app_MEMC_IRQn_Handler 0x00012c15 Thumb Code 132 drv_memc.o(i.app_MEMC_IRQn_Handler) + app_MIPI_RX_IRQn_Handler 0x00012c9d Thumb Code 232 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + app_MIPI_TX_IRQn_Handler 0x00012f35 Thumb Code 56 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + app_PWMDET_IRQn_Handler 0x00012fd5 Thumb Code 62 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + app_SPIM_IRQn_Handler 0x0001301d Thumb Code 34 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + app_SPIS_IRQn_Handler 0x0001304d Thumb Code 500 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + app_SWIRE_IRQn_Handler 0x0001324d Thumb Code 28 drv_swire.o(i.app_SWIRE_IRQn_Handler) + app_SysTick_Handler 0x0001326d Thumb Code 20 drv_common.o(i.app_SysTick_Handler) + app_TIMER0_IRQn_Handler 0x00013285 Thumb Code 10 drv_timer.o(i.app_TIMER0_IRQn_Handler) + app_TIMER1_IRQn_Handler 0x0001328f Thumb Code 10 drv_timer.o(i.app_TIMER1_IRQn_Handler) + app_TIMER2_IRQn_Handler 0x00013299 Thumb Code 10 drv_timer.o(i.app_TIMER2_IRQn_Handler) + app_TIMER3_IRQn_Handler 0x000132a3 Thumb Code 10 drv_timer.o(i.app_TIMER3_IRQn_Handler) + app_UART_IRQn_Handler 0x000132ad Thumb Code 8 drv_uart.o(i.app_UART_IRQn_Handler) + app_VIDC_IRQn_Handler 0x000132b5 Thumb Code 22 drv_vidc.o(i.app_VIDC_IRQn_Handler) + app_VPRE_IRQn_Handler 0x000132d1 Thumb Code 22 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + app_WDG_IRQn_Handler 0x000132ed Thumb Code 52 drv_wdg.o(i.app_WDG_IRQn_Handler) + app_dma_irq_handler 0x00013325 Thumb Code 10 drv_dma.o(i.app_dma_irq_handler) + app_fls_ctrl_Handler 0x00013335 Thumb Code 38 norflash.o(i.app_fls_ctrl_Handler) + app_tp_I2C_init 0x00013365 Thumb Code 26 app_tp_transfer.o(i.app_tp_I2C_init) + app_tp_calibration_exec 0x00013389 Thumb Code 78 app_tp_st_touch.o(i.app_tp_calibration_exec) + app_tp_init 0x000134cd Thumb Code 56 app_tp_transfer.o(i.app_tp_init) + app_tp_m_read 0x00013511 Thumb Code 32 app_tp_transfer.o(i.app_tp_m_read) + app_tp_m_write 0x00013531 Thumb Code 8 app_tp_transfer.o(i.app_tp_m_write) + app_tp_phone_analysis_data 0x00013539 Thumb Code 1200 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + app_tp_s_read 0x000139f9 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_read) + app_tp_s_write 0x00013a01 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_write) + app_tp_screen_analysis_int 0x00013a09 Thumb Code 1156 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + app_tp_screen_init 0x00013e8d Thumb Code 42 app_tp_transfer.o(i.app_tp_screen_init) + app_tp_transfer_screen_int 0x00013f09 Thumb Code 250 app_tp_transfer.o(i.app_tp_transfer_screen_int) + app_tp_transfer_screen_start 0x00014015 Thumb Code 16 app_tp_transfer.o(i.app_tp_transfer_screen_start) + board_Init 0x00014029 Thumb Code 30 board.o(i.board_Init) + calc_framebuffer_setting 0x0001404d Thumb Code 1258 hal_internal_vsync.o(i.calc_framebuffer_setting) + ceil 0x0001453d Thumb Code 180 ceil.o(i.ceil) + dcs_packet_fifo_alloc 0x000146c5 Thumb Code 80 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + dcs_packet_fifo_init 0x0001471d Thumb Code 18 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + dcs_packet_free_fifo_header 0x00014735 Thumb Code 60 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + dcs_packet_get_fifo_header 0x00014779 Thumb Code 26 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + delayMs 0x000147b9 Thumb Code 24 tau_delay.o(i.delayMs) + delayUs 0x000147d1 Thumb Code 34 tau_delay.o(i.delayUs) + drv_ap_rst_trig_edge_detect 0x000147f5 Thumb Code 46 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + drv_chip_info_get_info 0x0001482d Thumb Code 6 drv_chip_info.o(i.drv_chip_info_get_info) + drv_chip_info_init 0x00014839 Thumb Code 56 drv_chip_info.o(i.drv_chip_info_init) + drv_chip_rx_info_check 0x00014879 Thumb Code 98 drv_chip_info.o(i.drv_chip_rx_info_check) + drv_chip_rx_init_done 0x00014929 Thumb Code 16 drv_chip_info.o(i.drv_chip_rx_init_done) + drv_common_enable_systick 0x0001493d Thumb Code 70 drv_common.o(i.drv_common_enable_systick) + drv_common_system_init 0x00014995 Thumb Code 8 drv_common.o(i.drv_common_system_init) + drv_crgu_config_reset_modules 0x0001499d Thumb Code 10 drv_crgu.o(i.drv_crgu_config_reset_modules) + drv_crgu_set_ahb_pre_div 0x000149ad Thumb Code 14 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + drv_crgu_set_ahb_src 0x000149c1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_ahb_src) + drv_crgu_set_clock 0x000149d5 Thumb Code 26 drv_crgu.o(i.drv_crgu_set_clock) + drv_crgu_set_dpi_mux_src 0x000149f5 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + drv_crgu_set_dpi_pre_div 0x00014a09 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + drv_crgu_set_dpi_pre_src 0x00014a21 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + drv_crgu_set_dsc_core_div 0x00014a35 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + drv_crgu_set_dsco_src 0x00014a49 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src) + drv_crgu_set_dsco_src_div 0x00014a5d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + drv_crgu_set_fb_div 0x00014a71 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_div) + drv_crgu_set_fb_src 0x00014a85 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_src) + drv_crgu_set_lcdc_div 0x00014a99 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_div) + drv_crgu_set_lcdc_src 0x00014aad Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_src) + drv_crgu_set_mipi_cfg_src 0x00014ac1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + drv_crgu_set_mipi_ref_src 0x00014ad5 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + drv_crgu_set_reset 0x00014aed Thumb Code 20 drv_crgu.o(i.drv_crgu_set_reset) + drv_crgu_set_rxbr_div 0x00014b05 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_div) + drv_crgu_set_rxbr_src 0x00014b19 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_src) + drv_crgu_set_vidc_src 0x00014b2d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_vidc_src) + drv_dma_clear_flag 0x00014b41 Thumb Code 24 drv_dma.o(i.drv_dma_clear_flag) + drv_dma_create_handle 0x00014b59 Thumb Code 22 drv_dma.o(i.drv_dma_create_handle) + drv_dma_disenable_channel 0x00014b75 Thumb Code 16 drv_dma.o(i.drv_dma_disenable_channel) + drv_dma_enable_channel 0x00014b85 Thumb Code 16 drv_dma.o(i.drv_dma_enable_channel) + drv_dma_enable_channel_interrupts 0x00014b95 Thumb Code 32 drv_dma.o(i.drv_dma_enable_channel_interrupts) + drv_dma_get_channel_flag 0x00014bb9 Thumb Code 12 drv_dma.o(i.drv_dma_get_channel_flag) + drv_dma_irq_handler 0x00014bc5 Thumb Code 138 drv_dma.o(i.drv_dma_irq_handler) + drv_dma_prepar_transfer 0x00014c55 Thumb Code 18 drv_dma.o(i.drv_dma_prepar_transfer) + drv_dma_set_burst 0x00014c67 Thumb Code 26 drv_dma.o(i.drv_dma_set_burst) + drv_dma_set_callback 0x00014c81 Thumb Code 6 drv_dma.o(i.drv_dma_set_callback) + drv_dma_set_transfer 0x00014c89 Thumb Code 62 drv_dma.o(i.drv_dma_set_transfer) + drv_dsc_dec_convert_pps_rc_parameter 0x00014ccd Thumb Code 54 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + drv_dsc_dec_disable 0x00014d03 Thumb Code 12 drv_dsc_dec.o(i.drv_dsc_dec_disable) + drv_dsc_dec_enable 0x00014d11 Thumb Code 88 drv_dsc_dec.o(i.drv_dsc_dec_enable) + drv_dsc_dec_get_nslc 0x00014d85 Thumb Code 10 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + drv_dsc_dec_set_u8_pps 0x00014d8f Thumb Code 40 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + drv_dsi_rx_calc_ipi_tx_delay 0x00014db9 Thumb Code 244 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + drv_dsi_rx_enable_irq 0x00014ebd Thumb Code 58 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + drv_dsi_rx_get_compression_en 0x00014f69 Thumb Code 8 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + drv_dsi_rx_get_max_ret_size 0x00014f71 Thumb Code 6 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + drv_dsi_rx_power_up 0x00014f77 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + drv_dsi_rx_set_ctrl_cfg 0x00014f85 Thumb Code 32 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + drv_dsi_rx_set_ddi_cfg 0x00014fa5 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + drv_dsi_rx_set_inten 0x00014fb5 Thumb Code 4 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + drv_dsi_rx_set_ipi_cfg 0x00014fb9 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + drv_dsi_rx_set_lane_swap 0x00014fc9 Thumb Code 70 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + drv_dsi_rx_set_resp_cnt 0x0001500f Thumb Code 38 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + drv_dsi_rx_set_up_phy 0x00015035 Thumb Code 256 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + drv_dsi_rx_shut_down 0x00015139 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + drv_dsi_tx_command_header 0x00015147 Thumb Code 20 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + drv_dsi_tx_command_mode_cfg 0x0001515b Thumb Code 108 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + drv_dsi_tx_command_put_payload 0x000151c7 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + drv_dsi_tx_config_eotp 0x000151cb Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + drv_dsi_tx_config_int 0x000151e3 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + drv_dsi_tx_dpi_lpcmd_time 0x000151eb Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + drv_dsi_tx_dpi_mode 0x000151f3 Thumb Code 10 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + drv_dsi_tx_dpi_polarity 0x000151fd Thumb Code 36 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + drv_dsi_tx_edpi_cmd_size 0x00015221 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + drv_dsi_tx_get_cmd_status 0x00015225 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + drv_dsi_tx_mode 0x00015229 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_mode) + drv_dsi_tx_phy_clock_lane_auto_lp 0x0001522d Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + drv_dsi_tx_phy_clock_lane_req_hs 0x00015245 Thumb Code 26 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + drv_dsi_tx_phy_lane_mode 0x0001525f Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + drv_dsi_tx_phy_status_ready 0x0001526b Thumb Code 100 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + drv_dsi_tx_phy_status_stopstate 0x000152cf Thumb Code 62 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + drv_dsi_tx_phy_test_setup 0x0001530d Thumb Code 308 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + drv_dsi_tx_phy_time_cfg 0x00015441 Thumb Code 30 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + drv_dsi_tx_powerup 0x0001545f Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + drv_dsi_tx_response_mode 0x00015467 Thumb Code 28 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + drv_dsi_tx_set_bta_ack 0x00015483 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + drv_dsi_tx_set_esc_div 0x0001549b Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + drv_dsi_tx_set_int 0x000154a9 Thumb Code 58 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + drv_dsi_tx_set_time_out_div 0x000154e9 Thumb Code 16 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + drv_dsi_tx_set_video_chunk 0x000154f9 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + drv_dsi_tx_set_video_timing 0x00015501 Thumb Code 34 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + drv_dsi_tx_shutdown 0x00015523 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + drv_dsi_tx_timeout_cfg 0x0001552b Thumb Code 38 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + drv_dsi_tx_video_mode_cfg 0x00015551 Thumb Code 170 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + drv_dsi_tx_video_mode_disable_hact_cmd 0x000155fb Thumb Code 22 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + drv_dsi_tx_video_mode_set_lp_cmd 0x00015611 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + drv_efuse_enter_inactive 0x00015629 Thumb Code 46 drv_efuse.o(i.drv_efuse_enter_inactive) + drv_efuse_int_enable 0x00015657 Thumb Code 12 drv_efuse.o(i.drv_efuse_int_enable) + drv_efuse_read 0x00015663 Thumb Code 50 drv_efuse.o(i.drv_efuse_read) + drv_efuse_read_req 0x00015695 Thumb Code 24 drv_efuse.o(i.drv_efuse_read_req) + drv_gpio_get_input_data 0x000156ad Thumb Code 20 drv_gpio.o(i.drv_gpio_get_input_data) + drv_gpio_register_ap_reset_callback 0x000156c5 Thumb Code 6 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + drv_gpio_register_callback 0x000156d1 Thumb Code 14 drv_gpio.o(i.drv_gpio_register_callback) + drv_gpio_set_int 0x000156e5 Thumb Code 74 drv_gpio.o(i.drv_gpio_set_int) + drv_gpio_set_ioe 0x00015735 Thumb Code 26 drv_gpio.o(i.drv_gpio_set_ioe) + drv_gpio_set_mode0 0x00015755 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode0) + drv_gpio_set_mode1 0x00015765 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode1) + drv_gpio_set_mode2 0x00015775 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode2) + drv_gpio_set_mode3 0x00015785 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode3) + drv_gpio_set_pull_state 0x000157b5 Thumb Code 298 drv_gpio.o(i.drv_gpio_set_pull_state) + drv_i2c0_set_callback 0x000158e5 Thumb Code 6 drv_i2c_slave.o(i.drv_i2c0_set_callback) + drv_i2c1_set_callback 0x000158f1 Thumb Code 6 drv_i2c_master.o(i.drv_i2c1_set_callback) + drv_i2c_dma_init 0x00015931 Thumb Code 146 drv_i2c_dma.o(i.drv_i2c_dma_init) + drv_i2c_enable_rx_dma 0x000159dd Thumb Code 26 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + drv_i2c_enable_tx_dma 0x000159f7 Thumb Code 24 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + drv_i2c_m_clear_it_pending_bit 0x00015a11 Thumb Code 86 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + drv_i2c_m_enable 0x00015a71 Thumb Code 10 drv_i2c_master.o(i.drv_i2c_m_enable) + drv_i2c_m_enable_intr 0x00015a81 Thumb Code 42 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + drv_i2c_master_init 0x00015ab9 Thumb Code 118 drv_i2c_master.o(i.drv_i2c_master_init) + drv_i2c_master_read_dma 0x00015b45 Thumb Code 82 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + drv_i2c_master_write_dma 0x00015ba1 Thumb Code 50 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + drv_i2c_s_clear_it_pending_bit 0x00015c1b Thumb Code 66 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + drv_i2c_s_config_intr 0x00015c5d Thumb Code 4 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + drv_i2c_s_enable 0x00015c61 Thumb Code 8 drv_i2c_slave.o(i.drv_i2c_s_enable) + drv_i2c_s_get_fifo_status 0x00015c69 Thumb Code 20 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + drv_i2c_s_set_intr 0x00015c7d Thumb Code 74 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + drv_i2c_s_write_data 0x00015ccd Thumb Code 28 drv_i2c_slave.o(i.drv_i2c_s_write_data) + drv_i2c_set_dma_irq_callback 0x00015ce9 Thumb Code 68 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + drv_i2c_slave_init 0x00015d41 Thumb Code 50 drv_i2c_slave.o(i.drv_i2c_slave_init) + drv_i2c_slave_write_dma 0x00015d75 Thumb Code 20 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + drv_lcdc_config_bypass 0x00015d8d Thumb Code 24 drv_lcdc.o(i.drv_lcdc_config_bypass) + drv_lcdc_config_ccm 0x00015da5 Thumb Code 48 drv_lcdc.o(i.drv_lcdc_config_ccm) + drv_lcdc_config_disp_mode 0x00015dd5 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + drv_lcdc_config_dpi_polarity 0x00015deb Thumb Code 36 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + drv_lcdc_config_dpi_timing 0x00015e0f Thumb Code 38 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + drv_lcdc_config_edpi_mode 0x00015e35 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + drv_lcdc_config_endianness 0x00015e4b Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_endianness) + drv_lcdc_config_input_size 0x00015e61 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_input_size) + drv_lcdc_config_int 0x00015e6d Thumb Code 30 drv_lcdc.o(i.drv_lcdc_config_int) + drv_lcdc_config_int_single 0x00015e8b Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_int_single) + drv_lcdc_config_overwrite 0x00015ead Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_overwrite) + drv_lcdc_config_overwrite_rgb 0x00015ecf Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + drv_lcdc_config_partial_display_area 0x00015edb Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + drv_lcdc_config_partial_display_enable 0x00015ef5 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + drv_lcdc_config_scale_up_coef 0x00015f17 Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + drv_lcdc_config_scale_up_step 0x00015f31 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + drv_lcdc_config_src_parameter 0x00015f3d Thumb Code 76 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + drv_lcdc_config_thresh 0x00015f89 Thumb Code 6 drv_lcdc.o(i.drv_lcdc_config_thresh) + drv_lcdc_ctrl_flow 0x00015f8f Thumb Code 18 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + drv_lcdc_enable_shadow_reg 0x00015fa1 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + drv_lcdc_set_int 0x00015fc1 Thumb Code 58 drv_lcdc.o(i.drv_lcdc_set_int) + drv_lcdc_set_video_hw_mode 0x00016001 Thumb Code 20 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + drv_lcdc_start 0x00016015 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_start) + drv_memc_clear_status 0x00016035 Thumb Code 12 drv_memc.o(i.drv_memc_clear_status) + drv_memc_enable_irq 0x00016041 Thumb Code 58 drv_memc.o(i.drv_memc_enable_irq) + drv_memc_gen_a_tear_signal 0x00016081 Thumb Code 12 drv_memc.o(i.drv_memc_gen_a_tear_signal) + drv_memc_get_status 0x0001608d Thumb Code 18 drv_memc.o(i.drv_memc_get_status) + drv_memc_rate_transfer_sel 0x0001609f Thumb Code 16 drv_memc.o(i.drv_memc_rate_transfer_sel) + drv_memc_sel_vsync 0x000160af Thumb Code 14 drv_memc.o(i.drv_memc_sel_vsync) + drv_memc_set_active_height 0x000160bd Thumb Code 14 drv_memc.o(i.drv_memc_set_active_height) + drv_memc_set_data_mode 0x000160d1 Thumb Code 12 drv_memc.o(i.drv_memc_set_data_mode) + drv_memc_set_double_buffer 0x000160dd Thumb Code 16 drv_memc.o(i.drv_memc_set_double_buffer) + drv_memc_set_double_buffer_reverse 0x000160ed Thumb Code 18 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + drv_memc_set_fs_en_conditions 0x000160ff Thumb Code 16 drv_memc.o(i.drv_memc_set_fs_en_conditions) + drv_memc_set_inten 0x0001610f Thumb Code 20 drv_memc.o(i.drv_memc_set_inten) + drv_memc_set_lcdc_st_conditions 0x00016125 Thumb Code 18 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + drv_memc_set_ltpo_mode 0x0001613d Thumb Code 26 drv_memc.o(i.drv_memc_set_ltpo_mode) + drv_memc_set_tear_mode 0x00016157 Thumb Code 14 drv_memc.o(i.drv_memc_set_tear_mode) + drv_memc_set_tear_waveform 0x00016165 Thumb Code 34 drv_memc.o(i.drv_memc_set_tear_waveform) + drv_memc_set_vidc_sync_cnt 0x0001618d Thumb Code 14 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + drv_param_init_get_ccm 0x0001619d Thumb Code 4 drv_param_init.o(i.drv_param_init_get_ccm) + drv_param_init_get_scld_filter_h 0x000161a5 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + drv_param_init_get_scld_filter_v 0x000161b9 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + drv_param_init_get_sclu_filter 0x000161cd Thumb Code 4 drv_param_init.o(i.drv_param_init_get_sclu_filter) + drv_param_init_set_ccm 0x000161d5 Thumb Code 14 drv_param_init.o(i.drv_param_init_set_ccm) + drv_param_p2r_filter_init 0x000161e9 Thumb Code 30 drv_param_init.o(i.drv_param_p2r_filter_init) + drv_phy_enable_calibration 0x0001620d Thumb Code 12 drv_phy_common.o(i.drv_phy_enable_calibration) + drv_phy_get_calibration 0x0001621d Thumb Code 50 drv_phy_common.o(i.drv_phy_get_calibration) + drv_phy_get_pll_para 0x00016259 Thumb Code 88 drv_phy_common.o(i.drv_phy_get_pll_para) + drv_phy_get_rate_para 0x000162b9 Thumb Code 76 drv_phy_common.o(i.drv_phy_get_rate_para) + drv_phy_test_clear 0x0001630d Thumb Code 16 drv_phy_common.o(i.drv_phy_test_clear) + drv_phy_test_lock 0x0001631d Thumb Code 24 drv_phy_common.o(i.drv_phy_test_lock) + drv_phy_test_write_1_byte 0x00016335 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_1_byte) + drv_phy_test_write_2_byte 0x00016355 Thumb Code 38 drv_phy_common.o(i.drv_phy_test_write_2_byte) + drv_phy_test_write_code 0x0001637b Thumb Code 30 drv_phy_common.o(i.drv_phy_test_write_code) + drv_pwr_set_cp_mode 0x000163b9 Thumb Code 26 drv_pwr.o(i.drv_pwr_set_cp_mode) + drv_pwr_set_pvd_mode 0x000163d9 Thumb Code 18 drv_pwr.o(i.drv_pwr_set_pvd_mode) + drv_pwr_set_system_clk_src 0x000163f1 Thumb Code 44 drv_pwr.o(i.drv_pwr_set_system_clk_src) + drv_rxbr_clear_pkt_buffer 0x0001646f Thumb Code 10 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + drv_rxbr_clear_status0 0x00016479 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_clear_status0) + drv_rxbr_enable_irq 0x0001647d Thumb Code 90 drv_rxbr.o(i.drv_rxbr_enable_irq) + drv_rxbr_frame_drop_cfg 0x000164d9 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + drv_rxbr_get_clk 0x000164ed Thumb Code 66 drv_rxbr.o(i.drv_rxbr_get_clk) + drv_rxbr_get_col_addr 0x00016551 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_col_addr) + drv_rxbr_get_page_addr 0x00016567 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_page_addr) + drv_rxbr_hline_rcv0_cfg 0x0001657d Thumb Code 12 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + drv_rxbr_hline_rcv_cfg 0x00016589 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + drv_rxbr_register_irq0_callback 0x00016591 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + drv_rxbr_register_irq1_callback 0x0001659d Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + drv_rxbr_set_ack_pkt_header 0x000165a9 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + drv_rxbr_set_cmd_filter 0x000165bd Thumb Code 204 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + drv_rxbr_set_color_format 0x00016689 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_color_format) + drv_rxbr_set_inten 0x0001669d Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_inten) + drv_rxbr_set_ltpo_drop_th 0x000166b1 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + drv_rxbr_set_usr_cfg 0x000166c1 Thumb Code 38 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + drv_rxbr_set_usr_col 0x000166e7 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_col) + drv_rxbr_set_usr_row 0x000166ef Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_row) + drv_spi_m_read_data 0x000166f9 Thumb Code 28 drv_spi_master.o(i.drv_spi_m_read_data) + drv_swire_enable 0x00016719 Thumb Code 24 drv_swire.o(i.drv_swire_enable) + drv_swire_set_int 0x00016735 Thumb Code 76 drv_swire.o(i.drv_swire_set_int) + drv_swire_set_power_down 0x00016789 Thumb Code 24 drv_swire.o(i.drv_swire_set_power_down) + drv_sys_cfg_clear_all_int 0x000167a5 Thumb Code 8 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + drv_sys_cfg_clear_pending 0x000167b1 Thumb Code 32 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + drv_sys_cfg_sel_ap_rst_lvl_trig 0x000167d9 Thumb Code 18 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + drv_sys_cfg_sel_ap_rst_trig 0x000167f1 Thumb Code 22 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + drv_sys_cfg_sel_gpio_group 0x0001680d Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + drv_sys_cfg_sel_int_trig 0x00016831 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + drv_sys_cfg_set_dma_rx_req 0x00016855 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + drv_sys_cfg_set_dma_tx_req 0x00016865 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + drv_sys_cfg_set_int 0x00016875 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + drv_timer_enable 0x000168b3 Thumb Code 32 drv_timer.o(i.drv_timer_enable) + drv_timer_get_instance 0x000168d5 Thumb Code 10 drv_timer.o(i.drv_timer_get_instance) + drv_timer_get_prescaler 0x000168e5 Thumb Code 12 drv_timer.o(i.drv_timer_get_prescaler) + drv_timer_register_callback 0x00016939 Thumb Code 14 drv_timer.o(i.drv_timer_register_callback) + drv_timer_set_compare_val 0x0001694d Thumb Code 16 drv_timer.o(i.drv_timer_set_compare_val) + drv_timer_set_int 0x0001695d Thumb Code 80 drv_timer.o(i.drv_timer_set_int) + drv_timer_set_prescaler 0x000169b1 Thumb Code 36 drv_timer.o(i.drv_timer_set_prescaler) + drv_timer_set_repeat 0x000169d9 Thumb Code 12 drv_timer.o(i.drv_timer_set_repeat) + drv_tx_phy_test_enter 0x000169f3 Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + drv_tx_phy_test_exit 0x00016a0f Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + drv_vidc_clear_irq 0x00016a61 Thumb Code 8 drv_vidc.o(i.drv_vidc_clear_irq) + drv_vidc_enable 0x00016a69 Thumb Code 24 drv_vidc.o(i.drv_vidc_enable) + drv_vidc_enable_irq 0x00016a81 Thumb Code 58 drv_vidc.o(i.drv_vidc_enable_irq) + drv_vidc_get_irq_status 0x00016ac1 Thumb Code 18 drv_vidc.o(i.drv_vidc_get_irq_status) + drv_vidc_init_module_enable 0x00016ad5 Thumb Code 36 drv_vidc.o(i.drv_vidc_init_module_enable) + drv_vidc_register_callback 0x00016afd Thumb Code 6 drv_vidc.o(i.drv_vidc_register_callback) + drv_vidc_reset 0x00016b09 Thumb Code 6 drv_vidc.o(i.drv_vidc_reset) + drv_vidc_set_dst_parameter 0x00016b0f Thumb Code 60 drv_vidc.o(i.drv_vidc_set_dst_parameter) + drv_vidc_set_irqen 0x00016b4b Thumb Code 20 drv_vidc.o(i.drv_vidc_set_irqen) + drv_vidc_set_mirror 0x00016b5f Thumb Code 16 drv_vidc.o(i.drv_vidc_set_mirror) + drv_vidc_set_p2r_hcoef0 0x00016b6f Thumb Code 8 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + drv_vidc_set_p2r_hinitb 0x00016b77 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + drv_vidc_set_p2r_hinitr 0x00016b9d Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + drv_vidc_set_pentile_swap 0x00016bc5 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_pentile_swap) + drv_vidc_set_pu_ctrl 0x00016bdd Thumb Code 10 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + drv_vidc_set_rotation 0x00016be7 Thumb Code 16 drv_vidc.o(i.drv_vidc_set_rotation) + drv_vidc_set_scld_hcoef0 0x00016bf7 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + drv_vidc_set_scld_hcoef1 0x00016c01 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + drv_vidc_set_scld_step 0x00016c0b Thumb Code 18 drv_vidc.o(i.drv_vidc_set_scld_step) + drv_vidc_set_scld_vcoef0 0x00016c1d Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + drv_vidc_set_scld_vcoef1 0x00016c27 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + drv_vidc_set_src_parameter 0x00016c31 Thumb Code 22 drv_vidc.o(i.drv_vidc_set_src_parameter) + drv_wdg_clear_counter 0x00016c49 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_counter) + drv_wdg_set_int 0x00016c79 Thumb Code 60 drv_wdg.o(i.drv_wdg_set_int) + fls_clr_interrupt_flag 0x00016cb9 Thumb Code 10 drv_fls.o(i.fls_clr_interrupt_flag) + fputc 0x00016cc3 Thumb Code 20 tau_log.o(i.fputc) + hal_dsi_rx_ctrl_create_handle 0x00016cd9 Thumb Code 48 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + hal_dsi_rx_ctrl_deinit 0x00016d0d Thumb Code 148 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + hal_dsi_rx_ctrl_dsc_async_handler 0x00016da9 Thumb Code 120 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016e2d Thumb Code 32 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + hal_dsi_rx_ctrl_get_max_ret_size 0x00016e55 Thumb Code 30 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + hal_dsi_rx_ctrl_init 0x00016e7d Thumb Code 88 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + hal_dsi_rx_ctrl_send_ack_cmd 0x00017625 Thumb Code 212 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + hal_dsi_rx_ctrl_set_cus_sync_line 0x00017715 Thumb Code 44 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + hal_dsi_rx_ctrl_set_hw_tear_mode 0x00017749 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017829 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + hal_dsi_rx_ctrl_start 0x0001785d Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + hal_dsi_rx_ctrl_stop 0x00017899 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + hal_dsi_rx_ctrl_toggle_resolution 0x000178d5 Thumb Code 28 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + hal_dsi_tx_crop_pic 0x00017f09 Thumb Code 144 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) + hal_dsi_tx_ctrl_create_handle 0x00017f9d Thumb Code 34 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + hal_dsi_tx_ctrl_deinit 0x00017fc9 Thumb Code 118 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + hal_dsi_tx_ctrl_enter_init_panel_mode 0x0001804d Thumb Code 68 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + hal_dsi_tx_ctrl_exit_init_panel_mode 0x00018099 Thumb Code 32 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + hal_dsi_tx_ctrl_init 0x000180c1 Thumb Code 154 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + hal_dsi_tx_ctrl_panel_reset_pin 0x00018189 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + hal_dsi_tx_ctrl_set_ccm 0x00018195 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + hal_dsi_tx_ctrl_set_overwrite_rgb 0x000181b5 Thumb Code 16 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + hal_dsi_tx_ctrl_set_partial_disp 0x000181c9 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + hal_dsi_tx_ctrl_set_partial_disp_area 0x000181d9 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + hal_dsi_tx_ctrl_start 0x000181fd Thumb Code 140 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + hal_dsi_tx_ctrl_stop 0x00018299 Thumb Code 56 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + hal_dsi_tx_ctrl_write_array_cmd 0x000182dd Thumb Code 210 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + hal_dsi_tx_ctrl_write_cmd 0x000183b5 Thumb Code 172 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + hal_gpio_ctrl_eint 0x00018649 Thumb Code 18 hal_gpio.o(i.hal_gpio_ctrl_eint) + hal_gpio_get_input_data 0x00018661 Thumb Code 18 hal_gpio.o(i.hal_gpio_get_input_data) + hal_gpio_init_eint 0x00018675 Thumb Code 58 hal_gpio.o(i.hal_gpio_init_eint) + hal_gpio_init_input 0x000186b5 Thumb Code 28 hal_gpio.o(i.hal_gpio_init_input) + hal_gpio_init_output 0x000186d5 Thumb Code 34 hal_gpio.o(i.hal_gpio_init_output) + hal_gpio_reg_eint_cb 0x000186fd Thumb Code 20 hal_gpio.o(i.hal_gpio_reg_eint_cb) + hal_gpio_set_ap_reset_int 0x00018715 Thumb Code 76 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + hal_gpio_set_mode 0x00018765 Thumb Code 90 hal_gpio.o(i.hal_gpio_set_mode) + hal_gpio_set_output_data 0x000187c5 Thumb Code 8 hal_gpio.o(i.hal_gpio_set_output_data) + hal_gpio_set_pull_state 0x000187cd Thumb Code 26 hal_gpio.o(i.hal_gpio_set_pull_state) + hal_i2c_m_dma_init 0x000187ed Thumb Code 92 hal_i2c_master.o(i.hal_i2c_m_dma_init) + hal_i2c_m_dma_read 0x00018859 Thumb Code 26 hal_i2c_master.o(i.hal_i2c_m_dma_read) + hal_i2c_m_dma_write 0x00018879 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_m_dma_write) + hal_i2c_m_transfer_complate 0x00018895 Thumb Code 6 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + hal_i2c_s_dma_write 0x000188d1 Thumb Code 62 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + hal_i2c_s_init 0x0001891d Thumb Code 176 hal_i2c_slave.o(i.hal_i2c_s_init) + hal_i2c_s_nonblocking_read 0x000189e5 Thumb Code 14 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + hal_i2c_s_set_transfer 0x000189f9 Thumb Code 6 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + hal_internal_init_memc 0x00018b79 Thumb Code 170 hal_internal_vsync.o(i.hal_internal_init_memc) + hal_internal_sync_get_fb_setting 0x00018c75 Thumb Code 12 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + hal_internal_sync_get_hight_performan_mode 0x00018c85 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + hal_internal_sync_input_resolution_change 0x00018c95 Thumb Code 438 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + hal_internal_update_dpi_param 0x00018ec1 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + hal_internal_video_mode_auto_sync 0x00018ed1 Thumb Code 238 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + hal_internal_vsync_deinit 0x00018fdd Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + hal_internal_vsync_get_rx_state 0x00019005 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + hal_internal_vsync_get_sync_line 0x00019011 Thumb Code 18 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + hal_internal_vsync_get_tear_mode 0x00019029 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + hal_internal_vsync_get_tx_state 0x00019035 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + hal_internal_vsync_init_rx 0x00019041 Thumb Code 236 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + hal_internal_vsync_init_tx 0x00019159 Thumb Code 172 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + hal_internal_vsync_set_auto_hw_filter 0x00019209 Thumb Code 222 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + hal_internal_vsync_set_rx_state 0x00019325 Thumb Code 16 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + hal_internal_vsync_set_sync_line 0x00019339 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + hal_internal_vsync_set_tear_mode 0x0001935d Thumb Code 72 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + hal_internal_vsync_set_tx_state 0x000193ad Thumb Code 118 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + hal_internal_vsync_update_lcdc_addr 0x0001942d Thumb Code 42 hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) + hal_spi_m_clear_rxfifo 0x00019881 Thumb Code 14 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + hal_swire_deinit 0x0001988f Thumb Code 18 hal_swire.o(i.hal_swire_deinit) + hal_swire_open 0x000198a1 Thumb Code 22 hal_swire.o(i.hal_swire_open) + hal_system_enable_systick 0x000198b7 Thumb Code 8 hal_system.o(i.hal_system_enable_systick) + hal_system_init 0x000198c1 Thumb Code 104 hal_system.o(i.hal_system_init) + hal_system_init_console 0x00019949 Thumb Code 28 hal_system.o(i.hal_system_init_console) + hal_system_set_phy_calibration 0x00019965 Thumb Code 8 hal_system.o(i.hal_system_set_phy_calibration) + hal_system_set_pvd 0x0001996d Thumb Code 8 hal_system.o(i.hal_system_set_pvd) + hal_system_set_vcc 0x00019975 Thumb Code 8 hal_system.o(i.hal_system_set_vcc) + hal_timer_deinit 0x0001997d Thumb Code 46 hal_timer.o(i.hal_timer_deinit) + hal_timer_init 0x000199ab Thumb Code 26 hal_timer.o(i.hal_timer_init) + hal_timer_start 0x000199c5 Thumb Code 66 hal_timer.o(i.hal_timer_start) + hal_timer_stop 0x00019a0d Thumb Code 40 hal_timer.o(i.hal_timer_stop) + hal_uart_init 0x00019a35 Thumb Code 126 hal_uart.o(i.hal_uart_init) + hal_uart_transmit_blocking 0x00019ac1 Thumb Code 12 hal_uart.o(i.hal_uart_transmit_blocking) + handle_init 0x00019ad1 Thumb Code 140 irq_redirect .o(i.handle_init) + main 0x00019d55 Thumb Code 10 main.o(i.main) + sqrt 0x0001aa41 Thumb Code 66 sqrt.o(i.sqrt) + tp_heartbeat_exec 0x0001aa89 Thumb Code 60 ap_demo.o(i.tp_heartbeat_exec) + panel_init_code 0x0001af14 Data 10444 ap_demo.o(.constdata) + wCRCTalbeAbs 0x0001d7e0 Data 32 app_tp_st_touch.o(.constdata) + I2C_Ack_arr_0600_00 0x0001d918 Data 1 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0600_01 0x0001d919 Data 1 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A00 0x0001d91a Data 2 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0204 0x0001d91c Data 4 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_01 0x0001d920 Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_03 0x0001d927 Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_14 0x0001d92e Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0120 0x0001d935 Data 8 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0100 0x0001d93d Data 16 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A28 0x0001d94d Data 20 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_A019 0x0001d961 Data 24 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_01 0x0001d979 Data 1088 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_14 0x0001ddb9 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_1B 0x0001de81 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_1C 0x0001df49 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_02 0x0001e011 Data 1088 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_03 0x0001e451 Data 544 app_tp_for_custom_s8.o(.constdata) + screen_reg_start_data_size 0x0001e671 Data 1 app_tp_for_custom_s8.o(.constdata) + Region$$Table$$Base 0x0001ea10 Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0001ea40 Number 0 anon$$obj.o(Region$$Table) + g_fun_handle 0x00070100 Data 192 irq_redirect .o(.ARM.__AT_0x00070100) + phone_start_flag 0x000701d8 Data 1 ap_demo.o(.data) + phone_DisplayOFF_flag 0x000701d9 Data 1 ap_demo.o(.data) + panel_mode 0x000701dc Data 1 ap_demo.o(.data) + phone_DisplayOFF_count 0x000701de Data 2 ap_demo.o(.data) + rd_51_val2 0x000701e0 Data 2 ap_demo.o(.data) + panel_r 0x000701e2 Data 2 ap_demo.o(.data) + panel_g 0x000701e4 Data 2 ap_demo.o(.data) + panel_b 0x000701e6 Data 2 ap_demo.o(.data) + s_heartbeat 0x000701f4 Data 4 ap_demo.o(.data) + s_screen_init_complate 0x000701fc Data 1 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data1 0x00070200 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data3 0x00070203 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data4 0x00070206 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data2 0x00070209 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data3 0x0007020c Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data6 0x0007020f Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data7 0x00070212 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data8 0x00070215 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data4 0x00070218 Data 4 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data5 0x0007021c Data 4 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data2 0x00070220 Data 6 app_tp_transfer.o(.data) + st_touch_init_sensor_off 0x00070228 Data 3 app_tp_st_touch.o(.data) + st_touch_init_sensor_on 0x0007022b Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_reset 0x0007022e Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_FpnlInit 0x00070231 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_PnlInit 0x00070234 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_SvCfg 0x00070237 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_SvCx 0x0007023a Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_SvPnl 0x0007023d Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_clearfifo 0x00070240 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_clkreset 0x00070243 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_TuneM 0x00070246 Data 4 app_tp_st_touch.o(.data) + st_touch_tp_tuning_TuneS 0x0007024a Data 4 app_tp_st_touch.o(.data) + tp_flag 0x0007027c Data 1 app_tp_for_custom_s8.o(.data) + g_phone_output_int_pad 0x0007027d Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_in 0x0007027e Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_count 0x0007027f Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_clk_count 0x00070280 Data 1 app_tp_for_custom_s8.o(.data) + sleep_double_EN 0x00070281 Data 1 app_tp_for_custom_s8.o(.data) + Flag_EA_EN 0x00070282 Data 1 app_tp_for_custom_s8.o(.data) + Flag_touch_count 0x00070283 Data 1 app_tp_for_custom_s8.o(.data) + touchnum_bak 0x00070284 Data 1 app_tp_for_custom_s8.o(.data) + Flag_blacklight_EN 0x00070285 Data 1 app_tp_for_custom_s8.o(.data) + Flag_0A10 0x00070286 Data 1 app_tp_for_custom_s8.o(.data) + Flag_0610 0x00070287 Data 1 app_tp_for_custom_s8.o(.data) + Flag_2000 0x00070288 Data 1 app_tp_for_custom_s8.o(.data) + send_point 0x00070289 Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_flag 0x0007028a Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_enable 0x0007028b Data 1 app_tp_for_custom_s8.o(.data) + phone_reg_coord_back 0x0007029c Data 200 app_tp_for_custom_s8.o(.data) + g_screen_input_rst_pad 0x00070364 Data 1 app_tp_for_custom_s8.o(.data) + g_screen_input_int_pad 0x00070365 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_1 0x00070366 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_2 0x00070367 Data 3 app_tp_for_custom_s8.o(.data) + screen_data_write_3 0x0007036a Data 5 app_tp_for_custom_s8.o(.data) + screen_reg_int_data 0x00070370 Data 48 app_tp_for_custom_s8.o(.data) + g_fls_w_cmd 0x000703a0 Data 1 norflash.o(.data) + g_fls_r_cmd 0x000703a1 Data 1 norflash.o(.data) + g_fls_write_en_status 0x000703a2 Data 1 norflash.o(.data) + isFlsTransferEnd 0x000703a3 Data 1 norflash.o(.data) + isFlsFifoReq 0x000703a4 Data 1 norflash.o(.data) + isNandWriteCompleted 0x000703a5 Data 1 norflash.o(.data) + isNandReadCompleted 0x000703a6 Data 1 norflash.o(.data) + g_fls_error_info 0x000703ac Data 6 norflash.o(.data) + g_systick_cb_func 0x000703b8 Data 4 drv_common.o(.data) + g_system_clock 0x000703bc Data 4 drv_common.o(.data) + g_scld_fhd_filter_h 0x000703d4 Data 256 drv_param_init.o(.data) + g_scld_fhd_filter_v 0x000704d4 Data 256 drv_param_init.o(.data) + g_scld_hd_filter_h 0x000705d4 Data 256 drv_param_init.o(.data) + g_scld_hd_filter_v 0x000706d4 Data 256 drv_param_init.o(.data) + g_sclu_lanczos_filter 0x000707d4 Data 128 drv_param_init.o(.data) + g_ccm_setting 0x00070854 Data 36 drv_param_init.o(.data) + g_sof_gen_te_func 0x000708e0 Data 4 hal_internal_vsync.o(.data) + g_int_rxbr_irq0_cb_func 0x000708e4 Data 4 drv_rxbr.o(.data) + g_int_rxbr_irq1_cb_func 0x000708e8 Data 4 drv_rxbr.o(.data) + g_int_vidc_cb_func 0x000708ec Data 4 drv_vidc.o(.data) + __stdout 0x00070920 Data 4 stdout.o(.data) + tp_scan_data 0x00070ab8 Data 12 app_tp_st_touch.o(.bss) + string 0x00070bd4 Data 256 tau_log.o(.bss) + hal_dmahandle 0x00070cd4 Data 160 hal_uart.o(.bss) + hal_uarthandle_dma 0x00070d74 Data 32 hal_uart.o(.bss) + hal_uart_handle_global 0x00070d94 Data 16 hal_uart.o(.bss) + g_vsync_hande 0x00070f40 Data 100 hal_internal_vsync.o(.bss) + g_dcs_execute_table 0x00070fa4 Data 2048 hal_internal_vsync.o(.bss) + g_packet_fifo 0x000718c4 Data 4144 dcs_packet_fifo.o(.bss) + g_spis_ctrl_handle 0x000728f4 Data 32 hal_spi_slave.o(.bss) + __stack_limit 0x00072918 Data 0 startup_armcm0.o(STACK) + __initial_sp 0x00073918 Data 0 startup_armcm0.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x000100c1 + + Load Region LR_IROM2 (Base: 0x00010000, Size: 0x0000f198, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x0000ee28]) + + Execution Region ER_IROM2 (Exec base: 0x00010000, Load base: 0x00010000, Size: 0x0000ea40, Max: 0x00010000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00010000 0x00010000 0x000000c0 Data RO 528 RESET startup_armcm0.o + 0x000100c0 0x000100c0 0x00000000 Code RO 2685 * .ARM.Collect$$$$00000000 mc_p.l(entry.o) + 0x000100c0 0x000100c0 0x00000004 Code RO 2995 .ARM.Collect$$$$00000001 mc_p.l(entry2.o) + 0x000100c4 0x000100c4 0x00000004 Code RO 2998 .ARM.Collect$$$$00000004 mc_p.l(entry5.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 3000 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 3002 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o) + 0x000100c8 0x000100c8 0x00000008 Code RO 3003 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 3005 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 3007 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o) + 0x000100d0 0x000100d0 0x00000004 Code RO 2996 .ARM.Collect$$$$00002712 mc_p.l(entry2.o) + 0x000100d4 0x000100d4 0x00000078 Code RO 529 .text startup_armcm0.o + 0x0001014c 0x0001014c 0x0000002c Code RO 2688 .text mc_p.l(uidiv.o) + 0x00010178 0x00010178 0x00000028 Code RO 2690 .text mc_p.l(idiv.o) + 0x000101a0 0x000101a0 0x00000024 Code RO 2692 .text mc_p.l(memcpya.o) + 0x000101c4 0x000101c4 0x00000024 Code RO 2694 .text mc_p.l(memseta.o) + 0x000101e8 0x000101e8 0x000000b2 Code RO 2959 .text mf_p.l(fadd.o) + 0x0001029a 0x0001029a 0x0000007a Code RO 2961 .text mf_p.l(fmul.o) + 0x00010314 0x00010314 0x0000007c Code RO 2963 .text mf_p.l(fdiv.o) + 0x00010390 0x00010390 0x00000018 Code RO 2965 .text mf_p.l(fscalb.o) + 0x000103a8 0x000103a8 0x00000164 Code RO 2967 .text mf_p.l(dadd.o) + 0x0001050c 0x0001050c 0x000000d0 Code RO 2969 .text mf_p.l(dmul.o) + 0x000105dc 0x000105dc 0x000000f0 Code RO 2971 .text mf_p.l(ddiv.o) + 0x000106cc 0x000106cc 0x00000016 Code RO 2973 .text mf_p.l(fflti.o) + 0x000106e2 0x000106e2 0x0000000e Code RO 2975 .text mf_p.l(ffltui.o) + 0x000106f0 0x000106f0 0x0000001c Code RO 2979 .text mf_p.l(dfltui.o) + 0x0001070c 0x0001070c 0x00000032 Code RO 2981 .text mf_p.l(ffixi.o) + 0x0001073e 0x0001073e 0x00000028 Code RO 2983 .text mf_p.l(ffixui.o) + 0x00010766 0x00010766 0x00000002 PAD + 0x00010768 0x00010768 0x00000048 Code RO 2985 .text mf_p.l(dfixi.o) + 0x000107b0 0x000107b0 0x0000003c Code RO 2987 .text mf_p.l(dfixui.o) + 0x000107ec 0x000107ec 0x00000028 Code RO 2989 .text mf_p.l(f2d.o) + 0x00010814 0x00010814 0x00000028 Code RO 2991 .text mf_p.l(cdcmple.o) + 0x0001083c 0x0001083c 0x00000014 Code RO 2993 .text mf_p.l(cfrcmple.o) + 0x00010850 0x00010850 0x00000060 Code RO 3010 .text mc_p.l(uldiv.o) + 0x000108b0 0x000108b0 0x00000020 Code RO 3012 .text mc_p.l(llshl.o) + 0x000108d0 0x000108d0 0x00000022 Code RO 3014 .text mc_p.l(llushr.o) + 0x000108f2 0x000108f2 0x00000026 Code RO 3016 .text mc_p.l(llsshr.o) + 0x00010918 0x00010918 0x00000000 Code RO 3025 .text mc_p.l(iusefp.o) + 0x00010918 0x00010918 0x00000082 Code RO 3026 .text mf_p.l(fepilogue.o) + 0x0001099a 0x0001099a 0x000000be Code RO 3028 .text mf_p.l(depilogue.o) + 0x00010a58 0x00010a58 0x000000a2 Code RO 3032 .text mf_p.l(dsqrt.o) + 0x00010afa 0x00010afa 0x00000002 PAD + 0x00010afc 0x00010afc 0x00000040 Code RO 3034 .text mf_p.l(dfixul.o) + 0x00010b3c 0x00010b3c 0x00000028 Code RO 3036 .text mf_p.l(cdrcmple.o) + 0x00010b64 0x00010b64 0x00000024 Code RO 3038 .text mc_p.l(init.o) + 0x00010b88 0x00010b88 0x00000056 Code RO 3048 .text mc_p.l(__dczerorl2.o) + 0x00010bde 0x00010bde 0x00000002 PAD + 0x00010be0 0x00010be0 0x00000018 Code RO 2280 i.ADC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010bf8 0x00010bf8 0x00000018 Code RO 2281 i.AP_NRESET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c10 0x00010c10 0x00000040 Code RO 405 i.CRC16_2 app_tp_st_touch.o + 0x00010c50 0x00010c50 0x00000014 Code RO 2282 i.DMA_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c64 0x00010c64 0x0000001c Code RO 2283 i.EXTI_INT0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c80 0x00010c80 0x0000001c Code RO 2284 i.EXTI_INT1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c9c 0x00010c9c 0x0000001c Code RO 2285 i.EXTI_INT2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cb8 0x00010cb8 0x0000001c Code RO 2286 i.EXTI_INT3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cd4 0x00010cd4 0x0000001c Code RO 2287 i.EXTI_INT4_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cf0 0x00010cf0 0x0000001c Code RO 2288 i.EXTI_INT5_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d0c 0x00010d0c 0x0000001c Code RO 2289 i.EXTI_INT6_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d28 0x00010d28 0x0000001c Code RO 2290 i.EXTI_INT7_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d44 0x00010d44 0x00000024 Code RO 952 i.EncryptCheckEx ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00010d68 0x00010d68 0x00000014 Code RO 2291 i.FLSCTRL_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d7c 0x00010d7c 0x0000004e Code RO 86 i.Gpio_swire_output ap_demo.o + 0x00010dca 0x00010dca 0x00000002 PAD + 0x00010dcc 0x00010dcc 0x00000014 Code RO 2292 i.HardFault_Handler CVWL368.lib(irq_redirect .o) + 0x00010de0 0x00010de0 0x00000018 Code RO 2293 i.I2C0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010df8 0x00010df8 0x00000018 Code RO 2294 i.I2C1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e10 0x00010e10 0x00000018 Code RO 2295 i.LCDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e28 0x00010e28 0x00000028 Code RO 941 i.LOG_printf CVWL368.lib(tau_log.o) + 0x00010e50 0x00010e50 0x00000018 Code RO 2296 i.MEMC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e68 0x00010e68 0x00000018 Code RO 2297 i.MIPI_RX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e80 0x00010e80 0x00000018 Code RO 2298 i.MIPI_TX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e98 0x00010e98 0x0000001c Code RO 2299 i.PWMDET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010eb4 0x00010eb4 0x0000014c Code RO 252 i.S20_Start_init app_tp_transfer.o + 0x00011000 0x00011000 0x00000014 Data RO 1183 .ARM.__at_0x11000 CVWL368.lib(drv_common.o) + 0x00011014 0x00011014 0x00000002 Code RO 2567 i.UART_DisableDma CVWL368.lib(drv_uart.o) + 0x00011016 0x00011016 0x00000002 Code RO 3043 i.__scatterload_null mc_p.l(handlers.o) + 0x00011018 0x00011018 0x00000004 Data RO 1184 .ARM.__at_0x11018 CVWL368.lib(drv_common.o) + 0x0001101c 0x0001101c 0x0000001c Code RO 2300 i.SPIM_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011038 0x00011038 0x0000001c Code RO 2301 i.SPIS_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011054 0x00011054 0x0000001c Code RO 2302 i.SWIRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011070 0x00011070 0x00000018 Code RO 2303 i.SysTick_Handler CVWL368.lib(irq_redirect .o) + 0x00011088 0x00011088 0x00000018 Code RO 2304 i.TIMER0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110a0 0x000110a0 0x00000018 Code RO 2305 i.TIMER1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110b8 0x000110b8 0x00000018 Code RO 2306 i.TIMER2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110d0 0x000110d0 0x00000018 Code RO 2307 i.TIMER3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110e8 0x000110e8 0x0000001c Code RO 2563 i.UART0_IRQ_Handle CVWL368.lib(drv_uart.o) + 0x00011104 0x00011104 0x00000004 Code RO 2573 i.UART_GetInstance CVWL368.lib(drv_uart.o) + 0x00011108 0x00011108 0x00000018 Code RO 2308 i.UART_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011120 0x00011120 0x00000024 Code RO 2581 i.UART_ResetRxFIFO CVWL368.lib(drv_uart.o) + 0x00011144 0x00011144 0x00000048 Code RO 2584 i.UART_SetBaudRate CVWL368.lib(drv_uart.o) + 0x0001118c 0x0001118c 0x0000001a Code RO 2585 i.UART_SwitchSCLK CVWL368.lib(drv_uart.o) + 0x000111a6 0x000111a6 0x00000134 Code RO 2587 i.UART_TransferHandleIRQ CVWL368.lib(drv_uart.o) + 0x000112da 0x000112da 0x0000001a Code RO 2589 i.UART_WriteBlocking CVWL368.lib(drv_uart.o) + 0x000112f4 0x000112f4 0x000000bc Code RO 2590 i.UART_init CVWL368.lib(drv_uart.o) + 0x000113b0 0x000113b0 0x00000018 Code RO 2309 i.VIDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113c8 0x000113c8 0x00000018 Code RO 2310 i.VPRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113e0 0x000113e0 0x00000018 Code RO 2311 i.WDG_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113f8 0x000113f8 0x00000020 Code RO 2931 i.__0printf mc_p.l(printfa.o) + 0x00011418 0x00011418 0x00000024 Code RO 2937 i.__0vsprintf mc_p.l(printfa.o) + 0x0001143c 0x0001143c 0x0000002e Code RO 3030 i.__ARM_clz mf_p.l(depilogue.o) + 0x0001146a 0x0001146a 0x0000001a Code RO 626 i.__ARM_common_switch8 CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00011484 0x00011484 0x00000018 Code RO 1504 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_i2c_master.o) + 0x0001149c 0x0001149c 0x00000018 Code RO 1628 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_spi_master.o) + 0x000114b4 0x000114b4 0x00000020 Code RO 2134 i.__NVIC_DisableIRQ CVWL368.lib(drv_rxbr.o) + 0x000114d4 0x000114d4 0x00000018 Code RO 2135 i.__NVIC_EnableIRQ CVWL368.lib(drv_rxbr.o) + 0x000114ec 0x000114ec 0x00000044 Code RO 2430 i.__NVIC_SetPriority CVWL368.lib(hal_spi_slave.o) + 0x00011530 0x00011530 0x0000000e Code RO 3042 i.__scatterload_copy mc_p.l(handlers.o) + 0x0001153e 0x0001153e 0x0000000e Code RO 3044 i.__scatterload_zeroinit mc_p.l(handlers.o) + 0x0001154c 0x0001154c 0x0000000c Code RO 3020 i.__set_errno mc_p.l(errno.o) + 0x00011558 0x00011558 0x00000174 Code RO 2938 i._fp_digits mc_p.l(printfa.o) + 0x000116cc 0x000116cc 0x000006ec Code RO 2939 i._printf_core mc_p.l(printfa.o) + 0x00011db8 0x00011db8 0x00000020 Code RO 2940 i._printf_post_padding mc_p.l(printfa.o) + 0x00011dd8 0x00011dd8 0x0000002c Code RO 2941 i._printf_pre_padding mc_p.l(printfa.o) + 0x00011e04 0x00011e04 0x0000000a Code RO 2943 i._sputc mc_p.l(printfa.o) + 0x00011e0e 0x00011e0e 0x00000002 PAD + 0x00011e10 0x00011e10 0x000001cc Code RO 87 i.ap_dcs_read ap_demo.o + 0x00011fdc 0x00011fdc 0x000002c8 Code RO 88 i.ap_demo ap_demo.o + 0x000122a4 0x000122a4 0x0000002c Code RO 89 i.ap_get_reg_53 ap_demo.o + 0x000122d0 0x000122d0 0x00000054 Code RO 90 i.ap_get_reg_7A ap_demo.o + 0x00012324 0x00012324 0x00000098 Code RO 91 i.ap_get_reg_df ap_demo.o + 0x000123bc 0x000123bc 0x00000020 Code RO 406 i.ap_get_tp_calibration_status_01 app_tp_st_touch.o + 0x000123dc 0x000123dc 0x00000044 Code RO 92 i.ap_reset_cb ap_demo.o + 0x00012420 0x00012420 0x00000044 Code RO 93 i.ap_set_backlight_51 ap_demo.o + 0x00012464 0x00012464 0x00000048 Code RO 94 i.ap_set_display_off ap_demo.o + 0x000124ac 0x000124ac 0x00000038 Code RO 95 i.ap_set_display_on ap_demo.o + 0x000124e4 0x000124e4 0x00000078 Code RO 96 i.ap_set_enter_sleep_mode ap_demo.o + 0x0001255c 0x0001255c 0x00000048 Code RO 97 i.ap_set_exit_sleep_mode ap_demo.o + 0x000125a4 0x000125a4 0x00000098 Code RO 407 i.ap_set_tp_calibration_04 app_tp_st_touch.o + 0x0001263c 0x0001263c 0x000000b0 Code RO 408 i.ap_tp_st_touch_calibration app_tp_st_touch.o + 0x000126ec 0x000126ec 0x000000a8 Code RO 411 i.ap_tp_st_touch_get_calibration_success_mark app_tp_st_touch.o + 0x00012794 0x00012794 0x0000001c Code RO 413 i.ap_tp_st_touch_scan_point_init app_tp_st_touch.o + 0x000127b0 0x000127b0 0x00000050 Code RO 415 i.ap_tp_st_touch_scan_point_record_event_exec app_tp_st_touch.o + 0x00012800 0x00012800 0x00000034 Code RO 416 i.ap_tp_st_touch_simulate_finger_release_event app_tp_st_touch.o + 0x00012834 0x00012834 0x000000ac Code RO 417 i.ap_tp_st_touch_software_reset app_tp_st_touch.o + 0x000128e0 0x000128e0 0x0000001c Code RO 2136 i.app_ADC_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x000128fc 0x000128fc 0x00000024 Code RO 1428 i.app_AP_NRESET_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012920 0x00012920 0x0000001c Code RO 1429 i.app_EXTI_INT0_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x0001293c 0x0001293c 0x0000001c Code RO 1430 i.app_EXTI_INT1_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012958 0x00012958 0x0000001c Code RO 1431 i.app_EXTI_INT2_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012974 0x00012974 0x0000001c Code RO 1432 i.app_EXTI_INT3_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012990 0x00012990 0x0000001c Code RO 1433 i.app_EXTI_INT4_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129ac 0x000129ac 0x0000001c Code RO 1434 i.app_EXTI_INT5_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129c8 0x000129c8 0x0000001c Code RO 1435 i.app_EXTI_INT6_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129e4 0x000129e4 0x0000001c Code RO 1436 i.app_EXTI_INT7_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012a00 0x00012a00 0x00000048 Code RO 1175 i.app_HardFault_Handler CVWL368.lib(drv_common.o) + 0x00012a48 0x00012a48 0x00000018 Code RO 1539 i.app_I2C0_IRQn_Handler CVWL368.lib(drv_i2c_slave.o) + 0x00012a60 0x00012a60 0x00000010 Code RO 1505 i.app_I2C1_IRQn_Handler CVWL368.lib(drv_i2c_master.o) + 0x00012a70 0x00012a70 0x000001a4 Code RO 1746 i.app_LCDC_IRQn_Handler CVWL368.lib(hal_internal_vsync.o) + 0x00012c14 0x00012c14 0x00000088 Code RO 2078 i.app_MEMC_IRQn_Handler CVWL368.lib(drv_memc.o) + 0x00012c9c 0x00012c9c 0x00000298 Code RO 1850 i.app_MIPI_RX_IRQn_Handler CVWL368.lib(drv_dsi_rx.o) + 0x00012f34 0x00012f34 0x000000a0 Code RO 1906 i.app_MIPI_TX_IRQn_Handler CVWL368.lib(drv_dsi_tx.o) + 0x00012fd4 0x00012fd4 0x00000048 Code RO 2498 i.app_PWMDET_IRQn_Handler CVWL368.lib(drv_pwm.o) + 0x0001301c 0x0001301c 0x00000030 Code RO 1629 i.app_SPIM_IRQn_Handler CVWL368.lib(drv_spi_master.o) + 0x0001304c 0x0001304c 0x00000200 Code RO 2431 i.app_SPIS_IRQn_Handler CVWL368.lib(hal_spi_slave.o) + 0x0001324c 0x0001324c 0x00000020 Code RO 1661 i.app_SWIRE_IRQn_Handler CVWL368.lib(drv_swire.o) + 0x0001326c 0x0001326c 0x00000018 Code RO 1176 i.app_SysTick_Handler CVWL368.lib(drv_common.o) + 0x00013284 0x00013284 0x0000000a Code RO 1711 i.app_TIMER0_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x0001328e 0x0001328e 0x0000000a Code RO 1712 i.app_TIMER1_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00013298 0x00013298 0x0000000a Code RO 1713 i.app_TIMER2_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x000132a2 0x000132a2 0x0000000a Code RO 1714 i.app_TIMER3_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x000132ac 0x000132ac 0x00000008 Code RO 2591 i.app_UART_IRQn_Handler CVWL368.lib(drv_uart.o) + 0x000132b4 0x000132b4 0x0000001c Code RO 2201 i.app_VIDC_IRQn_Handler CVWL368.lib(drv_vidc.o) + 0x000132d0 0x000132d0 0x0000001c Code RO 2137 i.app_VPRE_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x000132ec 0x000132ec 0x00000038 Code RO 2650 i.app_WDG_IRQn_Handler CVWL368.lib(drv_wdg.o) + 0x00013324 0x00013324 0x00000010 Code RO 1290 i.app_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00013334 0x00013334 0x00000030 Code RO 1091 i.app_fls_ctrl_Handler CVWL368.lib(norflash.o) + 0x00013364 0x00013364 0x00000024 Code RO 254 i.app_tp_I2C_init app_tp_transfer.o + 0x00013388 0x00013388 0x000000a8 Code RO 418 i.app_tp_calibration_exec app_tp_st_touch.o + 0x00013430 0x00013430 0x0000009c Code RO 255 i.app_tp_i2cs_callback app_tp_transfer.o + 0x000134cc 0x000134cc 0x00000044 Code RO 256 i.app_tp_init app_tp_transfer.o + 0x00013510 0x00013510 0x00000020 Code RO 257 i.app_tp_m_read app_tp_transfer.o + 0x00013530 0x00013530 0x00000008 Code RO 259 i.app_tp_m_write app_tp_transfer.o + 0x00013538 0x00013538 0x000004c0 Code RO 953 i.app_tp_phone_analysis_data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x000139f8 0x000139f8 0x00000008 Code RO 262 i.app_tp_s_read app_tp_transfer.o + 0x00013a00 0x00013a00 0x00000008 Code RO 264 i.app_tp_s_write app_tp_transfer.o + 0x00013a08 0x00013a08 0x00000484 Code RO 955 i.app_tp_screen_analysis_int ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00013e8c 0x00013e8c 0x00000030 Code RO 265 i.app_tp_screen_init app_tp_transfer.o + 0x00013ebc 0x00013ebc 0x0000000c Code RO 266 i.app_tp_screen_int_callback app_tp_transfer.o + 0x00013ec8 0x00013ec8 0x00000040 Code RO 267 i.app_tp_transfer_screen_const app_tp_transfer.o + 0x00013f08 0x00013f08 0x0000010c Code RO 268 i.app_tp_transfer_screen_int app_tp_transfer.o + 0x00014014 0x00014014 0x00000014 Code RO 269 i.app_tp_transfer_screen_start app_tp_transfer.o + 0x00014028 0x00014028 0x00000024 Code RO 508 i.board_Init board.o + 0x0001404c 0x0001404c 0x000004f0 Code RO 1747 i.calc_framebuffer_setting CVWL368.lib(hal_internal_vsync.o) + 0x0001453c 0x0001453c 0x000000c8 Code RO 2674 i.ceil m_ps.l(ceil.o) + 0x00014604 0x00014604 0x0000002c Code RO 1748 i.check_mipi_rx_tx_video_info CVWL368.lib(hal_internal_vsync.o) + 0x00014630 0x00014630 0x00000094 Code RO 1749 i.check_pkt_buf_rev CVWL368.lib(hal_internal_vsync.o) + 0x000146c4 0x000146c4 0x00000058 Code RO 1837 i.dcs_packet_fifo_alloc CVWL368.lib(dcs_packet_fifo.o) + 0x0001471c 0x0001471c 0x00000018 Code RO 1838 i.dcs_packet_fifo_init CVWL368.lib(dcs_packet_fifo.o) + 0x00014734 0x00014734 0x00000044 Code RO 1839 i.dcs_packet_free_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x00014778 0x00014778 0x00000024 Code RO 1840 i.dcs_packet_get_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x0001479c 0x0001479c 0x0000001c Code RO 1750 i.dcs_sw_filter CVWL368.lib(hal_internal_vsync.o) + 0x000147b8 0x000147b8 0x00000018 Code RO 933 i.delayMs CVWL368.lib(tau_delay.o) + 0x000147d0 0x000147d0 0x00000022 Code RO 934 i.delayUs CVWL368.lib(tau_delay.o) + 0x000147f2 0x000147f2 0x00000002 PAD + 0x000147f4 0x000147f4 0x00000038 Code RO 1680 i.drv_ap_rst_trig_edge_detect CVWL368.lib(drv_sys_cfg.o) + 0x0001482c 0x0001482c 0x0000000c Code RO 2401 i.drv_chip_info_get_info CVWL368.lib(drv_chip_info.o) + 0x00014838 0x00014838 0x00000040 Code RO 2402 i.drv_chip_info_init CVWL368.lib(drv_chip_info.o) + 0x00014878 0x00014878 0x000000b0 Code RO 2403 i.drv_chip_rx_info_check CVWL368.lib(drv_chip_info.o) + 0x00014928 0x00014928 0x00000014 Code RO 2404 i.drv_chip_rx_init_done CVWL368.lib(drv_chip_info.o) + 0x0001493c 0x0001493c 0x00000058 Code RO 1178 i.drv_common_enable_systick CVWL368.lib(drv_common.o) + 0x00014994 0x00014994 0x00000008 Code RO 1181 i.drv_common_system_init CVWL368.lib(drv_common.o) + 0x0001499c 0x0001499c 0x00000010 Code RO 1203 i.drv_crgu_config_reset_modules CVWL368.lib(drv_crgu.o) + 0x000149ac 0x000149ac 0x00000014 Code RO 1216 i.drv_crgu_set_ahb_pre_div CVWL368.lib(drv_crgu.o) + 0x000149c0 0x000149c0 0x00000014 Code RO 1217 i.drv_crgu_set_ahb_src CVWL368.lib(drv_crgu.o) + 0x000149d4 0x000149d4 0x00000020 Code RO 1220 i.drv_crgu_set_clock CVWL368.lib(drv_crgu.o) + 0x000149f4 0x000149f4 0x00000014 Code RO 1221 i.drv_crgu_set_dpi_mux_src CVWL368.lib(drv_crgu.o) + 0x00014a08 0x00014a08 0x00000018 Code RO 1222 i.drv_crgu_set_dpi_pre_div CVWL368.lib(drv_crgu.o) + 0x00014a20 0x00014a20 0x00000014 Code RO 1223 i.drv_crgu_set_dpi_pre_src CVWL368.lib(drv_crgu.o) + 0x00014a34 0x00014a34 0x00000014 Code RO 1224 i.drv_crgu_set_dsc_core_div CVWL368.lib(drv_crgu.o) + 0x00014a48 0x00014a48 0x00000014 Code RO 1225 i.drv_crgu_set_dsco_src CVWL368.lib(drv_crgu.o) + 0x00014a5c 0x00014a5c 0x00000014 Code RO 1226 i.drv_crgu_set_dsco_src_div CVWL368.lib(drv_crgu.o) + 0x00014a70 0x00014a70 0x00000014 Code RO 1227 i.drv_crgu_set_fb_div CVWL368.lib(drv_crgu.o) + 0x00014a84 0x00014a84 0x00000014 Code RO 1228 i.drv_crgu_set_fb_src CVWL368.lib(drv_crgu.o) + 0x00014a98 0x00014a98 0x00000014 Code RO 1231 i.drv_crgu_set_lcdc_div CVWL368.lib(drv_crgu.o) + 0x00014aac 0x00014aac 0x00000014 Code RO 1232 i.drv_crgu_set_lcdc_src CVWL368.lib(drv_crgu.o) + 0x00014ac0 0x00014ac0 0x00000014 Code RO 1233 i.drv_crgu_set_mipi_cfg_src CVWL368.lib(drv_crgu.o) + 0x00014ad4 0x00014ad4 0x00000018 Code RO 1234 i.drv_crgu_set_mipi_ref_src CVWL368.lib(drv_crgu.o) + 0x00014aec 0x00014aec 0x00000018 Code RO 1237 i.drv_crgu_set_reset CVWL368.lib(drv_crgu.o) + 0x00014b04 0x00014b04 0x00000014 Code RO 1238 i.drv_crgu_set_rxbr_div CVWL368.lib(drv_crgu.o) + 0x00014b18 0x00014b18 0x00000014 Code RO 1239 i.drv_crgu_set_rxbr_src CVWL368.lib(drv_crgu.o) + 0x00014b2c 0x00014b2c 0x00000014 Code RO 1241 i.drv_crgu_set_vidc_src CVWL368.lib(drv_crgu.o) + 0x00014b40 0x00014b40 0x00000018 Code RO 1294 i.drv_dma_clear_flag CVWL368.lib(drv_dma.o) + 0x00014b58 0x00014b58 0x0000001c Code RO 1295 i.drv_dma_create_handle CVWL368.lib(drv_dma.o) + 0x00014b74 0x00014b74 0x00000010 Code RO 1297 i.drv_dma_disenable_channel CVWL368.lib(drv_dma.o) + 0x00014b84 0x00014b84 0x00000010 Code RO 1299 i.drv_dma_enable_channel CVWL368.lib(drv_dma.o) + 0x00014b94 0x00014b94 0x00000024 Code RO 1300 i.drv_dma_enable_channel_interrupts CVWL368.lib(drv_dma.o) + 0x00014bb8 0x00014bb8 0x0000000c Code RO 1302 i.drv_dma_get_channel_flag CVWL368.lib(drv_dma.o) + 0x00014bc4 0x00014bc4 0x00000090 Code RO 1305 i.drv_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00014c54 0x00014c54 0x00000012 Code RO 1307 i.drv_dma_prepar_transfer CVWL368.lib(drv_dma.o) + 0x00014c66 0x00014c66 0x0000001a Code RO 1309 i.drv_dma_set_burst CVWL368.lib(drv_dma.o) + 0x00014c80 0x00014c80 0x00000006 Code RO 1310 i.drv_dma_set_callback CVWL368.lib(drv_dma.o) + 0x00014c86 0x00014c86 0x00000002 PAD + 0x00014c88 0x00014c88 0x00000044 Code RO 1312 i.drv_dma_set_transfer CVWL368.lib(drv_dma.o) + 0x00014ccc 0x00014ccc 0x00000036 Code RO 2414 i.drv_dsc_dec_convert_pps_rc_parameter CVWL368.lib(drv_dsc_dec.o) + 0x00014d02 0x00014d02 0x0000000c Code RO 2415 i.drv_dsc_dec_disable CVWL368.lib(drv_dsc_dec.o) + 0x00014d0e 0x00014d0e 0x00000002 PAD + 0x00014d10 0x00014d10 0x00000074 Code RO 2416 i.drv_dsc_dec_enable CVWL368.lib(drv_dsc_dec.o) + 0x00014d84 0x00014d84 0x0000000a Code RO 2417 i.drv_dsc_dec_get_nslc CVWL368.lib(drv_dsc_dec.o) + 0x00014d8e 0x00014d8e 0x00000028 Code RO 2419 i.drv_dsc_dec_set_u8_pps CVWL368.lib(drv_dsc_dec.o) + 0x00014db6 0x00014db6 0x00000002 PAD + 0x00014db8 0x00014db8 0x00000104 Code RO 1851 i.drv_dsi_rx_calc_ipi_tx_delay CVWL368.lib(drv_dsi_rx.o) + 0x00014ebc 0x00014ebc 0x00000040 Code RO 1852 i.drv_dsi_rx_enable_irq CVWL368.lib(drv_dsi_rx.o) + 0x00014efc 0x00014efc 0x00000050 Code RO 1853 i.drv_dsi_rx_get_color_bpp CVWL368.lib(drv_dsi_rx.o) + 0x00014f4c 0x00014f4c 0x0000001c Code RO 1854 i.drv_dsi_rx_get_color_pcc CVWL368.lib(drv_dsi_rx.o) + 0x00014f68 0x00014f68 0x00000008 Code RO 1855 i.drv_dsi_rx_get_compression_en CVWL368.lib(drv_dsi_rx.o) + 0x00014f70 0x00014f70 0x00000006 Code RO 1856 i.drv_dsi_rx_get_max_ret_size CVWL368.lib(drv_dsi_rx.o) + 0x00014f76 0x00014f76 0x0000000e Code RO 1860 i.drv_dsi_rx_power_up CVWL368.lib(drv_dsi_rx.o) + 0x00014f84 0x00014f84 0x00000020 Code RO 1861 i.drv_dsi_rx_set_ctrl_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014fa4 0x00014fa4 0x00000010 Code RO 1862 i.drv_dsi_rx_set_ddi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014fb4 0x00014fb4 0x00000004 Code RO 1864 i.drv_dsi_rx_set_inten CVWL368.lib(drv_dsi_rx.o) + 0x00014fb8 0x00014fb8 0x00000010 Code RO 1865 i.drv_dsi_rx_set_ipi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014fc8 0x00014fc8 0x00000046 Code RO 1867 i.drv_dsi_rx_set_lane_swap CVWL368.lib(drv_dsi_rx.o) + 0x0001500e 0x0001500e 0x00000026 Code RO 1868 i.drv_dsi_rx_set_resp_cnt CVWL368.lib(drv_dsi_rx.o) + 0x00015034 0x00015034 0x00000104 Code RO 1869 i.drv_dsi_rx_set_up_phy CVWL368.lib(drv_dsi_rx.o) + 0x00015138 0x00015138 0x0000000e Code RO 1870 i.drv_dsi_rx_shut_down CVWL368.lib(drv_dsi_rx.o) + 0x00015146 0x00015146 0x00000014 Code RO 1908 i.drv_dsi_tx_command_header CVWL368.lib(drv_dsi_tx.o) + 0x0001515a 0x0001515a 0x0000006c Code RO 1909 i.drv_dsi_tx_command_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x000151c6 0x000151c6 0x00000004 Code RO 1910 i.drv_dsi_tx_command_put_payload CVWL368.lib(drv_dsi_tx.o) + 0x000151ca 0x000151ca 0x00000018 Code RO 1911 i.drv_dsi_tx_config_eotp CVWL368.lib(drv_dsi_tx.o) + 0x000151e2 0x000151e2 0x00000008 Code RO 1912 i.drv_dsi_tx_config_int CVWL368.lib(drv_dsi_tx.o) + 0x000151ea 0x000151ea 0x00000008 Code RO 1913 i.drv_dsi_tx_dpi_lpcmd_time CVWL368.lib(drv_dsi_tx.o) + 0x000151f2 0x000151f2 0x0000000a Code RO 1914 i.drv_dsi_tx_dpi_mode CVWL368.lib(drv_dsi_tx.o) + 0x000151fc 0x000151fc 0x00000024 Code RO 1915 i.drv_dsi_tx_dpi_polarity CVWL368.lib(drv_dsi_tx.o) + 0x00015220 0x00015220 0x00000004 Code RO 1916 i.drv_dsi_tx_edpi_cmd_size CVWL368.lib(drv_dsi_tx.o) + 0x00015224 0x00015224 0x00000004 Code RO 1918 i.drv_dsi_tx_get_cmd_status CVWL368.lib(drv_dsi_tx.o) + 0x00015228 0x00015228 0x00000004 Code RO 1920 i.drv_dsi_tx_mode CVWL368.lib(drv_dsi_tx.o) + 0x0001522c 0x0001522c 0x00000018 Code RO 1921 i.drv_dsi_tx_phy_clock_lane_auto_lp CVWL368.lib(drv_dsi_tx.o) + 0x00015244 0x00015244 0x0000001a Code RO 1922 i.drv_dsi_tx_phy_clock_lane_req_hs CVWL368.lib(drv_dsi_tx.o) + 0x0001525e 0x0001525e 0x0000000c Code RO 1924 i.drv_dsi_tx_phy_lane_mode CVWL368.lib(drv_dsi_tx.o) + 0x0001526a 0x0001526a 0x00000064 Code RO 1928 i.drv_dsi_tx_phy_status_ready CVWL368.lib(drv_dsi_tx.o) + 0x000152ce 0x000152ce 0x0000003e Code RO 1929 i.drv_dsi_tx_phy_status_stopstate CVWL368.lib(drv_dsi_tx.o) + 0x0001530c 0x0001530c 0x00000134 Code RO 1931 i.drv_dsi_tx_phy_test_setup CVWL368.lib(drv_dsi_tx.o) + 0x00015440 0x00015440 0x0000001e Code RO 1932 i.drv_dsi_tx_phy_time_cfg CVWL368.lib(drv_dsi_tx.o) + 0x0001545e 0x0001545e 0x00000008 Code RO 1936 i.drv_dsi_tx_powerup CVWL368.lib(drv_dsi_tx.o) + 0x00015466 0x00015466 0x0000001c Code RO 1937 i.drv_dsi_tx_response_mode CVWL368.lib(drv_dsi_tx.o) + 0x00015482 0x00015482 0x00000018 Code RO 1940 i.drv_dsi_tx_set_bta_ack CVWL368.lib(drv_dsi_tx.o) + 0x0001549a 0x0001549a 0x0000000c Code RO 1941 i.drv_dsi_tx_set_esc_div CVWL368.lib(drv_dsi_tx.o) + 0x000154a6 0x000154a6 0x00000002 PAD + 0x000154a8 0x000154a8 0x00000040 Code RO 1942 i.drv_dsi_tx_set_int CVWL368.lib(drv_dsi_tx.o) + 0x000154e8 0x000154e8 0x00000010 Code RO 1943 i.drv_dsi_tx_set_time_out_div CVWL368.lib(drv_dsi_tx.o) + 0x000154f8 0x000154f8 0x00000008 Code RO 1944 i.drv_dsi_tx_set_video_chunk CVWL368.lib(drv_dsi_tx.o) + 0x00015500 0x00015500 0x00000022 Code RO 1945 i.drv_dsi_tx_set_video_timing CVWL368.lib(drv_dsi_tx.o) + 0x00015522 0x00015522 0x00000008 Code RO 1947 i.drv_dsi_tx_shutdown CVWL368.lib(drv_dsi_tx.o) + 0x0001552a 0x0001552a 0x00000026 Code RO 1948 i.drv_dsi_tx_timeout_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015550 0x00015550 0x000000aa Code RO 1951 i.drv_dsi_tx_video_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x000155fa 0x000155fa 0x00000016 Code RO 1952 i.drv_dsi_tx_video_mode_disable_hact_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00015610 0x00015610 0x00000018 Code RO 1953 i.drv_dsi_tx_video_mode_set_lp_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00015628 0x00015628 0x0000002e Code RO 2352 i.drv_efuse_enter_inactive CVWL368.lib(drv_efuse.o) + 0x00015656 0x00015656 0x0000000c Code RO 2355 i.drv_efuse_int_enable CVWL368.lib(drv_efuse.o) + 0x00015662 0x00015662 0x00000032 Code RO 2356 i.drv_efuse_read CVWL368.lib(drv_efuse.o) + 0x00015694 0x00015694 0x00000018 Code RO 2357 i.drv_efuse_read_req CVWL368.lib(drv_efuse.o) + 0x000156ac 0x000156ac 0x00000018 Code RO 1437 i.drv_gpio_get_input_data CVWL368.lib(drv_gpio.o) + 0x000156c4 0x000156c4 0x0000000c Code RO 1439 i.drv_gpio_register_ap_reset_callback CVWL368.lib(drv_gpio.o) + 0x000156d0 0x000156d0 0x00000014 Code RO 1440 i.drv_gpio_register_callback CVWL368.lib(drv_gpio.o) + 0x000156e4 0x000156e4 0x00000050 Code RO 1442 i.drv_gpio_set_int CVWL368.lib(drv_gpio.o) + 0x00015734 0x00015734 0x00000020 Code RO 1443 i.drv_gpio_set_ioe CVWL368.lib(drv_gpio.o) + 0x00015754 0x00015754 0x00000010 Code RO 1444 i.drv_gpio_set_mode0 CVWL368.lib(drv_gpio.o) + 0x00015764 0x00015764 0x00000010 Code RO 1445 i.drv_gpio_set_mode1 CVWL368.lib(drv_gpio.o) + 0x00015774 0x00015774 0x00000010 Code RO 1446 i.drv_gpio_set_mode2 CVWL368.lib(drv_gpio.o) + 0x00015784 0x00015784 0x00000010 Code RO 1447 i.drv_gpio_set_mode3 CVWL368.lib(drv_gpio.o) + 0x00015794 0x00015794 0x00000020 Code RO 734 i.drv_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x000157b4 0x000157b4 0x00000130 Code RO 1448 i.drv_gpio_set_pull_state CVWL368.lib(drv_gpio.o) + 0x000158e4 0x000158e4 0x0000000c Code RO 1540 i.drv_i2c0_set_callback CVWL368.lib(drv_i2c_slave.o) + 0x000158f0 0x000158f0 0x0000000c Code RO 1506 i.drv_i2c1_set_callback CVWL368.lib(drv_i2c_master.o) + 0x000158fc 0x000158fc 0x00000034 Code RO 1480 i.drv_i2c_dma_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015930 0x00015930 0x000000ac Code RO 1481 i.drv_i2c_dma_init CVWL368.lib(drv_i2c_dma.o) + 0x000159dc 0x000159dc 0x0000001a Code RO 1482 i.drv_i2c_enable_rx_dma CVWL368.lib(drv_i2c_dma.o) + 0x000159f6 0x000159f6 0x00000018 Code RO 1483 i.drv_i2c_enable_tx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015a0e 0x00015a0e 0x00000002 PAD + 0x00015a10 0x00015a10 0x00000060 Code RO 1508 i.drv_i2c_m_clear_it_pending_bit CVWL368.lib(drv_i2c_master.o) + 0x00015a70 0x00015a70 0x00000010 Code RO 1511 i.drv_i2c_m_enable CVWL368.lib(drv_i2c_master.o) + 0x00015a80 0x00015a80 0x00000038 Code RO 1512 i.drv_i2c_m_enable_intr CVWL368.lib(drv_i2c_master.o) + 0x00015ab8 0x00015ab8 0x0000008c Code RO 1518 i.drv_i2c_master_init CVWL368.lib(drv_i2c_master.o) + 0x00015b44 0x00015b44 0x0000005c Code RO 1484 i.drv_i2c_master_read_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015ba0 0x00015ba0 0x0000003c Code RO 1485 i.drv_i2c_master_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015bdc 0x00015bdc 0x0000003e Code RO 1486 i.drv_i2c_master_write_read_cmd CVWL368.lib(drv_i2c_dma.o) + 0x00015c1a 0x00015c1a 0x00000042 Code RO 1541 i.drv_i2c_s_clear_it_pending_bit CVWL368.lib(drv_i2c_slave.o) + 0x00015c5c 0x00015c5c 0x00000004 Code RO 1542 i.drv_i2c_s_config_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015c60 0x00015c60 0x00000008 Code RO 1543 i.drv_i2c_s_enable CVWL368.lib(drv_i2c_slave.o) + 0x00015c68 0x00015c68 0x00000014 Code RO 1544 i.drv_i2c_s_get_fifo_status CVWL368.lib(drv_i2c_slave.o) + 0x00015c7c 0x00015c7c 0x00000050 Code RO 1547 i.drv_i2c_s_set_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015ccc 0x00015ccc 0x0000001c Code RO 1548 i.drv_i2c_s_write_data CVWL368.lib(drv_i2c_slave.o) + 0x00015ce8 0x00015ce8 0x00000058 Code RO 1487 i.drv_i2c_set_dma_irq_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015d40 0x00015d40 0x00000032 Code RO 1549 i.drv_i2c_slave_init CVWL368.lib(drv_i2c_slave.o) + 0x00015d72 0x00015d72 0x00000002 PAD + 0x00015d74 0x00015d74 0x00000018 Code RO 1488 i.drv_i2c_slave_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015d8c 0x00015d8c 0x00000018 Code RO 2020 i.drv_lcdc_config_bypass CVWL368.lib(drv_lcdc.o) + 0x00015da4 0x00015da4 0x00000030 Code RO 2021 i.drv_lcdc_config_ccm CVWL368.lib(drv_lcdc.o) + 0x00015dd4 0x00015dd4 0x00000016 Code RO 2022 i.drv_lcdc_config_disp_mode CVWL368.lib(drv_lcdc.o) + 0x00015dea 0x00015dea 0x00000024 Code RO 2023 i.drv_lcdc_config_dpi_polarity CVWL368.lib(drv_lcdc.o) + 0x00015e0e 0x00015e0e 0x00000026 Code RO 2024 i.drv_lcdc_config_dpi_timing CVWL368.lib(drv_lcdc.o) + 0x00015e34 0x00015e34 0x00000016 Code RO 2025 i.drv_lcdc_config_edpi_mode CVWL368.lib(drv_lcdc.o) + 0x00015e4a 0x00015e4a 0x00000016 Code RO 2026 i.drv_lcdc_config_endianness CVWL368.lib(drv_lcdc.o) + 0x00015e60 0x00015e60 0x0000000c Code RO 2027 i.drv_lcdc_config_input_size CVWL368.lib(drv_lcdc.o) + 0x00015e6c 0x00015e6c 0x0000001e Code RO 2028 i.drv_lcdc_config_int CVWL368.lib(drv_lcdc.o) + 0x00015e8a 0x00015e8a 0x00000022 Code RO 2029 i.drv_lcdc_config_int_single CVWL368.lib(drv_lcdc.o) + 0x00015eac 0x00015eac 0x00000022 Code RO 2030 i.drv_lcdc_config_overwrite CVWL368.lib(drv_lcdc.o) + 0x00015ece 0x00015ece 0x0000000c Code RO 2031 i.drv_lcdc_config_overwrite_rgb CVWL368.lib(drv_lcdc.o) + 0x00015eda 0x00015eda 0x0000001a Code RO 2032 i.drv_lcdc_config_partial_display_area CVWL368.lib(drv_lcdc.o) + 0x00015ef4 0x00015ef4 0x00000022 Code RO 2033 i.drv_lcdc_config_partial_display_enable CVWL368.lib(drv_lcdc.o) + 0x00015f16 0x00015f16 0x0000001a Code RO 2035 i.drv_lcdc_config_scale_up_coef CVWL368.lib(drv_lcdc.o) + 0x00015f30 0x00015f30 0x0000000c Code RO 2036 i.drv_lcdc_config_scale_up_step CVWL368.lib(drv_lcdc.o) + 0x00015f3c 0x00015f3c 0x0000004c Code RO 2037 i.drv_lcdc_config_src_parameter CVWL368.lib(drv_lcdc.o) + 0x00015f88 0x00015f88 0x00000006 Code RO 2038 i.drv_lcdc_config_thresh CVWL368.lib(drv_lcdc.o) + 0x00015f8e 0x00015f8e 0x00000012 Code RO 2039 i.drv_lcdc_ctrl_flow CVWL368.lib(drv_lcdc.o) + 0x00015fa0 0x00015fa0 0x00000020 Code RO 2041 i.drv_lcdc_enable_shadow_reg CVWL368.lib(drv_lcdc.o) + 0x00015fc0 0x00015fc0 0x00000040 Code RO 2042 i.drv_lcdc_set_int CVWL368.lib(drv_lcdc.o) + 0x00016000 0x00016000 0x00000014 Code RO 2044 i.drv_lcdc_set_video_hw_mode CVWL368.lib(drv_lcdc.o) + 0x00016014 0x00016014 0x00000020 Code RO 2045 i.drv_lcdc_start CVWL368.lib(drv_lcdc.o) + 0x00016034 0x00016034 0x0000000c Code RO 2079 i.drv_memc_clear_status CVWL368.lib(drv_memc.o) + 0x00016040 0x00016040 0x00000040 Code RO 2080 i.drv_memc_enable_irq CVWL368.lib(drv_memc.o) + 0x00016080 0x00016080 0x0000000c Code RO 2081 i.drv_memc_gen_a_tear_signal CVWL368.lib(drv_memc.o) + 0x0001608c 0x0001608c 0x00000012 Code RO 2082 i.drv_memc_get_status CVWL368.lib(drv_memc.o) + 0x0001609e 0x0001609e 0x00000010 Code RO 2083 i.drv_memc_rate_transfer_sel CVWL368.lib(drv_memc.o) + 0x000160ae 0x000160ae 0x0000000e Code RO 2084 i.drv_memc_sel_vsync CVWL368.lib(drv_memc.o) + 0x000160bc 0x000160bc 0x00000014 Code RO 2085 i.drv_memc_set_active_height CVWL368.lib(drv_memc.o) + 0x000160d0 0x000160d0 0x0000000c Code RO 2086 i.drv_memc_set_data_mode CVWL368.lib(drv_memc.o) + 0x000160dc 0x000160dc 0x00000010 Code RO 2089 i.drv_memc_set_double_buffer CVWL368.lib(drv_memc.o) + 0x000160ec 0x000160ec 0x00000012 Code RO 2090 i.drv_memc_set_double_buffer_reverse CVWL368.lib(drv_memc.o) + 0x000160fe 0x000160fe 0x00000010 Code RO 2092 i.drv_memc_set_fs_en_conditions CVWL368.lib(drv_memc.o) + 0x0001610e 0x0001610e 0x00000014 Code RO 2093 i.drv_memc_set_inten CVWL368.lib(drv_memc.o) + 0x00016122 0x00016122 0x00000002 PAD + 0x00016124 0x00016124 0x00000018 Code RO 2094 i.drv_memc_set_lcdc_st_conditions CVWL368.lib(drv_memc.o) + 0x0001613c 0x0001613c 0x0000001a Code RO 2095 i.drv_memc_set_ltpo_mode CVWL368.lib(drv_memc.o) + 0x00016156 0x00016156 0x0000000e Code RO 2099 i.drv_memc_set_tear_mode CVWL368.lib(drv_memc.o) + 0x00016164 0x00016164 0x00000028 Code RO 2100 i.drv_memc_set_tear_waveform CVWL368.lib(drv_memc.o) + 0x0001618c 0x0001618c 0x0000000e Code RO 2102 i.drv_memc_set_vidc_sync_cnt CVWL368.lib(drv_memc.o) + 0x0001619a 0x0001619a 0x00000002 PAD + 0x0001619c 0x0001619c 0x00000008 Code RO 1566 i.drv_param_init_get_ccm CVWL368.lib(drv_param_init.o) + 0x000161a4 0x000161a4 0x00000014 Code RO 1567 i.drv_param_init_get_scld_filter_h CVWL368.lib(drv_param_init.o) + 0x000161b8 0x000161b8 0x00000014 Code RO 1568 i.drv_param_init_get_scld_filter_v CVWL368.lib(drv_param_init.o) + 0x000161cc 0x000161cc 0x00000008 Code RO 1569 i.drv_param_init_get_sclu_filter CVWL368.lib(drv_param_init.o) + 0x000161d4 0x000161d4 0x00000014 Code RO 1570 i.drv_param_init_set_ccm CVWL368.lib(drv_param_init.o) + 0x000161e8 0x000161e8 0x00000024 Code RO 1573 i.drv_param_p2r_filter_init CVWL368.lib(drv_param_init.o) + 0x0001620c 0x0001620c 0x00000010 Code RO 2373 i.drv_phy_enable_calibration CVWL368.lib(drv_phy_common.o) + 0x0001621c 0x0001621c 0x0000003c Code RO 2374 i.drv_phy_get_calibration CVWL368.lib(drv_phy_common.o) + 0x00016258 0x00016258 0x00000060 Code RO 2375 i.drv_phy_get_pll_para CVWL368.lib(drv_phy_common.o) + 0x000162b8 0x000162b8 0x00000054 Code RO 2376 i.drv_phy_get_rate_para CVWL368.lib(drv_phy_common.o) + 0x0001630c 0x0001630c 0x00000010 Code RO 2377 i.drv_phy_test_clear CVWL368.lib(drv_phy_common.o) + 0x0001631c 0x0001631c 0x00000018 Code RO 2378 i.drv_phy_test_lock CVWL368.lib(drv_phy_common.o) + 0x00016334 0x00016334 0x00000020 Code RO 2380 i.drv_phy_test_write_1_byte CVWL368.lib(drv_phy_common.o) + 0x00016354 0x00016354 0x00000026 Code RO 2381 i.drv_phy_test_write_2_byte CVWL368.lib(drv_phy_common.o) + 0x0001637a 0x0001637a 0x0000001e Code RO 2382 i.drv_phy_test_write_code CVWL368.lib(drv_phy_common.o) + 0x00016398 0x00016398 0x00000020 Code RO 2383 i.drv_phy_test_write_data CVWL368.lib(drv_phy_common.o) + 0x000163b8 0x000163b8 0x00000020 Code RO 1589 i.drv_pwr_set_cp_mode CVWL368.lib(drv_pwr.o) + 0x000163d8 0x000163d8 0x00000018 Code RO 1591 i.drv_pwr_set_pvd_mode CVWL368.lib(drv_pwr.o) + 0x000163f0 0x000163f0 0x00000038 Code RO 1592 i.drv_pwr_set_system_clk_src CVWL368.lib(drv_pwr.o) + 0x00016428 0x00016428 0x0000000c Code RO 1871 i.drv_rx_phy_test_clear CVWL368.lib(drv_dsi_rx.o) + 0x00016434 0x00016434 0x00000010 Code RO 1872 i.drv_rx_phy_test_lock CVWL368.lib(drv_dsi_rx.o) + 0x00016444 0x00016444 0x00000014 Code RO 1874 i.drv_rx_phy_test_write_1_byte CVWL368.lib(drv_dsi_rx.o) + 0x00016458 0x00016458 0x00000016 Code RO 1875 i.drv_rx_phy_test_write_2_byte CVWL368.lib(drv_dsi_rx.o) + 0x0001646e 0x0001646e 0x0000000a Code RO 2138 i.drv_rxbr_clear_pkt_buffer CVWL368.lib(drv_rxbr.o) + 0x00016478 0x00016478 0x00000004 Code RO 2139 i.drv_rxbr_clear_status0 CVWL368.lib(drv_rxbr.o) + 0x0001647c 0x0001647c 0x0000005a Code RO 2141 i.drv_rxbr_enable_irq CVWL368.lib(drv_rxbr.o) + 0x000164d6 0x000164d6 0x00000002 PAD + 0x000164d8 0x000164d8 0x00000014 Code RO 2142 i.drv_rxbr_frame_drop_cfg CVWL368.lib(drv_rxbr.o) + 0x000164ec 0x000164ec 0x00000064 Code RO 2143 i.drv_rxbr_get_clk CVWL368.lib(drv_rxbr.o) + 0x00016550 0x00016550 0x00000004 Code RO 2144 i.drv_rxbr_get_col_addr CVWL368.lib(drv_rxbr.o) + 0x00016554 0x00016554 0x00000012 Code RO 1751 i.drv_rxbr_get_int_source CVWL368.lib(hal_internal_vsync.o) + 0x00016566 0x00016566 0x00000004 Code RO 2147 i.drv_rxbr_get_page_addr CVWL368.lib(drv_rxbr.o) + 0x0001656a 0x0001656a 0x00000012 Code RO 1752 i.drv_rxbr_get_status0 CVWL368.lib(hal_internal_vsync.o) + 0x0001657c 0x0001657c 0x0000000c Code RO 2149 i.drv_rxbr_hline_rcv0_cfg CVWL368.lib(drv_rxbr.o) + 0x00016588 0x00016588 0x00000008 Code RO 2150 i.drv_rxbr_hline_rcv_cfg CVWL368.lib(drv_rxbr.o) + 0x00016590 0x00016590 0x0000000c Code RO 2151 i.drv_rxbr_register_irq0_callback CVWL368.lib(drv_rxbr.o) + 0x0001659c 0x0001659c 0x0000000c Code RO 2152 i.drv_rxbr_register_irq1_callback CVWL368.lib(drv_rxbr.o) + 0x000165a8 0x000165a8 0x00000014 Code RO 2153 i.drv_rxbr_set_ack_pkt_header CVWL368.lib(drv_rxbr.o) + 0x000165bc 0x000165bc 0x000000cc Code RO 2154 i.drv_rxbr_set_cmd_filter CVWL368.lib(drv_rxbr.o) + 0x00016688 0x00016688 0x00000014 Code RO 2156 i.drv_rxbr_set_color_format CVWL368.lib(drv_rxbr.o) + 0x0001669c 0x0001669c 0x00000014 Code RO 2158 i.drv_rxbr_set_inten CVWL368.lib(drv_rxbr.o) + 0x000166b0 0x000166b0 0x00000010 Code RO 2159 i.drv_rxbr_set_ltpo_drop_th CVWL368.lib(drv_rxbr.o) + 0x000166c0 0x000166c0 0x00000026 Code RO 2161 i.drv_rxbr_set_usr_cfg CVWL368.lib(drv_rxbr.o) + 0x000166e6 0x000166e6 0x00000008 Code RO 2162 i.drv_rxbr_set_usr_col CVWL368.lib(drv_rxbr.o) + 0x000166ee 0x000166ee 0x00000008 Code RO 2163 i.drv_rxbr_set_usr_row CVWL368.lib(drv_rxbr.o) + 0x000166f6 0x000166f6 0x00000002 PAD + 0x000166f8 0x000166f8 0x00000020 Code RO 1637 i.drv_spi_m_read_data CVWL368.lib(drv_spi_master.o) + 0x00016718 0x00016718 0x0000001c Code RO 1662 i.drv_swire_enable CVWL368.lib(drv_swire.o) + 0x00016734 0x00016734 0x00000054 Code RO 1665 i.drv_swire_set_int CVWL368.lib(drv_swire.o) + 0x00016788 0x00016788 0x0000001c Code RO 1666 i.drv_swire_set_power_down CVWL368.lib(drv_swire.o) + 0x000167a4 0x000167a4 0x0000000c Code RO 1681 i.drv_sys_cfg_clear_all_int CVWL368.lib(drv_sys_cfg.o) + 0x000167b0 0x000167b0 0x00000028 Code RO 1682 i.drv_sys_cfg_clear_pending CVWL368.lib(drv_sys_cfg.o) + 0x000167d8 0x000167d8 0x00000018 Code RO 1685 i.drv_sys_cfg_sel_ap_rst_lvl_trig CVWL368.lib(drv_sys_cfg.o) + 0x000167f0 0x000167f0 0x0000001c Code RO 1686 i.drv_sys_cfg_sel_ap_rst_trig CVWL368.lib(drv_sys_cfg.o) + 0x0001680c 0x0001680c 0x00000024 Code RO 1687 i.drv_sys_cfg_sel_gpio_group CVWL368.lib(drv_sys_cfg.o) + 0x00016830 0x00016830 0x00000024 Code RO 1688 i.drv_sys_cfg_sel_int_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016854 0x00016854 0x00000010 Code RO 1690 i.drv_sys_cfg_set_dma_rx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016864 0x00016864 0x00000010 Code RO 1691 i.drv_sys_cfg_set_dma_tx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016874 0x00016874 0x00000024 Code RO 1692 i.drv_sys_cfg_set_int CVWL368.lib(drv_sys_cfg.o) + 0x00016898 0x00016898 0x0000001a Code RO 1715 i.drv_timer_clear_status_flags CVWL368.lib(drv_timer.o) + 0x000168b2 0x000168b2 0x00000020 Code RO 1716 i.drv_timer_enable CVWL368.lib(drv_timer.o) + 0x000168d2 0x000168d2 0x00000002 PAD + 0x000168d4 0x000168d4 0x00000010 Code RO 1717 i.drv_timer_get_instance CVWL368.lib(drv_timer.o) + 0x000168e4 0x000168e4 0x00000010 Code RO 1718 i.drv_timer_get_prescaler CVWL368.lib(drv_timer.o) + 0x000168f4 0x000168f4 0x00000044 Code RO 1720 i.drv_timer_handle_interrupt CVWL368.lib(drv_timer.o) + 0x00016938 0x00016938 0x00000014 Code RO 1721 i.drv_timer_register_callback CVWL368.lib(drv_timer.o) + 0x0001694c 0x0001694c 0x00000010 Code RO 1722 i.drv_timer_set_compare_val CVWL368.lib(drv_timer.o) + 0x0001695c 0x0001695c 0x00000054 Code RO 1723 i.drv_timer_set_int CVWL368.lib(drv_timer.o) + 0x000169b0 0x000169b0 0x00000028 Code RO 1724 i.drv_timer_set_prescaler CVWL368.lib(drv_timer.o) + 0x000169d8 0x000169d8 0x00000010 Code RO 1725 i.drv_timer_set_repeat CVWL368.lib(drv_timer.o) + 0x000169e8 0x000169e8 0x0000000a Code RO 1954 i.drv_tx_phy_test_clear CVWL368.lib(drv_dsi_tx.o) + 0x000169f2 0x000169f2 0x0000001c Code RO 1955 i.drv_tx_phy_test_enter CVWL368.lib(drv_dsi_tx.o) + 0x00016a0e 0x00016a0e 0x0000001c Code RO 1956 i.drv_tx_phy_test_exit CVWL368.lib(drv_dsi_tx.o) + 0x00016a2a 0x00016a2a 0x00000012 Code RO 1958 i.drv_tx_phy_test_write_1_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016a3c 0x00016a3c 0x00000014 Code RO 1959 i.drv_tx_phy_test_write_2_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016a50 0x00016a50 0x00000010 Code RO 1960 i.drv_tx_phy_test_write_code CVWL368.lib(drv_dsi_tx.o) + 0x00016a60 0x00016a60 0x00000008 Code RO 2202 i.drv_vidc_clear_irq CVWL368.lib(drv_vidc.o) + 0x00016a68 0x00016a68 0x00000018 Code RO 2206 i.drv_vidc_enable CVWL368.lib(drv_vidc.o) + 0x00016a80 0x00016a80 0x00000040 Code RO 2207 i.drv_vidc_enable_irq CVWL368.lib(drv_vidc.o) + 0x00016ac0 0x00016ac0 0x00000012 Code RO 2209 i.drv_vidc_get_irq_status CVWL368.lib(drv_vidc.o) + 0x00016ad2 0x00016ad2 0x00000002 PAD + 0x00016ad4 0x00016ad4 0x00000028 Code RO 2213 i.drv_vidc_init_module_enable CVWL368.lib(drv_vidc.o) + 0x00016afc 0x00016afc 0x0000000c Code RO 2214 i.drv_vidc_register_callback CVWL368.lib(drv_vidc.o) + 0x00016b08 0x00016b08 0x00000006 Code RO 2215 i.drv_vidc_reset CVWL368.lib(drv_vidc.o) + 0x00016b0e 0x00016b0e 0x0000003c Code RO 2217 i.drv_vidc_set_dst_parameter CVWL368.lib(drv_vidc.o) + 0x00016b4a 0x00016b4a 0x00000014 Code RO 2221 i.drv_vidc_set_irqen CVWL368.lib(drv_vidc.o) + 0x00016b5e 0x00016b5e 0x00000010 Code RO 2222 i.drv_vidc_set_mirror CVWL368.lib(drv_vidc.o) + 0x00016b6e 0x00016b6e 0x00000008 Code RO 2225 i.drv_vidc_set_p2r_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016b76 0x00016b76 0x00000026 Code RO 2226 i.drv_vidc_set_p2r_hinitb CVWL368.lib(drv_vidc.o) + 0x00016b9c 0x00016b9c 0x00000026 Code RO 2227 i.drv_vidc_set_p2r_hinitr CVWL368.lib(drv_vidc.o) + 0x00016bc2 0x00016bc2 0x00000002 PAD + 0x00016bc4 0x00016bc4 0x00000018 Code RO 2228 i.drv_vidc_set_pentile_swap CVWL368.lib(drv_vidc.o) + 0x00016bdc 0x00016bdc 0x0000000a Code RO 2229 i.drv_vidc_set_pu_ctrl CVWL368.lib(drv_vidc.o) + 0x00016be6 0x00016be6 0x00000010 Code RO 2230 i.drv_vidc_set_rotation CVWL368.lib(drv_vidc.o) + 0x00016bf6 0x00016bf6 0x0000000a Code RO 2231 i.drv_vidc_set_scld_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016c00 0x00016c00 0x0000000a Code RO 2232 i.drv_vidc_set_scld_hcoef1 CVWL368.lib(drv_vidc.o) + 0x00016c0a 0x00016c0a 0x00000012 Code RO 2233 i.drv_vidc_set_scld_step CVWL368.lib(drv_vidc.o) + 0x00016c1c 0x00016c1c 0x0000000a Code RO 2234 i.drv_vidc_set_scld_vcoef0 CVWL368.lib(drv_vidc.o) + 0x00016c26 0x00016c26 0x0000000a Code RO 2235 i.drv_vidc_set_scld_vcoef1 CVWL368.lib(drv_vidc.o) + 0x00016c30 0x00016c30 0x00000016 Code RO 2236 i.drv_vidc_set_src_parameter CVWL368.lib(drv_vidc.o) + 0x00016c46 0x00016c46 0x00000002 PAD + 0x00016c48 0x00016c48 0x00000010 Code RO 2651 i.drv_wdg_clear_counter CVWL368.lib(drv_wdg.o) + 0x00016c58 0x00016c58 0x00000010 Code RO 2652 i.drv_wdg_clear_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016c68 0x00016c68 0x00000010 Code RO 2655 i.drv_wdg_read_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016c78 0x00016c78 0x00000040 Code RO 2658 i.drv_wdg_set_int CVWL368.lib(drv_wdg.o) + 0x00016cb8 0x00016cb8 0x0000000a Code RO 1349 i.fls_clr_interrupt_flag CVWL368.lib(drv_fls.o) + 0x00016cc2 0x00016cc2 0x00000014 Code RO 943 i.fputc CVWL368.lib(tau_log.o) + 0x00016cd6 0x00016cd6 0x00000002 PAD + 0x00016cd8 0x00016cd8 0x00000034 Code RO 537 i.hal_dsi_rx_ctrl_create_handle CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016d0c 0x00016d0c 0x0000009c Code RO 539 i.hal_dsi_rx_ctrl_deinit CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016da8 0x00016da8 0x00000084 Code RO 541 i.hal_dsi_rx_ctrl_dsc_async_handler CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e2c 0x00016e2c 0x00000028 Code RO 543 i.hal_dsi_rx_ctrl_gen_a_tear_signal CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e54 0x00016e54 0x00000028 Code RO 545 i.hal_dsi_rx_ctrl_get_max_ret_size CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e7c 0x00016e7c 0x00000060 Code RO 547 i.hal_dsi_rx_ctrl_init CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016edc 0x00016edc 0x000001a4 Code RO 548 i.hal_dsi_rx_ctrl_init_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017080 0x00017080 0x000000d8 Code RO 549 i.hal_dsi_rx_ctrl_init_dsi_rx CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017158 0x00017158 0x00000158 Code RO 550 i.hal_dsi_rx_ctrl_init_memc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000172b0 0x000172b0 0x00000148 Code RO 551 i.hal_dsi_rx_ctrl_init_rxbr CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000173f8 0x000173f8 0x0000022c Code RO 552 i.hal_dsi_rx_ctrl_init_vidc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017624 0x00017624 0x000000f0 Code RO 556 i.hal_dsi_rx_ctrl_send_ack_cmd CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017714 0x00017714 0x00000034 Code RO 560 i.hal_dsi_rx_ctrl_set_cus_sync_line CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017748 0x00017748 0x00000034 Code RO 563 i.hal_dsi_rx_ctrl_set_hw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001777c 0x0001777c 0x00000038 Code RO 564 i.hal_dsi_rx_ctrl_set_ipi_cfg CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000177b4 0x000177b4 0x00000072 Code RO 569 i.hal_dsi_rx_ctrl_set_rxbr_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017826 0x00017826 0x00000002 PAD + 0x00017828 0x00017828 0x00000034 Code RO 570 i.hal_dsi_rx_ctrl_set_sw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001785c 0x0001785c 0x0000003c Code RO 573 i.hal_dsi_rx_ctrl_start CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017898 0x00017898 0x0000003c Code RO 574 i.hal_dsi_rx_ctrl_stop CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000178d4 0x000178d4 0x00000020 Code RO 576 i.hal_dsi_rx_ctrl_toggle_resolution CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000178f4 0x000178f4 0x00000190 Code RO 630 i.hal_dsi_tx_calc_video_chunks CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a84 0x00017a84 0x00000034 Code RO 631 i.hal_dsi_tx_config_params_for_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ab8 0x00017ab8 0x00000450 Code RO 632 i.hal_dsi_tx_count_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017f08 0x00017f08 0x00000094 Code RO 633 i.hal_dsi_tx_crop_pic CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017f9c 0x00017f9c 0x0000002c Code RO 635 i.hal_dsi_tx_ctrl_create_handle CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017fc8 0x00017fc8 0x00000084 Code RO 636 i.hal_dsi_tx_ctrl_deinit CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001804c 0x0001804c 0x0000004c Code RO 640 i.hal_dsi_tx_ctrl_enter_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018098 0x00018098 0x00000028 Code RO 642 i.hal_dsi_tx_ctrl_exit_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180c0 0x000180c0 0x000000a4 Code RO 644 i.hal_dsi_tx_ctrl_init CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018164 0x00018164 0x00000024 Code RO 645 i.hal_dsi_tx_ctrl_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018188 0x00018188 0x0000000c Code RO 646 i.hal_dsi_tx_ctrl_panel_reset_pin CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018194 0x00018194 0x00000020 Code RO 649 i.hal_dsi_tx_ctrl_set_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181b4 0x000181b4 0x00000014 Code RO 655 i.hal_dsi_tx_ctrl_set_overwrite_rgb CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181c8 0x000181c8 0x00000010 Code RO 656 i.hal_dsi_tx_ctrl_set_partial_disp CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181d8 0x000181d8 0x00000024 Code RO 657 i.hal_dsi_tx_ctrl_set_partial_disp_area CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181fc 0x000181fc 0x0000009c Code RO 660 i.hal_dsi_tx_ctrl_start CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018298 0x00018298 0x00000044 Code RO 661 i.hal_dsi_tx_ctrl_stop CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000182dc 0x000182dc 0x000000d8 Code RO 662 i.hal_dsi_tx_ctrl_write_array_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000183b4 0x000183b4 0x000000b0 Code RO 663 i.hal_dsi_tx_ctrl_write_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018464 0x00018464 0x00000044 Code RO 664 i.hal_dsi_tx_init_data_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184a8 0x000184a8 0x00000030 Code RO 665 i.hal_dsi_tx_init_dpi_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184d8 0x000184d8 0x00000020 Code RO 666 i.hal_dsi_tx_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184f8 0x000184f8 0x00000020 Code RO 667 i.hal_dsi_tx_init_phy_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018518 0x00018518 0x00000094 Code RO 668 i.hal_dsi_tx_init_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000185ac 0x000185ac 0x00000058 Code RO 669 i.hal_dsi_tx_init_video_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018604 0x00018604 0x00000044 Code RO 670 i.hal_dsi_tx_send_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018648 0x00018648 0x00000018 Code RO 735 i.hal_gpio_ctrl_eint CVWL368.lib(hal_gpio.o) + 0x00018660 0x00018660 0x00000012 Code RO 736 i.hal_gpio_get_input_data CVWL368.lib(hal_gpio.o) + 0x00018672 0x00018672 0x00000002 PAD + 0x00018674 0x00018674 0x00000040 Code RO 739 i.hal_gpio_init_eint CVWL368.lib(hal_gpio.o) + 0x000186b4 0x000186b4 0x00000020 Code RO 740 i.hal_gpio_init_input CVWL368.lib(hal_gpio.o) + 0x000186d4 0x000186d4 0x00000028 Code RO 741 i.hal_gpio_init_output CVWL368.lib(hal_gpio.o) + 0x000186fc 0x000186fc 0x00000018 Code RO 742 i.hal_gpio_reg_eint_cb CVWL368.lib(hal_gpio.o) + 0x00018714 0x00018714 0x00000050 Code RO 743 i.hal_gpio_set_ap_reset_int CVWL368.lib(hal_gpio.o) + 0x00018764 0x00018764 0x00000060 Code RO 745 i.hal_gpio_set_mode CVWL368.lib(hal_gpio.o) + 0x000187c4 0x000187c4 0x00000008 Code RO 746 i.hal_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x000187cc 0x000187cc 0x00000020 Code RO 748 i.hal_gpio_set_pull_state CVWL368.lib(hal_gpio.o) + 0x000187ec 0x000187ec 0x0000006c Code RO 774 i.hal_i2c_m_dma_init CVWL368.lib(hal_i2c_master.o) + 0x00018858 0x00018858 0x00000020 Code RO 775 i.hal_i2c_m_dma_read CVWL368.lib(hal_i2c_master.o) + 0x00018878 0x00018878 0x0000001c Code RO 776 i.hal_i2c_m_dma_write CVWL368.lib(hal_i2c_master.o) + 0x00018894 0x00018894 0x0000000c Code RO 778 i.hal_i2c_m_transfer_complate CVWL368.lib(hal_i2c_master.o) + 0x000188a0 0x000188a0 0x00000020 Code RO 779 i.hal_i2c_master_irq_callback CVWL368.lib(hal_i2c_master.o) + 0x000188c0 0x000188c0 0x00000010 Code RO 793 i.hal_i2c_s_dma_user_callback CVWL368.lib(hal_i2c_slave.o) + 0x000188d0 0x000188d0 0x0000004c Code RO 794 i.hal_i2c_s_dma_write CVWL368.lib(hal_i2c_slave.o) + 0x0001891c 0x0001891c 0x000000c8 Code RO 796 i.hal_i2c_s_init CVWL368.lib(hal_i2c_slave.o) + 0x000189e4 0x000189e4 0x00000014 Code RO 797 i.hal_i2c_s_nonblocking_read CVWL368.lib(hal_i2c_slave.o) + 0x000189f8 0x000189f8 0x0000000c Code RO 805 i.hal_i2c_s_set_transfer CVWL368.lib(hal_i2c_slave.o) + 0x00018a04 0x00018a04 0x00000174 Code RO 808 i.hal_i2c_slave_irq_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018b78 0x00018b78 0x000000fc Code RO 1753 i.hal_internal_init_memc CVWL368.lib(hal_internal_vsync.o) + 0x00018c74 0x00018c74 0x00000010 Code RO 1755 i.hal_internal_sync_get_fb_setting CVWL368.lib(hal_internal_vsync.o) + 0x00018c84 0x00018c84 0x00000010 Code RO 1756 i.hal_internal_sync_get_hight_performan_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018c94 0x00018c94 0x0000022c Code RO 1757 i.hal_internal_sync_input_resolution_change CVWL368.lib(hal_internal_vsync.o) + 0x00018ec0 0x00018ec0 0x00000010 Code RO 1760 i.hal_internal_update_dpi_param CVWL368.lib(hal_internal_vsync.o) + 0x00018ed0 0x00018ed0 0x0000010c Code RO 1761 i.hal_internal_video_mode_auto_sync CVWL368.lib(hal_internal_vsync.o) + 0x00018fdc 0x00018fdc 0x00000028 Code RO 1762 i.hal_internal_vsync_deinit CVWL368.lib(hal_internal_vsync.o) + 0x00019004 0x00019004 0x0000000c Code RO 1763 i.hal_internal_vsync_get_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019010 0x00019010 0x00000018 Code RO 1764 i.hal_internal_vsync_get_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00019028 0x00019028 0x0000000c Code RO 1765 i.hal_internal_vsync_get_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00019034 0x00019034 0x0000000c Code RO 1766 i.hal_internal_vsync_get_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019040 0x00019040 0x00000118 Code RO 1767 i.hal_internal_vsync_init_rx CVWL368.lib(hal_internal_vsync.o) + 0x00019158 0x00019158 0x000000b0 Code RO 1768 i.hal_internal_vsync_init_tx CVWL368.lib(hal_internal_vsync.o) + 0x00019208 0x00019208 0x0000011c Code RO 1769 i.hal_internal_vsync_set_auto_hw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00019324 0x00019324 0x00000014 Code RO 1771 i.hal_internal_vsync_set_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019338 0x00019338 0x00000024 Code RO 1772 i.hal_internal_vsync_set_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x0001935c 0x0001935c 0x00000050 Code RO 1773 i.hal_internal_vsync_set_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x000193ac 0x000193ac 0x00000080 Code RO 1774 i.hal_internal_vsync_set_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x0001942c 0x0001942c 0x00000030 Code RO 1776 i.hal_internal_vsync_update_lcdc_addr CVWL368.lib(hal_internal_vsync.o) + 0x0001945c 0x0001945c 0x00000024 Code RO 671 i.hal_lcdc_config_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019480 0x00019480 0x00000058 Code RO 672 i.hal_lcdc_config_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000194d8 0x000194d8 0x00000014 Code RO 673 i.hal_lcdc_config_rgb_to_pentile CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000194ec 0x000194ec 0x00000164 Code RO 674 i.hal_lcdc_config_upscaler CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019650 0x00019650 0x00000040 Code RO 675 i.hal_lcdc_init_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019690 0x00019690 0x000001b0 Code RO 676 i.hal_lcdc_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019840 0x00019840 0x00000040 Code RO 677 i.hal_lcdc_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019880 0x00019880 0x0000000e Code RO 833 i.hal_spi_m_clear_rxfifo CVWL368.lib(hal_spi_master.o) + 0x0001988e 0x0001988e 0x00000012 Code RO 857 i.hal_swire_deinit CVWL368.lib(hal_swire.o) + 0x000198a0 0x000198a0 0x00000016 Code RO 859 i.hal_swire_open CVWL368.lib(hal_swire.o) + 0x000198b6 0x000198b6 0x00000008 Code RO 874 i.hal_system_enable_systick CVWL368.lib(hal_system.o) + 0x000198be 0x000198be 0x00000002 PAD + 0x000198c0 0x000198c0 0x00000088 Code RO 882 i.hal_system_init CVWL368.lib(hal_system.o) + 0x00019948 0x00019948 0x0000001c Code RO 883 i.hal_system_init_console CVWL368.lib(hal_system.o) + 0x00019964 0x00019964 0x00000008 Code RO 886 i.hal_system_set_phy_calibration CVWL368.lib(hal_system.o) + 0x0001996c 0x0001996c 0x00000008 Code RO 887 i.hal_system_set_pvd CVWL368.lib(hal_system.o) + 0x00019974 0x00019974 0x00000008 Code RO 888 i.hal_system_set_vcc CVWL368.lib(hal_system.o) + 0x0001997c 0x0001997c 0x0000002e Code RO 915 i.hal_timer_deinit CVWL368.lib(hal_timer.o) + 0x000199aa 0x000199aa 0x0000001a Code RO 917 i.hal_timer_init CVWL368.lib(hal_timer.o) + 0x000199c4 0x000199c4 0x00000048 Code RO 919 i.hal_timer_start CVWL368.lib(hal_timer.o) + 0x00019a0c 0x00019a0c 0x00000028 Code RO 921 i.hal_timer_stop CVWL368.lib(hal_timer.o) + 0x00019a34 0x00019a34 0x0000008c Code RO 1074 i.hal_uart_init CVWL368.lib(hal_uart.o) + 0x00019ac0 0x00019ac0 0x00000010 Code RO 1077 i.hal_uart_transmit_blocking CVWL368.lib(hal_uart.o) + 0x00019ad0 0x00019ad0 0x00000110 Code RO 2312 i.handle_init CVWL368.lib(irq_redirect .o) + 0x00019be0 0x00019be0 0x00000074 Code RO 98 i.init_mipi_tx ap_demo.o + 0x00019c54 0x00019c54 0x00000100 Code RO 99 i.init_panel ap_demo.o + 0x00019d54 0x00019d54 0x0000000a Code RO 3 i.main main.o + 0x00019d5e 0x00019d5e 0x00000002 PAD + 0x00019d60 0x00019d60 0x00000084 Code RO 100 i.open_mipi_rx ap_demo.o + 0x00019de4 0x00019de4 0x0000007c Code RO 101 i.pps_update_handle ap_demo.o + 0x00019e60 0x00019e60 0x000003f4 Code RO 1778 i.rx_get_dcs_packet_data CVWL368.lib(hal_internal_vsync.o) + 0x0001a254 0x0001a254 0x00000178 Code RO 1779 i.rx_partial_update CVWL368.lib(hal_internal_vsync.o) + 0x0001a3cc 0x0001a3cc 0x0000008c Code RO 1780 i.rx_receive_packet CVWL368.lib(hal_internal_vsync.o) + 0x0001a458 0x0001a458 0x00000180 Code RO 1781 i.rx_receive_pps CVWL368.lib(hal_internal_vsync.o) + 0x0001a5d8 0x0001a5d8 0x000000a4 Code RO 1782 i.rxbr_irq0_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a67c 0x0001a67c 0x000001d4 Code RO 1783 i.rxbr_irq1_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a850 0x0001a850 0x000000c4 Code RO 1784 i.soft_gen_te CVWL368.lib(hal_internal_vsync.o) + 0x0001a914 0x0001a914 0x000000c0 Code RO 1785 i.soft_gen_te_double_buffer CVWL368.lib(hal_internal_vsync.o) + 0x0001a9d4 0x0001a9d4 0x0000002c Code RO 102 i.soft_te_timer_cb ap_demo.o + 0x0001aa00 0x0001aa00 0x00000040 Code RO 103 i.soft_timer3_cb ap_demo.o + 0x0001aa40 0x0001aa40 0x00000048 Code RO 2678 i.sqrt m_ps.l(sqrt.o) + 0x0001aa88 0x0001aa88 0x00000070 Code RO 104 i.tp_heartbeat_exec ap_demo.o + 0x0001aaf8 0x0001aaf8 0x00000108 Code RO 1786 i.vidc_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001ac00 0x0001ac00 0x000000d0 Code RO 1787 i.vpre_err_reset CVWL368.lib(hal_internal_vsync.o) + 0x0001acd0 0x0001acd0 0x000001cc Code RO 1788 i.vsync_set_te_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001ae9c 0x0001ae9c 0x00002944 Data RO 105 .constdata ap_demo.o + 0x0001d7e0 0x0001d7e0 0x00000020 Data RO 420 .constdata app_tp_st_touch.o + 0x0001d800 0x0001d800 0x00000024 Data RO 679 .constdata CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001d824 0x0001d824 0x000000d2 Data RO 751 .constdata CVWL368.lib(hal_gpio.o) + 0x0001d8f6 0x0001d8f6 0x00000002 PAD + 0x0001d8f8 0x0001d8f8 0x00000020 Data RO 809 .constdata CVWL368.lib(hal_i2c_slave.o) + 0x0001d918 0x0001d918 0x00000d59 Data RO 957 .constdata ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0001e671 0x0001e671 0x00000001 Data RO 963 .constdata ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0001e672 0x0001e672 0x00000002 PAD + 0x0001e674 0x0001e674 0x00000008 Data RO 1574 .constdata CVWL368.lib(drv_param_init.o) + 0x0001e67c 0x0001e67c 0x00000186 Data RO 2384 .constdata CVWL368.lib(drv_phy_common.o) + 0x0001e802 0x0001e802 0x00000002 PAD + 0x0001e804 0x0001e804 0x0000004c Data RO 106 .conststring ap_demo.o + 0x0001e850 0x0001e850 0x00000048 Data RO 579 .conststring CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001e898 0x0001e898 0x00000043 Data RO 680 .conststring CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001e8db 0x0001e8db 0x00000001 PAD + 0x0001e8dc 0x0001e8dc 0x00000134 Data RO 1790 .conststring CVWL368.lib(hal_internal_vsync.o) + 0x0001ea10 0x0001ea10 0x00000030 Data RO 3040 Region$$Table anon$$obj.o + + + Execution Region RW_RAM1 (Exec base: 0x00070000, Load base: 0x0001ea40, Size: 0x00000000, Max: 0x000000f0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM2 (Exec base: 0x00070100, Load base: 0x0001ea40, Size: 0x000000c0, Max: 0x000000d0, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00070100 - 0x000000c0 Zero RW 2313 .ARM.__AT_0x00070100 CVWL368.lib(irq_redirect .o) + + + Execution Region RW_RAM3 (Exec base: 0x000701d0, Load base: 0x0001ea40, Size: 0x00003748, Max: 0x00007e30, ABSOLUTE, COMPRESSED[0x000003e8]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x000701d0 COMPRESSED 0x00000028 Data RW 107 .data ap_demo.o + 0x000701f8 COMPRESSED 0x0000002e Data RW 271 .data app_tp_transfer.o + 0x00070226 COMPRESSED 0x00000028 Data RW 421 .data app_tp_st_touch.o + 0x0007024e COMPRESSED 0x00000002 PAD + 0x00070250 COMPRESSED 0x00000008 Data RW 580 .data CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070258 COMPRESSED 0x00000003 Data RW 681 .data CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0007025b COMPRESSED 0x00000001 Data RW 780 .data CVWL368.lib(hal_i2c_master.o) + 0x0007025c COMPRESSED 0x00000020 Data RW 810 .data CVWL368.lib(hal_i2c_slave.o) + 0x0007027c COMPRESSED 0x000000e8 Data RW 964 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070364 COMPRESSED 0x00000001 Data RW 967 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070365 COMPRESSED 0x00000001 Data RW 968 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070366 COMPRESSED 0x00000001 Data RW 973 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070367 COMPRESSED 0x00000003 Data RW 974 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0007036a COMPRESSED 0x00000005 Data RW 975 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0007036f COMPRESSED 0x00000001 PAD + 0x00070370 COMPRESSED 0x00000030 Data RW 987 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x000703a0 COMPRESSED 0x00000012 Data RW 1131 .data CVWL368.lib(norflash.o) + 0x000703b2 COMPRESSED 0x00000002 PAD + 0x000703b4 COMPRESSED 0x0000000c Data RW 1185 .data CVWL368.lib(drv_common.o) + 0x000703c0 COMPRESSED 0x00000004 Data RW 1452 .data CVWL368.lib(drv_gpio.o) + 0x000703c4 COMPRESSED 0x00000008 Data RW 1490 .data CVWL368.lib(drv_i2c_dma.o) + 0x000703cc COMPRESSED 0x00000004 Data RW 1519 .data CVWL368.lib(drv_i2c_master.o) + 0x000703d0 COMPRESSED 0x00000004 Data RW 1550 .data CVWL368.lib(drv_i2c_slave.o) + 0x000703d4 COMPRESSED 0x000004a4 Data RW 1575 .data CVWL368.lib(drv_param_init.o) + 0x00070878 COMPRESSED 0x00000004 Data RW 1642 .data CVWL368.lib(drv_spi_master.o) + 0x0007087c COMPRESSED 0x00000008 Data RW 1668 .data CVWL368.lib(drv_swire.o) + 0x00070884 COMPRESSED 0x00000001 Data RW 1693 .data CVWL368.lib(drv_sys_cfg.o) + 0x00070885 COMPRESSED 0x00000003 PAD + 0x00070888 COMPRESSED 0x00000050 Data RW 1726 .data CVWL368.lib(drv_timer.o) + 0x000708d8 COMPRESSED 0x0000000c Data RW 1791 .data CVWL368.lib(hal_internal_vsync.o) + 0x000708e4 COMPRESSED 0x00000008 Data RW 2165 .data CVWL368.lib(drv_rxbr.o) + 0x000708ec COMPRESSED 0x00000004 Data RW 2238 .data CVWL368.lib(drv_vidc.o) + 0x000708f0 COMPRESSED 0x00000001 Data RW 2385 .data CVWL368.lib(drv_phy_common.o) + 0x000708f1 COMPRESSED 0x00000003 PAD + 0x000708f4 COMPRESSED 0x0000000c Data RW 2405 .data CVWL368.lib(drv_chip_info.o) + 0x00070900 COMPRESSED 0x0000000c Data RW 2515 .data CVWL368.lib(drv_pwm.o) + 0x0007090c COMPRESSED 0x00000008 Data RW 2593 .data CVWL368.lib(drv_uart.o) + 0x00070914 COMPRESSED 0x0000000c Data RW 2660 .data CVWL368.lib(drv_wdg.o) + 0x00070920 COMPRESSED 0x00000004 Data RW 3009 .data mc_p.l(stdout.o) + 0x00070924 COMPRESSED 0x00000004 Data RW 3021 .data mc_p.l(errno.o) + 0x00070928 - 0x00000190 Zero RW 270 .bss app_tp_transfer.o + 0x00070ab8 - 0x0000000c Zero RW 419 .bss app_tp_st_touch.o + 0x00070ac4 - 0x000000c4 Zero RW 578 .bss CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070b88 - 0x0000004c Zero RW 678 .bss CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070bd4 - 0x00000100 Zero RW 944 .bss CVWL368.lib(tau_log.o) + 0x00070cd4 - 0x000000d0 Zero RW 1079 .bss CVWL368.lib(hal_uart.o) + 0x00070da4 - 0x0000001c Zero RW 1314 .bss CVWL368.lib(drv_dma.o) + 0x00070dc0 - 0x00000040 Zero RW 1451 .bss CVWL368.lib(drv_gpio.o) + 0x00070e00 - 0x00000140 Zero RW 1489 .bss CVWL368.lib(drv_i2c_dma.o) + 0x00070f40 - 0x00000984 Zero RW 1789 .bss CVWL368.lib(hal_internal_vsync.o) + 0x000718c4 - 0x00001030 Zero RW 1842 .bss CVWL368.lib(dcs_packet_fifo.o) + 0x000728f4 - 0x00000020 Zero RW 2449 .bss CVWL368.lib(hal_spi_slave.o) + 0x00072914 COMPRESSED 0x00000004 PAD + 0x00072918 - 0x00001000 Zero RW 526 STACK startup_armcm0.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 2834 736 10640 40 0 35694 ap_demo.o + 1092 238 32 40 12 9752 app_tp_st_touch.o + 1060 114 0 46 400 12953 app_tp_transfer.o + 36 6 0 0 0 529 board.o + 10 0 0 0 0 7271 main.o + 120 18 192 0 4096 2112 startup_armcm0.o + + ---------------------------------------------------------------------- + 5156 1112 10912 128 4508 68311 Object Totals + 0 0 48 0 0 0 (incl. Generated) + 4 0 0 2 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 216 32 0 0 4144 252 dcs_packet_fifo.o + 272 96 0 12 0 256 drv_chip_info.o + 192 82 24 12 0 264 drv_common.o + 420 90 0 0 0 1200 drv_crgu.o + 410 28 0 0 28 796 drv_dma.o + 232 28 0 0 0 340 drv_dsc_dec.o + 1644 494 0 0 0 1336 drv_dsi_rx.o + 1528 118 0 0 0 2428 drv_dsi_tx.o + 132 0 0 0 0 256 drv_efuse.o + 10 0 0 0 0 60 drv_fls.o + 796 112 0 4 64 1236 drv_gpio.o + 600 82 0 8 320 624 drv_i2c_dma.o + 360 86 0 4 0 456 drv_i2c_master.o + 292 36 0 4 0 580 drv_i2c_slave.o + 680 6 0 0 0 1444 drv_lcdc.o + 492 28 0 0 0 1112 drv_memc.o + 112 36 8 1188 0 376 drv_param_init.o + 428 30 390 1 0 664 drv_phy_common.o + 72 10 0 12 0 76 drv_pwm.o + 112 24 0 0 0 180 drv_pwr.o + 722 84 0 8 0 1456 drv_rxbr.o + 104 24 0 4 0 188 drv_spi_master.o + 172 20 0 8 0 260 drv_swire.o + 300 64 0 1 0 628 drv_sys_cfg.o + 374 34 0 80 0 932 drv_timer.o + 698 18 0 8 0 680 drv_uart.o + 510 28 0 4 0 1452 drv_vidc.o + 168 22 0 12 0 316 drv_wdg.o + 3124 310 72 8 196 1528 hal_dsi_rx_ctrl.o + 4472 306 103 3 76 2492 hal_dsi_tx_ctrl.o + 450 48 210 0 0 752 hal_gpio.o + 212 40 0 1 0 340 hal_i2c_master.o + 696 72 32 32 0 408 hal_i2c_slave.o + 8080 1712 308 12 2436 2676 hal_internal_vsync.o + 14 0 0 0 0 68 hal_spi_master.o + 580 32 0 0 32 136 hal_spi_slave.o + 40 0 0 0 0 136 hal_swire.o + 196 32 0 0 0 408 hal_system.o + 184 6 0 0 0 276 hal_timer.o + 156 18 0 0 208 144 hal_uart.o + 1076 324 0 0 192 1980 irq_redirect .o + 48 10 0 18 0 68 norflash.o + 58 0 0 0 0 128 tau_delay.o + 60 10 0 0 256 156 tau_log.o + 2408 88 3418 291 0 18528 app_tp_for_custom_s8.o + 200 20 0 0 0 76 ceil.o + 72 6 0 0 0 76 sqrt.o + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 12 6 0 4 0 60 errno.o + 30 0 0 0 0 0 handlers.o + 40 0 0 0 0 72 idiv.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 32 0 0 0 0 68 llshl.o + 38 0 0 0 0 68 llsshr.o + 34 0 0 0 0 68 llushr.o + 36 0 0 0 0 60 memcpya.o + 36 0 0 0 0 100 memseta.o + 2298 104 0 0 0 544 printfa.o + 0 0 0 4 0 0 stdout.o + 44 0 0 0 0 72 uidiv.o + 96 0 0 0 0 84 uldiv.o + 40 2 0 0 0 68 cdcmple.o + 40 2 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfrcmple.o + 356 4 0 0 0 140 dadd.o + 240 6 0 0 0 84 ddiv.o + 236 0 0 0 0 216 depilogue.o + 72 10 0 0 0 72 dfixi.o + 60 10 0 0 0 68 dfixui.o + 64 10 0 0 0 68 dfixul.o + 28 4 0 0 0 68 dfltui.o + 208 6 0 0 0 88 dmul.o + 162 0 0 0 0 80 dsqrt.o + 40 0 0 0 0 60 f2d.o + 178 0 0 0 0 108 fadd.o + 124 0 0 0 0 72 fdiv.o + 130 0 0 0 0 144 fepilogue.o + 50 0 0 0 0 60 ffixi.o + 40 0 0 0 0 60 ffixui.o + 22 0 0 0 0 68 fflti.o + 14 0 0 0 0 68 ffltui.o + 122 0 0 0 0 72 fmul.o + 24 0 0 0 0 60 fscalb.o + + ---------------------------------------------------------------------- + 39328 4926 4572 1752 7956 53348 Library Totals + 46 0 7 9 4 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 31494 4632 1147 1444 7952 31544 CVWL368.lib + 2408 88 3418 291 0 18528 ISP368_N10Lite_CSOT667_TP.lib + 272 26 0 0 0 152 m_ps.l + 2838 126 0 8 0 1264 mc_p.l + 2270 54 0 0 0 1860 mf_p.l + + ---------------------------------------------------------------------- + 39328 4926 4572 1752 7956 53348 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 44484 6038 15484 1880 12464 97263 Grand Totals + 44484 6038 15484 1000 12464 97263 ELF Image Totals (compressed) + 44484 6038 15484 1000 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 59968 ( 58.56kB) + Total RW Size (RW Data + ZI Data) 14344 ( 14.01kB) + Total ROM Size (Code + RO Data + RW Data) 60968 ( 59.54kB) + +============================================================================== + diff --git a/project/ISP_368/Listings/ISP368_N10Lite_CSOT667_20230619.map b/project/ISP_368/Listings/ISP368_N10Lite_CSOT667_20230619.map new file mode 100644 index 0000000..1068bcf --- /dev/null +++ b/project/ISP_368/Listings/ISP368_N10Lite_CSOT667_20230619.map @@ -0,0 +1,5360 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) for ap_get_tp_calibration_status_01 + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.tp_heartbeat_exec) for tp_heartbeat_exec + ap_demo.o(i.ap_demo) refers to app_tp_st_touch.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) for ap_tp_st_touch_scan_point_record_event_exec + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_53) refers to app_tp_for_custom_s8.o(.data) for fingerprint_flag + ap_demo.o(i.ap_get_reg_53) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_get_reg_7A) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_pvd) for hal_system_set_pvd + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_reset_cb) refers to ap_demo.o(.conststring) for .conststring + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_display_on) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) for hal_dsi_tx_crop_pic + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.init_panel) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.init_panel) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.init_panel) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.init_panel) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.init_panel) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to ap_demo.o(i.soft_te_timer_cb) for soft_te_timer_cb + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) for hal_dsi_rx_ctrl_toggle_resolution + ap_demo.o(i.pps_update_handle) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + ap_demo.o(i.soft_te_timer_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_te_timer_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.tp_heartbeat_exec) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + ap_demo.o(i.tp_heartbeat_exec) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.tp_heartbeat_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) for ap_tp_st_touch_software_reset + ap_demo.o(i.tp_heartbeat_exec) refers to app_tp_transfer.o(.data) for s_screen_init_complate + ap_demo.o(i.tp_heartbeat_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_53) for ap_get_reg_53 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_7A) for ap_get_reg_7A + ap_demo.o(.constdata) refers to app_tp_st_touch.o(i.ap_set_tp_calibration_04) for ap_set_tp_calibration_04 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(.data) for send_point + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_st_touch.o(i.CRC16_2) refers to app_tp_st_touch.o(.constdata) for .constdata + app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to memseta.o(.text) for __aeabi_memclr4 + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to printfa.o(i.__0printf) for __2printf + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to app_tp_st_touch.o(i.CRC16_2) for CRC16_2 + app_tp_st_touch.o(i.ap_set_tp_calibration_04) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_calibration) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_F3) refers to app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) for ap_tp_st_touch_software_reset + app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_FF) refers to app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) for ap_tp_st_touch_software_reset + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to memseta.o(.text) for __aeabi_memclr4 + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to tau_log.o(i.LOG_printf) for LOG_printf + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) for ap_tp_st_touch_simulate_finger_release_event + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) for ap_tp_st_touch_scan_point_init + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) refers to app_tp_st_touch.o(.bss) for .bss + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event) refers to app_tp_st_touch.o(.bss) for .bss + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to printfa.o(i.__0printf) for __2printf + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) for ap_tp_st_touch_simulate_finger_release_event + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) for ap_tp_st_touch_scan_point_init + app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) refers to app_tp_st_touch.o(.bss) for .bss + app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to tau_log.o(i.LOG_printf) for LOG_printf + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) for ap_tp_st_touch_simulate_finger_release_event + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) for ap_tp_st_touch_scan_point_init + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) refers to app_tp_st_touch.o(.data) for .data + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_calibration) for ap_tp_st_touch_calibration + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) for ap_tp_st_touch_get_calibration_success_mark + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to tau_log.o(i.LOG_printf) for LOG_printf + app_tp_st_touch.o(i.app_tp_calibration_exec) refers to app_tp_st_touch.o(.data) for .data + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + board.o(i.board_Init) refers to hal_system.o(i.hal_system_set_phy_calibration) for hal_system_set_phy_calibration + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) for hal_internal_vsync_toggle_input_frame_rate + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_update_dpi_param) for hal_internal_update_dpi_param + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_release_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_release_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + app_tp_for_custom_s8.o(i.EncryptCheckEx) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(i.EncryptCheckEx) for EncryptCheckEx + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_update_dpi_param) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fmul.o(.text) for __aeabi_fmul + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ceil.o(i.ceil) for ceil + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) for hal_internal_video_mode_auto_sync + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.ap_tp_calibration), (176 bytes). + Removing app_tp_transfer.o(i.app_tp_m_transfer_complate), (8 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_st_touch.o(.rev16_text), (4 bytes). + Removing app_tp_st_touch.o(.revsh_text), (4 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_F3), (26 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_error_handler_FF), (32 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_hardware_reset), (196 bytes). + Removing app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event), (156 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en), (16 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter), (108 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex), (14 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (10 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd), (140 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (108 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_release_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (16 bytes). + Removing app_tp_for_custom_s8.o(.data), (16 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_scld_filter), (100 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex), (468 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate), (560 bytes). + Removing hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler), (476 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_set_prefetch), (24 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +580 unused section(s) (total 26602 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 idiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE + ../mathlib/ceil.c 0x00000000 Number 0 ceil.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE + ..\..\..\src\common\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\..\..\src\common\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\dcs_packet_fifo.c 0x00000000 Number 0 dcs_packet_fifo.o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\internal\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\..\src\app\demo\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\..\src\app\demo\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\..\src\app\demo\app_tp_st_touch.c 0x00000000 Number 0 app_tp_st_touch.o ABSOLUTE + ..\..\src\app\demo\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\..\src\app\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\..\src\board\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\..\src\board\startup\startup_ARMCM0.s 0x00000000 Number 0 startup_armcm0.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\hal\\internal\\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\internal\\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\\..\\src\\app\\demo\\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_st_touch.c 0x00000000 Number 0 app_tp_st_touch.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\\..\\src\\app\\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\\..\\src\\board\\board.c 0x00000000 Number 0 board.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + RESET 0x00010000 Section 192 startup_armcm0.o(RESET) + .ARM.Collect$$$$00000000 0x000100c0 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x000100c0 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x000100c4 Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x000100c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x000100c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x000100c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x000100d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x000100d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x000100d0 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x000100d0 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x000100d4 Section 120 startup_armcm0.o(.text) + .text 0x0001014c Section 0 uidiv.o(.text) + .text 0x00010178 Section 0 idiv.o(.text) + .text 0x000101a0 Section 0 memcpya.o(.text) + .text 0x000101c4 Section 0 memseta.o(.text) + .text 0x000101e8 Section 0 fadd.o(.text) + .text 0x0001029a Section 0 fmul.o(.text) + .text 0x00010314 Section 0 fdiv.o(.text) + .text 0x00010390 Section 0 fscalb.o(.text) + .text 0x000103a8 Section 0 dadd.o(.text) + .text 0x0001050c Section 0 dmul.o(.text) + .text 0x000105dc Section 0 ddiv.o(.text) + .text 0x000106cc Section 0 fflti.o(.text) + .text 0x000106e2 Section 0 ffltui.o(.text) + .text 0x000106f0 Section 0 dfltui.o(.text) + .text 0x0001070c Section 0 ffixi.o(.text) + .text 0x0001073e Section 0 ffixui.o(.text) + .text 0x00010768 Section 0 dfixi.o(.text) + .text 0x000107b0 Section 0 dfixui.o(.text) + .text 0x000107ec Section 0 f2d.o(.text) + .text 0x00010814 Section 40 cdcmple.o(.text) + .text 0x0001083c Section 20 cfrcmple.o(.text) + .text 0x00010850 Section 0 uldiv.o(.text) + .text 0x000108b0 Section 0 llshl.o(.text) + .text 0x000108d0 Section 0 llushr.o(.text) + .text 0x000108f2 Section 0 llsshr.o(.text) + .text 0x00010918 Section 0 fepilogue.o(.text) + .text 0x00010918 Section 0 iusefp.o(.text) + .text 0x0001099a Section 0 depilogue.o(.text) + .text 0x00010a58 Section 0 dsqrt.o(.text) + .text 0x00010afc Section 0 dfixul.o(.text) + .text 0x00010b3c Section 40 cdrcmple.o(.text) + .text 0x00010b64 Section 36 init.o(.text) + .text 0x00010b88 Section 0 __dczerorl2.o(.text) + i.ADC_IRQn_Handler 0x00010be0 Section 0 irq_redirect .o(i.ADC_IRQn_Handler) + i.AP_NRESET_IRQn_Handler 0x00010bf8 Section 0 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + i.CRC16_2 0x00010c10 Section 0 app_tp_st_touch.o(i.CRC16_2) + i.DMA_IRQn_Handler 0x00010c50 Section 0 irq_redirect .o(i.DMA_IRQn_Handler) + i.EXTI_INT0_IRQn_Handler 0x00010c64 Section 0 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + i.EXTI_INT1_IRQn_Handler 0x00010c80 Section 0 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + i.EXTI_INT2_IRQn_Handler 0x00010c9c Section 0 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + i.EXTI_INT3_IRQn_Handler 0x00010cb8 Section 0 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + i.EXTI_INT4_IRQn_Handler 0x00010cd4 Section 0 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + i.EXTI_INT5_IRQn_Handler 0x00010cf0 Section 0 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + i.EXTI_INT6_IRQn_Handler 0x00010d0c Section 0 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + i.EXTI_INT7_IRQn_Handler 0x00010d28 Section 0 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + i.EncryptCheckEx 0x00010d44 Section 0 app_tp_for_custom_s8.o(i.EncryptCheckEx) + i.FLSCTRL_IRQn_Handler 0x00010d68 Section 0 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + i.Gpio_swire_output 0x00010d7c Section 0 ap_demo.o(i.Gpio_swire_output) + i.HardFault_Handler 0x00010dcc Section 0 irq_redirect .o(i.HardFault_Handler) + i.I2C0_IRQn_Handler 0x00010de0 Section 0 irq_redirect .o(i.I2C0_IRQn_Handler) + i.I2C1_IRQn_Handler 0x00010df8 Section 0 irq_redirect .o(i.I2C1_IRQn_Handler) + i.LCDC_IRQn_Handler 0x00010e10 Section 0 irq_redirect .o(i.LCDC_IRQn_Handler) + i.LOG_printf 0x00010e28 Section 0 tau_log.o(i.LOG_printf) + i.MEMC_IRQn_Handler 0x00010e50 Section 0 irq_redirect .o(i.MEMC_IRQn_Handler) + i.MIPI_RX_IRQn_Handler 0x00010e68 Section 0 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + i.MIPI_TX_IRQn_Handler 0x00010e80 Section 0 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + i.PWMDET_IRQn_Handler 0x00010e98 Section 0 irq_redirect .o(i.PWMDET_IRQn_Handler) + i.S20_Start_init 0x00010eb4 Section 0 app_tp_transfer.o(i.S20_Start_init) + .ARM.__at_0x11000 0x00011000 Section 20 drv_common.o(.ARM.__at_0x11000) + i.UART_DisableDma 0x00011014 Section 0 drv_uart.o(i.UART_DisableDma) + i.__scatterload_null 0x00011016 Section 2 handlers.o(i.__scatterload_null) + .ARM.__at_0x11018 0x00011018 Section 4 drv_common.o(.ARM.__at_0x11018) + i.SPIM_IRQn_Handler 0x0001101c Section 0 irq_redirect .o(i.SPIM_IRQn_Handler) + i.SPIS_IRQn_Handler 0x00011038 Section 0 irq_redirect .o(i.SPIS_IRQn_Handler) + i.SWIRE_IRQn_Handler 0x00011054 Section 0 irq_redirect .o(i.SWIRE_IRQn_Handler) + i.SysTick_Handler 0x00011070 Section 0 irq_redirect .o(i.SysTick_Handler) + i.TIMER0_IRQn_Handler 0x00011088 Section 0 irq_redirect .o(i.TIMER0_IRQn_Handler) + i.TIMER1_IRQn_Handler 0x000110a0 Section 0 irq_redirect .o(i.TIMER1_IRQn_Handler) + i.TIMER2_IRQn_Handler 0x000110b8 Section 0 irq_redirect .o(i.TIMER2_IRQn_Handler) + i.TIMER3_IRQn_Handler 0x000110d0 Section 0 irq_redirect .o(i.TIMER3_IRQn_Handler) + i.UART0_IRQ_Handle 0x000110e8 Section 0 drv_uart.o(i.UART0_IRQ_Handle) + i.UART_GetInstance 0x00011104 Section 0 drv_uart.o(i.UART_GetInstance) + i.UART_IRQn_Handler 0x00011108 Section 0 irq_redirect .o(i.UART_IRQn_Handler) + i.UART_ResetRxFIFO 0x00011120 Section 0 drv_uart.o(i.UART_ResetRxFIFO) + i.UART_SetBaudRate 0x00011144 Section 0 drv_uart.o(i.UART_SetBaudRate) + i.UART_SwitchSCLK 0x0001118c Section 0 drv_uart.o(i.UART_SwitchSCLK) + i.UART_TransferHandleIRQ 0x000111a6 Section 0 drv_uart.o(i.UART_TransferHandleIRQ) + i.UART_WriteBlocking 0x000112da Section 0 drv_uart.o(i.UART_WriteBlocking) + i.UART_init 0x000112f4 Section 0 drv_uart.o(i.UART_init) + i.VIDC_IRQn_Handler 0x000113b0 Section 0 irq_redirect .o(i.VIDC_IRQn_Handler) + i.VPRE_IRQn_Handler 0x000113c8 Section 0 irq_redirect .o(i.VPRE_IRQn_Handler) + i.WDG_IRQn_Handler 0x000113e0 Section 0 irq_redirect .o(i.WDG_IRQn_Handler) + i.__0printf 0x000113f8 Section 0 printfa.o(i.__0printf) + i.__0vsprintf 0x00011418 Section 0 printfa.o(i.__0vsprintf) + i.__ARM_clz 0x0001143c Section 0 depilogue.o(i.__ARM_clz) + i.__ARM_common_switch8 0x0001146a Section 0 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + i.__NVIC_ClearPendingIRQ 0x00011484 Section 0 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x00011485 Thumb Code 18 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_ClearPendingIRQ 0x0001149c Section 0 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x0001149d Thumb Code 18 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_DisableIRQ 0x000114b4 Section 0 drv_rxbr.o(i.__NVIC_DisableIRQ) + __NVIC_DisableIRQ 0x000114b5 Thumb Code 26 drv_rxbr.o(i.__NVIC_DisableIRQ) + i.__NVIC_EnableIRQ 0x000114d4 Section 0 drv_rxbr.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x000114d5 Thumb Code 18 drv_rxbr.o(i.__NVIC_EnableIRQ) + i.__NVIC_SetPriority 0x000114ec Section 0 hal_spi_slave.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x000114ed Thumb Code 60 hal_spi_slave.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x00011530 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_zeroinit 0x0001153e Section 14 handlers.o(i.__scatterload_zeroinit) + i.__set_errno 0x0001154c Section 0 errno.o(i.__set_errno) + i._fp_digits 0x00011558 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x00011559 Thumb Code 344 printfa.o(i._fp_digits) + i._printf_core 0x000116cc Section 0 printfa.o(i._printf_core) + _printf_core 0x000116cd Thumb Code 1754 printfa.o(i._printf_core) + i._printf_post_padding 0x00011db8 Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x00011db9 Thumb Code 32 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x00011dd8 Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x00011dd9 Thumb Code 44 printfa.o(i._printf_pre_padding) + i._sputc 0x00011e04 Section 0 printfa.o(i._sputc) + _sputc 0x00011e05 Thumb Code 10 printfa.o(i._sputc) + i.ap_dcs_read 0x00011e10 Section 0 ap_demo.o(i.ap_dcs_read) + ap_dcs_read 0x00011e11 Thumb Code 402 ap_demo.o(i.ap_dcs_read) + i.ap_demo 0x00011fdc Section 0 ap_demo.o(i.ap_demo) + i.ap_get_reg_53 0x000122a4 Section 0 ap_demo.o(i.ap_get_reg_53) + ap_get_reg_53 0x000122a5 Thumb Code 34 ap_demo.o(i.ap_get_reg_53) + i.ap_get_reg_7A 0x000122d0 Section 0 ap_demo.o(i.ap_get_reg_7A) + ap_get_reg_7A 0x000122d1 Thumb Code 84 ap_demo.o(i.ap_get_reg_7A) + i.ap_get_reg_df 0x00012324 Section 0 ap_demo.o(i.ap_get_reg_df) + ap_get_reg_df 0x00012325 Thumb Code 190 ap_demo.o(i.ap_get_reg_df) + i.ap_get_tp_calibration_status_01 0x000123e8 Section 0 app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) + i.ap_reset_cb 0x00012408 Section 0 ap_demo.o(i.ap_reset_cb) + ap_reset_cb 0x00012409 Thumb Code 40 ap_demo.o(i.ap_reset_cb) + i.ap_set_backlight_51 0x0001244c Section 0 ap_demo.o(i.ap_set_backlight_51) + ap_set_backlight_51 0x0001244d Thumb Code 62 ap_demo.o(i.ap_set_backlight_51) + i.ap_set_display_off 0x00012490 Section 0 ap_demo.o(i.ap_set_display_off) + ap_set_display_off 0x00012491 Thumb Code 30 ap_demo.o(i.ap_set_display_off) + i.ap_set_display_on 0x000124d8 Section 0 ap_demo.o(i.ap_set_display_on) + ap_set_display_on 0x000124d9 Thumb Code 18 ap_demo.o(i.ap_set_display_on) + i.ap_set_enter_sleep_mode 0x00012510 Section 0 ap_demo.o(i.ap_set_enter_sleep_mode) + ap_set_enter_sleep_mode 0x00012511 Thumb Code 68 ap_demo.o(i.ap_set_enter_sleep_mode) + i.ap_set_exit_sleep_mode 0x00012588 Section 0 ap_demo.o(i.ap_set_exit_sleep_mode) + ap_set_exit_sleep_mode 0x00012589 Thumb Code 22 ap_demo.o(i.ap_set_exit_sleep_mode) + i.ap_set_tp_calibration_04 0x000125d0 Section 0 app_tp_st_touch.o(i.ap_set_tp_calibration_04) + i.ap_tp_st_touch_calibration 0x00012668 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_calibration) + i.ap_tp_st_touch_get_calibration_success_mark 0x00012718 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) + i.ap_tp_st_touch_scan_point_init 0x000127c0 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) + i.ap_tp_st_touch_scan_point_record_event_exec 0x000127dc Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) + i.ap_tp_st_touch_simulate_finger_release_event 0x0001282c Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) + i.ap_tp_st_touch_software_reset 0x00012860 Section 0 app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) + i.app_ADC_IRQn_Handler 0x0001290c Section 0 drv_rxbr.o(i.app_ADC_IRQn_Handler) + i.app_AP_NRESET_IRQn_Handler 0x00012928 Section 0 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + i.app_EXTI_INT0_IRQn_Handler 0x0001294c Section 0 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + i.app_EXTI_INT1_IRQn_Handler 0x00012968 Section 0 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + i.app_EXTI_INT2_IRQn_Handler 0x00012984 Section 0 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + i.app_EXTI_INT3_IRQn_Handler 0x000129a0 Section 0 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + i.app_EXTI_INT4_IRQn_Handler 0x000129bc Section 0 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + i.app_EXTI_INT5_IRQn_Handler 0x000129d8 Section 0 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + i.app_EXTI_INT6_IRQn_Handler 0x000129f4 Section 0 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + i.app_EXTI_INT7_IRQn_Handler 0x00012a10 Section 0 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + i.app_HardFault_Handler 0x00012a2c Section 0 drv_common.o(i.app_HardFault_Handler) + i.app_I2C0_IRQn_Handler 0x00012a74 Section 0 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + i.app_I2C1_IRQn_Handler 0x00012a8c Section 0 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + i.app_LCDC_IRQn_Handler 0x00012a9c Section 0 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + i.app_MEMC_IRQn_Handler 0x00012c40 Section 0 drv_memc.o(i.app_MEMC_IRQn_Handler) + i.app_MIPI_RX_IRQn_Handler 0x00012cc8 Section 0 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + i.app_MIPI_TX_IRQn_Handler 0x00012f60 Section 0 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + i.app_PWMDET_IRQn_Handler 0x00013000 Section 0 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + i.app_SPIM_IRQn_Handler 0x00013048 Section 0 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + i.app_SPIS_IRQn_Handler 0x00013078 Section 0 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + i.app_SWIRE_IRQn_Handler 0x00013278 Section 0 drv_swire.o(i.app_SWIRE_IRQn_Handler) + i.app_SysTick_Handler 0x00013298 Section 0 drv_common.o(i.app_SysTick_Handler) + i.app_TIMER0_IRQn_Handler 0x000132b0 Section 0 drv_timer.o(i.app_TIMER0_IRQn_Handler) + i.app_TIMER1_IRQn_Handler 0x000132ba Section 0 drv_timer.o(i.app_TIMER1_IRQn_Handler) + i.app_TIMER2_IRQn_Handler 0x000132c4 Section 0 drv_timer.o(i.app_TIMER2_IRQn_Handler) + i.app_TIMER3_IRQn_Handler 0x000132ce Section 0 drv_timer.o(i.app_TIMER3_IRQn_Handler) + i.app_UART_IRQn_Handler 0x000132d8 Section 0 drv_uart.o(i.app_UART_IRQn_Handler) + i.app_VIDC_IRQn_Handler 0x000132e0 Section 0 drv_vidc.o(i.app_VIDC_IRQn_Handler) + i.app_VPRE_IRQn_Handler 0x000132fc Section 0 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + i.app_WDG_IRQn_Handler 0x00013318 Section 0 drv_wdg.o(i.app_WDG_IRQn_Handler) + i.app_dma_irq_handler 0x00013350 Section 0 drv_dma.o(i.app_dma_irq_handler) + i.app_fls_ctrl_Handler 0x00013360 Section 0 norflash.o(i.app_fls_ctrl_Handler) + i.app_tp_I2C_init 0x00013390 Section 0 app_tp_transfer.o(i.app_tp_I2C_init) + i.app_tp_calibration_exec 0x000133b4 Section 0 app_tp_st_touch.o(i.app_tp_calibration_exec) + i.app_tp_i2cs_callback 0x0001345c Section 0 app_tp_transfer.o(i.app_tp_i2cs_callback) + app_tp_i2cs_callback 0x0001345d Thumb Code 136 app_tp_transfer.o(i.app_tp_i2cs_callback) + i.app_tp_init 0x000134f8 Section 0 app_tp_transfer.o(i.app_tp_init) + i.app_tp_m_read 0x0001353c Section 0 app_tp_transfer.o(i.app_tp_m_read) + i.app_tp_m_write 0x0001355c Section 0 app_tp_transfer.o(i.app_tp_m_write) + i.app_tp_phone_analysis_data 0x00013564 Section 0 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + i.app_tp_s_read 0x00013a24 Section 0 app_tp_transfer.o(i.app_tp_s_read) + i.app_tp_s_write 0x00013a2c Section 0 app_tp_transfer.o(i.app_tp_s_write) + i.app_tp_screen_analysis_int 0x00013a34 Section 0 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + i.app_tp_screen_init 0x00013eb8 Section 0 app_tp_transfer.o(i.app_tp_screen_init) + i.app_tp_screen_int_callback 0x00013ee8 Section 0 app_tp_transfer.o(i.app_tp_screen_int_callback) + app_tp_screen_int_callback 0x00013ee9 Thumb Code 8 app_tp_transfer.o(i.app_tp_screen_int_callback) + i.app_tp_transfer_screen_const 0x00013ef4 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_const) + app_tp_transfer_screen_const 0x00013ef5 Thumb Code 50 app_tp_transfer.o(i.app_tp_transfer_screen_const) + i.app_tp_transfer_screen_int 0x00013f34 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_int) + i.app_tp_transfer_screen_start 0x00014040 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_start) + i.board_Init 0x00014054 Section 0 board.o(i.board_Init) + i.calc_framebuffer_setting 0x00014078 Section 0 hal_internal_vsync.o(i.calc_framebuffer_setting) + i.ceil 0x00014568 Section 0 ceil.o(i.ceil) + i.check_mipi_rx_tx_video_info 0x00014630 Section 0 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + check_mipi_rx_tx_video_info 0x00014631 Thumb Code 44 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + i.check_pkt_buf_rev 0x0001465c Section 0 hal_internal_vsync.o(i.check_pkt_buf_rev) + check_pkt_buf_rev 0x0001465d Thumb Code 90 hal_internal_vsync.o(i.check_pkt_buf_rev) + i.dcs_packet_fifo_alloc 0x000146f0 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + i.dcs_packet_fifo_init 0x00014748 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + i.dcs_packet_free_fifo_header 0x00014760 Section 0 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + i.dcs_packet_get_fifo_header 0x000147a4 Section 0 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + i.dcs_sw_filter 0x000147c8 Section 0 hal_internal_vsync.o(i.dcs_sw_filter) + dcs_sw_filter 0x000147c9 Thumb Code 24 hal_internal_vsync.o(i.dcs_sw_filter) + i.delayMs 0x000147e4 Section 0 tau_delay.o(i.delayMs) + i.delayUs 0x000147fc Section 0 tau_delay.o(i.delayUs) + i.drv_ap_rst_trig_edge_detect 0x00014820 Section 0 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + i.drv_chip_info_get_info 0x00014858 Section 0 drv_chip_info.o(i.drv_chip_info_get_info) + i.drv_chip_info_init 0x00014864 Section 0 drv_chip_info.o(i.drv_chip_info_init) + i.drv_chip_rx_info_check 0x000148a4 Section 0 drv_chip_info.o(i.drv_chip_rx_info_check) + i.drv_chip_rx_init_done 0x00014954 Section 0 drv_chip_info.o(i.drv_chip_rx_init_done) + i.drv_common_enable_systick 0x00014968 Section 0 drv_common.o(i.drv_common_enable_systick) + i.drv_common_system_init 0x000149c0 Section 0 drv_common.o(i.drv_common_system_init) + i.drv_crgu_config_reset_modules 0x000149c8 Section 0 drv_crgu.o(i.drv_crgu_config_reset_modules) + i.drv_crgu_set_ahb_pre_div 0x000149d8 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + i.drv_crgu_set_ahb_src 0x000149ec Section 0 drv_crgu.o(i.drv_crgu_set_ahb_src) + i.drv_crgu_set_clock 0x00014a00 Section 0 drv_crgu.o(i.drv_crgu_set_clock) + i.drv_crgu_set_dpi_mux_src 0x00014a20 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + i.drv_crgu_set_dpi_pre_div 0x00014a34 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + i.drv_crgu_set_dpi_pre_src 0x00014a4c Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + i.drv_crgu_set_dsc_core_div 0x00014a60 Section 0 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + i.drv_crgu_set_dsco_src 0x00014a74 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src) + i.drv_crgu_set_dsco_src_div 0x00014a88 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + i.drv_crgu_set_fb_div 0x00014a9c Section 0 drv_crgu.o(i.drv_crgu_set_fb_div) + i.drv_crgu_set_fb_src 0x00014ab0 Section 0 drv_crgu.o(i.drv_crgu_set_fb_src) + i.drv_crgu_set_lcdc_div 0x00014ac4 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_div) + i.drv_crgu_set_lcdc_src 0x00014ad8 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_src) + i.drv_crgu_set_mipi_cfg_src 0x00014aec Section 0 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + i.drv_crgu_set_mipi_ref_src 0x00014b00 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + i.drv_crgu_set_reset 0x00014b18 Section 0 drv_crgu.o(i.drv_crgu_set_reset) + i.drv_crgu_set_rxbr_div 0x00014b30 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_div) + i.drv_crgu_set_rxbr_src 0x00014b44 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_src) + i.drv_crgu_set_vidc_src 0x00014b58 Section 0 drv_crgu.o(i.drv_crgu_set_vidc_src) + i.drv_dma_clear_flag 0x00014b6c Section 0 drv_dma.o(i.drv_dma_clear_flag) + i.drv_dma_create_handle 0x00014b84 Section 0 drv_dma.o(i.drv_dma_create_handle) + i.drv_dma_disenable_channel 0x00014ba0 Section 0 drv_dma.o(i.drv_dma_disenable_channel) + i.drv_dma_enable_channel 0x00014bb0 Section 0 drv_dma.o(i.drv_dma_enable_channel) + i.drv_dma_enable_channel_interrupts 0x00014bc0 Section 0 drv_dma.o(i.drv_dma_enable_channel_interrupts) + i.drv_dma_get_channel_flag 0x00014be4 Section 0 drv_dma.o(i.drv_dma_get_channel_flag) + i.drv_dma_irq_handler 0x00014bf0 Section 0 drv_dma.o(i.drv_dma_irq_handler) + i.drv_dma_prepar_transfer 0x00014c80 Section 0 drv_dma.o(i.drv_dma_prepar_transfer) + i.drv_dma_set_burst 0x00014c92 Section 0 drv_dma.o(i.drv_dma_set_burst) + i.drv_dma_set_callback 0x00014cac Section 0 drv_dma.o(i.drv_dma_set_callback) + i.drv_dma_set_transfer 0x00014cb4 Section 0 drv_dma.o(i.drv_dma_set_transfer) + i.drv_dsc_dec_convert_pps_rc_parameter 0x00014cf8 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + i.drv_dsc_dec_disable 0x00014d2e Section 0 drv_dsc_dec.o(i.drv_dsc_dec_disable) + i.drv_dsc_dec_enable 0x00014d3c Section 0 drv_dsc_dec.o(i.drv_dsc_dec_enable) + i.drv_dsc_dec_get_nslc 0x00014db0 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + i.drv_dsc_dec_set_u8_pps 0x00014dba Section 0 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + i.drv_dsi_rx_calc_ipi_tx_delay 0x00014de4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + i.drv_dsi_rx_enable_irq 0x00014ee8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + i.drv_dsi_rx_get_color_bpp 0x00014f28 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + drv_dsi_rx_get_color_bpp 0x00014f29 Thumb Code 62 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + i.drv_dsi_rx_get_color_pcc 0x00014f78 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + drv_dsi_rx_get_color_pcc 0x00014f79 Thumb Code 24 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + i.drv_dsi_rx_get_compression_en 0x00014f94 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + i.drv_dsi_rx_get_max_ret_size 0x00014f9c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + i.drv_dsi_rx_power_up 0x00014fa2 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + i.drv_dsi_rx_set_ctrl_cfg 0x00014fb0 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + i.drv_dsi_rx_set_ddi_cfg 0x00014fd0 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + i.drv_dsi_rx_set_inten 0x00014fe0 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + i.drv_dsi_rx_set_ipi_cfg 0x00014fe4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + i.drv_dsi_rx_set_lane_swap 0x00014ff4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + i.drv_dsi_rx_set_resp_cnt 0x0001503a Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + i.drv_dsi_rx_set_up_phy 0x00015060 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + i.drv_dsi_rx_shut_down 0x00015164 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + i.drv_dsi_tx_command_header 0x00015172 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + i.drv_dsi_tx_command_mode_cfg 0x00015186 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + i.drv_dsi_tx_command_put_payload 0x000151f2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + i.drv_dsi_tx_config_eotp 0x000151f6 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + i.drv_dsi_tx_config_int 0x0001520e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + i.drv_dsi_tx_dpi_lpcmd_time 0x00015216 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + i.drv_dsi_tx_dpi_mode 0x0001521e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + i.drv_dsi_tx_dpi_polarity 0x00015228 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + i.drv_dsi_tx_edpi_cmd_size 0x0001524c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + i.drv_dsi_tx_get_cmd_status 0x00015250 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + i.drv_dsi_tx_mode 0x00015254 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_mode) + i.drv_dsi_tx_phy_clock_lane_auto_lp 0x00015258 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + i.drv_dsi_tx_phy_clock_lane_req_hs 0x00015270 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + i.drv_dsi_tx_phy_lane_mode 0x0001528a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + i.drv_dsi_tx_phy_status_ready 0x00015296 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + i.drv_dsi_tx_phy_status_stopstate 0x000152fa Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + i.drv_dsi_tx_phy_test_setup 0x00015338 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + i.drv_dsi_tx_phy_time_cfg 0x0001546c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + i.drv_dsi_tx_powerup 0x0001548a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + i.drv_dsi_tx_response_mode 0x00015492 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + i.drv_dsi_tx_set_bta_ack 0x000154ae Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + i.drv_dsi_tx_set_esc_div 0x000154c6 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + i.drv_dsi_tx_set_int 0x000154d4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + i.drv_dsi_tx_set_time_out_div 0x00015514 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + i.drv_dsi_tx_set_video_chunk 0x00015524 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + i.drv_dsi_tx_set_video_timing 0x0001552c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + i.drv_dsi_tx_shutdown 0x0001554e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + i.drv_dsi_tx_timeout_cfg 0x00015556 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + i.drv_dsi_tx_video_mode_cfg 0x0001557c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + i.drv_dsi_tx_video_mode_disable_hact_cmd 0x00015626 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + i.drv_dsi_tx_video_mode_set_lp_cmd 0x0001563c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + i.drv_efuse_enter_inactive 0x00015654 Section 0 drv_efuse.o(i.drv_efuse_enter_inactive) + i.drv_efuse_int_enable 0x00015682 Section 0 drv_efuse.o(i.drv_efuse_int_enable) + i.drv_efuse_read 0x0001568e Section 0 drv_efuse.o(i.drv_efuse_read) + i.drv_efuse_read_req 0x000156c0 Section 0 drv_efuse.o(i.drv_efuse_read_req) + i.drv_gpio_get_input_data 0x000156d8 Section 0 drv_gpio.o(i.drv_gpio_get_input_data) + i.drv_gpio_register_ap_reset_callback 0x000156f0 Section 0 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + i.drv_gpio_register_callback 0x000156fc Section 0 drv_gpio.o(i.drv_gpio_register_callback) + i.drv_gpio_set_int 0x00015710 Section 0 drv_gpio.o(i.drv_gpio_set_int) + i.drv_gpio_set_ioe 0x00015760 Section 0 drv_gpio.o(i.drv_gpio_set_ioe) + i.drv_gpio_set_mode0 0x00015780 Section 0 drv_gpio.o(i.drv_gpio_set_mode0) + i.drv_gpio_set_mode1 0x00015790 Section 0 drv_gpio.o(i.drv_gpio_set_mode1) + i.drv_gpio_set_mode2 0x000157a0 Section 0 drv_gpio.o(i.drv_gpio_set_mode2) + i.drv_gpio_set_mode3 0x000157b0 Section 0 drv_gpio.o(i.drv_gpio_set_mode3) + i.drv_gpio_set_output_data 0x000157c0 Section 0 hal_gpio.o(i.drv_gpio_set_output_data) + drv_gpio_set_output_data 0x000157c1 Thumb Code 26 hal_gpio.o(i.drv_gpio_set_output_data) + i.drv_gpio_set_pull_state 0x000157e0 Section 0 drv_gpio.o(i.drv_gpio_set_pull_state) + i.drv_i2c0_set_callback 0x00015910 Section 0 drv_i2c_slave.o(i.drv_i2c0_set_callback) + i.drv_i2c1_set_callback 0x0001591c Section 0 drv_i2c_master.o(i.drv_i2c1_set_callback) + i.drv_i2c_dma_callback 0x00015928 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_callback) + drv_i2c_dma_callback 0x00015929 Thumb Code 40 drv_i2c_dma.o(i.drv_i2c_dma_callback) + i.drv_i2c_dma_init 0x0001595c Section 0 drv_i2c_dma.o(i.drv_i2c_dma_init) + i.drv_i2c_enable_rx_dma 0x00015a08 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + i.drv_i2c_enable_tx_dma 0x00015a22 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + i.drv_i2c_m_clear_it_pending_bit 0x00015a3c Section 0 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + i.drv_i2c_m_enable 0x00015a9c Section 0 drv_i2c_master.o(i.drv_i2c_m_enable) + i.drv_i2c_m_enable_intr 0x00015aac Section 0 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + i.drv_i2c_master_init 0x00015ae4 Section 0 drv_i2c_master.o(i.drv_i2c_master_init) + i.drv_i2c_master_read_dma 0x00015b70 Section 0 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + i.drv_i2c_master_write_dma 0x00015bcc Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + i.drv_i2c_master_write_read_cmd 0x00015c08 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + drv_i2c_master_write_read_cmd 0x00015c09 Thumb Code 62 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + i.drv_i2c_s_clear_it_pending_bit 0x00015c46 Section 0 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + i.drv_i2c_s_config_intr 0x00015c88 Section 0 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + i.drv_i2c_s_enable 0x00015c8c Section 0 drv_i2c_slave.o(i.drv_i2c_s_enable) + i.drv_i2c_s_get_fifo_status 0x00015c94 Section 0 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + i.drv_i2c_s_set_intr 0x00015ca8 Section 0 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + i.drv_i2c_s_write_data 0x00015cf8 Section 0 drv_i2c_slave.o(i.drv_i2c_s_write_data) + i.drv_i2c_set_dma_irq_callback 0x00015d14 Section 0 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + i.drv_i2c_slave_init 0x00015d6c Section 0 drv_i2c_slave.o(i.drv_i2c_slave_init) + i.drv_i2c_slave_write_dma 0x00015da0 Section 0 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + i.drv_lcdc_config_bypass 0x00015db8 Section 0 drv_lcdc.o(i.drv_lcdc_config_bypass) + i.drv_lcdc_config_ccm 0x00015dd0 Section 0 drv_lcdc.o(i.drv_lcdc_config_ccm) + i.drv_lcdc_config_disp_mode 0x00015e00 Section 0 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + i.drv_lcdc_config_dpi_polarity 0x00015e16 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + i.drv_lcdc_config_dpi_timing 0x00015e3a Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + i.drv_lcdc_config_edpi_mode 0x00015e60 Section 0 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + i.drv_lcdc_config_endianness 0x00015e76 Section 0 drv_lcdc.o(i.drv_lcdc_config_endianness) + i.drv_lcdc_config_input_size 0x00015e8c Section 0 drv_lcdc.o(i.drv_lcdc_config_input_size) + i.drv_lcdc_config_int 0x00015e98 Section 0 drv_lcdc.o(i.drv_lcdc_config_int) + i.drv_lcdc_config_int_single 0x00015eb6 Section 0 drv_lcdc.o(i.drv_lcdc_config_int_single) + i.drv_lcdc_config_overwrite 0x00015ed8 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite) + i.drv_lcdc_config_overwrite_rgb 0x00015efa Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + i.drv_lcdc_config_partial_display_area 0x00015f06 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + i.drv_lcdc_config_partial_display_enable 0x00015f20 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + i.drv_lcdc_config_scale_up_coef 0x00015f42 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + i.drv_lcdc_config_scale_up_step 0x00015f5c Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + i.drv_lcdc_config_src_parameter 0x00015f68 Section 0 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + i.drv_lcdc_config_thresh 0x00015fb4 Section 0 drv_lcdc.o(i.drv_lcdc_config_thresh) + i.drv_lcdc_ctrl_flow 0x00015fba Section 0 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + i.drv_lcdc_enable_shadow_reg 0x00015fcc Section 0 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + i.drv_lcdc_set_int 0x00015fec Section 0 drv_lcdc.o(i.drv_lcdc_set_int) + i.drv_lcdc_set_video_hw_mode 0x0001602c Section 0 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + i.drv_lcdc_start 0x00016040 Section 0 drv_lcdc.o(i.drv_lcdc_start) + i.drv_memc_clear_status 0x00016060 Section 0 drv_memc.o(i.drv_memc_clear_status) + i.drv_memc_enable_irq 0x0001606c Section 0 drv_memc.o(i.drv_memc_enable_irq) + i.drv_memc_gen_a_tear_signal 0x000160ac Section 0 drv_memc.o(i.drv_memc_gen_a_tear_signal) + i.drv_memc_get_status 0x000160b8 Section 0 drv_memc.o(i.drv_memc_get_status) + i.drv_memc_rate_transfer_sel 0x000160ca Section 0 drv_memc.o(i.drv_memc_rate_transfer_sel) + i.drv_memc_sel_vsync 0x000160da Section 0 drv_memc.o(i.drv_memc_sel_vsync) + i.drv_memc_set_active_height 0x000160e8 Section 0 drv_memc.o(i.drv_memc_set_active_height) + i.drv_memc_set_data_mode 0x000160fc Section 0 drv_memc.o(i.drv_memc_set_data_mode) + i.drv_memc_set_double_buffer 0x00016108 Section 0 drv_memc.o(i.drv_memc_set_double_buffer) + i.drv_memc_set_double_buffer_reverse 0x00016118 Section 0 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + i.drv_memc_set_fs_en_conditions 0x0001612a Section 0 drv_memc.o(i.drv_memc_set_fs_en_conditions) + i.drv_memc_set_inten 0x0001613a Section 0 drv_memc.o(i.drv_memc_set_inten) + i.drv_memc_set_lcdc_st_conditions 0x00016150 Section 0 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + i.drv_memc_set_ltpo_mode 0x00016168 Section 0 drv_memc.o(i.drv_memc_set_ltpo_mode) + i.drv_memc_set_tear_mode 0x00016182 Section 0 drv_memc.o(i.drv_memc_set_tear_mode) + i.drv_memc_set_tear_waveform 0x00016190 Section 0 drv_memc.o(i.drv_memc_set_tear_waveform) + i.drv_memc_set_vidc_sync_cnt 0x000161b8 Section 0 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + i.drv_param_init_get_ccm 0x000161c8 Section 0 drv_param_init.o(i.drv_param_init_get_ccm) + i.drv_param_init_get_scld_filter_h 0x000161d0 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + i.drv_param_init_get_scld_filter_v 0x000161e4 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + i.drv_param_init_get_sclu_filter 0x000161f8 Section 0 drv_param_init.o(i.drv_param_init_get_sclu_filter) + i.drv_param_init_set_ccm 0x00016200 Section 0 drv_param_init.o(i.drv_param_init_set_ccm) + i.drv_param_p2r_filter_init 0x00016214 Section 0 drv_param_init.o(i.drv_param_p2r_filter_init) + i.drv_phy_enable_calibration 0x00016238 Section 0 drv_phy_common.o(i.drv_phy_enable_calibration) + i.drv_phy_get_calibration 0x00016248 Section 0 drv_phy_common.o(i.drv_phy_get_calibration) + i.drv_phy_get_pll_para 0x00016284 Section 0 drv_phy_common.o(i.drv_phy_get_pll_para) + i.drv_phy_get_rate_para 0x000162e4 Section 0 drv_phy_common.o(i.drv_phy_get_rate_para) + i.drv_phy_test_clear 0x00016338 Section 0 drv_phy_common.o(i.drv_phy_test_clear) + i.drv_phy_test_lock 0x00016348 Section 0 drv_phy_common.o(i.drv_phy_test_lock) + i.drv_phy_test_write_1_byte 0x00016360 Section 0 drv_phy_common.o(i.drv_phy_test_write_1_byte) + i.drv_phy_test_write_2_byte 0x00016380 Section 0 drv_phy_common.o(i.drv_phy_test_write_2_byte) + i.drv_phy_test_write_code 0x000163a6 Section 0 drv_phy_common.o(i.drv_phy_test_write_code) + i.drv_phy_test_write_data 0x000163c4 Section 0 drv_phy_common.o(i.drv_phy_test_write_data) + drv_phy_test_write_data 0x000163c5 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_data) + i.drv_pwr_set_cp_mode 0x000163e4 Section 0 drv_pwr.o(i.drv_pwr_set_cp_mode) + i.drv_pwr_set_pvd_mode 0x00016404 Section 0 drv_pwr.o(i.drv_pwr_set_pvd_mode) + i.drv_pwr_set_system_clk_src 0x0001641c Section 0 drv_pwr.o(i.drv_pwr_set_system_clk_src) + i.drv_rx_phy_test_clear 0x00016454 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + drv_rx_phy_test_clear 0x00016455 Thumb Code 12 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + i.drv_rx_phy_test_lock 0x00016460 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + drv_rx_phy_test_lock 0x00016461 Thumb Code 16 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + i.drv_rx_phy_test_write_1_byte 0x00016470 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + drv_rx_phy_test_write_1_byte 0x00016471 Thumb Code 20 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + i.drv_rx_phy_test_write_2_byte 0x00016484 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + drv_rx_phy_test_write_2_byte 0x00016485 Thumb Code 22 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + i.drv_rxbr_clear_pkt_buffer 0x0001649a Section 0 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + i.drv_rxbr_clear_status0 0x000164a4 Section 0 drv_rxbr.o(i.drv_rxbr_clear_status0) + i.drv_rxbr_enable_irq 0x000164a8 Section 0 drv_rxbr.o(i.drv_rxbr_enable_irq) + i.drv_rxbr_frame_drop_cfg 0x00016504 Section 0 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + i.drv_rxbr_get_clk 0x00016518 Section 0 drv_rxbr.o(i.drv_rxbr_get_clk) + i.drv_rxbr_get_col_addr 0x0001657c Section 0 drv_rxbr.o(i.drv_rxbr_get_col_addr) + i.drv_rxbr_get_int_source 0x00016580 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + drv_rxbr_get_int_source 0x00016581 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + i.drv_rxbr_get_page_addr 0x00016592 Section 0 drv_rxbr.o(i.drv_rxbr_get_page_addr) + i.drv_rxbr_get_status0 0x00016596 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_status0) + drv_rxbr_get_status0 0x00016597 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_status0) + i.drv_rxbr_hline_rcv0_cfg 0x000165a8 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + i.drv_rxbr_hline_rcv_cfg 0x000165b4 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + i.drv_rxbr_register_irq0_callback 0x000165bc Section 0 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + i.drv_rxbr_register_irq1_callback 0x000165c8 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + i.drv_rxbr_set_ack_pkt_header 0x000165d4 Section 0 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + i.drv_rxbr_set_cmd_filter 0x000165e8 Section 0 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + i.drv_rxbr_set_color_format 0x000166b4 Section 0 drv_rxbr.o(i.drv_rxbr_set_color_format) + i.drv_rxbr_set_inten 0x000166c8 Section 0 drv_rxbr.o(i.drv_rxbr_set_inten) + i.drv_rxbr_set_ltpo_drop_th 0x000166dc Section 0 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + i.drv_rxbr_set_usr_cfg 0x000166ec Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + i.drv_rxbr_set_usr_col 0x00016712 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_col) + i.drv_rxbr_set_usr_row 0x0001671a Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_row) + i.drv_spi_m_read_data 0x00016724 Section 0 drv_spi_master.o(i.drv_spi_m_read_data) + i.drv_swire_enable 0x00016744 Section 0 drv_swire.o(i.drv_swire_enable) + i.drv_swire_set_int 0x00016760 Section 0 drv_swire.o(i.drv_swire_set_int) + i.drv_swire_set_power_down 0x000167b4 Section 0 drv_swire.o(i.drv_swire_set_power_down) + i.drv_sys_cfg_clear_all_int 0x000167d0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + i.drv_sys_cfg_clear_pending 0x000167dc Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + i.drv_sys_cfg_sel_ap_rst_lvl_trig 0x00016804 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + i.drv_sys_cfg_sel_ap_rst_trig 0x0001681c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + i.drv_sys_cfg_sel_gpio_group 0x00016838 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + i.drv_sys_cfg_sel_int_trig 0x0001685c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + i.drv_sys_cfg_set_dma_rx_req 0x00016880 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + i.drv_sys_cfg_set_dma_tx_req 0x00016890 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + i.drv_sys_cfg_set_int 0x000168a0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + i.drv_timer_clear_status_flags 0x000168c4 Section 0 drv_timer.o(i.drv_timer_clear_status_flags) + drv_timer_clear_status_flags 0x000168c5 Thumb Code 26 drv_timer.o(i.drv_timer_clear_status_flags) + i.drv_timer_enable 0x000168de Section 0 drv_timer.o(i.drv_timer_enable) + i.drv_timer_get_instance 0x00016900 Section 0 drv_timer.o(i.drv_timer_get_instance) + i.drv_timer_get_prescaler 0x00016910 Section 0 drv_timer.o(i.drv_timer_get_prescaler) + i.drv_timer_handle_interrupt 0x00016920 Section 0 drv_timer.o(i.drv_timer_handle_interrupt) + drv_timer_handle_interrupt 0x00016921 Thumb Code 62 drv_timer.o(i.drv_timer_handle_interrupt) + i.drv_timer_register_callback 0x00016964 Section 0 drv_timer.o(i.drv_timer_register_callback) + i.drv_timer_set_compare_val 0x00016978 Section 0 drv_timer.o(i.drv_timer_set_compare_val) + i.drv_timer_set_int 0x00016988 Section 0 drv_timer.o(i.drv_timer_set_int) + i.drv_timer_set_prescaler 0x000169dc Section 0 drv_timer.o(i.drv_timer_set_prescaler) + i.drv_timer_set_repeat 0x00016a04 Section 0 drv_timer.o(i.drv_timer_set_repeat) + i.drv_tx_phy_test_clear 0x00016a14 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + drv_tx_phy_test_clear 0x00016a15 Thumb Code 10 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + i.drv_tx_phy_test_enter 0x00016a1e Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + i.drv_tx_phy_test_exit 0x00016a3a Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + i.drv_tx_phy_test_write_1_byte 0x00016a56 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + drv_tx_phy_test_write_1_byte 0x00016a57 Thumb Code 18 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + i.drv_tx_phy_test_write_2_byte 0x00016a68 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + drv_tx_phy_test_write_2_byte 0x00016a69 Thumb Code 20 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + i.drv_tx_phy_test_write_code 0x00016a7c Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + drv_tx_phy_test_write_code 0x00016a7d Thumb Code 16 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + i.drv_vidc_clear_irq 0x00016a8c Section 0 drv_vidc.o(i.drv_vidc_clear_irq) + i.drv_vidc_enable 0x00016a94 Section 0 drv_vidc.o(i.drv_vidc_enable) + i.drv_vidc_enable_irq 0x00016aac Section 0 drv_vidc.o(i.drv_vidc_enable_irq) + i.drv_vidc_get_irq_status 0x00016aec Section 0 drv_vidc.o(i.drv_vidc_get_irq_status) + i.drv_vidc_init_module_enable 0x00016b00 Section 0 drv_vidc.o(i.drv_vidc_init_module_enable) + i.drv_vidc_register_callback 0x00016b28 Section 0 drv_vidc.o(i.drv_vidc_register_callback) + i.drv_vidc_reset 0x00016b34 Section 0 drv_vidc.o(i.drv_vidc_reset) + i.drv_vidc_set_dst_parameter 0x00016b3a Section 0 drv_vidc.o(i.drv_vidc_set_dst_parameter) + i.drv_vidc_set_irqen 0x00016b76 Section 0 drv_vidc.o(i.drv_vidc_set_irqen) + i.drv_vidc_set_mirror 0x00016b8a Section 0 drv_vidc.o(i.drv_vidc_set_mirror) + i.drv_vidc_set_p2r_hcoef0 0x00016b9a Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + i.drv_vidc_set_p2r_hinitb 0x00016ba2 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + i.drv_vidc_set_p2r_hinitr 0x00016bc8 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + i.drv_vidc_set_pentile_swap 0x00016bf0 Section 0 drv_vidc.o(i.drv_vidc_set_pentile_swap) + i.drv_vidc_set_pu_ctrl 0x00016c08 Section 0 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + i.drv_vidc_set_rotation 0x00016c12 Section 0 drv_vidc.o(i.drv_vidc_set_rotation) + i.drv_vidc_set_scld_hcoef0 0x00016c22 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + i.drv_vidc_set_scld_hcoef1 0x00016c2c Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + i.drv_vidc_set_scld_step 0x00016c36 Section 0 drv_vidc.o(i.drv_vidc_set_scld_step) + i.drv_vidc_set_scld_vcoef0 0x00016c48 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + i.drv_vidc_set_scld_vcoef1 0x00016c52 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + i.drv_vidc_set_src_parameter 0x00016c5c Section 0 drv_vidc.o(i.drv_vidc_set_src_parameter) + i.drv_wdg_clear_counter 0x00016c74 Section 0 drv_wdg.o(i.drv_wdg_clear_counter) + i.drv_wdg_clear_edge_flag 0x00016c84 Section 0 drv_wdg.o(i.drv_wdg_clear_edge_flag) + drv_wdg_clear_edge_flag 0x00016c85 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_edge_flag) + i.drv_wdg_read_edge_flag 0x00016c94 Section 0 drv_wdg.o(i.drv_wdg_read_edge_flag) + drv_wdg_read_edge_flag 0x00016c95 Thumb Code 10 drv_wdg.o(i.drv_wdg_read_edge_flag) + i.drv_wdg_set_int 0x00016ca4 Section 0 drv_wdg.o(i.drv_wdg_set_int) + i.fls_clr_interrupt_flag 0x00016ce4 Section 0 drv_fls.o(i.fls_clr_interrupt_flag) + i.fputc 0x00016cee Section 0 tau_log.o(i.fputc) + i.hal_dsi_rx_ctrl_create_handle 0x00016d04 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + i.hal_dsi_rx_ctrl_deinit 0x00016d38 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + i.hal_dsi_rx_ctrl_dsc_async_handler 0x00016dd4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + i.hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016e58 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + i.hal_dsi_rx_ctrl_get_max_ret_size 0x00016e80 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + i.hal_dsi_rx_ctrl_init 0x00016ea8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + i.hal_dsi_rx_ctrl_init_clk 0x00016f08 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + hal_dsi_rx_ctrl_init_clk 0x00016f09 Thumb Code 332 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + i.hal_dsi_rx_ctrl_init_dsi_rx 0x000170ac Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + hal_dsi_rx_ctrl_init_dsi_rx 0x000170ad Thumb Code 184 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + i.hal_dsi_rx_ctrl_init_memc 0x00017184 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + hal_dsi_rx_ctrl_init_memc 0x00017185 Thumb Code 334 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + i.hal_dsi_rx_ctrl_init_rxbr 0x000172dc Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + hal_dsi_rx_ctrl_init_rxbr 0x000172dd Thumb Code 312 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + i.hal_dsi_rx_ctrl_init_vidc 0x00017424 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + hal_dsi_rx_ctrl_init_vidc 0x00017425 Thumb Code 544 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + i.hal_dsi_rx_ctrl_send_ack_cmd 0x00017650 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + i.hal_dsi_rx_ctrl_set_cus_sync_line 0x00017740 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + i.hal_dsi_rx_ctrl_set_hw_tear_mode 0x00017774 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + i.hal_dsi_rx_ctrl_set_ipi_cfg 0x000177a8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + hal_dsi_rx_ctrl_set_ipi_cfg 0x000177a9 Thumb Code 50 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + i.hal_dsi_rx_ctrl_set_rxbr_clk 0x000177e0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + hal_dsi_rx_ctrl_set_rxbr_clk 0x000177e1 Thumb Code 114 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + i.hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017854 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + i.hal_dsi_rx_ctrl_start 0x00017888 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + i.hal_dsi_rx_ctrl_stop 0x000178c4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + i.hal_dsi_rx_ctrl_toggle_resolution 0x00017900 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + i.hal_dsi_tx_calc_video_chunks 0x00017920 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + hal_dsi_tx_calc_video_chunks 0x00017921 Thumb Code 384 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + i.hal_dsi_tx_config_params_for_lane_rate 0x00017ab0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + hal_dsi_tx_config_params_for_lane_rate 0x00017ab1 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + i.hal_dsi_tx_count_lane_rate 0x00017ae4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + hal_dsi_tx_count_lane_rate 0x00017ae5 Thumb Code 1022 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + i.hal_dsi_tx_crop_pic 0x00017f34 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) + i.hal_dsi_tx_ctrl_create_handle 0x00017fc8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + i.hal_dsi_tx_ctrl_deinit 0x00017ff4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + i.hal_dsi_tx_ctrl_enter_init_panel_mode 0x00018078 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + i.hal_dsi_tx_ctrl_exit_init_panel_mode 0x000180c4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + i.hal_dsi_tx_ctrl_init 0x000180ec Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + i.hal_dsi_tx_ctrl_init_clk 0x00018190 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + hal_dsi_tx_ctrl_init_clk 0x00018191 Thumb Code 36 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + i.hal_dsi_tx_ctrl_panel_reset_pin 0x000181b4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + i.hal_dsi_tx_ctrl_set_ccm 0x000181c0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + i.hal_dsi_tx_ctrl_set_overwrite_rgb 0x000181e0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + i.hal_dsi_tx_ctrl_set_partial_disp 0x000181f4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + i.hal_dsi_tx_ctrl_set_partial_disp_area 0x00018204 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + i.hal_dsi_tx_ctrl_start 0x00018228 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + i.hal_dsi_tx_ctrl_stop 0x000182c4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + i.hal_dsi_tx_ctrl_write_array_cmd 0x00018308 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + i.hal_dsi_tx_ctrl_write_cmd 0x000183e0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + i.hal_dsi_tx_init_data_mode 0x00018490 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + hal_dsi_tx_init_data_mode 0x00018491 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + i.hal_dsi_tx_init_dpi_cfg 0x000184d4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + hal_dsi_tx_init_dpi_cfg 0x000184d5 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + i.hal_dsi_tx_init_interrupt 0x00018504 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + hal_dsi_tx_init_interrupt 0x00018505 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + i.hal_dsi_tx_init_phy_cfg 0x00018524 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + hal_dsi_tx_init_phy_cfg 0x00018525 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + i.hal_dsi_tx_init_remains 0x00018544 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + hal_dsi_tx_init_remains 0x00018545 Thumb Code 142 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + i.hal_dsi_tx_init_video_mode 0x000185d8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + hal_dsi_tx_init_video_mode 0x000185d9 Thumb Code 82 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + i.hal_dsi_tx_send_cmd 0x00018630 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + hal_dsi_tx_send_cmd 0x00018631 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + i.hal_gpio_ctrl_eint 0x00018674 Section 0 hal_gpio.o(i.hal_gpio_ctrl_eint) + i.hal_gpio_get_input_data 0x0001868c Section 0 hal_gpio.o(i.hal_gpio_get_input_data) + i.hal_gpio_init_eint 0x000186a0 Section 0 hal_gpio.o(i.hal_gpio_init_eint) + i.hal_gpio_init_input 0x000186e0 Section 0 hal_gpio.o(i.hal_gpio_init_input) + i.hal_gpio_init_output 0x00018700 Section 0 hal_gpio.o(i.hal_gpio_init_output) + i.hal_gpio_reg_eint_cb 0x00018728 Section 0 hal_gpio.o(i.hal_gpio_reg_eint_cb) + i.hal_gpio_set_ap_reset_int 0x00018740 Section 0 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + i.hal_gpio_set_mode 0x00018790 Section 0 hal_gpio.o(i.hal_gpio_set_mode) + i.hal_gpio_set_output_data 0x000187f0 Section 0 hal_gpio.o(i.hal_gpio_set_output_data) + i.hal_gpio_set_pull_state 0x000187f8 Section 0 hal_gpio.o(i.hal_gpio_set_pull_state) + i.hal_i2c_m_dma_init 0x00018818 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_init) + i.hal_i2c_m_dma_read 0x00018884 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_read) + i.hal_i2c_m_dma_write 0x000188a4 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_write) + i.hal_i2c_m_transfer_complate 0x000188c0 Section 0 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + i.hal_i2c_master_irq_callback 0x000188cc Section 0 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + hal_i2c_master_irq_callback 0x000188cd Thumb Code 24 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + i.hal_i2c_s_dma_user_callback 0x000188ec Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + hal_i2c_s_dma_user_callback 0x000188ed Thumb Code 12 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + i.hal_i2c_s_dma_write 0x000188fc Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + i.hal_i2c_s_init 0x00018948 Section 0 hal_i2c_slave.o(i.hal_i2c_s_init) + i.hal_i2c_s_nonblocking_read 0x00018a10 Section 0 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + i.hal_i2c_s_set_transfer 0x00018a24 Section 0 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + i.hal_i2c_slave_irq_callback 0x00018a30 Section 0 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + hal_i2c_slave_irq_callback 0x00018a31 Thumb Code 354 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + i.hal_internal_init_memc 0x00018ba4 Section 0 hal_internal_vsync.o(i.hal_internal_init_memc) + i.hal_internal_sync_get_fb_setting 0x00018ca0 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + i.hal_internal_sync_get_hight_performan_mode 0x00018cb0 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + i.hal_internal_sync_input_resolution_change 0x00018cc0 Section 0 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + i.hal_internal_update_dpi_param 0x00018eec Section 0 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + i.hal_internal_video_mode_auto_sync 0x00018efc Section 0 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + i.hal_internal_vsync_deinit 0x00019008 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + i.hal_internal_vsync_get_rx_state 0x00019030 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + i.hal_internal_vsync_get_sync_line 0x0001903c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + i.hal_internal_vsync_get_tear_mode 0x00019054 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + i.hal_internal_vsync_get_tx_state 0x00019060 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + i.hal_internal_vsync_init_rx 0x0001906c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + i.hal_internal_vsync_init_tx 0x00019184 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + i.hal_internal_vsync_set_auto_hw_filter 0x00019234 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + i.hal_internal_vsync_set_rx_state 0x00019350 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + i.hal_internal_vsync_set_sync_line 0x00019364 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + i.hal_internal_vsync_set_tear_mode 0x00019388 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + i.hal_internal_vsync_set_tx_state 0x000193d8 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + i.hal_internal_vsync_update_lcdc_addr 0x00019458 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) + i.hal_lcdc_config_ccm 0x00019488 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + hal_lcdc_config_ccm 0x00019489 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + i.hal_lcdc_config_remains 0x000194ac Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + hal_lcdc_config_remains 0x000194ad Thumb Code 84 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + i.hal_lcdc_config_rgb_to_pentile 0x00019504 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + hal_lcdc_config_rgb_to_pentile 0x00019505 Thumb Code 14 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + i.hal_lcdc_config_upscaler 0x00019518 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + hal_lcdc_config_upscaler 0x00019519 Thumb Code 348 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + i.hal_lcdc_init_cfg 0x0001967c Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + hal_lcdc_init_cfg 0x0001967d Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + i.hal_lcdc_init_clk 0x000196bc Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + hal_lcdc_init_clk 0x000196bd Thumb Code 422 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + i.hal_lcdc_init_interrupt 0x0001986c Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + hal_lcdc_init_interrupt 0x0001986d Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + i.hal_spi_m_clear_rxfifo 0x000198ac Section 0 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + i.hal_swire_deinit 0x000198ba Section 0 hal_swire.o(i.hal_swire_deinit) + i.hal_swire_open 0x000198cc Section 0 hal_swire.o(i.hal_swire_open) + i.hal_system_enable_systick 0x000198e2 Section 0 hal_system.o(i.hal_system_enable_systick) + i.hal_system_init 0x000198ec Section 0 hal_system.o(i.hal_system_init) + i.hal_system_init_console 0x00019974 Section 0 hal_system.o(i.hal_system_init_console) + i.hal_system_set_phy_calibration 0x00019990 Section 0 hal_system.o(i.hal_system_set_phy_calibration) + i.hal_system_set_pvd 0x00019998 Section 0 hal_system.o(i.hal_system_set_pvd) + i.hal_system_set_vcc 0x000199a0 Section 0 hal_system.o(i.hal_system_set_vcc) + i.hal_timer_deinit 0x000199a8 Section 0 hal_timer.o(i.hal_timer_deinit) + i.hal_timer_init 0x000199d6 Section 0 hal_timer.o(i.hal_timer_init) + i.hal_timer_start 0x000199f0 Section 0 hal_timer.o(i.hal_timer_start) + i.hal_timer_stop 0x00019a38 Section 0 hal_timer.o(i.hal_timer_stop) + i.hal_uart_init 0x00019a60 Section 0 hal_uart.o(i.hal_uart_init) + i.hal_uart_transmit_blocking 0x00019aec Section 0 hal_uart.o(i.hal_uart_transmit_blocking) + i.handle_init 0x00019afc Section 0 irq_redirect .o(i.handle_init) + i.init_mipi_tx 0x00019c0c Section 0 ap_demo.o(i.init_mipi_tx) + init_mipi_tx 0x00019c0d Thumb Code 110 ap_demo.o(i.init_mipi_tx) + i.init_panel 0x00019c80 Section 0 ap_demo.o(i.init_panel) + init_panel 0x00019c81 Thumb Code 186 ap_demo.o(i.init_panel) + i.main 0x00019d80 Section 0 main.o(i.main) + i.open_mipi_rx 0x00019d8c Section 0 ap_demo.o(i.open_mipi_rx) + open_mipi_rx 0x00019d8d Thumb Code 112 ap_demo.o(i.open_mipi_rx) + i.pps_update_handle 0x00019e10 Section 0 ap_demo.o(i.pps_update_handle) + pps_update_handle 0x00019e11 Thumb Code 80 ap_demo.o(i.pps_update_handle) + i.rx_get_dcs_packet_data 0x00019e8c Section 0 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + rx_get_dcs_packet_data 0x00019e8d Thumb Code 654 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + i.rx_partial_update 0x0001a280 Section 0 hal_internal_vsync.o(i.rx_partial_update) + rx_partial_update 0x0001a281 Thumb Code 358 hal_internal_vsync.o(i.rx_partial_update) + i.rx_receive_packet 0x0001a3f8 Section 0 hal_internal_vsync.o(i.rx_receive_packet) + rx_receive_packet 0x0001a3f9 Thumb Code 128 hal_internal_vsync.o(i.rx_receive_packet) + i.rx_receive_pps 0x0001a484 Section 0 hal_internal_vsync.o(i.rx_receive_pps) + rx_receive_pps 0x0001a485 Thumb Code 268 hal_internal_vsync.o(i.rx_receive_pps) + i.rxbr_irq0_callback 0x0001a604 Section 0 hal_internal_vsync.o(i.rxbr_irq0_callback) + rxbr_irq0_callback 0x0001a605 Thumb Code 158 hal_internal_vsync.o(i.rxbr_irq0_callback) + i.rxbr_irq1_callback 0x0001a6a8 Section 0 hal_internal_vsync.o(i.rxbr_irq1_callback) + rxbr_irq1_callback 0x0001a6a9 Thumb Code 316 hal_internal_vsync.o(i.rxbr_irq1_callback) + i.soft_gen_te 0x0001a87c Section 0 hal_internal_vsync.o(i.soft_gen_te) + soft_gen_te 0x0001a87d Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te) + i.soft_gen_te_double_buffer 0x0001a940 Section 0 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + soft_gen_te_double_buffer 0x0001a941 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + i.soft_te_timer_cb 0x0001aa00 Section 0 ap_demo.o(i.soft_te_timer_cb) + soft_te_timer_cb 0x0001aa01 Thumb Code 36 ap_demo.o(i.soft_te_timer_cb) + i.soft_timer3_cb 0x0001aa2c Section 0 ap_demo.o(i.soft_timer3_cb) + soft_timer3_cb 0x0001aa2d Thumb Code 48 ap_demo.o(i.soft_timer3_cb) + i.sqrt 0x0001aa6c Section 0 sqrt.o(i.sqrt) + i.tp_heartbeat_exec 0x0001aab4 Section 0 ap_demo.o(i.tp_heartbeat_exec) + i.vidc_callback 0x0001ab24 Section 0 hal_internal_vsync.o(i.vidc_callback) + vidc_callback 0x0001ab25 Thumb Code 232 hal_internal_vsync.o(i.vidc_callback) + i.vpre_err_reset 0x0001ac2c Section 0 hal_internal_vsync.o(i.vpre_err_reset) + vpre_err_reset 0x0001ac2d Thumb Code 184 hal_internal_vsync.o(i.vpre_err_reset) + i.vsync_set_te_mode 0x0001acfc Section 0 hal_internal_vsync.o(i.vsync_set_te_mode) + vsync_set_te_mode 0x0001acfd Thumb Code 300 hal_internal_vsync.o(i.vsync_set_te_mode) + .constdata 0x0001aec8 Section 9394 ap_demo.o(.constdata) + g_cus_rx_dcs_execute_table 0x0001aec8 Data 120 ap_demo.o(.constdata) + .constdata 0x0001d37a Section 32 app_tp_st_touch.o(.constdata) + .constdata 0x0001d39c Section 36 hal_dsi_tx_ctrl.o(.constdata) + .constdata 0x0001d3c0 Section 210 hal_gpio.o(.constdata) + s_gpio_map 0x0001d3c0 Data 120 hal_gpio.o(.constdata) + s_gpio_perf 0x0001d438 Data 90 hal_gpio.o(.constdata) + .constdata 0x0001d494 Section 32 hal_i2c_slave.o(.constdata) + sg_i2c_s_config 0x0001d494 Data 32 hal_i2c_slave.o(.constdata) + .constdata 0x0001d4b4 Section 3417 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001e20d Section 1 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001e210 Section 8 drv_param_init.o(.constdata) + .constdata 0x0001e218 Section 390 drv_phy_common.o(.constdata) + phy_para_mapping_h 0x0001e218 Data 184 drv_phy_common.o(.constdata) + phy_para_mapping_l 0x0001e2d0 Data 128 drv_phy_common.o(.constdata) + phy_data_high_map 0x0001e350 Data 48 drv_phy_common.o(.constdata) + phy_data_lp_map 0x0001e380 Data 30 drv_phy_common.o(.constdata) + .conststring 0x0001e3a0 Section 76 ap_demo.o(.conststring) + .conststring 0x0001e3ec Section 72 hal_dsi_rx_ctrl.o(.conststring) + .conststring 0x0001e434 Section 67 hal_dsi_tx_ctrl.o(.conststring) + .conststring 0x0001e478 Section 308 hal_internal_vsync.o(.conststring) + .ARM.__AT_0x00070100 0x00070100 Section 192 irq_redirect .o(.ARM.__AT_0x00070100) + .data 0x000701d0 Section 40 ap_demo.o(.data) + start_display_on 0x000701d0 Data 1 ap_demo.o(.data) + g_exit_sleep_mode 0x000701d1 Data 1 ap_demo.o(.data) + panel_display_done 0x000701d2 Data 1 ap_demo.o(.data) + input_compress_flag 0x000701d3 Data 1 ap_demo.o(.data) + enter_hbm_mode_cnt 0x000701d4 Data 1 ap_demo.o(.data) + exit_hbm_mode_cnt 0x000701d5 Data 1 ap_demo.o(.data) + BL_ADJ_flag 0x000701d6 Data 1 ap_demo.o(.data) + phone_off_flag 0x000701d7 Data 1 ap_demo.o(.data) + hbm_mode 0x000701da Data 1 ap_demo.o(.data) + g_need_enter_sleep_mode 0x000701db Data 1 ap_demo.o(.data) + g_rx_ctrl_handle 0x000701e8 Data 4 ap_demo.o(.data) + g_tx_ctrl_handle 0x000701ec Data 4 ap_demo.o(.data) + value_reg_df 0x000701f0 Data 4 ap_demo.o(.data) + .data 0x000701f8 Section 46 app_tp_transfer.o(.data) + s_spim_write 0x000701f8 Data 1 app_tp_transfer.o(.data) + s_screen_int_flag 0x000701f9 Data 1 app_tp_transfer.o(.data) + s_phone_reset_flag 0x000701fa Data 1 app_tp_transfer.o(.data) + s_screen_int_transfer_status 0x000701fb Data 1 app_tp_transfer.o(.data) + s_screen_const_transfer_count 0x000701fd Data 1 app_tp_transfer.o(.data) + screen_int_transfer_count 0x000701fe Data 1 app_tp_transfer.o(.data) + screen_int_transfer_buffer_ready 0x000701ff Data 1 app_tp_transfer.o(.data) + .data 0x00070226 Section 40 app_tp_st_touch.o(.data) + s_calibration_flag 0x00070226 Data 1 app_tp_st_touch.o(.data) + s_calibration_correct_flag 0x00070227 Data 1 app_tp_st_touch.o(.data) + .data 0x00070250 Section 8 hal_dsi_rx_ctrl.o(.data) + g_hw_auto_filter 0x00070250 Data 1 hal_dsi_rx_ctrl.o(.data) + g_esc_clk 0x00070254 Data 4 hal_dsi_rx_ctrl.o(.data) + .data 0x00070258 Section 3 hal_dsi_tx_ctrl.o(.data) + g_tx_vcom_en 0x00070258 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_vpg_en 0x00070259 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_mode 0x0007025a Data 1 hal_dsi_tx_ctrl.o(.data) + .data 0x0007025b Section 1 hal_i2c_master.o(.data) + s_i2c_m_transfer_end 0x0007025b Data 1 hal_i2c_master.o(.data) + .data 0x0007025c Section 32 hal_i2c_slave.o(.data) + s_txbuffer_complate 0x0007025c Data 1 hal_i2c_slave.o(.data) + s_i2c_s_dma_end 0x0007025d Data 1 hal_i2c_slave.o(.data) + s_i2c_s_receive_cnt 0x0007025e Data 1 hal_i2c_slave.o(.data) + sg_i2c_s_index 0x0007025f Data 1 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer 0x00070260 Data 4 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer_size 0x00070264 Data 4 hal_i2c_slave.o(.data) + hal_i2c_s_callback 0x00070268 Data 4 hal_i2c_slave.o(.data) + sg_tx_byte_num 0x0007026c Data 4 hal_i2c_slave.o(.data) + s_receive_count 0x00070270 Data 4 hal_i2c_slave.o(.data) + s_tx_buffer_t 0x00070274 Data 4 hal_i2c_slave.o(.data) + tx_sum 0x00070278 Data 4 hal_i2c_slave.o(.data) + .data 0x0007027c Section 232 app_tp_for_custom_s8.o(.data) + app_tp_count 0x0007028c Data 1 app_tp_for_custom_s8.o(.data) + u16CoordY 0x0007028e Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX 0x00070290 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordY_back 0x00070292 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX_back 0x00070294 Data 2 app_tp_for_custom_s8.o(.data) + enctryptCnt 0x00070298 Data 4 app_tp_for_custom_s8.o(.data) + .data 0x00070364 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070365 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070366 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070367 Section 3 app_tp_for_custom_s8.o(.data) + .data 0x0007036a Section 5 app_tp_for_custom_s8.o(.data) + .data 0x00070370 Section 48 app_tp_for_custom_s8.o(.data) + .data 0x000703a0 Section 18 norflash.o(.data) + tmprg 0x000703a8 Data 4 norflash.o(.data) + .data 0x000703b4 Section 12 drv_common.o(.data) + s_my_tick 0x000703b4 Data 4 drv_common.o(.data) + .data 0x000703c0 Section 4 drv_gpio.o(.data) + g_ap_reset_cb 0x000703c0 Data 4 drv_gpio.o(.data) + .data 0x000703c4 Section 8 drv_i2c_dma.o(.data) + i2c0_dma_callback 0x000703c4 Data 4 drv_i2c_dma.o(.data) + i2c1_dma_callback 0x000703c8 Data 4 drv_i2c_dma.o(.data) + .data 0x000703cc Section 4 drv_i2c_master.o(.data) + i2c1_intr_callback 0x000703cc Data 4 drv_i2c_master.o(.data) + .data 0x000703d0 Section 4 drv_i2c_slave.o(.data) + i2c0_intr_callback 0x000703d0 Data 4 drv_i2c_slave.o(.data) + .data 0x000703d4 Section 1188 drv_param_init.o(.data) + .data 0x00070878 Section 4 drv_spi_master.o(.data) + SPIM_intr_callback 0x00070878 Data 4 drv_spi_master.o(.data) + .data 0x0007087c Section 8 drv_swire.o(.data) + s_swire_cb 0x0007087c Data 8 drv_swire.o(.data) + .data 0x00070884 Section 1 drv_sys_cfg.o(.data) + sg_ap_rstn_trigger_type 0x00070884 Data 1 drv_sys_cfg.o(.data) + .data 0x00070888 Section 80 drv_timer.o(.data) + sg_timer_info 0x00070888 Data 80 drv_timer.o(.data) + .data 0x000708d8 Section 12 hal_internal_vsync.o(.data) + sg_cmd_mode_tx_start 0x000708d8 Data 1 hal_internal_vsync.o(.data) + sg_cur_te_info 0x000708dc Data 4 hal_internal_vsync.o(.data) + .data 0x000708e4 Section 8 drv_rxbr.o(.data) + .data 0x000708ec Section 4 drv_vidc.o(.data) + .data 0x000708f0 Section 1 drv_phy_common.o(.data) + g_phy_calibration 0x000708f0 Data 1 drv_phy_common.o(.data) + .data 0x000708f4 Section 12 drv_chip_info.o(.data) + sg_chip_info 0x000708f4 Data 4 drv_chip_info.o(.data) + sg_chip_function 0x000708f8 Data 4 drv_chip_info.o(.data) + sg_chip_encrypt 0x000708fc Data 4 drv_chip_info.o(.data) + .data 0x00070900 Section 12 drv_pwm.o(.data) + s_pwm_type 0x00070900 Data 1 drv_pwm.o(.data) + s_pwm_cb 0x00070904 Data 8 drv_pwm.o(.data) + .data 0x0007090c Section 8 drv_uart.o(.data) + s_UartFcrReg 0x0007090c Data 4 drv_uart.o(.data) + uart_userData 0x00070910 Data 4 drv_uart.o(.data) + .data 0x00070914 Section 12 drv_wdg.o(.data) + sg_wdg_repeat 0x00070914 Data 1 drv_wdg.o(.data) + sg_wdg_cb 0x00070918 Data 8 drv_wdg.o(.data) + .data 0x00070920 Section 4 stdout.o(.data) + .data 0x00070924 Section 4 errno.o(.data) + _errno 0x00070924 Data 4 errno.o(.data) + .bss 0x00070928 Section 400 app_tp_transfer.o(.bss) + s_screen_read_buffer 0x00070928 Data 200 app_tp_transfer.o(.bss) + s_phone_read_buffer 0x000709f0 Data 200 app_tp_transfer.o(.bss) + .bss 0x00070ab8 Section 12 app_tp_st_touch.o(.bss) + .bss 0x00070ac4 Section 196 hal_dsi_rx_ctrl.o(.bss) + g_rx_ctrl_handle 0x00070ac4 Data 196 hal_dsi_rx_ctrl.o(.bss) + .bss 0x00070b88 Section 76 hal_dsi_tx_ctrl.o(.bss) + g_tx_ctrl_handle 0x00070b88 Data 76 hal_dsi_tx_ctrl.o(.bss) + .bss 0x00070bd4 Section 256 tau_log.o(.bss) + .bss 0x00070cd4 Section 208 hal_uart.o(.bss) + .bss 0x00070da4 Section 28 drv_dma.o(.bss) + s_dma_handle 0x00070da4 Data 28 drv_dma.o(.bss) + .bss 0x00070dc0 Section 64 drv_gpio.o(.bss) + s_gpio_cb 0x00070dc0 Data 64 drv_gpio.o(.bss) + .bss 0x00070e00 Section 320 drv_i2c_dma.o(.bss) + i2c0_dma_slave_handle 0x00070e00 Data 160 drv_i2c_dma.o(.bss) + i2c1_dma_master_handle 0x00070ea0 Data 160 drv_i2c_dma.o(.bss) + .bss 0x00070f40 Section 2436 hal_internal_vsync.o(.bss) + g_imm_buffer 0x000717a4 Data 255 hal_internal_vsync.o(.bss) + sg_te_info 0x000718a4 Data 12 hal_internal_vsync.o(.bss) + g_imm_packet 0x000718b0 Data 20 hal_internal_vsync.o(.bss) + .bss 0x000718c4 Section 4144 dcs_packet_fifo.o(.bss) + .bss 0x000728f4 Section 32 hal_spi_slave.o(.bss) + STACK 0x00072918 Section 4096 startup_armcm0.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x000000c0 Number 0 startup_armcm0.o ABSOLUTE + __Vectors 0x00010000 Data 4 startup_armcm0.o(RESET) + __Vectors_End 0x000100c0 Data 0 startup_armcm0.o(RESET) + __main 0x000100c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x000100c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x000100c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x000100c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x000100c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x000100c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x000100c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x000100d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x000100d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x000100d5 Thumb Code 28 startup_armcm0.o(.text) + NMI_Handler 0x000100f1 Thumb Code 2 startup_armcm0.o(.text) + SVC_Handler 0x000100f5 Thumb Code 2 startup_armcm0.o(.text) + PendSV_Handler 0x000100f7 Thumb Code 2 startup_armcm0.o(.text) + OTP_IRQn_Handler 0x00010123 Thumb Code 2 startup_armcm0.o(.text) + PVD_IRQn_Handler 0x00010127 Thumb Code 2 startup_armcm0.o(.text) + __aeabi_uidiv 0x0001014d Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x0001014d Thumb Code 44 uidiv.o(.text) + __aeabi_idiv 0x00010179 Thumb Code 0 idiv.o(.text) + __aeabi_idivmod 0x00010179 Thumb Code 40 idiv.o(.text) + __aeabi_memcpy 0x000101a1 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x000101c5 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x000101d3 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x000101d3 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x000101d3 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x000101d7 Thumb Code 18 memseta.o(.text) + __aeabi_fadd 0x000101e9 Thumb Code 162 fadd.o(.text) + __aeabi_fsub 0x0001028b Thumb Code 8 fadd.o(.text) + __aeabi_frsub 0x00010293 Thumb Code 8 fadd.o(.text) + __aeabi_fmul 0x0001029b Thumb Code 122 fmul.o(.text) + __aeabi_fdiv 0x00010315 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x00010391 Thumb Code 24 fscalb.o(.text) + scalbnf 0x00010391 Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x000103a9 Thumb Code 328 dadd.o(.text) + __aeabi_dsub 0x000104f1 Thumb Code 12 dadd.o(.text) + __aeabi_drsub 0x000104fd Thumb Code 12 dadd.o(.text) + __aeabi_dmul 0x0001050d Thumb Code 202 dmul.o(.text) + __aeabi_ddiv 0x000105dd Thumb Code 234 ddiv.o(.text) + __aeabi_i2f 0x000106cd Thumb Code 22 fflti.o(.text) + __aeabi_ui2f 0x000106e3 Thumb Code 14 ffltui.o(.text) + __aeabi_ui2d 0x000106f1 Thumb Code 24 dfltui.o(.text) + __aeabi_f2iz 0x0001070d Thumb Code 50 ffixi.o(.text) + __aeabi_f2uiz 0x0001073f Thumb Code 40 ffixui.o(.text) + __aeabi_d2iz 0x00010769 Thumb Code 62 dfixi.o(.text) + __aeabi_d2uiz 0x000107b1 Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x000107ed Thumb Code 40 f2d.o(.text) + __aeabi_cdcmpeq 0x00010815 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x00010815 Thumb Code 38 cdcmple.o(.text) + __aeabi_cfrcmple 0x0001083d Thumb Code 20 cfrcmple.o(.text) + __aeabi_uldivmod 0x00010851 Thumb Code 96 uldiv.o(.text) + __aeabi_llsl 0x000108b1 Thumb Code 32 llshl.o(.text) + _ll_shift_l 0x000108b1 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x000108d1 Thumb Code 34 llushr.o(.text) + _ll_ushift_r 0x000108d1 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x000108f3 Thumb Code 38 llsshr.o(.text) + _ll_sshift_r 0x000108f3 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x00010919 Thumb Code 0 iusefp.o(.text) + _float_round 0x00010919 Thumb Code 16 fepilogue.o(.text) + _float_epilogue 0x00010929 Thumb Code 114 fepilogue.o(.text) + _double_round 0x0001099b Thumb Code 26 depilogue.o(.text) + _double_epilogue 0x000109b5 Thumb Code 164 depilogue.o(.text) + _dsqrt 0x00010a59 Thumb Code 162 dsqrt.o(.text) + __aeabi_d2ulz 0x00010afd Thumb Code 54 dfixul.o(.text) + __aeabi_cdrcmple 0x00010b3d Thumb Code 38 cdrcmple.o(.text) + __scatterload 0x00010b65 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x00010b65 Thumb Code 0 init.o(.text) + __decompress 0x00010b89 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x00010b89 Thumb Code 86 __dczerorl2.o(.text) + ADC_IRQn_Handler 0x00010be1 Thumb Code 18 irq_redirect .o(i.ADC_IRQn_Handler) + AP_NRESET_IRQn_Handler 0x00010bf9 Thumb Code 18 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + CRC16_2 0x00010c11 Thumb Code 54 app_tp_st_touch.o(i.CRC16_2) + DMA_IRQn_Handler 0x00010c51 Thumb Code 14 irq_redirect .o(i.DMA_IRQn_Handler) + EXTI_INT0_IRQn_Handler 0x00010c65 Thumb Code 22 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + EXTI_INT1_IRQn_Handler 0x00010c81 Thumb Code 22 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + EXTI_INT2_IRQn_Handler 0x00010c9d Thumb Code 22 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + EXTI_INT3_IRQn_Handler 0x00010cb9 Thumb Code 22 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + EXTI_INT4_IRQn_Handler 0x00010cd5 Thumb Code 22 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + EXTI_INT5_IRQn_Handler 0x00010cf1 Thumb Code 22 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + EXTI_INT6_IRQn_Handler 0x00010d0d Thumb Code 22 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + EXTI_INT7_IRQn_Handler 0x00010d29 Thumb Code 22 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + EncryptCheckEx 0x00010d45 Thumb Code 32 app_tp_for_custom_s8.o(i.EncryptCheckEx) + FLSCTRL_IRQn_Handler 0x00010d69 Thumb Code 14 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + Gpio_swire_output 0x00010d7d Thumb Code 78 ap_demo.o(i.Gpio_swire_output) + HardFault_Handler 0x00010dcd Thumb Code 14 irq_redirect .o(i.HardFault_Handler) + I2C0_IRQn_Handler 0x00010de1 Thumb Code 18 irq_redirect .o(i.I2C0_IRQn_Handler) + I2C1_IRQn_Handler 0x00010df9 Thumb Code 18 irq_redirect .o(i.I2C1_IRQn_Handler) + LCDC_IRQn_Handler 0x00010e11 Thumb Code 18 irq_redirect .o(i.LCDC_IRQn_Handler) + LOG_printf 0x00010e29 Thumb Code 30 tau_log.o(i.LOG_printf) + MEMC_IRQn_Handler 0x00010e51 Thumb Code 18 irq_redirect .o(i.MEMC_IRQn_Handler) + MIPI_RX_IRQn_Handler 0x00010e69 Thumb Code 18 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + MIPI_TX_IRQn_Handler 0x00010e81 Thumb Code 18 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + PWMDET_IRQn_Handler 0x00010e99 Thumb Code 22 irq_redirect .o(i.PWMDET_IRQn_Handler) + S20_Start_init 0x00010eb5 Thumb Code 306 app_tp_transfer.o(i.S20_Start_init) + s_RAM_CK 0x00011000 Data 20 drv_common.o(.ARM.__at_0x11000) + UART_DisableDma 0x00011015 Thumb Code 2 drv_uart.o(i.UART_DisableDma) + __scatterload_null 0x00011017 Thumb Code 2 handlers.o(i.__scatterload_null) + s_debug_state 0x00011018 Data 4 drv_common.o(.ARM.__at_0x11018) + SPIM_IRQn_Handler 0x0001101d Thumb Code 22 irq_redirect .o(i.SPIM_IRQn_Handler) + SPIS_IRQn_Handler 0x00011039 Thumb Code 22 irq_redirect .o(i.SPIS_IRQn_Handler) + SWIRE_IRQn_Handler 0x00011055 Thumb Code 22 irq_redirect .o(i.SWIRE_IRQn_Handler) + SysTick_Handler 0x00011071 Thumb Code 18 irq_redirect .o(i.SysTick_Handler) + TIMER0_IRQn_Handler 0x00011089 Thumb Code 18 irq_redirect .o(i.TIMER0_IRQn_Handler) + TIMER1_IRQn_Handler 0x000110a1 Thumb Code 18 irq_redirect .o(i.TIMER1_IRQn_Handler) + TIMER2_IRQn_Handler 0x000110b9 Thumb Code 18 irq_redirect .o(i.TIMER2_IRQn_Handler) + TIMER3_IRQn_Handler 0x000110d1 Thumb Code 18 irq_redirect .o(i.TIMER3_IRQn_Handler) + UART0_IRQ_Handle 0x000110e9 Thumb Code 20 drv_uart.o(i.UART0_IRQ_Handle) + UART_GetInstance 0x00011105 Thumb Code 4 drv_uart.o(i.UART_GetInstance) + UART_IRQn_Handler 0x00011109 Thumb Code 18 irq_redirect .o(i.UART_IRQn_Handler) + UART_ResetRxFIFO 0x00011121 Thumb Code 32 drv_uart.o(i.UART_ResetRxFIFO) + UART_SetBaudRate 0x00011145 Thumb Code 72 drv_uart.o(i.UART_SetBaudRate) + UART_SwitchSCLK 0x0001118d Thumb Code 26 drv_uart.o(i.UART_SwitchSCLK) + UART_TransferHandleIRQ 0x000111a7 Thumb Code 308 drv_uart.o(i.UART_TransferHandleIRQ) + UART_WriteBlocking 0x000112db Thumb Code 26 drv_uart.o(i.UART_WriteBlocking) + UART_init 0x000112f5 Thumb Code 182 drv_uart.o(i.UART_init) + VIDC_IRQn_Handler 0x000113b1 Thumb Code 18 irq_redirect .o(i.VIDC_IRQn_Handler) + VPRE_IRQn_Handler 0x000113c9 Thumb Code 18 irq_redirect .o(i.VPRE_IRQn_Handler) + WDG_IRQn_Handler 0x000113e1 Thumb Code 18 irq_redirect .o(i.WDG_IRQn_Handler) + __0printf 0x000113f9 Thumb Code 24 printfa.o(i.__0printf) + __1printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + __2printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + __c89printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + printf 0x000113f9 Thumb Code 0 printfa.o(i.__0printf) + __0vsprintf 0x00011419 Thumb Code 30 printfa.o(i.__0vsprintf) + __1vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + __2vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + __c89vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + vsprintf 0x00011419 Thumb Code 0 printfa.o(i.__0vsprintf) + __ARM_clz 0x0001143d Thumb Code 46 depilogue.o(i.__ARM_clz) + __ARM_common_switch8 0x0001146b Thumb Code 26 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + __scatterload_copy 0x00011531 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_zeroinit 0x0001153f Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + __set_errno 0x0001154d Thumb Code 6 errno.o(i.__set_errno) + ap_demo 0x00011fdd Thumb Code 482 ap_demo.o(i.ap_demo) + ap_get_tp_calibration_status_01 0x000123e9 Thumb Code 28 app_tp_st_touch.o(i.ap_get_tp_calibration_status_01) + ap_set_tp_calibration_04 0x000125d1 Thumb Code 138 app_tp_st_touch.o(i.ap_set_tp_calibration_04) + ap_tp_st_touch_calibration 0x00012669 Thumb Code 170 app_tp_st_touch.o(i.ap_tp_st_touch_calibration) + ap_tp_st_touch_get_calibration_success_mark 0x00012719 Thumb Code 150 app_tp_st_touch.o(i.ap_tp_st_touch_get_calibration_success_mark) + ap_tp_st_touch_scan_point_init 0x000127c1 Thumb Code 24 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_init) + ap_tp_st_touch_scan_point_record_event_exec 0x000127dd Thumb Code 50 app_tp_st_touch.o(i.ap_tp_st_touch_scan_point_record_event_exec) + ap_tp_st_touch_simulate_finger_release_event 0x0001282d Thumb Code 44 app_tp_st_touch.o(i.ap_tp_st_touch_simulate_finger_release_event) + ap_tp_st_touch_software_reset 0x00012861 Thumb Code 118 app_tp_st_touch.o(i.ap_tp_st_touch_software_reset) + app_ADC_IRQn_Handler 0x0001290d Thumb Code 22 drv_rxbr.o(i.app_ADC_IRQn_Handler) + app_AP_NRESET_IRQn_Handler 0x00012929 Thumb Code 32 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + app_EXTI_INT0_IRQn_Handler 0x0001294d Thumb Code 22 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + app_EXTI_INT1_IRQn_Handler 0x00012969 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + app_EXTI_INT2_IRQn_Handler 0x00012985 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + app_EXTI_INT3_IRQn_Handler 0x000129a1 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + app_EXTI_INT4_IRQn_Handler 0x000129bd Thumb Code 22 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + app_EXTI_INT5_IRQn_Handler 0x000129d9 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + app_EXTI_INT6_IRQn_Handler 0x000129f5 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + app_EXTI_INT7_IRQn_Handler 0x00012a11 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + app_HardFault_Handler 0x00012a2d Thumb Code 12 drv_common.o(i.app_HardFault_Handler) + app_I2C0_IRQn_Handler 0x00012a75 Thumb Code 14 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + app_I2C1_IRQn_Handler 0x00012a8d Thumb Code 8 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + app_LCDC_IRQn_Handler 0x00012a9d Thumb Code 208 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + app_MEMC_IRQn_Handler 0x00012c41 Thumb Code 132 drv_memc.o(i.app_MEMC_IRQn_Handler) + app_MIPI_RX_IRQn_Handler 0x00012cc9 Thumb Code 232 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + app_MIPI_TX_IRQn_Handler 0x00012f61 Thumb Code 56 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + app_PWMDET_IRQn_Handler 0x00013001 Thumb Code 62 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + app_SPIM_IRQn_Handler 0x00013049 Thumb Code 34 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + app_SPIS_IRQn_Handler 0x00013079 Thumb Code 500 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + app_SWIRE_IRQn_Handler 0x00013279 Thumb Code 28 drv_swire.o(i.app_SWIRE_IRQn_Handler) + app_SysTick_Handler 0x00013299 Thumb Code 20 drv_common.o(i.app_SysTick_Handler) + app_TIMER0_IRQn_Handler 0x000132b1 Thumb Code 10 drv_timer.o(i.app_TIMER0_IRQn_Handler) + app_TIMER1_IRQn_Handler 0x000132bb Thumb Code 10 drv_timer.o(i.app_TIMER1_IRQn_Handler) + app_TIMER2_IRQn_Handler 0x000132c5 Thumb Code 10 drv_timer.o(i.app_TIMER2_IRQn_Handler) + app_TIMER3_IRQn_Handler 0x000132cf Thumb Code 10 drv_timer.o(i.app_TIMER3_IRQn_Handler) + app_UART_IRQn_Handler 0x000132d9 Thumb Code 8 drv_uart.o(i.app_UART_IRQn_Handler) + app_VIDC_IRQn_Handler 0x000132e1 Thumb Code 22 drv_vidc.o(i.app_VIDC_IRQn_Handler) + app_VPRE_IRQn_Handler 0x000132fd Thumb Code 22 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + app_WDG_IRQn_Handler 0x00013319 Thumb Code 52 drv_wdg.o(i.app_WDG_IRQn_Handler) + app_dma_irq_handler 0x00013351 Thumb Code 10 drv_dma.o(i.app_dma_irq_handler) + app_fls_ctrl_Handler 0x00013361 Thumb Code 38 norflash.o(i.app_fls_ctrl_Handler) + app_tp_I2C_init 0x00013391 Thumb Code 26 app_tp_transfer.o(i.app_tp_I2C_init) + app_tp_calibration_exec 0x000133b5 Thumb Code 78 app_tp_st_touch.o(i.app_tp_calibration_exec) + app_tp_init 0x000134f9 Thumb Code 56 app_tp_transfer.o(i.app_tp_init) + app_tp_m_read 0x0001353d Thumb Code 32 app_tp_transfer.o(i.app_tp_m_read) + app_tp_m_write 0x0001355d Thumb Code 8 app_tp_transfer.o(i.app_tp_m_write) + app_tp_phone_analysis_data 0x00013565 Thumb Code 1200 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + app_tp_s_read 0x00013a25 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_read) + app_tp_s_write 0x00013a2d Thumb Code 8 app_tp_transfer.o(i.app_tp_s_write) + app_tp_screen_analysis_int 0x00013a35 Thumb Code 1156 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + app_tp_screen_init 0x00013eb9 Thumb Code 42 app_tp_transfer.o(i.app_tp_screen_init) + app_tp_transfer_screen_int 0x00013f35 Thumb Code 250 app_tp_transfer.o(i.app_tp_transfer_screen_int) + app_tp_transfer_screen_start 0x00014041 Thumb Code 16 app_tp_transfer.o(i.app_tp_transfer_screen_start) + board_Init 0x00014055 Thumb Code 30 board.o(i.board_Init) + calc_framebuffer_setting 0x00014079 Thumb Code 1258 hal_internal_vsync.o(i.calc_framebuffer_setting) + ceil 0x00014569 Thumb Code 180 ceil.o(i.ceil) + dcs_packet_fifo_alloc 0x000146f1 Thumb Code 80 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + dcs_packet_fifo_init 0x00014749 Thumb Code 18 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + dcs_packet_free_fifo_header 0x00014761 Thumb Code 60 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + dcs_packet_get_fifo_header 0x000147a5 Thumb Code 26 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + delayMs 0x000147e5 Thumb Code 24 tau_delay.o(i.delayMs) + delayUs 0x000147fd Thumb Code 34 tau_delay.o(i.delayUs) + drv_ap_rst_trig_edge_detect 0x00014821 Thumb Code 46 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + drv_chip_info_get_info 0x00014859 Thumb Code 6 drv_chip_info.o(i.drv_chip_info_get_info) + drv_chip_info_init 0x00014865 Thumb Code 56 drv_chip_info.o(i.drv_chip_info_init) + drv_chip_rx_info_check 0x000148a5 Thumb Code 98 drv_chip_info.o(i.drv_chip_rx_info_check) + drv_chip_rx_init_done 0x00014955 Thumb Code 16 drv_chip_info.o(i.drv_chip_rx_init_done) + drv_common_enable_systick 0x00014969 Thumb Code 70 drv_common.o(i.drv_common_enable_systick) + drv_common_system_init 0x000149c1 Thumb Code 8 drv_common.o(i.drv_common_system_init) + drv_crgu_config_reset_modules 0x000149c9 Thumb Code 10 drv_crgu.o(i.drv_crgu_config_reset_modules) + drv_crgu_set_ahb_pre_div 0x000149d9 Thumb Code 14 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + drv_crgu_set_ahb_src 0x000149ed Thumb Code 16 drv_crgu.o(i.drv_crgu_set_ahb_src) + drv_crgu_set_clock 0x00014a01 Thumb Code 26 drv_crgu.o(i.drv_crgu_set_clock) + drv_crgu_set_dpi_mux_src 0x00014a21 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + drv_crgu_set_dpi_pre_div 0x00014a35 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + drv_crgu_set_dpi_pre_src 0x00014a4d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + drv_crgu_set_dsc_core_div 0x00014a61 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + drv_crgu_set_dsco_src 0x00014a75 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src) + drv_crgu_set_dsco_src_div 0x00014a89 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + drv_crgu_set_fb_div 0x00014a9d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_div) + drv_crgu_set_fb_src 0x00014ab1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_src) + drv_crgu_set_lcdc_div 0x00014ac5 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_div) + drv_crgu_set_lcdc_src 0x00014ad9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_src) + drv_crgu_set_mipi_cfg_src 0x00014aed Thumb Code 16 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + drv_crgu_set_mipi_ref_src 0x00014b01 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + drv_crgu_set_reset 0x00014b19 Thumb Code 20 drv_crgu.o(i.drv_crgu_set_reset) + drv_crgu_set_rxbr_div 0x00014b31 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_div) + drv_crgu_set_rxbr_src 0x00014b45 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_src) + drv_crgu_set_vidc_src 0x00014b59 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_vidc_src) + drv_dma_clear_flag 0x00014b6d Thumb Code 24 drv_dma.o(i.drv_dma_clear_flag) + drv_dma_create_handle 0x00014b85 Thumb Code 22 drv_dma.o(i.drv_dma_create_handle) + drv_dma_disenable_channel 0x00014ba1 Thumb Code 16 drv_dma.o(i.drv_dma_disenable_channel) + drv_dma_enable_channel 0x00014bb1 Thumb Code 16 drv_dma.o(i.drv_dma_enable_channel) + drv_dma_enable_channel_interrupts 0x00014bc1 Thumb Code 32 drv_dma.o(i.drv_dma_enable_channel_interrupts) + drv_dma_get_channel_flag 0x00014be5 Thumb Code 12 drv_dma.o(i.drv_dma_get_channel_flag) + drv_dma_irq_handler 0x00014bf1 Thumb Code 138 drv_dma.o(i.drv_dma_irq_handler) + drv_dma_prepar_transfer 0x00014c81 Thumb Code 18 drv_dma.o(i.drv_dma_prepar_transfer) + drv_dma_set_burst 0x00014c93 Thumb Code 26 drv_dma.o(i.drv_dma_set_burst) + drv_dma_set_callback 0x00014cad Thumb Code 6 drv_dma.o(i.drv_dma_set_callback) + drv_dma_set_transfer 0x00014cb5 Thumb Code 62 drv_dma.o(i.drv_dma_set_transfer) + drv_dsc_dec_convert_pps_rc_parameter 0x00014cf9 Thumb Code 54 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + drv_dsc_dec_disable 0x00014d2f Thumb Code 12 drv_dsc_dec.o(i.drv_dsc_dec_disable) + drv_dsc_dec_enable 0x00014d3d Thumb Code 88 drv_dsc_dec.o(i.drv_dsc_dec_enable) + drv_dsc_dec_get_nslc 0x00014db1 Thumb Code 10 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + drv_dsc_dec_set_u8_pps 0x00014dbb Thumb Code 40 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + drv_dsi_rx_calc_ipi_tx_delay 0x00014de5 Thumb Code 244 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + drv_dsi_rx_enable_irq 0x00014ee9 Thumb Code 58 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + drv_dsi_rx_get_compression_en 0x00014f95 Thumb Code 8 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + drv_dsi_rx_get_max_ret_size 0x00014f9d Thumb Code 6 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + drv_dsi_rx_power_up 0x00014fa3 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + drv_dsi_rx_set_ctrl_cfg 0x00014fb1 Thumb Code 32 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + drv_dsi_rx_set_ddi_cfg 0x00014fd1 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + drv_dsi_rx_set_inten 0x00014fe1 Thumb Code 4 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + drv_dsi_rx_set_ipi_cfg 0x00014fe5 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + drv_dsi_rx_set_lane_swap 0x00014ff5 Thumb Code 70 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + drv_dsi_rx_set_resp_cnt 0x0001503b Thumb Code 38 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + drv_dsi_rx_set_up_phy 0x00015061 Thumb Code 256 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + drv_dsi_rx_shut_down 0x00015165 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + drv_dsi_tx_command_header 0x00015173 Thumb Code 20 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + drv_dsi_tx_command_mode_cfg 0x00015187 Thumb Code 108 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + drv_dsi_tx_command_put_payload 0x000151f3 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + drv_dsi_tx_config_eotp 0x000151f7 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + drv_dsi_tx_config_int 0x0001520f Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + drv_dsi_tx_dpi_lpcmd_time 0x00015217 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + drv_dsi_tx_dpi_mode 0x0001521f Thumb Code 10 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + drv_dsi_tx_dpi_polarity 0x00015229 Thumb Code 36 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + drv_dsi_tx_edpi_cmd_size 0x0001524d Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + drv_dsi_tx_get_cmd_status 0x00015251 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + drv_dsi_tx_mode 0x00015255 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_mode) + drv_dsi_tx_phy_clock_lane_auto_lp 0x00015259 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + drv_dsi_tx_phy_clock_lane_req_hs 0x00015271 Thumb Code 26 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + drv_dsi_tx_phy_lane_mode 0x0001528b Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + drv_dsi_tx_phy_status_ready 0x00015297 Thumb Code 100 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + drv_dsi_tx_phy_status_stopstate 0x000152fb Thumb Code 62 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + drv_dsi_tx_phy_test_setup 0x00015339 Thumb Code 308 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + drv_dsi_tx_phy_time_cfg 0x0001546d Thumb Code 30 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + drv_dsi_tx_powerup 0x0001548b Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + drv_dsi_tx_response_mode 0x00015493 Thumb Code 28 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + drv_dsi_tx_set_bta_ack 0x000154af Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + drv_dsi_tx_set_esc_div 0x000154c7 Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + drv_dsi_tx_set_int 0x000154d5 Thumb Code 58 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + drv_dsi_tx_set_time_out_div 0x00015515 Thumb Code 16 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + drv_dsi_tx_set_video_chunk 0x00015525 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + drv_dsi_tx_set_video_timing 0x0001552d Thumb Code 34 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + drv_dsi_tx_shutdown 0x0001554f Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + drv_dsi_tx_timeout_cfg 0x00015557 Thumb Code 38 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + drv_dsi_tx_video_mode_cfg 0x0001557d Thumb Code 170 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + drv_dsi_tx_video_mode_disable_hact_cmd 0x00015627 Thumb Code 22 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + drv_dsi_tx_video_mode_set_lp_cmd 0x0001563d Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + drv_efuse_enter_inactive 0x00015655 Thumb Code 46 drv_efuse.o(i.drv_efuse_enter_inactive) + drv_efuse_int_enable 0x00015683 Thumb Code 12 drv_efuse.o(i.drv_efuse_int_enable) + drv_efuse_read 0x0001568f Thumb Code 50 drv_efuse.o(i.drv_efuse_read) + drv_efuse_read_req 0x000156c1 Thumb Code 24 drv_efuse.o(i.drv_efuse_read_req) + drv_gpio_get_input_data 0x000156d9 Thumb Code 20 drv_gpio.o(i.drv_gpio_get_input_data) + drv_gpio_register_ap_reset_callback 0x000156f1 Thumb Code 6 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + drv_gpio_register_callback 0x000156fd Thumb Code 14 drv_gpio.o(i.drv_gpio_register_callback) + drv_gpio_set_int 0x00015711 Thumb Code 74 drv_gpio.o(i.drv_gpio_set_int) + drv_gpio_set_ioe 0x00015761 Thumb Code 26 drv_gpio.o(i.drv_gpio_set_ioe) + drv_gpio_set_mode0 0x00015781 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode0) + drv_gpio_set_mode1 0x00015791 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode1) + drv_gpio_set_mode2 0x000157a1 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode2) + drv_gpio_set_mode3 0x000157b1 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode3) + drv_gpio_set_pull_state 0x000157e1 Thumb Code 298 drv_gpio.o(i.drv_gpio_set_pull_state) + drv_i2c0_set_callback 0x00015911 Thumb Code 6 drv_i2c_slave.o(i.drv_i2c0_set_callback) + drv_i2c1_set_callback 0x0001591d Thumb Code 6 drv_i2c_master.o(i.drv_i2c1_set_callback) + drv_i2c_dma_init 0x0001595d Thumb Code 146 drv_i2c_dma.o(i.drv_i2c_dma_init) + drv_i2c_enable_rx_dma 0x00015a09 Thumb Code 26 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + drv_i2c_enable_tx_dma 0x00015a23 Thumb Code 24 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + drv_i2c_m_clear_it_pending_bit 0x00015a3d Thumb Code 86 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + drv_i2c_m_enable 0x00015a9d Thumb Code 10 drv_i2c_master.o(i.drv_i2c_m_enable) + drv_i2c_m_enable_intr 0x00015aad Thumb Code 42 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + drv_i2c_master_init 0x00015ae5 Thumb Code 118 drv_i2c_master.o(i.drv_i2c_master_init) + drv_i2c_master_read_dma 0x00015b71 Thumb Code 82 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + drv_i2c_master_write_dma 0x00015bcd Thumb Code 50 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + drv_i2c_s_clear_it_pending_bit 0x00015c47 Thumb Code 66 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + drv_i2c_s_config_intr 0x00015c89 Thumb Code 4 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + drv_i2c_s_enable 0x00015c8d Thumb Code 8 drv_i2c_slave.o(i.drv_i2c_s_enable) + drv_i2c_s_get_fifo_status 0x00015c95 Thumb Code 20 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + drv_i2c_s_set_intr 0x00015ca9 Thumb Code 74 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + drv_i2c_s_write_data 0x00015cf9 Thumb Code 28 drv_i2c_slave.o(i.drv_i2c_s_write_data) + drv_i2c_set_dma_irq_callback 0x00015d15 Thumb Code 68 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + drv_i2c_slave_init 0x00015d6d Thumb Code 50 drv_i2c_slave.o(i.drv_i2c_slave_init) + drv_i2c_slave_write_dma 0x00015da1 Thumb Code 20 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + drv_lcdc_config_bypass 0x00015db9 Thumb Code 24 drv_lcdc.o(i.drv_lcdc_config_bypass) + drv_lcdc_config_ccm 0x00015dd1 Thumb Code 48 drv_lcdc.o(i.drv_lcdc_config_ccm) + drv_lcdc_config_disp_mode 0x00015e01 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + drv_lcdc_config_dpi_polarity 0x00015e17 Thumb Code 36 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + drv_lcdc_config_dpi_timing 0x00015e3b Thumb Code 38 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + drv_lcdc_config_edpi_mode 0x00015e61 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + drv_lcdc_config_endianness 0x00015e77 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_endianness) + drv_lcdc_config_input_size 0x00015e8d Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_input_size) + drv_lcdc_config_int 0x00015e99 Thumb Code 30 drv_lcdc.o(i.drv_lcdc_config_int) + drv_lcdc_config_int_single 0x00015eb7 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_int_single) + drv_lcdc_config_overwrite 0x00015ed9 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_overwrite) + drv_lcdc_config_overwrite_rgb 0x00015efb Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + drv_lcdc_config_partial_display_area 0x00015f07 Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + drv_lcdc_config_partial_display_enable 0x00015f21 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + drv_lcdc_config_scale_up_coef 0x00015f43 Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + drv_lcdc_config_scale_up_step 0x00015f5d Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + drv_lcdc_config_src_parameter 0x00015f69 Thumb Code 76 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + drv_lcdc_config_thresh 0x00015fb5 Thumb Code 6 drv_lcdc.o(i.drv_lcdc_config_thresh) + drv_lcdc_ctrl_flow 0x00015fbb Thumb Code 18 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + drv_lcdc_enable_shadow_reg 0x00015fcd Thumb Code 32 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + drv_lcdc_set_int 0x00015fed Thumb Code 58 drv_lcdc.o(i.drv_lcdc_set_int) + drv_lcdc_set_video_hw_mode 0x0001602d Thumb Code 20 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + drv_lcdc_start 0x00016041 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_start) + drv_memc_clear_status 0x00016061 Thumb Code 12 drv_memc.o(i.drv_memc_clear_status) + drv_memc_enable_irq 0x0001606d Thumb Code 58 drv_memc.o(i.drv_memc_enable_irq) + drv_memc_gen_a_tear_signal 0x000160ad Thumb Code 12 drv_memc.o(i.drv_memc_gen_a_tear_signal) + drv_memc_get_status 0x000160b9 Thumb Code 18 drv_memc.o(i.drv_memc_get_status) + drv_memc_rate_transfer_sel 0x000160cb Thumb Code 16 drv_memc.o(i.drv_memc_rate_transfer_sel) + drv_memc_sel_vsync 0x000160db Thumb Code 14 drv_memc.o(i.drv_memc_sel_vsync) + drv_memc_set_active_height 0x000160e9 Thumb Code 14 drv_memc.o(i.drv_memc_set_active_height) + drv_memc_set_data_mode 0x000160fd Thumb Code 12 drv_memc.o(i.drv_memc_set_data_mode) + drv_memc_set_double_buffer 0x00016109 Thumb Code 16 drv_memc.o(i.drv_memc_set_double_buffer) + drv_memc_set_double_buffer_reverse 0x00016119 Thumb Code 18 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + drv_memc_set_fs_en_conditions 0x0001612b Thumb Code 16 drv_memc.o(i.drv_memc_set_fs_en_conditions) + drv_memc_set_inten 0x0001613b Thumb Code 20 drv_memc.o(i.drv_memc_set_inten) + drv_memc_set_lcdc_st_conditions 0x00016151 Thumb Code 18 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + drv_memc_set_ltpo_mode 0x00016169 Thumb Code 26 drv_memc.o(i.drv_memc_set_ltpo_mode) + drv_memc_set_tear_mode 0x00016183 Thumb Code 14 drv_memc.o(i.drv_memc_set_tear_mode) + drv_memc_set_tear_waveform 0x00016191 Thumb Code 34 drv_memc.o(i.drv_memc_set_tear_waveform) + drv_memc_set_vidc_sync_cnt 0x000161b9 Thumb Code 14 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + drv_param_init_get_ccm 0x000161c9 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_ccm) + drv_param_init_get_scld_filter_h 0x000161d1 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + drv_param_init_get_scld_filter_v 0x000161e5 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + drv_param_init_get_sclu_filter 0x000161f9 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_sclu_filter) + drv_param_init_set_ccm 0x00016201 Thumb Code 14 drv_param_init.o(i.drv_param_init_set_ccm) + drv_param_p2r_filter_init 0x00016215 Thumb Code 30 drv_param_init.o(i.drv_param_p2r_filter_init) + drv_phy_enable_calibration 0x00016239 Thumb Code 12 drv_phy_common.o(i.drv_phy_enable_calibration) + drv_phy_get_calibration 0x00016249 Thumb Code 50 drv_phy_common.o(i.drv_phy_get_calibration) + drv_phy_get_pll_para 0x00016285 Thumb Code 88 drv_phy_common.o(i.drv_phy_get_pll_para) + drv_phy_get_rate_para 0x000162e5 Thumb Code 76 drv_phy_common.o(i.drv_phy_get_rate_para) + drv_phy_test_clear 0x00016339 Thumb Code 16 drv_phy_common.o(i.drv_phy_test_clear) + drv_phy_test_lock 0x00016349 Thumb Code 24 drv_phy_common.o(i.drv_phy_test_lock) + drv_phy_test_write_1_byte 0x00016361 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_1_byte) + drv_phy_test_write_2_byte 0x00016381 Thumb Code 38 drv_phy_common.o(i.drv_phy_test_write_2_byte) + drv_phy_test_write_code 0x000163a7 Thumb Code 30 drv_phy_common.o(i.drv_phy_test_write_code) + drv_pwr_set_cp_mode 0x000163e5 Thumb Code 26 drv_pwr.o(i.drv_pwr_set_cp_mode) + drv_pwr_set_pvd_mode 0x00016405 Thumb Code 18 drv_pwr.o(i.drv_pwr_set_pvd_mode) + drv_pwr_set_system_clk_src 0x0001641d Thumb Code 44 drv_pwr.o(i.drv_pwr_set_system_clk_src) + drv_rxbr_clear_pkt_buffer 0x0001649b Thumb Code 10 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + drv_rxbr_clear_status0 0x000164a5 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_clear_status0) + drv_rxbr_enable_irq 0x000164a9 Thumb Code 90 drv_rxbr.o(i.drv_rxbr_enable_irq) + drv_rxbr_frame_drop_cfg 0x00016505 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + drv_rxbr_get_clk 0x00016519 Thumb Code 66 drv_rxbr.o(i.drv_rxbr_get_clk) + drv_rxbr_get_col_addr 0x0001657d Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_col_addr) + drv_rxbr_get_page_addr 0x00016593 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_page_addr) + drv_rxbr_hline_rcv0_cfg 0x000165a9 Thumb Code 12 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + drv_rxbr_hline_rcv_cfg 0x000165b5 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + drv_rxbr_register_irq0_callback 0x000165bd Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + drv_rxbr_register_irq1_callback 0x000165c9 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + drv_rxbr_set_ack_pkt_header 0x000165d5 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + drv_rxbr_set_cmd_filter 0x000165e9 Thumb Code 204 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + drv_rxbr_set_color_format 0x000166b5 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_color_format) + drv_rxbr_set_inten 0x000166c9 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_inten) + drv_rxbr_set_ltpo_drop_th 0x000166dd Thumb Code 16 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + drv_rxbr_set_usr_cfg 0x000166ed Thumb Code 38 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + drv_rxbr_set_usr_col 0x00016713 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_col) + drv_rxbr_set_usr_row 0x0001671b Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_row) + drv_spi_m_read_data 0x00016725 Thumb Code 28 drv_spi_master.o(i.drv_spi_m_read_data) + drv_swire_enable 0x00016745 Thumb Code 24 drv_swire.o(i.drv_swire_enable) + drv_swire_set_int 0x00016761 Thumb Code 76 drv_swire.o(i.drv_swire_set_int) + drv_swire_set_power_down 0x000167b5 Thumb Code 24 drv_swire.o(i.drv_swire_set_power_down) + drv_sys_cfg_clear_all_int 0x000167d1 Thumb Code 8 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + drv_sys_cfg_clear_pending 0x000167dd Thumb Code 32 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + drv_sys_cfg_sel_ap_rst_lvl_trig 0x00016805 Thumb Code 18 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + drv_sys_cfg_sel_ap_rst_trig 0x0001681d Thumb Code 22 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + drv_sys_cfg_sel_gpio_group 0x00016839 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + drv_sys_cfg_sel_int_trig 0x0001685d Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + drv_sys_cfg_set_dma_rx_req 0x00016881 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + drv_sys_cfg_set_dma_tx_req 0x00016891 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + drv_sys_cfg_set_int 0x000168a1 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + drv_timer_enable 0x000168df Thumb Code 32 drv_timer.o(i.drv_timer_enable) + drv_timer_get_instance 0x00016901 Thumb Code 10 drv_timer.o(i.drv_timer_get_instance) + drv_timer_get_prescaler 0x00016911 Thumb Code 12 drv_timer.o(i.drv_timer_get_prescaler) + drv_timer_register_callback 0x00016965 Thumb Code 14 drv_timer.o(i.drv_timer_register_callback) + drv_timer_set_compare_val 0x00016979 Thumb Code 16 drv_timer.o(i.drv_timer_set_compare_val) + drv_timer_set_int 0x00016989 Thumb Code 80 drv_timer.o(i.drv_timer_set_int) + drv_timer_set_prescaler 0x000169dd Thumb Code 36 drv_timer.o(i.drv_timer_set_prescaler) + drv_timer_set_repeat 0x00016a05 Thumb Code 12 drv_timer.o(i.drv_timer_set_repeat) + drv_tx_phy_test_enter 0x00016a1f Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + drv_tx_phy_test_exit 0x00016a3b Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + drv_vidc_clear_irq 0x00016a8d Thumb Code 8 drv_vidc.o(i.drv_vidc_clear_irq) + drv_vidc_enable 0x00016a95 Thumb Code 24 drv_vidc.o(i.drv_vidc_enable) + drv_vidc_enable_irq 0x00016aad Thumb Code 58 drv_vidc.o(i.drv_vidc_enable_irq) + drv_vidc_get_irq_status 0x00016aed Thumb Code 18 drv_vidc.o(i.drv_vidc_get_irq_status) + drv_vidc_init_module_enable 0x00016b01 Thumb Code 36 drv_vidc.o(i.drv_vidc_init_module_enable) + drv_vidc_register_callback 0x00016b29 Thumb Code 6 drv_vidc.o(i.drv_vidc_register_callback) + drv_vidc_reset 0x00016b35 Thumb Code 6 drv_vidc.o(i.drv_vidc_reset) + drv_vidc_set_dst_parameter 0x00016b3b Thumb Code 60 drv_vidc.o(i.drv_vidc_set_dst_parameter) + drv_vidc_set_irqen 0x00016b77 Thumb Code 20 drv_vidc.o(i.drv_vidc_set_irqen) + drv_vidc_set_mirror 0x00016b8b Thumb Code 16 drv_vidc.o(i.drv_vidc_set_mirror) + drv_vidc_set_p2r_hcoef0 0x00016b9b Thumb Code 8 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + drv_vidc_set_p2r_hinitb 0x00016ba3 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + drv_vidc_set_p2r_hinitr 0x00016bc9 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + drv_vidc_set_pentile_swap 0x00016bf1 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_pentile_swap) + drv_vidc_set_pu_ctrl 0x00016c09 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + drv_vidc_set_rotation 0x00016c13 Thumb Code 16 drv_vidc.o(i.drv_vidc_set_rotation) + drv_vidc_set_scld_hcoef0 0x00016c23 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + drv_vidc_set_scld_hcoef1 0x00016c2d Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + drv_vidc_set_scld_step 0x00016c37 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_scld_step) + drv_vidc_set_scld_vcoef0 0x00016c49 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + drv_vidc_set_scld_vcoef1 0x00016c53 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + drv_vidc_set_src_parameter 0x00016c5d Thumb Code 22 drv_vidc.o(i.drv_vidc_set_src_parameter) + drv_wdg_clear_counter 0x00016c75 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_counter) + drv_wdg_set_int 0x00016ca5 Thumb Code 60 drv_wdg.o(i.drv_wdg_set_int) + fls_clr_interrupt_flag 0x00016ce5 Thumb Code 10 drv_fls.o(i.fls_clr_interrupt_flag) + fputc 0x00016cef Thumb Code 20 tau_log.o(i.fputc) + hal_dsi_rx_ctrl_create_handle 0x00016d05 Thumb Code 48 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + hal_dsi_rx_ctrl_deinit 0x00016d39 Thumb Code 148 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + hal_dsi_rx_ctrl_dsc_async_handler 0x00016dd5 Thumb Code 120 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016e59 Thumb Code 32 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + hal_dsi_rx_ctrl_get_max_ret_size 0x00016e81 Thumb Code 30 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + hal_dsi_rx_ctrl_init 0x00016ea9 Thumb Code 88 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + hal_dsi_rx_ctrl_send_ack_cmd 0x00017651 Thumb Code 212 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + hal_dsi_rx_ctrl_set_cus_sync_line 0x00017741 Thumb Code 44 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + hal_dsi_rx_ctrl_set_hw_tear_mode 0x00017775 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017855 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + hal_dsi_rx_ctrl_start 0x00017889 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + hal_dsi_rx_ctrl_stop 0x000178c5 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + hal_dsi_rx_ctrl_toggle_resolution 0x00017901 Thumb Code 28 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + hal_dsi_tx_crop_pic 0x00017f35 Thumb Code 144 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) + hal_dsi_tx_ctrl_create_handle 0x00017fc9 Thumb Code 34 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + hal_dsi_tx_ctrl_deinit 0x00017ff5 Thumb Code 118 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + hal_dsi_tx_ctrl_enter_init_panel_mode 0x00018079 Thumb Code 68 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + hal_dsi_tx_ctrl_exit_init_panel_mode 0x000180c5 Thumb Code 32 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + hal_dsi_tx_ctrl_init 0x000180ed Thumb Code 154 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + hal_dsi_tx_ctrl_panel_reset_pin 0x000181b5 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + hal_dsi_tx_ctrl_set_ccm 0x000181c1 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + hal_dsi_tx_ctrl_set_overwrite_rgb 0x000181e1 Thumb Code 16 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + hal_dsi_tx_ctrl_set_partial_disp 0x000181f5 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + hal_dsi_tx_ctrl_set_partial_disp_area 0x00018205 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + hal_dsi_tx_ctrl_start 0x00018229 Thumb Code 140 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + hal_dsi_tx_ctrl_stop 0x000182c5 Thumb Code 56 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + hal_dsi_tx_ctrl_write_array_cmd 0x00018309 Thumb Code 210 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + hal_dsi_tx_ctrl_write_cmd 0x000183e1 Thumb Code 172 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + hal_gpio_ctrl_eint 0x00018675 Thumb Code 18 hal_gpio.o(i.hal_gpio_ctrl_eint) + hal_gpio_get_input_data 0x0001868d Thumb Code 18 hal_gpio.o(i.hal_gpio_get_input_data) + hal_gpio_init_eint 0x000186a1 Thumb Code 58 hal_gpio.o(i.hal_gpio_init_eint) + hal_gpio_init_input 0x000186e1 Thumb Code 28 hal_gpio.o(i.hal_gpio_init_input) + hal_gpio_init_output 0x00018701 Thumb Code 34 hal_gpio.o(i.hal_gpio_init_output) + hal_gpio_reg_eint_cb 0x00018729 Thumb Code 20 hal_gpio.o(i.hal_gpio_reg_eint_cb) + hal_gpio_set_ap_reset_int 0x00018741 Thumb Code 76 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + hal_gpio_set_mode 0x00018791 Thumb Code 90 hal_gpio.o(i.hal_gpio_set_mode) + hal_gpio_set_output_data 0x000187f1 Thumb Code 8 hal_gpio.o(i.hal_gpio_set_output_data) + hal_gpio_set_pull_state 0x000187f9 Thumb Code 26 hal_gpio.o(i.hal_gpio_set_pull_state) + hal_i2c_m_dma_init 0x00018819 Thumb Code 92 hal_i2c_master.o(i.hal_i2c_m_dma_init) + hal_i2c_m_dma_read 0x00018885 Thumb Code 26 hal_i2c_master.o(i.hal_i2c_m_dma_read) + hal_i2c_m_dma_write 0x000188a5 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_m_dma_write) + hal_i2c_m_transfer_complate 0x000188c1 Thumb Code 6 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + hal_i2c_s_dma_write 0x000188fd Thumb Code 62 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + hal_i2c_s_init 0x00018949 Thumb Code 176 hal_i2c_slave.o(i.hal_i2c_s_init) + hal_i2c_s_nonblocking_read 0x00018a11 Thumb Code 14 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + hal_i2c_s_set_transfer 0x00018a25 Thumb Code 6 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + hal_internal_init_memc 0x00018ba5 Thumb Code 170 hal_internal_vsync.o(i.hal_internal_init_memc) + hal_internal_sync_get_fb_setting 0x00018ca1 Thumb Code 12 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + hal_internal_sync_get_hight_performan_mode 0x00018cb1 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + hal_internal_sync_input_resolution_change 0x00018cc1 Thumb Code 438 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + hal_internal_update_dpi_param 0x00018eed Thumb Code 10 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + hal_internal_video_mode_auto_sync 0x00018efd Thumb Code 238 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + hal_internal_vsync_deinit 0x00019009 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + hal_internal_vsync_get_rx_state 0x00019031 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + hal_internal_vsync_get_sync_line 0x0001903d Thumb Code 18 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + hal_internal_vsync_get_tear_mode 0x00019055 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + hal_internal_vsync_get_tx_state 0x00019061 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + hal_internal_vsync_init_rx 0x0001906d Thumb Code 236 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + hal_internal_vsync_init_tx 0x00019185 Thumb Code 172 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + hal_internal_vsync_set_auto_hw_filter 0x00019235 Thumb Code 222 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + hal_internal_vsync_set_rx_state 0x00019351 Thumb Code 16 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + hal_internal_vsync_set_sync_line 0x00019365 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + hal_internal_vsync_set_tear_mode 0x00019389 Thumb Code 72 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + hal_internal_vsync_set_tx_state 0x000193d9 Thumb Code 118 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + hal_internal_vsync_update_lcdc_addr 0x00019459 Thumb Code 42 hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) + hal_spi_m_clear_rxfifo 0x000198ad Thumb Code 14 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + hal_swire_deinit 0x000198bb Thumb Code 18 hal_swire.o(i.hal_swire_deinit) + hal_swire_open 0x000198cd Thumb Code 22 hal_swire.o(i.hal_swire_open) + hal_system_enable_systick 0x000198e3 Thumb Code 8 hal_system.o(i.hal_system_enable_systick) + hal_system_init 0x000198ed Thumb Code 104 hal_system.o(i.hal_system_init) + hal_system_init_console 0x00019975 Thumb Code 28 hal_system.o(i.hal_system_init_console) + hal_system_set_phy_calibration 0x00019991 Thumb Code 8 hal_system.o(i.hal_system_set_phy_calibration) + hal_system_set_pvd 0x00019999 Thumb Code 8 hal_system.o(i.hal_system_set_pvd) + hal_system_set_vcc 0x000199a1 Thumb Code 8 hal_system.o(i.hal_system_set_vcc) + hal_timer_deinit 0x000199a9 Thumb Code 46 hal_timer.o(i.hal_timer_deinit) + hal_timer_init 0x000199d7 Thumb Code 26 hal_timer.o(i.hal_timer_init) + hal_timer_start 0x000199f1 Thumb Code 66 hal_timer.o(i.hal_timer_start) + hal_timer_stop 0x00019a39 Thumb Code 40 hal_timer.o(i.hal_timer_stop) + hal_uart_init 0x00019a61 Thumb Code 126 hal_uart.o(i.hal_uart_init) + hal_uart_transmit_blocking 0x00019aed Thumb Code 12 hal_uart.o(i.hal_uart_transmit_blocking) + handle_init 0x00019afd Thumb Code 140 irq_redirect .o(i.handle_init) + main 0x00019d81 Thumb Code 10 main.o(i.main) + sqrt 0x0001aa6d Thumb Code 66 sqrt.o(i.sqrt) + tp_heartbeat_exec 0x0001aab5 Thumb Code 60 ap_demo.o(i.tp_heartbeat_exec) + panel_init_code 0x0001af40 Data 9274 ap_demo.o(.constdata) + wCRCTalbeAbs 0x0001d37a Data 32 app_tp_st_touch.o(.constdata) + I2C_Ack_arr_0600_00 0x0001d4b4 Data 1 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0600_01 0x0001d4b5 Data 1 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A00 0x0001d4b6 Data 2 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0204 0x0001d4b8 Data 4 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_01 0x0001d4bc Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_03 0x0001d4c3 Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A20_14 0x0001d4ca Data 7 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0120 0x0001d4d1 Data 8 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0100 0x0001d4d9 Data 16 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_0A28 0x0001d4e9 Data 20 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_A019 0x0001d4fd Data 24 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_01 0x0001d515 Data 1088 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_14 0x0001d955 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_1B 0x0001da1d Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_1C 0x0001dae5 Data 200 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_02 0x0001dbad Data 1088 app_tp_for_custom_s8.o(.constdata) + I2C_Ack_arr_2000_03 0x0001dfed Data 544 app_tp_for_custom_s8.o(.constdata) + screen_reg_start_data_size 0x0001e20d Data 1 app_tp_for_custom_s8.o(.constdata) + Region$$Table$$Base 0x0001e5ac Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0001e5dc Number 0 anon$$obj.o(Region$$Table) + g_fun_handle 0x00070100 Data 192 irq_redirect .o(.ARM.__AT_0x00070100) + phone_start_flag 0x000701d8 Data 1 ap_demo.o(.data) + phone_DisplayOFF_flag 0x000701d9 Data 1 ap_demo.o(.data) + panel_mode 0x000701dc Data 1 ap_demo.o(.data) + phone_DisplayOFF_count 0x000701de Data 2 ap_demo.o(.data) + rd_51_val2 0x000701e0 Data 2 ap_demo.o(.data) + panel_r 0x000701e2 Data 2 ap_demo.o(.data) + panel_g 0x000701e4 Data 2 ap_demo.o(.data) + panel_b 0x000701e6 Data 2 ap_demo.o(.data) + s_heartbeat 0x000701f4 Data 4 ap_demo.o(.data) + s_screen_init_complate 0x000701fc Data 1 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data1 0x00070200 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data3 0x00070203 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data4 0x00070206 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data2 0x00070209 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data3 0x0007020c Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data6 0x0007020f Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data7 0x00070212 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data8 0x00070215 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data4 0x00070218 Data 4 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data5 0x0007021c Data 4 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data2 0x00070220 Data 6 app_tp_transfer.o(.data) + st_touch_init_sensor_off 0x00070228 Data 3 app_tp_st_touch.o(.data) + st_touch_init_sensor_on 0x0007022b Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_reset 0x0007022e Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_FpnlInit 0x00070231 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_PnlInit 0x00070234 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_SvCfg 0x00070237 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_SvCx 0x0007023a Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_SvPnl 0x0007023d Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_clearfifo 0x00070240 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_clkreset 0x00070243 Data 3 app_tp_st_touch.o(.data) + st_touch_tp_tuning_TuneM 0x00070246 Data 4 app_tp_st_touch.o(.data) + st_touch_tp_tuning_TuneS 0x0007024a Data 4 app_tp_st_touch.o(.data) + tp_flag 0x0007027c Data 1 app_tp_for_custom_s8.o(.data) + g_phone_output_int_pad 0x0007027d Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_in 0x0007027e Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_count 0x0007027f Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_clk_count 0x00070280 Data 1 app_tp_for_custom_s8.o(.data) + sleep_double_EN 0x00070281 Data 1 app_tp_for_custom_s8.o(.data) + Flag_EA_EN 0x00070282 Data 1 app_tp_for_custom_s8.o(.data) + Flag_touch_count 0x00070283 Data 1 app_tp_for_custom_s8.o(.data) + touchnum_bak 0x00070284 Data 1 app_tp_for_custom_s8.o(.data) + Flag_blacklight_EN 0x00070285 Data 1 app_tp_for_custom_s8.o(.data) + Flag_0A10 0x00070286 Data 1 app_tp_for_custom_s8.o(.data) + Flag_0610 0x00070287 Data 1 app_tp_for_custom_s8.o(.data) + Flag_2000 0x00070288 Data 1 app_tp_for_custom_s8.o(.data) + send_point 0x00070289 Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_flag 0x0007028a Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_enable 0x0007028b Data 1 app_tp_for_custom_s8.o(.data) + phone_reg_coord_back 0x0007029c Data 200 app_tp_for_custom_s8.o(.data) + g_screen_input_rst_pad 0x00070364 Data 1 app_tp_for_custom_s8.o(.data) + g_screen_input_int_pad 0x00070365 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_1 0x00070366 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_2 0x00070367 Data 3 app_tp_for_custom_s8.o(.data) + screen_data_write_3 0x0007036a Data 5 app_tp_for_custom_s8.o(.data) + screen_reg_int_data 0x00070370 Data 48 app_tp_for_custom_s8.o(.data) + g_fls_w_cmd 0x000703a0 Data 1 norflash.o(.data) + g_fls_r_cmd 0x000703a1 Data 1 norflash.o(.data) + g_fls_write_en_status 0x000703a2 Data 1 norflash.o(.data) + isFlsTransferEnd 0x000703a3 Data 1 norflash.o(.data) + isFlsFifoReq 0x000703a4 Data 1 norflash.o(.data) + isNandWriteCompleted 0x000703a5 Data 1 norflash.o(.data) + isNandReadCompleted 0x000703a6 Data 1 norflash.o(.data) + g_fls_error_info 0x000703ac Data 6 norflash.o(.data) + g_systick_cb_func 0x000703b8 Data 4 drv_common.o(.data) + g_system_clock 0x000703bc Data 4 drv_common.o(.data) + g_scld_fhd_filter_h 0x000703d4 Data 256 drv_param_init.o(.data) + g_scld_fhd_filter_v 0x000704d4 Data 256 drv_param_init.o(.data) + g_scld_hd_filter_h 0x000705d4 Data 256 drv_param_init.o(.data) + g_scld_hd_filter_v 0x000706d4 Data 256 drv_param_init.o(.data) + g_sclu_lanczos_filter 0x000707d4 Data 128 drv_param_init.o(.data) + g_ccm_setting 0x00070854 Data 36 drv_param_init.o(.data) + g_sof_gen_te_func 0x000708e0 Data 4 hal_internal_vsync.o(.data) + g_int_rxbr_irq0_cb_func 0x000708e4 Data 4 drv_rxbr.o(.data) + g_int_rxbr_irq1_cb_func 0x000708e8 Data 4 drv_rxbr.o(.data) + g_int_vidc_cb_func 0x000708ec Data 4 drv_vidc.o(.data) + __stdout 0x00070920 Data 4 stdout.o(.data) + tp_scan_data 0x00070ab8 Data 12 app_tp_st_touch.o(.bss) + string 0x00070bd4 Data 256 tau_log.o(.bss) + hal_dmahandle 0x00070cd4 Data 160 hal_uart.o(.bss) + hal_uarthandle_dma 0x00070d74 Data 32 hal_uart.o(.bss) + hal_uart_handle_global 0x00070d94 Data 16 hal_uart.o(.bss) + g_vsync_hande 0x00070f40 Data 100 hal_internal_vsync.o(.bss) + g_dcs_execute_table 0x00070fa4 Data 2048 hal_internal_vsync.o(.bss) + g_packet_fifo 0x000718c4 Data 4144 dcs_packet_fifo.o(.bss) + g_spis_ctrl_handle 0x000728f4 Data 32 hal_spi_slave.o(.bss) + __stack_limit 0x00072918 Data 0 startup_armcm0.o(STACK) + __initial_sp 0x00073918 Data 0 startup_armcm0.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x000100c1 + + Load Region LR_IROM2 (Base: 0x00010000, Size: 0x0000ed34, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x0000e9c4]) + + Execution Region ER_IROM2 (Exec base: 0x00010000, Load base: 0x00010000, Size: 0x0000e5dc, Max: 0x00010000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00010000 0x00010000 0x000000c0 Data RO 528 RESET startup_armcm0.o + 0x000100c0 0x000100c0 0x00000000 Code RO 2698 * .ARM.Collect$$$$00000000 mc_p.l(entry.o) + 0x000100c0 0x000100c0 0x00000004 Code RO 3008 .ARM.Collect$$$$00000001 mc_p.l(entry2.o) + 0x000100c4 0x000100c4 0x00000004 Code RO 3011 .ARM.Collect$$$$00000004 mc_p.l(entry5.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 3013 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 3015 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o) + 0x000100c8 0x000100c8 0x00000008 Code RO 3016 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 3018 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 3020 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o) + 0x000100d0 0x000100d0 0x00000004 Code RO 3009 .ARM.Collect$$$$00002712 mc_p.l(entry2.o) + 0x000100d4 0x000100d4 0x00000078 Code RO 529 .text startup_armcm0.o + 0x0001014c 0x0001014c 0x0000002c Code RO 2701 .text mc_p.l(uidiv.o) + 0x00010178 0x00010178 0x00000028 Code RO 2703 .text mc_p.l(idiv.o) + 0x000101a0 0x000101a0 0x00000024 Code RO 2705 .text mc_p.l(memcpya.o) + 0x000101c4 0x000101c4 0x00000024 Code RO 2707 .text mc_p.l(memseta.o) + 0x000101e8 0x000101e8 0x000000b2 Code RO 2972 .text mf_p.l(fadd.o) + 0x0001029a 0x0001029a 0x0000007a Code RO 2974 .text mf_p.l(fmul.o) + 0x00010314 0x00010314 0x0000007c Code RO 2976 .text mf_p.l(fdiv.o) + 0x00010390 0x00010390 0x00000018 Code RO 2978 .text mf_p.l(fscalb.o) + 0x000103a8 0x000103a8 0x00000164 Code RO 2980 .text mf_p.l(dadd.o) + 0x0001050c 0x0001050c 0x000000d0 Code RO 2982 .text mf_p.l(dmul.o) + 0x000105dc 0x000105dc 0x000000f0 Code RO 2984 .text mf_p.l(ddiv.o) + 0x000106cc 0x000106cc 0x00000016 Code RO 2986 .text mf_p.l(fflti.o) + 0x000106e2 0x000106e2 0x0000000e Code RO 2988 .text mf_p.l(ffltui.o) + 0x000106f0 0x000106f0 0x0000001c Code RO 2992 .text mf_p.l(dfltui.o) + 0x0001070c 0x0001070c 0x00000032 Code RO 2994 .text mf_p.l(ffixi.o) + 0x0001073e 0x0001073e 0x00000028 Code RO 2996 .text mf_p.l(ffixui.o) + 0x00010766 0x00010766 0x00000002 PAD + 0x00010768 0x00010768 0x00000048 Code RO 2998 .text mf_p.l(dfixi.o) + 0x000107b0 0x000107b0 0x0000003c Code RO 3000 .text mf_p.l(dfixui.o) + 0x000107ec 0x000107ec 0x00000028 Code RO 3002 .text mf_p.l(f2d.o) + 0x00010814 0x00010814 0x00000028 Code RO 3004 .text mf_p.l(cdcmple.o) + 0x0001083c 0x0001083c 0x00000014 Code RO 3006 .text mf_p.l(cfrcmple.o) + 0x00010850 0x00010850 0x00000060 Code RO 3023 .text mc_p.l(uldiv.o) + 0x000108b0 0x000108b0 0x00000020 Code RO 3025 .text mc_p.l(llshl.o) + 0x000108d0 0x000108d0 0x00000022 Code RO 3027 .text mc_p.l(llushr.o) + 0x000108f2 0x000108f2 0x00000026 Code RO 3029 .text mc_p.l(llsshr.o) + 0x00010918 0x00010918 0x00000000 Code RO 3038 .text mc_p.l(iusefp.o) + 0x00010918 0x00010918 0x00000082 Code RO 3039 .text mf_p.l(fepilogue.o) + 0x0001099a 0x0001099a 0x000000be Code RO 3041 .text mf_p.l(depilogue.o) + 0x00010a58 0x00010a58 0x000000a2 Code RO 3045 .text mf_p.l(dsqrt.o) + 0x00010afa 0x00010afa 0x00000002 PAD + 0x00010afc 0x00010afc 0x00000040 Code RO 3047 .text mf_p.l(dfixul.o) + 0x00010b3c 0x00010b3c 0x00000028 Code RO 3049 .text mf_p.l(cdrcmple.o) + 0x00010b64 0x00010b64 0x00000024 Code RO 3051 .text mc_p.l(init.o) + 0x00010b88 0x00010b88 0x00000056 Code RO 3061 .text mc_p.l(__dczerorl2.o) + 0x00010bde 0x00010bde 0x00000002 PAD + 0x00010be0 0x00010be0 0x00000018 Code RO 2293 i.ADC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010bf8 0x00010bf8 0x00000018 Code RO 2294 i.AP_NRESET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c10 0x00010c10 0x00000040 Code RO 405 i.CRC16_2 app_tp_st_touch.o + 0x00010c50 0x00010c50 0x00000014 Code RO 2295 i.DMA_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c64 0x00010c64 0x0000001c Code RO 2296 i.EXTI_INT0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c80 0x00010c80 0x0000001c Code RO 2297 i.EXTI_INT1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c9c 0x00010c9c 0x0000001c Code RO 2298 i.EXTI_INT2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cb8 0x00010cb8 0x0000001c Code RO 2299 i.EXTI_INT3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cd4 0x00010cd4 0x0000001c Code RO 2300 i.EXTI_INT4_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cf0 0x00010cf0 0x0000001c Code RO 2301 i.EXTI_INT5_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d0c 0x00010d0c 0x0000001c Code RO 2302 i.EXTI_INT6_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d28 0x00010d28 0x0000001c Code RO 2303 i.EXTI_INT7_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d44 0x00010d44 0x00000024 Code RO 952 i.EncryptCheckEx ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00010d68 0x00010d68 0x00000014 Code RO 2304 i.FLSCTRL_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d7c 0x00010d7c 0x0000004e Code RO 86 i.Gpio_swire_output ap_demo.o + 0x00010dca 0x00010dca 0x00000002 PAD + 0x00010dcc 0x00010dcc 0x00000014 Code RO 2305 i.HardFault_Handler CVWL368.lib(irq_redirect .o) + 0x00010de0 0x00010de0 0x00000018 Code RO 2306 i.I2C0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010df8 0x00010df8 0x00000018 Code RO 2307 i.I2C1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e10 0x00010e10 0x00000018 Code RO 2308 i.LCDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e28 0x00010e28 0x00000028 Code RO 941 i.LOG_printf CVWL368.lib(tau_log.o) + 0x00010e50 0x00010e50 0x00000018 Code RO 2309 i.MEMC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e68 0x00010e68 0x00000018 Code RO 2310 i.MIPI_RX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e80 0x00010e80 0x00000018 Code RO 2311 i.MIPI_TX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e98 0x00010e98 0x0000001c Code RO 2312 i.PWMDET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010eb4 0x00010eb4 0x0000014c Code RO 252 i.S20_Start_init app_tp_transfer.o + 0x00011000 0x00011000 0x00000014 Data RO 1196 .ARM.__at_0x11000 CVWL368.lib(drv_common.o) + 0x00011014 0x00011014 0x00000002 Code RO 2580 i.UART_DisableDma CVWL368.lib(drv_uart.o) + 0x00011016 0x00011016 0x00000002 Code RO 3056 i.__scatterload_null mc_p.l(handlers.o) + 0x00011018 0x00011018 0x00000004 Data RO 1197 .ARM.__at_0x11018 CVWL368.lib(drv_common.o) + 0x0001101c 0x0001101c 0x0000001c Code RO 2313 i.SPIM_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011038 0x00011038 0x0000001c Code RO 2314 i.SPIS_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011054 0x00011054 0x0000001c Code RO 2315 i.SWIRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011070 0x00011070 0x00000018 Code RO 2316 i.SysTick_Handler CVWL368.lib(irq_redirect .o) + 0x00011088 0x00011088 0x00000018 Code RO 2317 i.TIMER0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110a0 0x000110a0 0x00000018 Code RO 2318 i.TIMER1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110b8 0x000110b8 0x00000018 Code RO 2319 i.TIMER2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110d0 0x000110d0 0x00000018 Code RO 2320 i.TIMER3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110e8 0x000110e8 0x0000001c Code RO 2576 i.UART0_IRQ_Handle CVWL368.lib(drv_uart.o) + 0x00011104 0x00011104 0x00000004 Code RO 2586 i.UART_GetInstance CVWL368.lib(drv_uart.o) + 0x00011108 0x00011108 0x00000018 Code RO 2321 i.UART_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011120 0x00011120 0x00000024 Code RO 2594 i.UART_ResetRxFIFO CVWL368.lib(drv_uart.o) + 0x00011144 0x00011144 0x00000048 Code RO 2597 i.UART_SetBaudRate CVWL368.lib(drv_uart.o) + 0x0001118c 0x0001118c 0x0000001a Code RO 2598 i.UART_SwitchSCLK CVWL368.lib(drv_uart.o) + 0x000111a6 0x000111a6 0x00000134 Code RO 2600 i.UART_TransferHandleIRQ CVWL368.lib(drv_uart.o) + 0x000112da 0x000112da 0x0000001a Code RO 2602 i.UART_WriteBlocking CVWL368.lib(drv_uart.o) + 0x000112f4 0x000112f4 0x000000bc Code RO 2603 i.UART_init CVWL368.lib(drv_uart.o) + 0x000113b0 0x000113b0 0x00000018 Code RO 2322 i.VIDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113c8 0x000113c8 0x00000018 Code RO 2323 i.VPRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113e0 0x000113e0 0x00000018 Code RO 2324 i.WDG_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113f8 0x000113f8 0x00000020 Code RO 2944 i.__0printf mc_p.l(printfa.o) + 0x00011418 0x00011418 0x00000024 Code RO 2950 i.__0vsprintf mc_p.l(printfa.o) + 0x0001143c 0x0001143c 0x0000002e Code RO 3043 i.__ARM_clz mf_p.l(depilogue.o) + 0x0001146a 0x0001146a 0x0000001a Code RO 626 i.__ARM_common_switch8 CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00011484 0x00011484 0x00000018 Code RO 1517 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_i2c_master.o) + 0x0001149c 0x0001149c 0x00000018 Code RO 1641 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_spi_master.o) + 0x000114b4 0x000114b4 0x00000020 Code RO 2147 i.__NVIC_DisableIRQ CVWL368.lib(drv_rxbr.o) + 0x000114d4 0x000114d4 0x00000018 Code RO 2148 i.__NVIC_EnableIRQ CVWL368.lib(drv_rxbr.o) + 0x000114ec 0x000114ec 0x00000044 Code RO 2443 i.__NVIC_SetPriority CVWL368.lib(hal_spi_slave.o) + 0x00011530 0x00011530 0x0000000e Code RO 3055 i.__scatterload_copy mc_p.l(handlers.o) + 0x0001153e 0x0001153e 0x0000000e Code RO 3057 i.__scatterload_zeroinit mc_p.l(handlers.o) + 0x0001154c 0x0001154c 0x0000000c Code RO 3033 i.__set_errno mc_p.l(errno.o) + 0x00011558 0x00011558 0x00000174 Code RO 2951 i._fp_digits mc_p.l(printfa.o) + 0x000116cc 0x000116cc 0x000006ec Code RO 2952 i._printf_core mc_p.l(printfa.o) + 0x00011db8 0x00011db8 0x00000020 Code RO 2953 i._printf_post_padding mc_p.l(printfa.o) + 0x00011dd8 0x00011dd8 0x0000002c Code RO 2954 i._printf_pre_padding mc_p.l(printfa.o) + 0x00011e04 0x00011e04 0x0000000a Code RO 2956 i._sputc mc_p.l(printfa.o) + 0x00011e0e 0x00011e0e 0x00000002 PAD + 0x00011e10 0x00011e10 0x000001cc Code RO 87 i.ap_dcs_read ap_demo.o + 0x00011fdc 0x00011fdc 0x000002c8 Code RO 88 i.ap_demo ap_demo.o + 0x000122a4 0x000122a4 0x0000002c Code RO 89 i.ap_get_reg_53 ap_demo.o + 0x000122d0 0x000122d0 0x00000054 Code RO 90 i.ap_get_reg_7A ap_demo.o + 0x00012324 0x00012324 0x000000c4 Code RO 91 i.ap_get_reg_df ap_demo.o + 0x000123e8 0x000123e8 0x00000020 Code RO 406 i.ap_get_tp_calibration_status_01 app_tp_st_touch.o + 0x00012408 0x00012408 0x00000044 Code RO 92 i.ap_reset_cb ap_demo.o + 0x0001244c 0x0001244c 0x00000044 Code RO 93 i.ap_set_backlight_51 ap_demo.o + 0x00012490 0x00012490 0x00000048 Code RO 94 i.ap_set_display_off ap_demo.o + 0x000124d8 0x000124d8 0x00000038 Code RO 95 i.ap_set_display_on ap_demo.o + 0x00012510 0x00012510 0x00000078 Code RO 96 i.ap_set_enter_sleep_mode ap_demo.o + 0x00012588 0x00012588 0x00000048 Code RO 97 i.ap_set_exit_sleep_mode ap_demo.o + 0x000125d0 0x000125d0 0x00000098 Code RO 407 i.ap_set_tp_calibration_04 app_tp_st_touch.o + 0x00012668 0x00012668 0x000000b0 Code RO 408 i.ap_tp_st_touch_calibration app_tp_st_touch.o + 0x00012718 0x00012718 0x000000a8 Code RO 411 i.ap_tp_st_touch_get_calibration_success_mark app_tp_st_touch.o + 0x000127c0 0x000127c0 0x0000001c Code RO 413 i.ap_tp_st_touch_scan_point_init app_tp_st_touch.o + 0x000127dc 0x000127dc 0x00000050 Code RO 415 i.ap_tp_st_touch_scan_point_record_event_exec app_tp_st_touch.o + 0x0001282c 0x0001282c 0x00000034 Code RO 416 i.ap_tp_st_touch_simulate_finger_release_event app_tp_st_touch.o + 0x00012860 0x00012860 0x000000ac Code RO 417 i.ap_tp_st_touch_software_reset app_tp_st_touch.o + 0x0001290c 0x0001290c 0x0000001c Code RO 2149 i.app_ADC_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00012928 0x00012928 0x00000024 Code RO 1441 i.app_AP_NRESET_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x0001294c 0x0001294c 0x0000001c Code RO 1442 i.app_EXTI_INT0_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012968 0x00012968 0x0000001c Code RO 1443 i.app_EXTI_INT1_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012984 0x00012984 0x0000001c Code RO 1444 i.app_EXTI_INT2_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129a0 0x000129a0 0x0000001c Code RO 1445 i.app_EXTI_INT3_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129bc 0x000129bc 0x0000001c Code RO 1446 i.app_EXTI_INT4_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129d8 0x000129d8 0x0000001c Code RO 1447 i.app_EXTI_INT5_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000129f4 0x000129f4 0x0000001c Code RO 1448 i.app_EXTI_INT6_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012a10 0x00012a10 0x0000001c Code RO 1449 i.app_EXTI_INT7_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012a2c 0x00012a2c 0x00000048 Code RO 1188 i.app_HardFault_Handler CVWL368.lib(drv_common.o) + 0x00012a74 0x00012a74 0x00000018 Code RO 1552 i.app_I2C0_IRQn_Handler CVWL368.lib(drv_i2c_slave.o) + 0x00012a8c 0x00012a8c 0x00000010 Code RO 1518 i.app_I2C1_IRQn_Handler CVWL368.lib(drv_i2c_master.o) + 0x00012a9c 0x00012a9c 0x000001a4 Code RO 1759 i.app_LCDC_IRQn_Handler CVWL368.lib(hal_internal_vsync.o) + 0x00012c40 0x00012c40 0x00000088 Code RO 2091 i.app_MEMC_IRQn_Handler CVWL368.lib(drv_memc.o) + 0x00012cc8 0x00012cc8 0x00000298 Code RO 1863 i.app_MIPI_RX_IRQn_Handler CVWL368.lib(drv_dsi_rx.o) + 0x00012f60 0x00012f60 0x000000a0 Code RO 1919 i.app_MIPI_TX_IRQn_Handler CVWL368.lib(drv_dsi_tx.o) + 0x00013000 0x00013000 0x00000048 Code RO 2511 i.app_PWMDET_IRQn_Handler CVWL368.lib(drv_pwm.o) + 0x00013048 0x00013048 0x00000030 Code RO 1642 i.app_SPIM_IRQn_Handler CVWL368.lib(drv_spi_master.o) + 0x00013078 0x00013078 0x00000200 Code RO 2444 i.app_SPIS_IRQn_Handler CVWL368.lib(hal_spi_slave.o) + 0x00013278 0x00013278 0x00000020 Code RO 1674 i.app_SWIRE_IRQn_Handler CVWL368.lib(drv_swire.o) + 0x00013298 0x00013298 0x00000018 Code RO 1189 i.app_SysTick_Handler CVWL368.lib(drv_common.o) + 0x000132b0 0x000132b0 0x0000000a Code RO 1724 i.app_TIMER0_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x000132ba 0x000132ba 0x0000000a Code RO 1725 i.app_TIMER1_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x000132c4 0x000132c4 0x0000000a Code RO 1726 i.app_TIMER2_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x000132ce 0x000132ce 0x0000000a Code RO 1727 i.app_TIMER3_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x000132d8 0x000132d8 0x00000008 Code RO 2604 i.app_UART_IRQn_Handler CVWL368.lib(drv_uart.o) + 0x000132e0 0x000132e0 0x0000001c Code RO 2214 i.app_VIDC_IRQn_Handler CVWL368.lib(drv_vidc.o) + 0x000132fc 0x000132fc 0x0000001c Code RO 2150 i.app_VPRE_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00013318 0x00013318 0x00000038 Code RO 2663 i.app_WDG_IRQn_Handler CVWL368.lib(drv_wdg.o) + 0x00013350 0x00013350 0x00000010 Code RO 1303 i.app_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00013360 0x00013360 0x00000030 Code RO 1104 i.app_fls_ctrl_Handler CVWL368.lib(norflash.o) + 0x00013390 0x00013390 0x00000024 Code RO 254 i.app_tp_I2C_init app_tp_transfer.o + 0x000133b4 0x000133b4 0x000000a8 Code RO 418 i.app_tp_calibration_exec app_tp_st_touch.o + 0x0001345c 0x0001345c 0x0000009c Code RO 255 i.app_tp_i2cs_callback app_tp_transfer.o + 0x000134f8 0x000134f8 0x00000044 Code RO 256 i.app_tp_init app_tp_transfer.o + 0x0001353c 0x0001353c 0x00000020 Code RO 257 i.app_tp_m_read app_tp_transfer.o + 0x0001355c 0x0001355c 0x00000008 Code RO 259 i.app_tp_m_write app_tp_transfer.o + 0x00013564 0x00013564 0x000004c0 Code RO 953 i.app_tp_phone_analysis_data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00013a24 0x00013a24 0x00000008 Code RO 262 i.app_tp_s_read app_tp_transfer.o + 0x00013a2c 0x00013a2c 0x00000008 Code RO 264 i.app_tp_s_write app_tp_transfer.o + 0x00013a34 0x00013a34 0x00000484 Code RO 955 i.app_tp_screen_analysis_int ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00013eb8 0x00013eb8 0x00000030 Code RO 265 i.app_tp_screen_init app_tp_transfer.o + 0x00013ee8 0x00013ee8 0x0000000c Code RO 266 i.app_tp_screen_int_callback app_tp_transfer.o + 0x00013ef4 0x00013ef4 0x00000040 Code RO 267 i.app_tp_transfer_screen_const app_tp_transfer.o + 0x00013f34 0x00013f34 0x0000010c Code RO 268 i.app_tp_transfer_screen_int app_tp_transfer.o + 0x00014040 0x00014040 0x00000014 Code RO 269 i.app_tp_transfer_screen_start app_tp_transfer.o + 0x00014054 0x00014054 0x00000024 Code RO 508 i.board_Init board.o + 0x00014078 0x00014078 0x000004f0 Code RO 1760 i.calc_framebuffer_setting CVWL368.lib(hal_internal_vsync.o) + 0x00014568 0x00014568 0x000000c8 Code RO 2687 i.ceil m_ps.l(ceil.o) + 0x00014630 0x00014630 0x0000002c Code RO 1761 i.check_mipi_rx_tx_video_info CVWL368.lib(hal_internal_vsync.o) + 0x0001465c 0x0001465c 0x00000094 Code RO 1762 i.check_pkt_buf_rev CVWL368.lib(hal_internal_vsync.o) + 0x000146f0 0x000146f0 0x00000058 Code RO 1850 i.dcs_packet_fifo_alloc CVWL368.lib(dcs_packet_fifo.o) + 0x00014748 0x00014748 0x00000018 Code RO 1851 i.dcs_packet_fifo_init CVWL368.lib(dcs_packet_fifo.o) + 0x00014760 0x00014760 0x00000044 Code RO 1852 i.dcs_packet_free_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x000147a4 0x000147a4 0x00000024 Code RO 1853 i.dcs_packet_get_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x000147c8 0x000147c8 0x0000001c Code RO 1763 i.dcs_sw_filter CVWL368.lib(hal_internal_vsync.o) + 0x000147e4 0x000147e4 0x00000018 Code RO 933 i.delayMs CVWL368.lib(tau_delay.o) + 0x000147fc 0x000147fc 0x00000022 Code RO 934 i.delayUs CVWL368.lib(tau_delay.o) + 0x0001481e 0x0001481e 0x00000002 PAD + 0x00014820 0x00014820 0x00000038 Code RO 1693 i.drv_ap_rst_trig_edge_detect CVWL368.lib(drv_sys_cfg.o) + 0x00014858 0x00014858 0x0000000c Code RO 2414 i.drv_chip_info_get_info CVWL368.lib(drv_chip_info.o) + 0x00014864 0x00014864 0x00000040 Code RO 2415 i.drv_chip_info_init CVWL368.lib(drv_chip_info.o) + 0x000148a4 0x000148a4 0x000000b0 Code RO 2416 i.drv_chip_rx_info_check CVWL368.lib(drv_chip_info.o) + 0x00014954 0x00014954 0x00000014 Code RO 2417 i.drv_chip_rx_init_done CVWL368.lib(drv_chip_info.o) + 0x00014968 0x00014968 0x00000058 Code RO 1191 i.drv_common_enable_systick CVWL368.lib(drv_common.o) + 0x000149c0 0x000149c0 0x00000008 Code RO 1194 i.drv_common_system_init CVWL368.lib(drv_common.o) + 0x000149c8 0x000149c8 0x00000010 Code RO 1216 i.drv_crgu_config_reset_modules CVWL368.lib(drv_crgu.o) + 0x000149d8 0x000149d8 0x00000014 Code RO 1229 i.drv_crgu_set_ahb_pre_div CVWL368.lib(drv_crgu.o) + 0x000149ec 0x000149ec 0x00000014 Code RO 1230 i.drv_crgu_set_ahb_src CVWL368.lib(drv_crgu.o) + 0x00014a00 0x00014a00 0x00000020 Code RO 1233 i.drv_crgu_set_clock CVWL368.lib(drv_crgu.o) + 0x00014a20 0x00014a20 0x00000014 Code RO 1234 i.drv_crgu_set_dpi_mux_src CVWL368.lib(drv_crgu.o) + 0x00014a34 0x00014a34 0x00000018 Code RO 1235 i.drv_crgu_set_dpi_pre_div CVWL368.lib(drv_crgu.o) + 0x00014a4c 0x00014a4c 0x00000014 Code RO 1236 i.drv_crgu_set_dpi_pre_src CVWL368.lib(drv_crgu.o) + 0x00014a60 0x00014a60 0x00000014 Code RO 1237 i.drv_crgu_set_dsc_core_div CVWL368.lib(drv_crgu.o) + 0x00014a74 0x00014a74 0x00000014 Code RO 1238 i.drv_crgu_set_dsco_src CVWL368.lib(drv_crgu.o) + 0x00014a88 0x00014a88 0x00000014 Code RO 1239 i.drv_crgu_set_dsco_src_div CVWL368.lib(drv_crgu.o) + 0x00014a9c 0x00014a9c 0x00000014 Code RO 1240 i.drv_crgu_set_fb_div CVWL368.lib(drv_crgu.o) + 0x00014ab0 0x00014ab0 0x00000014 Code RO 1241 i.drv_crgu_set_fb_src CVWL368.lib(drv_crgu.o) + 0x00014ac4 0x00014ac4 0x00000014 Code RO 1244 i.drv_crgu_set_lcdc_div CVWL368.lib(drv_crgu.o) + 0x00014ad8 0x00014ad8 0x00000014 Code RO 1245 i.drv_crgu_set_lcdc_src CVWL368.lib(drv_crgu.o) + 0x00014aec 0x00014aec 0x00000014 Code RO 1246 i.drv_crgu_set_mipi_cfg_src CVWL368.lib(drv_crgu.o) + 0x00014b00 0x00014b00 0x00000018 Code RO 1247 i.drv_crgu_set_mipi_ref_src CVWL368.lib(drv_crgu.o) + 0x00014b18 0x00014b18 0x00000018 Code RO 1250 i.drv_crgu_set_reset CVWL368.lib(drv_crgu.o) + 0x00014b30 0x00014b30 0x00000014 Code RO 1251 i.drv_crgu_set_rxbr_div CVWL368.lib(drv_crgu.o) + 0x00014b44 0x00014b44 0x00000014 Code RO 1252 i.drv_crgu_set_rxbr_src CVWL368.lib(drv_crgu.o) + 0x00014b58 0x00014b58 0x00000014 Code RO 1254 i.drv_crgu_set_vidc_src CVWL368.lib(drv_crgu.o) + 0x00014b6c 0x00014b6c 0x00000018 Code RO 1307 i.drv_dma_clear_flag CVWL368.lib(drv_dma.o) + 0x00014b84 0x00014b84 0x0000001c Code RO 1308 i.drv_dma_create_handle CVWL368.lib(drv_dma.o) + 0x00014ba0 0x00014ba0 0x00000010 Code RO 1310 i.drv_dma_disenable_channel CVWL368.lib(drv_dma.o) + 0x00014bb0 0x00014bb0 0x00000010 Code RO 1312 i.drv_dma_enable_channel CVWL368.lib(drv_dma.o) + 0x00014bc0 0x00014bc0 0x00000024 Code RO 1313 i.drv_dma_enable_channel_interrupts CVWL368.lib(drv_dma.o) + 0x00014be4 0x00014be4 0x0000000c Code RO 1315 i.drv_dma_get_channel_flag CVWL368.lib(drv_dma.o) + 0x00014bf0 0x00014bf0 0x00000090 Code RO 1318 i.drv_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00014c80 0x00014c80 0x00000012 Code RO 1320 i.drv_dma_prepar_transfer CVWL368.lib(drv_dma.o) + 0x00014c92 0x00014c92 0x0000001a Code RO 1322 i.drv_dma_set_burst CVWL368.lib(drv_dma.o) + 0x00014cac 0x00014cac 0x00000006 Code RO 1323 i.drv_dma_set_callback CVWL368.lib(drv_dma.o) + 0x00014cb2 0x00014cb2 0x00000002 PAD + 0x00014cb4 0x00014cb4 0x00000044 Code RO 1325 i.drv_dma_set_transfer CVWL368.lib(drv_dma.o) + 0x00014cf8 0x00014cf8 0x00000036 Code RO 2427 i.drv_dsc_dec_convert_pps_rc_parameter CVWL368.lib(drv_dsc_dec.o) + 0x00014d2e 0x00014d2e 0x0000000c Code RO 2428 i.drv_dsc_dec_disable CVWL368.lib(drv_dsc_dec.o) + 0x00014d3a 0x00014d3a 0x00000002 PAD + 0x00014d3c 0x00014d3c 0x00000074 Code RO 2429 i.drv_dsc_dec_enable CVWL368.lib(drv_dsc_dec.o) + 0x00014db0 0x00014db0 0x0000000a Code RO 2430 i.drv_dsc_dec_get_nslc CVWL368.lib(drv_dsc_dec.o) + 0x00014dba 0x00014dba 0x00000028 Code RO 2432 i.drv_dsc_dec_set_u8_pps CVWL368.lib(drv_dsc_dec.o) + 0x00014de2 0x00014de2 0x00000002 PAD + 0x00014de4 0x00014de4 0x00000104 Code RO 1864 i.drv_dsi_rx_calc_ipi_tx_delay CVWL368.lib(drv_dsi_rx.o) + 0x00014ee8 0x00014ee8 0x00000040 Code RO 1865 i.drv_dsi_rx_enable_irq CVWL368.lib(drv_dsi_rx.o) + 0x00014f28 0x00014f28 0x00000050 Code RO 1866 i.drv_dsi_rx_get_color_bpp CVWL368.lib(drv_dsi_rx.o) + 0x00014f78 0x00014f78 0x0000001c Code RO 1867 i.drv_dsi_rx_get_color_pcc CVWL368.lib(drv_dsi_rx.o) + 0x00014f94 0x00014f94 0x00000008 Code RO 1868 i.drv_dsi_rx_get_compression_en CVWL368.lib(drv_dsi_rx.o) + 0x00014f9c 0x00014f9c 0x00000006 Code RO 1869 i.drv_dsi_rx_get_max_ret_size CVWL368.lib(drv_dsi_rx.o) + 0x00014fa2 0x00014fa2 0x0000000e Code RO 1873 i.drv_dsi_rx_power_up CVWL368.lib(drv_dsi_rx.o) + 0x00014fb0 0x00014fb0 0x00000020 Code RO 1874 i.drv_dsi_rx_set_ctrl_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014fd0 0x00014fd0 0x00000010 Code RO 1875 i.drv_dsi_rx_set_ddi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014fe0 0x00014fe0 0x00000004 Code RO 1877 i.drv_dsi_rx_set_inten CVWL368.lib(drv_dsi_rx.o) + 0x00014fe4 0x00014fe4 0x00000010 Code RO 1878 i.drv_dsi_rx_set_ipi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014ff4 0x00014ff4 0x00000046 Code RO 1880 i.drv_dsi_rx_set_lane_swap CVWL368.lib(drv_dsi_rx.o) + 0x0001503a 0x0001503a 0x00000026 Code RO 1881 i.drv_dsi_rx_set_resp_cnt CVWL368.lib(drv_dsi_rx.o) + 0x00015060 0x00015060 0x00000104 Code RO 1882 i.drv_dsi_rx_set_up_phy CVWL368.lib(drv_dsi_rx.o) + 0x00015164 0x00015164 0x0000000e Code RO 1883 i.drv_dsi_rx_shut_down CVWL368.lib(drv_dsi_rx.o) + 0x00015172 0x00015172 0x00000014 Code RO 1921 i.drv_dsi_tx_command_header CVWL368.lib(drv_dsi_tx.o) + 0x00015186 0x00015186 0x0000006c Code RO 1922 i.drv_dsi_tx_command_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x000151f2 0x000151f2 0x00000004 Code RO 1923 i.drv_dsi_tx_command_put_payload CVWL368.lib(drv_dsi_tx.o) + 0x000151f6 0x000151f6 0x00000018 Code RO 1924 i.drv_dsi_tx_config_eotp CVWL368.lib(drv_dsi_tx.o) + 0x0001520e 0x0001520e 0x00000008 Code RO 1925 i.drv_dsi_tx_config_int CVWL368.lib(drv_dsi_tx.o) + 0x00015216 0x00015216 0x00000008 Code RO 1926 i.drv_dsi_tx_dpi_lpcmd_time CVWL368.lib(drv_dsi_tx.o) + 0x0001521e 0x0001521e 0x0000000a Code RO 1927 i.drv_dsi_tx_dpi_mode CVWL368.lib(drv_dsi_tx.o) + 0x00015228 0x00015228 0x00000024 Code RO 1928 i.drv_dsi_tx_dpi_polarity CVWL368.lib(drv_dsi_tx.o) + 0x0001524c 0x0001524c 0x00000004 Code RO 1929 i.drv_dsi_tx_edpi_cmd_size CVWL368.lib(drv_dsi_tx.o) + 0x00015250 0x00015250 0x00000004 Code RO 1931 i.drv_dsi_tx_get_cmd_status CVWL368.lib(drv_dsi_tx.o) + 0x00015254 0x00015254 0x00000004 Code RO 1933 i.drv_dsi_tx_mode CVWL368.lib(drv_dsi_tx.o) + 0x00015258 0x00015258 0x00000018 Code RO 1934 i.drv_dsi_tx_phy_clock_lane_auto_lp CVWL368.lib(drv_dsi_tx.o) + 0x00015270 0x00015270 0x0000001a Code RO 1935 i.drv_dsi_tx_phy_clock_lane_req_hs CVWL368.lib(drv_dsi_tx.o) + 0x0001528a 0x0001528a 0x0000000c Code RO 1937 i.drv_dsi_tx_phy_lane_mode CVWL368.lib(drv_dsi_tx.o) + 0x00015296 0x00015296 0x00000064 Code RO 1941 i.drv_dsi_tx_phy_status_ready CVWL368.lib(drv_dsi_tx.o) + 0x000152fa 0x000152fa 0x0000003e Code RO 1942 i.drv_dsi_tx_phy_status_stopstate CVWL368.lib(drv_dsi_tx.o) + 0x00015338 0x00015338 0x00000134 Code RO 1944 i.drv_dsi_tx_phy_test_setup CVWL368.lib(drv_dsi_tx.o) + 0x0001546c 0x0001546c 0x0000001e Code RO 1945 i.drv_dsi_tx_phy_time_cfg CVWL368.lib(drv_dsi_tx.o) + 0x0001548a 0x0001548a 0x00000008 Code RO 1949 i.drv_dsi_tx_powerup CVWL368.lib(drv_dsi_tx.o) + 0x00015492 0x00015492 0x0000001c Code RO 1950 i.drv_dsi_tx_response_mode CVWL368.lib(drv_dsi_tx.o) + 0x000154ae 0x000154ae 0x00000018 Code RO 1953 i.drv_dsi_tx_set_bta_ack CVWL368.lib(drv_dsi_tx.o) + 0x000154c6 0x000154c6 0x0000000c Code RO 1954 i.drv_dsi_tx_set_esc_div CVWL368.lib(drv_dsi_tx.o) + 0x000154d2 0x000154d2 0x00000002 PAD + 0x000154d4 0x000154d4 0x00000040 Code RO 1955 i.drv_dsi_tx_set_int CVWL368.lib(drv_dsi_tx.o) + 0x00015514 0x00015514 0x00000010 Code RO 1956 i.drv_dsi_tx_set_time_out_div CVWL368.lib(drv_dsi_tx.o) + 0x00015524 0x00015524 0x00000008 Code RO 1957 i.drv_dsi_tx_set_video_chunk CVWL368.lib(drv_dsi_tx.o) + 0x0001552c 0x0001552c 0x00000022 Code RO 1958 i.drv_dsi_tx_set_video_timing CVWL368.lib(drv_dsi_tx.o) + 0x0001554e 0x0001554e 0x00000008 Code RO 1960 i.drv_dsi_tx_shutdown CVWL368.lib(drv_dsi_tx.o) + 0x00015556 0x00015556 0x00000026 Code RO 1961 i.drv_dsi_tx_timeout_cfg CVWL368.lib(drv_dsi_tx.o) + 0x0001557c 0x0001557c 0x000000aa Code RO 1964 i.drv_dsi_tx_video_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015626 0x00015626 0x00000016 Code RO 1965 i.drv_dsi_tx_video_mode_disable_hact_cmd CVWL368.lib(drv_dsi_tx.o) + 0x0001563c 0x0001563c 0x00000018 Code RO 1966 i.drv_dsi_tx_video_mode_set_lp_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00015654 0x00015654 0x0000002e Code RO 2365 i.drv_efuse_enter_inactive CVWL368.lib(drv_efuse.o) + 0x00015682 0x00015682 0x0000000c Code RO 2368 i.drv_efuse_int_enable CVWL368.lib(drv_efuse.o) + 0x0001568e 0x0001568e 0x00000032 Code RO 2369 i.drv_efuse_read CVWL368.lib(drv_efuse.o) + 0x000156c0 0x000156c0 0x00000018 Code RO 2370 i.drv_efuse_read_req CVWL368.lib(drv_efuse.o) + 0x000156d8 0x000156d8 0x00000018 Code RO 1450 i.drv_gpio_get_input_data CVWL368.lib(drv_gpio.o) + 0x000156f0 0x000156f0 0x0000000c Code RO 1452 i.drv_gpio_register_ap_reset_callback CVWL368.lib(drv_gpio.o) + 0x000156fc 0x000156fc 0x00000014 Code RO 1453 i.drv_gpio_register_callback CVWL368.lib(drv_gpio.o) + 0x00015710 0x00015710 0x00000050 Code RO 1455 i.drv_gpio_set_int CVWL368.lib(drv_gpio.o) + 0x00015760 0x00015760 0x00000020 Code RO 1456 i.drv_gpio_set_ioe CVWL368.lib(drv_gpio.o) + 0x00015780 0x00015780 0x00000010 Code RO 1457 i.drv_gpio_set_mode0 CVWL368.lib(drv_gpio.o) + 0x00015790 0x00015790 0x00000010 Code RO 1458 i.drv_gpio_set_mode1 CVWL368.lib(drv_gpio.o) + 0x000157a0 0x000157a0 0x00000010 Code RO 1459 i.drv_gpio_set_mode2 CVWL368.lib(drv_gpio.o) + 0x000157b0 0x000157b0 0x00000010 Code RO 1460 i.drv_gpio_set_mode3 CVWL368.lib(drv_gpio.o) + 0x000157c0 0x000157c0 0x00000020 Code RO 734 i.drv_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x000157e0 0x000157e0 0x00000130 Code RO 1461 i.drv_gpio_set_pull_state CVWL368.lib(drv_gpio.o) + 0x00015910 0x00015910 0x0000000c Code RO 1553 i.drv_i2c0_set_callback CVWL368.lib(drv_i2c_slave.o) + 0x0001591c 0x0001591c 0x0000000c Code RO 1519 i.drv_i2c1_set_callback CVWL368.lib(drv_i2c_master.o) + 0x00015928 0x00015928 0x00000034 Code RO 1493 i.drv_i2c_dma_callback CVWL368.lib(drv_i2c_dma.o) + 0x0001595c 0x0001595c 0x000000ac Code RO 1494 i.drv_i2c_dma_init CVWL368.lib(drv_i2c_dma.o) + 0x00015a08 0x00015a08 0x0000001a Code RO 1495 i.drv_i2c_enable_rx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015a22 0x00015a22 0x00000018 Code RO 1496 i.drv_i2c_enable_tx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015a3a 0x00015a3a 0x00000002 PAD + 0x00015a3c 0x00015a3c 0x00000060 Code RO 1521 i.drv_i2c_m_clear_it_pending_bit CVWL368.lib(drv_i2c_master.o) + 0x00015a9c 0x00015a9c 0x00000010 Code RO 1524 i.drv_i2c_m_enable CVWL368.lib(drv_i2c_master.o) + 0x00015aac 0x00015aac 0x00000038 Code RO 1525 i.drv_i2c_m_enable_intr CVWL368.lib(drv_i2c_master.o) + 0x00015ae4 0x00015ae4 0x0000008c Code RO 1531 i.drv_i2c_master_init CVWL368.lib(drv_i2c_master.o) + 0x00015b70 0x00015b70 0x0000005c Code RO 1497 i.drv_i2c_master_read_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015bcc 0x00015bcc 0x0000003c Code RO 1498 i.drv_i2c_master_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015c08 0x00015c08 0x0000003e Code RO 1499 i.drv_i2c_master_write_read_cmd CVWL368.lib(drv_i2c_dma.o) + 0x00015c46 0x00015c46 0x00000042 Code RO 1554 i.drv_i2c_s_clear_it_pending_bit CVWL368.lib(drv_i2c_slave.o) + 0x00015c88 0x00015c88 0x00000004 Code RO 1555 i.drv_i2c_s_config_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015c8c 0x00015c8c 0x00000008 Code RO 1556 i.drv_i2c_s_enable CVWL368.lib(drv_i2c_slave.o) + 0x00015c94 0x00015c94 0x00000014 Code RO 1557 i.drv_i2c_s_get_fifo_status CVWL368.lib(drv_i2c_slave.o) + 0x00015ca8 0x00015ca8 0x00000050 Code RO 1560 i.drv_i2c_s_set_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015cf8 0x00015cf8 0x0000001c Code RO 1561 i.drv_i2c_s_write_data CVWL368.lib(drv_i2c_slave.o) + 0x00015d14 0x00015d14 0x00000058 Code RO 1500 i.drv_i2c_set_dma_irq_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015d6c 0x00015d6c 0x00000032 Code RO 1562 i.drv_i2c_slave_init CVWL368.lib(drv_i2c_slave.o) + 0x00015d9e 0x00015d9e 0x00000002 PAD + 0x00015da0 0x00015da0 0x00000018 Code RO 1501 i.drv_i2c_slave_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015db8 0x00015db8 0x00000018 Code RO 2033 i.drv_lcdc_config_bypass CVWL368.lib(drv_lcdc.o) + 0x00015dd0 0x00015dd0 0x00000030 Code RO 2034 i.drv_lcdc_config_ccm CVWL368.lib(drv_lcdc.o) + 0x00015e00 0x00015e00 0x00000016 Code RO 2035 i.drv_lcdc_config_disp_mode CVWL368.lib(drv_lcdc.o) + 0x00015e16 0x00015e16 0x00000024 Code RO 2036 i.drv_lcdc_config_dpi_polarity CVWL368.lib(drv_lcdc.o) + 0x00015e3a 0x00015e3a 0x00000026 Code RO 2037 i.drv_lcdc_config_dpi_timing CVWL368.lib(drv_lcdc.o) + 0x00015e60 0x00015e60 0x00000016 Code RO 2038 i.drv_lcdc_config_edpi_mode CVWL368.lib(drv_lcdc.o) + 0x00015e76 0x00015e76 0x00000016 Code RO 2039 i.drv_lcdc_config_endianness CVWL368.lib(drv_lcdc.o) + 0x00015e8c 0x00015e8c 0x0000000c Code RO 2040 i.drv_lcdc_config_input_size CVWL368.lib(drv_lcdc.o) + 0x00015e98 0x00015e98 0x0000001e Code RO 2041 i.drv_lcdc_config_int CVWL368.lib(drv_lcdc.o) + 0x00015eb6 0x00015eb6 0x00000022 Code RO 2042 i.drv_lcdc_config_int_single CVWL368.lib(drv_lcdc.o) + 0x00015ed8 0x00015ed8 0x00000022 Code RO 2043 i.drv_lcdc_config_overwrite CVWL368.lib(drv_lcdc.o) + 0x00015efa 0x00015efa 0x0000000c Code RO 2044 i.drv_lcdc_config_overwrite_rgb CVWL368.lib(drv_lcdc.o) + 0x00015f06 0x00015f06 0x0000001a Code RO 2045 i.drv_lcdc_config_partial_display_area CVWL368.lib(drv_lcdc.o) + 0x00015f20 0x00015f20 0x00000022 Code RO 2046 i.drv_lcdc_config_partial_display_enable CVWL368.lib(drv_lcdc.o) + 0x00015f42 0x00015f42 0x0000001a Code RO 2048 i.drv_lcdc_config_scale_up_coef CVWL368.lib(drv_lcdc.o) + 0x00015f5c 0x00015f5c 0x0000000c Code RO 2049 i.drv_lcdc_config_scale_up_step CVWL368.lib(drv_lcdc.o) + 0x00015f68 0x00015f68 0x0000004c Code RO 2050 i.drv_lcdc_config_src_parameter CVWL368.lib(drv_lcdc.o) + 0x00015fb4 0x00015fb4 0x00000006 Code RO 2051 i.drv_lcdc_config_thresh CVWL368.lib(drv_lcdc.o) + 0x00015fba 0x00015fba 0x00000012 Code RO 2052 i.drv_lcdc_ctrl_flow CVWL368.lib(drv_lcdc.o) + 0x00015fcc 0x00015fcc 0x00000020 Code RO 2054 i.drv_lcdc_enable_shadow_reg CVWL368.lib(drv_lcdc.o) + 0x00015fec 0x00015fec 0x00000040 Code RO 2055 i.drv_lcdc_set_int CVWL368.lib(drv_lcdc.o) + 0x0001602c 0x0001602c 0x00000014 Code RO 2057 i.drv_lcdc_set_video_hw_mode CVWL368.lib(drv_lcdc.o) + 0x00016040 0x00016040 0x00000020 Code RO 2058 i.drv_lcdc_start CVWL368.lib(drv_lcdc.o) + 0x00016060 0x00016060 0x0000000c Code RO 2092 i.drv_memc_clear_status CVWL368.lib(drv_memc.o) + 0x0001606c 0x0001606c 0x00000040 Code RO 2093 i.drv_memc_enable_irq CVWL368.lib(drv_memc.o) + 0x000160ac 0x000160ac 0x0000000c Code RO 2094 i.drv_memc_gen_a_tear_signal CVWL368.lib(drv_memc.o) + 0x000160b8 0x000160b8 0x00000012 Code RO 2095 i.drv_memc_get_status CVWL368.lib(drv_memc.o) + 0x000160ca 0x000160ca 0x00000010 Code RO 2096 i.drv_memc_rate_transfer_sel CVWL368.lib(drv_memc.o) + 0x000160da 0x000160da 0x0000000e Code RO 2097 i.drv_memc_sel_vsync CVWL368.lib(drv_memc.o) + 0x000160e8 0x000160e8 0x00000014 Code RO 2098 i.drv_memc_set_active_height CVWL368.lib(drv_memc.o) + 0x000160fc 0x000160fc 0x0000000c Code RO 2099 i.drv_memc_set_data_mode CVWL368.lib(drv_memc.o) + 0x00016108 0x00016108 0x00000010 Code RO 2102 i.drv_memc_set_double_buffer CVWL368.lib(drv_memc.o) + 0x00016118 0x00016118 0x00000012 Code RO 2103 i.drv_memc_set_double_buffer_reverse CVWL368.lib(drv_memc.o) + 0x0001612a 0x0001612a 0x00000010 Code RO 2105 i.drv_memc_set_fs_en_conditions CVWL368.lib(drv_memc.o) + 0x0001613a 0x0001613a 0x00000014 Code RO 2106 i.drv_memc_set_inten CVWL368.lib(drv_memc.o) + 0x0001614e 0x0001614e 0x00000002 PAD + 0x00016150 0x00016150 0x00000018 Code RO 2107 i.drv_memc_set_lcdc_st_conditions CVWL368.lib(drv_memc.o) + 0x00016168 0x00016168 0x0000001a Code RO 2108 i.drv_memc_set_ltpo_mode CVWL368.lib(drv_memc.o) + 0x00016182 0x00016182 0x0000000e Code RO 2112 i.drv_memc_set_tear_mode CVWL368.lib(drv_memc.o) + 0x00016190 0x00016190 0x00000028 Code RO 2113 i.drv_memc_set_tear_waveform CVWL368.lib(drv_memc.o) + 0x000161b8 0x000161b8 0x0000000e Code RO 2115 i.drv_memc_set_vidc_sync_cnt CVWL368.lib(drv_memc.o) + 0x000161c6 0x000161c6 0x00000002 PAD + 0x000161c8 0x000161c8 0x00000008 Code RO 1579 i.drv_param_init_get_ccm CVWL368.lib(drv_param_init.o) + 0x000161d0 0x000161d0 0x00000014 Code RO 1580 i.drv_param_init_get_scld_filter_h CVWL368.lib(drv_param_init.o) + 0x000161e4 0x000161e4 0x00000014 Code RO 1581 i.drv_param_init_get_scld_filter_v CVWL368.lib(drv_param_init.o) + 0x000161f8 0x000161f8 0x00000008 Code RO 1582 i.drv_param_init_get_sclu_filter CVWL368.lib(drv_param_init.o) + 0x00016200 0x00016200 0x00000014 Code RO 1583 i.drv_param_init_set_ccm CVWL368.lib(drv_param_init.o) + 0x00016214 0x00016214 0x00000024 Code RO 1586 i.drv_param_p2r_filter_init CVWL368.lib(drv_param_init.o) + 0x00016238 0x00016238 0x00000010 Code RO 2386 i.drv_phy_enable_calibration CVWL368.lib(drv_phy_common.o) + 0x00016248 0x00016248 0x0000003c Code RO 2387 i.drv_phy_get_calibration CVWL368.lib(drv_phy_common.o) + 0x00016284 0x00016284 0x00000060 Code RO 2388 i.drv_phy_get_pll_para CVWL368.lib(drv_phy_common.o) + 0x000162e4 0x000162e4 0x00000054 Code RO 2389 i.drv_phy_get_rate_para CVWL368.lib(drv_phy_common.o) + 0x00016338 0x00016338 0x00000010 Code RO 2390 i.drv_phy_test_clear CVWL368.lib(drv_phy_common.o) + 0x00016348 0x00016348 0x00000018 Code RO 2391 i.drv_phy_test_lock CVWL368.lib(drv_phy_common.o) + 0x00016360 0x00016360 0x00000020 Code RO 2393 i.drv_phy_test_write_1_byte CVWL368.lib(drv_phy_common.o) + 0x00016380 0x00016380 0x00000026 Code RO 2394 i.drv_phy_test_write_2_byte CVWL368.lib(drv_phy_common.o) + 0x000163a6 0x000163a6 0x0000001e Code RO 2395 i.drv_phy_test_write_code CVWL368.lib(drv_phy_common.o) + 0x000163c4 0x000163c4 0x00000020 Code RO 2396 i.drv_phy_test_write_data CVWL368.lib(drv_phy_common.o) + 0x000163e4 0x000163e4 0x00000020 Code RO 1602 i.drv_pwr_set_cp_mode CVWL368.lib(drv_pwr.o) + 0x00016404 0x00016404 0x00000018 Code RO 1604 i.drv_pwr_set_pvd_mode CVWL368.lib(drv_pwr.o) + 0x0001641c 0x0001641c 0x00000038 Code RO 1605 i.drv_pwr_set_system_clk_src CVWL368.lib(drv_pwr.o) + 0x00016454 0x00016454 0x0000000c Code RO 1884 i.drv_rx_phy_test_clear CVWL368.lib(drv_dsi_rx.o) + 0x00016460 0x00016460 0x00000010 Code RO 1885 i.drv_rx_phy_test_lock CVWL368.lib(drv_dsi_rx.o) + 0x00016470 0x00016470 0x00000014 Code RO 1887 i.drv_rx_phy_test_write_1_byte CVWL368.lib(drv_dsi_rx.o) + 0x00016484 0x00016484 0x00000016 Code RO 1888 i.drv_rx_phy_test_write_2_byte CVWL368.lib(drv_dsi_rx.o) + 0x0001649a 0x0001649a 0x0000000a Code RO 2151 i.drv_rxbr_clear_pkt_buffer CVWL368.lib(drv_rxbr.o) + 0x000164a4 0x000164a4 0x00000004 Code RO 2152 i.drv_rxbr_clear_status0 CVWL368.lib(drv_rxbr.o) + 0x000164a8 0x000164a8 0x0000005a Code RO 2154 i.drv_rxbr_enable_irq CVWL368.lib(drv_rxbr.o) + 0x00016502 0x00016502 0x00000002 PAD + 0x00016504 0x00016504 0x00000014 Code RO 2155 i.drv_rxbr_frame_drop_cfg CVWL368.lib(drv_rxbr.o) + 0x00016518 0x00016518 0x00000064 Code RO 2156 i.drv_rxbr_get_clk CVWL368.lib(drv_rxbr.o) + 0x0001657c 0x0001657c 0x00000004 Code RO 2157 i.drv_rxbr_get_col_addr CVWL368.lib(drv_rxbr.o) + 0x00016580 0x00016580 0x00000012 Code RO 1764 i.drv_rxbr_get_int_source CVWL368.lib(hal_internal_vsync.o) + 0x00016592 0x00016592 0x00000004 Code RO 2160 i.drv_rxbr_get_page_addr CVWL368.lib(drv_rxbr.o) + 0x00016596 0x00016596 0x00000012 Code RO 1765 i.drv_rxbr_get_status0 CVWL368.lib(hal_internal_vsync.o) + 0x000165a8 0x000165a8 0x0000000c Code RO 2162 i.drv_rxbr_hline_rcv0_cfg CVWL368.lib(drv_rxbr.o) + 0x000165b4 0x000165b4 0x00000008 Code RO 2163 i.drv_rxbr_hline_rcv_cfg CVWL368.lib(drv_rxbr.o) + 0x000165bc 0x000165bc 0x0000000c Code RO 2164 i.drv_rxbr_register_irq0_callback CVWL368.lib(drv_rxbr.o) + 0x000165c8 0x000165c8 0x0000000c Code RO 2165 i.drv_rxbr_register_irq1_callback CVWL368.lib(drv_rxbr.o) + 0x000165d4 0x000165d4 0x00000014 Code RO 2166 i.drv_rxbr_set_ack_pkt_header CVWL368.lib(drv_rxbr.o) + 0x000165e8 0x000165e8 0x000000cc Code RO 2167 i.drv_rxbr_set_cmd_filter CVWL368.lib(drv_rxbr.o) + 0x000166b4 0x000166b4 0x00000014 Code RO 2169 i.drv_rxbr_set_color_format CVWL368.lib(drv_rxbr.o) + 0x000166c8 0x000166c8 0x00000014 Code RO 2171 i.drv_rxbr_set_inten CVWL368.lib(drv_rxbr.o) + 0x000166dc 0x000166dc 0x00000010 Code RO 2172 i.drv_rxbr_set_ltpo_drop_th CVWL368.lib(drv_rxbr.o) + 0x000166ec 0x000166ec 0x00000026 Code RO 2174 i.drv_rxbr_set_usr_cfg CVWL368.lib(drv_rxbr.o) + 0x00016712 0x00016712 0x00000008 Code RO 2175 i.drv_rxbr_set_usr_col CVWL368.lib(drv_rxbr.o) + 0x0001671a 0x0001671a 0x00000008 Code RO 2176 i.drv_rxbr_set_usr_row CVWL368.lib(drv_rxbr.o) + 0x00016722 0x00016722 0x00000002 PAD + 0x00016724 0x00016724 0x00000020 Code RO 1650 i.drv_spi_m_read_data CVWL368.lib(drv_spi_master.o) + 0x00016744 0x00016744 0x0000001c Code RO 1675 i.drv_swire_enable CVWL368.lib(drv_swire.o) + 0x00016760 0x00016760 0x00000054 Code RO 1678 i.drv_swire_set_int CVWL368.lib(drv_swire.o) + 0x000167b4 0x000167b4 0x0000001c Code RO 1679 i.drv_swire_set_power_down CVWL368.lib(drv_swire.o) + 0x000167d0 0x000167d0 0x0000000c Code RO 1694 i.drv_sys_cfg_clear_all_int CVWL368.lib(drv_sys_cfg.o) + 0x000167dc 0x000167dc 0x00000028 Code RO 1695 i.drv_sys_cfg_clear_pending CVWL368.lib(drv_sys_cfg.o) + 0x00016804 0x00016804 0x00000018 Code RO 1698 i.drv_sys_cfg_sel_ap_rst_lvl_trig CVWL368.lib(drv_sys_cfg.o) + 0x0001681c 0x0001681c 0x0000001c Code RO 1699 i.drv_sys_cfg_sel_ap_rst_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016838 0x00016838 0x00000024 Code RO 1700 i.drv_sys_cfg_sel_gpio_group CVWL368.lib(drv_sys_cfg.o) + 0x0001685c 0x0001685c 0x00000024 Code RO 1701 i.drv_sys_cfg_sel_int_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016880 0x00016880 0x00000010 Code RO 1703 i.drv_sys_cfg_set_dma_rx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016890 0x00016890 0x00000010 Code RO 1704 i.drv_sys_cfg_set_dma_tx_req CVWL368.lib(drv_sys_cfg.o) + 0x000168a0 0x000168a0 0x00000024 Code RO 1705 i.drv_sys_cfg_set_int CVWL368.lib(drv_sys_cfg.o) + 0x000168c4 0x000168c4 0x0000001a Code RO 1728 i.drv_timer_clear_status_flags CVWL368.lib(drv_timer.o) + 0x000168de 0x000168de 0x00000020 Code RO 1729 i.drv_timer_enable CVWL368.lib(drv_timer.o) + 0x000168fe 0x000168fe 0x00000002 PAD + 0x00016900 0x00016900 0x00000010 Code RO 1730 i.drv_timer_get_instance CVWL368.lib(drv_timer.o) + 0x00016910 0x00016910 0x00000010 Code RO 1731 i.drv_timer_get_prescaler CVWL368.lib(drv_timer.o) + 0x00016920 0x00016920 0x00000044 Code RO 1733 i.drv_timer_handle_interrupt CVWL368.lib(drv_timer.o) + 0x00016964 0x00016964 0x00000014 Code RO 1734 i.drv_timer_register_callback CVWL368.lib(drv_timer.o) + 0x00016978 0x00016978 0x00000010 Code RO 1735 i.drv_timer_set_compare_val CVWL368.lib(drv_timer.o) + 0x00016988 0x00016988 0x00000054 Code RO 1736 i.drv_timer_set_int CVWL368.lib(drv_timer.o) + 0x000169dc 0x000169dc 0x00000028 Code RO 1737 i.drv_timer_set_prescaler CVWL368.lib(drv_timer.o) + 0x00016a04 0x00016a04 0x00000010 Code RO 1738 i.drv_timer_set_repeat CVWL368.lib(drv_timer.o) + 0x00016a14 0x00016a14 0x0000000a Code RO 1967 i.drv_tx_phy_test_clear CVWL368.lib(drv_dsi_tx.o) + 0x00016a1e 0x00016a1e 0x0000001c Code RO 1968 i.drv_tx_phy_test_enter CVWL368.lib(drv_dsi_tx.o) + 0x00016a3a 0x00016a3a 0x0000001c Code RO 1969 i.drv_tx_phy_test_exit CVWL368.lib(drv_dsi_tx.o) + 0x00016a56 0x00016a56 0x00000012 Code RO 1971 i.drv_tx_phy_test_write_1_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016a68 0x00016a68 0x00000014 Code RO 1972 i.drv_tx_phy_test_write_2_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016a7c 0x00016a7c 0x00000010 Code RO 1973 i.drv_tx_phy_test_write_code CVWL368.lib(drv_dsi_tx.o) + 0x00016a8c 0x00016a8c 0x00000008 Code RO 2215 i.drv_vidc_clear_irq CVWL368.lib(drv_vidc.o) + 0x00016a94 0x00016a94 0x00000018 Code RO 2219 i.drv_vidc_enable CVWL368.lib(drv_vidc.o) + 0x00016aac 0x00016aac 0x00000040 Code RO 2220 i.drv_vidc_enable_irq CVWL368.lib(drv_vidc.o) + 0x00016aec 0x00016aec 0x00000012 Code RO 2222 i.drv_vidc_get_irq_status CVWL368.lib(drv_vidc.o) + 0x00016afe 0x00016afe 0x00000002 PAD + 0x00016b00 0x00016b00 0x00000028 Code RO 2226 i.drv_vidc_init_module_enable CVWL368.lib(drv_vidc.o) + 0x00016b28 0x00016b28 0x0000000c Code RO 2227 i.drv_vidc_register_callback CVWL368.lib(drv_vidc.o) + 0x00016b34 0x00016b34 0x00000006 Code RO 2228 i.drv_vidc_reset CVWL368.lib(drv_vidc.o) + 0x00016b3a 0x00016b3a 0x0000003c Code RO 2230 i.drv_vidc_set_dst_parameter CVWL368.lib(drv_vidc.o) + 0x00016b76 0x00016b76 0x00000014 Code RO 2234 i.drv_vidc_set_irqen CVWL368.lib(drv_vidc.o) + 0x00016b8a 0x00016b8a 0x00000010 Code RO 2235 i.drv_vidc_set_mirror CVWL368.lib(drv_vidc.o) + 0x00016b9a 0x00016b9a 0x00000008 Code RO 2238 i.drv_vidc_set_p2r_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016ba2 0x00016ba2 0x00000026 Code RO 2239 i.drv_vidc_set_p2r_hinitb CVWL368.lib(drv_vidc.o) + 0x00016bc8 0x00016bc8 0x00000026 Code RO 2240 i.drv_vidc_set_p2r_hinitr CVWL368.lib(drv_vidc.o) + 0x00016bee 0x00016bee 0x00000002 PAD + 0x00016bf0 0x00016bf0 0x00000018 Code RO 2241 i.drv_vidc_set_pentile_swap CVWL368.lib(drv_vidc.o) + 0x00016c08 0x00016c08 0x0000000a Code RO 2242 i.drv_vidc_set_pu_ctrl CVWL368.lib(drv_vidc.o) + 0x00016c12 0x00016c12 0x00000010 Code RO 2243 i.drv_vidc_set_rotation CVWL368.lib(drv_vidc.o) + 0x00016c22 0x00016c22 0x0000000a Code RO 2244 i.drv_vidc_set_scld_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016c2c 0x00016c2c 0x0000000a Code RO 2245 i.drv_vidc_set_scld_hcoef1 CVWL368.lib(drv_vidc.o) + 0x00016c36 0x00016c36 0x00000012 Code RO 2246 i.drv_vidc_set_scld_step CVWL368.lib(drv_vidc.o) + 0x00016c48 0x00016c48 0x0000000a Code RO 2247 i.drv_vidc_set_scld_vcoef0 CVWL368.lib(drv_vidc.o) + 0x00016c52 0x00016c52 0x0000000a Code RO 2248 i.drv_vidc_set_scld_vcoef1 CVWL368.lib(drv_vidc.o) + 0x00016c5c 0x00016c5c 0x00000016 Code RO 2249 i.drv_vidc_set_src_parameter CVWL368.lib(drv_vidc.o) + 0x00016c72 0x00016c72 0x00000002 PAD + 0x00016c74 0x00016c74 0x00000010 Code RO 2664 i.drv_wdg_clear_counter CVWL368.lib(drv_wdg.o) + 0x00016c84 0x00016c84 0x00000010 Code RO 2665 i.drv_wdg_clear_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016c94 0x00016c94 0x00000010 Code RO 2668 i.drv_wdg_read_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016ca4 0x00016ca4 0x00000040 Code RO 2671 i.drv_wdg_set_int CVWL368.lib(drv_wdg.o) + 0x00016ce4 0x00016ce4 0x0000000a Code RO 1362 i.fls_clr_interrupt_flag CVWL368.lib(drv_fls.o) + 0x00016cee 0x00016cee 0x00000014 Code RO 943 i.fputc CVWL368.lib(tau_log.o) + 0x00016d02 0x00016d02 0x00000002 PAD + 0x00016d04 0x00016d04 0x00000034 Code RO 537 i.hal_dsi_rx_ctrl_create_handle CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016d38 0x00016d38 0x0000009c Code RO 539 i.hal_dsi_rx_ctrl_deinit CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016dd4 0x00016dd4 0x00000084 Code RO 541 i.hal_dsi_rx_ctrl_dsc_async_handler CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e58 0x00016e58 0x00000028 Code RO 543 i.hal_dsi_rx_ctrl_gen_a_tear_signal CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e80 0x00016e80 0x00000028 Code RO 545 i.hal_dsi_rx_ctrl_get_max_ret_size CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016ea8 0x00016ea8 0x00000060 Code RO 547 i.hal_dsi_rx_ctrl_init CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016f08 0x00016f08 0x000001a4 Code RO 548 i.hal_dsi_rx_ctrl_init_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000170ac 0x000170ac 0x000000d8 Code RO 549 i.hal_dsi_rx_ctrl_init_dsi_rx CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017184 0x00017184 0x00000158 Code RO 550 i.hal_dsi_rx_ctrl_init_memc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000172dc 0x000172dc 0x00000148 Code RO 551 i.hal_dsi_rx_ctrl_init_rxbr CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017424 0x00017424 0x0000022c Code RO 552 i.hal_dsi_rx_ctrl_init_vidc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017650 0x00017650 0x000000f0 Code RO 556 i.hal_dsi_rx_ctrl_send_ack_cmd CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017740 0x00017740 0x00000034 Code RO 560 i.hal_dsi_rx_ctrl_set_cus_sync_line CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017774 0x00017774 0x00000034 Code RO 563 i.hal_dsi_rx_ctrl_set_hw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000177a8 0x000177a8 0x00000038 Code RO 564 i.hal_dsi_rx_ctrl_set_ipi_cfg CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000177e0 0x000177e0 0x00000072 Code RO 569 i.hal_dsi_rx_ctrl_set_rxbr_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017852 0x00017852 0x00000002 PAD + 0x00017854 0x00017854 0x00000034 Code RO 570 i.hal_dsi_rx_ctrl_set_sw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017888 0x00017888 0x0000003c Code RO 573 i.hal_dsi_rx_ctrl_start CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000178c4 0x000178c4 0x0000003c Code RO 574 i.hal_dsi_rx_ctrl_stop CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017900 0x00017900 0x00000020 Code RO 576 i.hal_dsi_rx_ctrl_toggle_resolution CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017920 0x00017920 0x00000190 Code RO 630 i.hal_dsi_tx_calc_video_chunks CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ab0 0x00017ab0 0x00000034 Code RO 631 i.hal_dsi_tx_config_params_for_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ae4 0x00017ae4 0x00000450 Code RO 632 i.hal_dsi_tx_count_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017f34 0x00017f34 0x00000094 Code RO 633 i.hal_dsi_tx_crop_pic CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017fc8 0x00017fc8 0x0000002c Code RO 635 i.hal_dsi_tx_ctrl_create_handle CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ff4 0x00017ff4 0x00000084 Code RO 636 i.hal_dsi_tx_ctrl_deinit CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018078 0x00018078 0x0000004c Code RO 640 i.hal_dsi_tx_ctrl_enter_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180c4 0x000180c4 0x00000028 Code RO 642 i.hal_dsi_tx_ctrl_exit_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180ec 0x000180ec 0x000000a4 Code RO 644 i.hal_dsi_tx_ctrl_init CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018190 0x00018190 0x00000024 Code RO 645 i.hal_dsi_tx_ctrl_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181b4 0x000181b4 0x0000000c Code RO 646 i.hal_dsi_tx_ctrl_panel_reset_pin CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181c0 0x000181c0 0x00000020 Code RO 649 i.hal_dsi_tx_ctrl_set_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181e0 0x000181e0 0x00000014 Code RO 655 i.hal_dsi_tx_ctrl_set_overwrite_rgb CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181f4 0x000181f4 0x00000010 Code RO 656 i.hal_dsi_tx_ctrl_set_partial_disp CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018204 0x00018204 0x00000024 Code RO 657 i.hal_dsi_tx_ctrl_set_partial_disp_area CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018228 0x00018228 0x0000009c Code RO 660 i.hal_dsi_tx_ctrl_start CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000182c4 0x000182c4 0x00000044 Code RO 661 i.hal_dsi_tx_ctrl_stop CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018308 0x00018308 0x000000d8 Code RO 662 i.hal_dsi_tx_ctrl_write_array_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000183e0 0x000183e0 0x000000b0 Code RO 663 i.hal_dsi_tx_ctrl_write_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018490 0x00018490 0x00000044 Code RO 664 i.hal_dsi_tx_init_data_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184d4 0x000184d4 0x00000030 Code RO 665 i.hal_dsi_tx_init_dpi_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018504 0x00018504 0x00000020 Code RO 666 i.hal_dsi_tx_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018524 0x00018524 0x00000020 Code RO 667 i.hal_dsi_tx_init_phy_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018544 0x00018544 0x00000094 Code RO 668 i.hal_dsi_tx_init_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000185d8 0x000185d8 0x00000058 Code RO 669 i.hal_dsi_tx_init_video_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018630 0x00018630 0x00000044 Code RO 670 i.hal_dsi_tx_send_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018674 0x00018674 0x00000018 Code RO 735 i.hal_gpio_ctrl_eint CVWL368.lib(hal_gpio.o) + 0x0001868c 0x0001868c 0x00000012 Code RO 736 i.hal_gpio_get_input_data CVWL368.lib(hal_gpio.o) + 0x0001869e 0x0001869e 0x00000002 PAD + 0x000186a0 0x000186a0 0x00000040 Code RO 739 i.hal_gpio_init_eint CVWL368.lib(hal_gpio.o) + 0x000186e0 0x000186e0 0x00000020 Code RO 740 i.hal_gpio_init_input CVWL368.lib(hal_gpio.o) + 0x00018700 0x00018700 0x00000028 Code RO 741 i.hal_gpio_init_output CVWL368.lib(hal_gpio.o) + 0x00018728 0x00018728 0x00000018 Code RO 742 i.hal_gpio_reg_eint_cb CVWL368.lib(hal_gpio.o) + 0x00018740 0x00018740 0x00000050 Code RO 743 i.hal_gpio_set_ap_reset_int CVWL368.lib(hal_gpio.o) + 0x00018790 0x00018790 0x00000060 Code RO 745 i.hal_gpio_set_mode CVWL368.lib(hal_gpio.o) + 0x000187f0 0x000187f0 0x00000008 Code RO 746 i.hal_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x000187f8 0x000187f8 0x00000020 Code RO 748 i.hal_gpio_set_pull_state CVWL368.lib(hal_gpio.o) + 0x00018818 0x00018818 0x0000006c Code RO 774 i.hal_i2c_m_dma_init CVWL368.lib(hal_i2c_master.o) + 0x00018884 0x00018884 0x00000020 Code RO 775 i.hal_i2c_m_dma_read CVWL368.lib(hal_i2c_master.o) + 0x000188a4 0x000188a4 0x0000001c Code RO 776 i.hal_i2c_m_dma_write CVWL368.lib(hal_i2c_master.o) + 0x000188c0 0x000188c0 0x0000000c Code RO 778 i.hal_i2c_m_transfer_complate CVWL368.lib(hal_i2c_master.o) + 0x000188cc 0x000188cc 0x00000020 Code RO 779 i.hal_i2c_master_irq_callback CVWL368.lib(hal_i2c_master.o) + 0x000188ec 0x000188ec 0x00000010 Code RO 793 i.hal_i2c_s_dma_user_callback CVWL368.lib(hal_i2c_slave.o) + 0x000188fc 0x000188fc 0x0000004c Code RO 794 i.hal_i2c_s_dma_write CVWL368.lib(hal_i2c_slave.o) + 0x00018948 0x00018948 0x000000c8 Code RO 796 i.hal_i2c_s_init CVWL368.lib(hal_i2c_slave.o) + 0x00018a10 0x00018a10 0x00000014 Code RO 797 i.hal_i2c_s_nonblocking_read CVWL368.lib(hal_i2c_slave.o) + 0x00018a24 0x00018a24 0x0000000c Code RO 805 i.hal_i2c_s_set_transfer CVWL368.lib(hal_i2c_slave.o) + 0x00018a30 0x00018a30 0x00000174 Code RO 808 i.hal_i2c_slave_irq_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018ba4 0x00018ba4 0x000000fc Code RO 1766 i.hal_internal_init_memc CVWL368.lib(hal_internal_vsync.o) + 0x00018ca0 0x00018ca0 0x00000010 Code RO 1768 i.hal_internal_sync_get_fb_setting CVWL368.lib(hal_internal_vsync.o) + 0x00018cb0 0x00018cb0 0x00000010 Code RO 1769 i.hal_internal_sync_get_hight_performan_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018cc0 0x00018cc0 0x0000022c Code RO 1770 i.hal_internal_sync_input_resolution_change CVWL368.lib(hal_internal_vsync.o) + 0x00018eec 0x00018eec 0x00000010 Code RO 1773 i.hal_internal_update_dpi_param CVWL368.lib(hal_internal_vsync.o) + 0x00018efc 0x00018efc 0x0000010c Code RO 1774 i.hal_internal_video_mode_auto_sync CVWL368.lib(hal_internal_vsync.o) + 0x00019008 0x00019008 0x00000028 Code RO 1775 i.hal_internal_vsync_deinit CVWL368.lib(hal_internal_vsync.o) + 0x00019030 0x00019030 0x0000000c Code RO 1776 i.hal_internal_vsync_get_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x0001903c 0x0001903c 0x00000018 Code RO 1777 i.hal_internal_vsync_get_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00019054 0x00019054 0x0000000c Code RO 1778 i.hal_internal_vsync_get_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00019060 0x00019060 0x0000000c Code RO 1779 i.hal_internal_vsync_get_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x0001906c 0x0001906c 0x00000118 Code RO 1780 i.hal_internal_vsync_init_rx CVWL368.lib(hal_internal_vsync.o) + 0x00019184 0x00019184 0x000000b0 Code RO 1781 i.hal_internal_vsync_init_tx CVWL368.lib(hal_internal_vsync.o) + 0x00019234 0x00019234 0x0000011c Code RO 1782 i.hal_internal_vsync_set_auto_hw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00019350 0x00019350 0x00000014 Code RO 1784 i.hal_internal_vsync_set_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019364 0x00019364 0x00000024 Code RO 1785 i.hal_internal_vsync_set_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00019388 0x00019388 0x00000050 Code RO 1786 i.hal_internal_vsync_set_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x000193d8 0x000193d8 0x00000080 Code RO 1787 i.hal_internal_vsync_set_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019458 0x00019458 0x00000030 Code RO 1789 i.hal_internal_vsync_update_lcdc_addr CVWL368.lib(hal_internal_vsync.o) + 0x00019488 0x00019488 0x00000024 Code RO 671 i.hal_lcdc_config_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000194ac 0x000194ac 0x00000058 Code RO 672 i.hal_lcdc_config_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019504 0x00019504 0x00000014 Code RO 673 i.hal_lcdc_config_rgb_to_pentile CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019518 0x00019518 0x00000164 Code RO 674 i.hal_lcdc_config_upscaler CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001967c 0x0001967c 0x00000040 Code RO 675 i.hal_lcdc_init_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000196bc 0x000196bc 0x000001b0 Code RO 676 i.hal_lcdc_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001986c 0x0001986c 0x00000040 Code RO 677 i.hal_lcdc_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000198ac 0x000198ac 0x0000000e Code RO 833 i.hal_spi_m_clear_rxfifo CVWL368.lib(hal_spi_master.o) + 0x000198ba 0x000198ba 0x00000012 Code RO 857 i.hal_swire_deinit CVWL368.lib(hal_swire.o) + 0x000198cc 0x000198cc 0x00000016 Code RO 859 i.hal_swire_open CVWL368.lib(hal_swire.o) + 0x000198e2 0x000198e2 0x00000008 Code RO 874 i.hal_system_enable_systick CVWL368.lib(hal_system.o) + 0x000198ea 0x000198ea 0x00000002 PAD + 0x000198ec 0x000198ec 0x00000088 Code RO 882 i.hal_system_init CVWL368.lib(hal_system.o) + 0x00019974 0x00019974 0x0000001c Code RO 883 i.hal_system_init_console CVWL368.lib(hal_system.o) + 0x00019990 0x00019990 0x00000008 Code RO 886 i.hal_system_set_phy_calibration CVWL368.lib(hal_system.o) + 0x00019998 0x00019998 0x00000008 Code RO 887 i.hal_system_set_pvd CVWL368.lib(hal_system.o) + 0x000199a0 0x000199a0 0x00000008 Code RO 888 i.hal_system_set_vcc CVWL368.lib(hal_system.o) + 0x000199a8 0x000199a8 0x0000002e Code RO 915 i.hal_timer_deinit CVWL368.lib(hal_timer.o) + 0x000199d6 0x000199d6 0x0000001a Code RO 917 i.hal_timer_init CVWL368.lib(hal_timer.o) + 0x000199f0 0x000199f0 0x00000048 Code RO 919 i.hal_timer_start CVWL368.lib(hal_timer.o) + 0x00019a38 0x00019a38 0x00000028 Code RO 921 i.hal_timer_stop CVWL368.lib(hal_timer.o) + 0x00019a60 0x00019a60 0x0000008c Code RO 1087 i.hal_uart_init CVWL368.lib(hal_uart.o) + 0x00019aec 0x00019aec 0x00000010 Code RO 1090 i.hal_uart_transmit_blocking CVWL368.lib(hal_uart.o) + 0x00019afc 0x00019afc 0x00000110 Code RO 2325 i.handle_init CVWL368.lib(irq_redirect .o) + 0x00019c0c 0x00019c0c 0x00000074 Code RO 98 i.init_mipi_tx ap_demo.o + 0x00019c80 0x00019c80 0x00000100 Code RO 99 i.init_panel ap_demo.o + 0x00019d80 0x00019d80 0x0000000a Code RO 3 i.main main.o + 0x00019d8a 0x00019d8a 0x00000002 PAD + 0x00019d8c 0x00019d8c 0x00000084 Code RO 100 i.open_mipi_rx ap_demo.o + 0x00019e10 0x00019e10 0x0000007c Code RO 101 i.pps_update_handle ap_demo.o + 0x00019e8c 0x00019e8c 0x000003f4 Code RO 1791 i.rx_get_dcs_packet_data CVWL368.lib(hal_internal_vsync.o) + 0x0001a280 0x0001a280 0x00000178 Code RO 1792 i.rx_partial_update CVWL368.lib(hal_internal_vsync.o) + 0x0001a3f8 0x0001a3f8 0x0000008c Code RO 1793 i.rx_receive_packet CVWL368.lib(hal_internal_vsync.o) + 0x0001a484 0x0001a484 0x00000180 Code RO 1794 i.rx_receive_pps CVWL368.lib(hal_internal_vsync.o) + 0x0001a604 0x0001a604 0x000000a4 Code RO 1795 i.rxbr_irq0_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a6a8 0x0001a6a8 0x000001d4 Code RO 1796 i.rxbr_irq1_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a87c 0x0001a87c 0x000000c4 Code RO 1797 i.soft_gen_te CVWL368.lib(hal_internal_vsync.o) + 0x0001a940 0x0001a940 0x000000c0 Code RO 1798 i.soft_gen_te_double_buffer CVWL368.lib(hal_internal_vsync.o) + 0x0001aa00 0x0001aa00 0x0000002c Code RO 102 i.soft_te_timer_cb ap_demo.o + 0x0001aa2c 0x0001aa2c 0x00000040 Code RO 103 i.soft_timer3_cb ap_demo.o + 0x0001aa6c 0x0001aa6c 0x00000048 Code RO 2691 i.sqrt m_ps.l(sqrt.o) + 0x0001aab4 0x0001aab4 0x00000070 Code RO 104 i.tp_heartbeat_exec ap_demo.o + 0x0001ab24 0x0001ab24 0x00000108 Code RO 1799 i.vidc_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001ac2c 0x0001ac2c 0x000000d0 Code RO 1800 i.vpre_err_reset CVWL368.lib(hal_internal_vsync.o) + 0x0001acfc 0x0001acfc 0x000001cc Code RO 1801 i.vsync_set_te_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001aec8 0x0001aec8 0x000024b2 Data RO 105 .constdata ap_demo.o + 0x0001d37a 0x0001d37a 0x00000020 Data RO 420 .constdata app_tp_st_touch.o + 0x0001d39a 0x0001d39a 0x00000002 PAD + 0x0001d39c 0x0001d39c 0x00000024 Data RO 679 .constdata CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001d3c0 0x0001d3c0 0x000000d2 Data RO 751 .constdata CVWL368.lib(hal_gpio.o) + 0x0001d492 0x0001d492 0x00000002 PAD + 0x0001d494 0x0001d494 0x00000020 Data RO 809 .constdata CVWL368.lib(hal_i2c_slave.o) + 0x0001d4b4 0x0001d4b4 0x00000d59 Data RO 957 .constdata ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0001e20d 0x0001e20d 0x00000001 Data RO 963 .constdata ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0001e20e 0x0001e20e 0x00000002 PAD + 0x0001e210 0x0001e210 0x00000008 Data RO 1587 .constdata CVWL368.lib(drv_param_init.o) + 0x0001e218 0x0001e218 0x00000186 Data RO 2397 .constdata CVWL368.lib(drv_phy_common.o) + 0x0001e39e 0x0001e39e 0x00000002 PAD + 0x0001e3a0 0x0001e3a0 0x0000004c Data RO 106 .conststring ap_demo.o + 0x0001e3ec 0x0001e3ec 0x00000048 Data RO 579 .conststring CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001e434 0x0001e434 0x00000043 Data RO 680 .conststring CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001e477 0x0001e477 0x00000001 PAD + 0x0001e478 0x0001e478 0x00000134 Data RO 1803 .conststring CVWL368.lib(hal_internal_vsync.o) + 0x0001e5ac 0x0001e5ac 0x00000030 Data RO 3053 Region$$Table anon$$obj.o + + + Execution Region RW_RAM1 (Exec base: 0x00070000, Load base: 0x0001e5dc, Size: 0x00000000, Max: 0x000000f0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM2 (Exec base: 0x00070100, Load base: 0x0001e5dc, Size: 0x000000c0, Max: 0x000000d0, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00070100 - 0x000000c0 Zero RW 2326 .ARM.__AT_0x00070100 CVWL368.lib(irq_redirect .o) + + + Execution Region RW_RAM3 (Exec base: 0x000701d0, Load base: 0x0001e5dc, Size: 0x00003748, Max: 0x00007e30, ABSOLUTE, COMPRESSED[0x000003e8]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x000701d0 COMPRESSED 0x00000028 Data RW 107 .data ap_demo.o + 0x000701f8 COMPRESSED 0x0000002e Data RW 271 .data app_tp_transfer.o + 0x00070226 COMPRESSED 0x00000028 Data RW 421 .data app_tp_st_touch.o + 0x0007024e COMPRESSED 0x00000002 PAD + 0x00070250 COMPRESSED 0x00000008 Data RW 580 .data CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070258 COMPRESSED 0x00000003 Data RW 681 .data CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0007025b COMPRESSED 0x00000001 Data RW 780 .data CVWL368.lib(hal_i2c_master.o) + 0x0007025c COMPRESSED 0x00000020 Data RW 810 .data CVWL368.lib(hal_i2c_slave.o) + 0x0007027c COMPRESSED 0x000000e8 Data RW 964 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070364 COMPRESSED 0x00000001 Data RW 967 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070365 COMPRESSED 0x00000001 Data RW 968 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070366 COMPRESSED 0x00000001 Data RW 973 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x00070367 COMPRESSED 0x00000003 Data RW 974 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0007036a COMPRESSED 0x00000005 Data RW 975 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x0007036f COMPRESSED 0x00000001 PAD + 0x00070370 COMPRESSED 0x00000030 Data RW 987 .data ISP368_N10Lite_CSOT667_TP.lib(app_tp_for_custom_s8.o) + 0x000703a0 COMPRESSED 0x00000012 Data RW 1144 .data CVWL368.lib(norflash.o) + 0x000703b2 COMPRESSED 0x00000002 PAD + 0x000703b4 COMPRESSED 0x0000000c Data RW 1198 .data CVWL368.lib(drv_common.o) + 0x000703c0 COMPRESSED 0x00000004 Data RW 1465 .data CVWL368.lib(drv_gpio.o) + 0x000703c4 COMPRESSED 0x00000008 Data RW 1503 .data CVWL368.lib(drv_i2c_dma.o) + 0x000703cc COMPRESSED 0x00000004 Data RW 1532 .data CVWL368.lib(drv_i2c_master.o) + 0x000703d0 COMPRESSED 0x00000004 Data RW 1563 .data CVWL368.lib(drv_i2c_slave.o) + 0x000703d4 COMPRESSED 0x000004a4 Data RW 1588 .data CVWL368.lib(drv_param_init.o) + 0x00070878 COMPRESSED 0x00000004 Data RW 1655 .data CVWL368.lib(drv_spi_master.o) + 0x0007087c COMPRESSED 0x00000008 Data RW 1681 .data CVWL368.lib(drv_swire.o) + 0x00070884 COMPRESSED 0x00000001 Data RW 1706 .data CVWL368.lib(drv_sys_cfg.o) + 0x00070885 COMPRESSED 0x00000003 PAD + 0x00070888 COMPRESSED 0x00000050 Data RW 1739 .data CVWL368.lib(drv_timer.o) + 0x000708d8 COMPRESSED 0x0000000c Data RW 1804 .data CVWL368.lib(hal_internal_vsync.o) + 0x000708e4 COMPRESSED 0x00000008 Data RW 2178 .data CVWL368.lib(drv_rxbr.o) + 0x000708ec COMPRESSED 0x00000004 Data RW 2251 .data CVWL368.lib(drv_vidc.o) + 0x000708f0 COMPRESSED 0x00000001 Data RW 2398 .data CVWL368.lib(drv_phy_common.o) + 0x000708f1 COMPRESSED 0x00000003 PAD + 0x000708f4 COMPRESSED 0x0000000c Data RW 2418 .data CVWL368.lib(drv_chip_info.o) + 0x00070900 COMPRESSED 0x0000000c Data RW 2528 .data CVWL368.lib(drv_pwm.o) + 0x0007090c COMPRESSED 0x00000008 Data RW 2606 .data CVWL368.lib(drv_uart.o) + 0x00070914 COMPRESSED 0x0000000c Data RW 2673 .data CVWL368.lib(drv_wdg.o) + 0x00070920 COMPRESSED 0x00000004 Data RW 3022 .data mc_p.l(stdout.o) + 0x00070924 COMPRESSED 0x00000004 Data RW 3034 .data mc_p.l(errno.o) + 0x00070928 - 0x00000190 Zero RW 270 .bss app_tp_transfer.o + 0x00070ab8 - 0x0000000c Zero RW 419 .bss app_tp_st_touch.o + 0x00070ac4 - 0x000000c4 Zero RW 578 .bss CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070b88 - 0x0000004c Zero RW 678 .bss CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070bd4 - 0x00000100 Zero RW 944 .bss CVWL368.lib(tau_log.o) + 0x00070cd4 - 0x000000d0 Zero RW 1092 .bss CVWL368.lib(hal_uart.o) + 0x00070da4 - 0x0000001c Zero RW 1327 .bss CVWL368.lib(drv_dma.o) + 0x00070dc0 - 0x00000040 Zero RW 1464 .bss CVWL368.lib(drv_gpio.o) + 0x00070e00 - 0x00000140 Zero RW 1502 .bss CVWL368.lib(drv_i2c_dma.o) + 0x00070f40 - 0x00000984 Zero RW 1802 .bss CVWL368.lib(hal_internal_vsync.o) + 0x000718c4 - 0x00001030 Zero RW 1855 .bss CVWL368.lib(dcs_packet_fifo.o) + 0x000728f4 - 0x00000020 Zero RW 2462 .bss CVWL368.lib(hal_spi_slave.o) + 0x00072914 COMPRESSED 0x00000004 PAD + 0x00072918 - 0x00001000 Zero RW 526 STACK startup_armcm0.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 2878 736 9470 40 0 37326 ap_demo.o + 1092 238 32 40 12 10544 app_tp_st_touch.o + 1060 114 0 46 400 14013 app_tp_transfer.o + 36 6 0 0 0 597 board.o + 10 0 0 0 0 7371 main.o + 120 18 192 0 4096 2156 startup_armcm0.o + + ---------------------------------------------------------------------- + 5200 1112 9744 128 4508 72007 Object Totals + 0 0 48 0 0 0 (incl. Generated) + 4 0 2 2 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 216 32 0 0 4144 252 dcs_packet_fifo.o + 272 96 0 12 0 256 drv_chip_info.o + 192 82 24 12 0 264 drv_common.o + 420 90 0 0 0 1200 drv_crgu.o + 410 28 0 0 28 796 drv_dma.o + 232 28 0 0 0 340 drv_dsc_dec.o + 1644 494 0 0 0 1336 drv_dsi_rx.o + 1528 118 0 0 0 2428 drv_dsi_tx.o + 132 0 0 0 0 256 drv_efuse.o + 10 0 0 0 0 60 drv_fls.o + 796 112 0 4 64 1236 drv_gpio.o + 600 82 0 8 320 624 drv_i2c_dma.o + 360 86 0 4 0 456 drv_i2c_master.o + 292 36 0 4 0 580 drv_i2c_slave.o + 680 6 0 0 0 1444 drv_lcdc.o + 492 28 0 0 0 1112 drv_memc.o + 112 36 8 1188 0 376 drv_param_init.o + 428 30 390 1 0 664 drv_phy_common.o + 72 10 0 12 0 76 drv_pwm.o + 112 24 0 0 0 180 drv_pwr.o + 722 84 0 8 0 1456 drv_rxbr.o + 104 24 0 4 0 188 drv_spi_master.o + 172 20 0 8 0 260 drv_swire.o + 300 64 0 1 0 628 drv_sys_cfg.o + 374 34 0 80 0 932 drv_timer.o + 698 18 0 8 0 680 drv_uart.o + 510 28 0 4 0 1452 drv_vidc.o + 168 22 0 12 0 316 drv_wdg.o + 3124 310 72 8 196 1528 hal_dsi_rx_ctrl.o + 4472 306 103 3 76 2492 hal_dsi_tx_ctrl.o + 450 48 210 0 0 752 hal_gpio.o + 212 40 0 1 0 340 hal_i2c_master.o + 696 72 32 32 0 408 hal_i2c_slave.o + 8080 1712 308 12 2436 2676 hal_internal_vsync.o + 14 0 0 0 0 68 hal_spi_master.o + 580 32 0 0 32 136 hal_spi_slave.o + 40 0 0 0 0 136 hal_swire.o + 196 32 0 0 0 408 hal_system.o + 184 6 0 0 0 276 hal_timer.o + 156 18 0 0 208 144 hal_uart.o + 1076 324 0 0 192 1980 irq_redirect .o + 48 10 0 18 0 68 norflash.o + 58 0 0 0 0 128 tau_delay.o + 60 10 0 0 256 156 tau_log.o + 2408 88 3418 291 0 18528 app_tp_for_custom_s8.o + 200 20 0 0 0 76 ceil.o + 72 6 0 0 0 76 sqrt.o + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 12 6 0 4 0 60 errno.o + 30 0 0 0 0 0 handlers.o + 40 0 0 0 0 72 idiv.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 32 0 0 0 0 68 llshl.o + 38 0 0 0 0 68 llsshr.o + 34 0 0 0 0 68 llushr.o + 36 0 0 0 0 60 memcpya.o + 36 0 0 0 0 100 memseta.o + 2298 104 0 0 0 544 printfa.o + 0 0 0 4 0 0 stdout.o + 44 0 0 0 0 72 uidiv.o + 96 0 0 0 0 84 uldiv.o + 40 2 0 0 0 68 cdcmple.o + 40 2 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfrcmple.o + 356 4 0 0 0 140 dadd.o + 240 6 0 0 0 84 ddiv.o + 236 0 0 0 0 216 depilogue.o + 72 10 0 0 0 72 dfixi.o + 60 10 0 0 0 68 dfixui.o + 64 10 0 0 0 68 dfixul.o + 28 4 0 0 0 68 dfltui.o + 208 6 0 0 0 88 dmul.o + 162 0 0 0 0 80 dsqrt.o + 40 0 0 0 0 60 f2d.o + 178 0 0 0 0 108 fadd.o + 124 0 0 0 0 72 fdiv.o + 130 0 0 0 0 144 fepilogue.o + 50 0 0 0 0 60 ffixi.o + 40 0 0 0 0 60 ffixui.o + 22 0 0 0 0 68 fflti.o + 14 0 0 0 0 68 ffltui.o + 122 0 0 0 0 72 fmul.o + 24 0 0 0 0 60 fscalb.o + + ---------------------------------------------------------------------- + 39328 4926 4572 1752 7956 53348 Library Totals + 46 0 7 9 4 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 31494 4632 1147 1444 7952 31544 CVWL368.lib + 2408 88 3418 291 0 18528 ISP368_N10Lite_CSOT667_TP.lib + 272 26 0 0 0 152 m_ps.l + 2838 126 0 8 0 1264 mc_p.l + 2270 54 0 0 0 1860 mf_p.l + + ---------------------------------------------------------------------- + 39328 4926 4572 1752 7956 53348 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 44528 6038 14316 1880 12464 100959 Grand Totals + 44528 6038 14316 1000 12464 100959 ELF Image Totals (compressed) + 44528 6038 14316 1000 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 58844 ( 57.46kB) + Total RW Size (RW Data + ZI Data) 14344 ( 14.01kB) + Total ROM Size (Code + RO Data + RW Data) 59844 ( 58.44kB) + +============================================================================== + diff --git a/project/ISP_368/Listings/WL368_A71_HX667.map b/project/ISP_368/Listings/WL368_A71_HX667.map new file mode 100644 index 0000000..8363a71 --- /dev/null +++ b/project/ISP_368/Listings/WL368_A71_HX667.map @@ -0,0 +1,5250 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_te_timer_cb) for soft_te_timer_cb + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_53) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_get_reg_53) refers to app_tp_for_custom_s8.o(.data) for fingerprint_flag + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_pvd) for hal_system_set_pvd + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_display_off) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_set_display_off) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_display_on) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_tp_calibration_04) refers to ap_demo.o(.data) for .data + ap_demo.o(i.app_tp_calibration_exec) refers to app_tp_transfer.o(i.ap_tp_calibration) for ap_tp_calibration + ap_demo.o(i.app_tp_calibration_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) for hal_dsi_rx_ctrl_toggle_resolution + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + ap_demo.o(i.soft_te_timer_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_te_timer_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_tp_calibration_04) for ap_set_tp_calibration_04 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_53) for ap_get_reg_53 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + board.o(i.board_Init) refers to hal_system.o(i.hal_system_set_phy_calibration) for hal_system_set_phy_calibration + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) for hal_internal_vsync_toggle_input_frame_rate + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_update_dpi_param) for hal_internal_update_dpi_param + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_release_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_release_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_update_dpi_param) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fmul.o(.text) for __aeabi_fmul + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ceil.o(i.ceil) for ceil + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) for hal_internal_video_mode_auto_sync + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.app_tp_m_transfer_complate), (8 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (2 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (4 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en), (16 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter), (108 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex), (14 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (10 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic), (148 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd), (140 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (108 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_release_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_scld_filter), (100 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex), (468 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate), (560 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr), (48 bytes). + Removing hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler), (476 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_set_prefetch), (24 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +590 unused section(s) (total 26308 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 idiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE + ../mathlib/ceil.c 0x00000000 Number 0 ceil.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE + ..\..\..\src\common\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\..\..\src\common\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\dcs_packet_fifo.c 0x00000000 Number 0 dcs_packet_fifo.o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\internal\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\..\src\app\demo\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\..\src\app\demo\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\..\src\app\demo\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\..\src\app\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\..\src\board\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\..\src\board\startup\startup_ARMCM0.s 0x00000000 Number 0 startup_armcm0.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\hal\\internal\\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\internal\\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\\..\\src\\app\\demo\\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\\..\\src\\app\\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\\..\\src\\board\\board.c 0x00000000 Number 0 board.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + RESET 0x00010000 Section 192 startup_armcm0.o(RESET) + .ARM.Collect$$$$00000000 0x000100c0 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x000100c0 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x000100c4 Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x000100c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x000100c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x000100c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x000100d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x000100d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x000100d0 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x000100d0 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x000100d4 Section 120 startup_armcm0.o(.text) + .text 0x0001014c Section 0 uidiv.o(.text) + .text 0x00010178 Section 0 idiv.o(.text) + .text 0x000101a0 Section 0 memcpya.o(.text) + .text 0x000101c4 Section 0 memseta.o(.text) + .text 0x000101e8 Section 0 fadd.o(.text) + .text 0x0001029a Section 0 fmul.o(.text) + .text 0x00010314 Section 0 fdiv.o(.text) + .text 0x00010390 Section 0 fscalb.o(.text) + .text 0x000103a8 Section 0 dadd.o(.text) + .text 0x0001050c Section 0 dmul.o(.text) + .text 0x000105dc Section 0 ddiv.o(.text) + .text 0x000106cc Section 0 fflti.o(.text) + .text 0x000106e2 Section 0 ffltui.o(.text) + .text 0x000106f0 Section 0 dfltui.o(.text) + .text 0x0001070c Section 0 ffixi.o(.text) + .text 0x0001073e Section 0 ffixui.o(.text) + .text 0x00010768 Section 0 dfixi.o(.text) + .text 0x000107b0 Section 0 dfixui.o(.text) + .text 0x000107ec Section 0 f2d.o(.text) + .text 0x00010814 Section 40 cdcmple.o(.text) + .text 0x0001083c Section 20 cfrcmple.o(.text) + .text 0x00010850 Section 0 uldiv.o(.text) + .text 0x000108b0 Section 0 llshl.o(.text) + .text 0x000108d0 Section 0 llushr.o(.text) + .text 0x000108f2 Section 0 llsshr.o(.text) + .text 0x00010918 Section 0 fepilogue.o(.text) + .text 0x00010918 Section 0 iusefp.o(.text) + .text 0x0001099a Section 0 depilogue.o(.text) + .text 0x00010a58 Section 0 dsqrt.o(.text) + .text 0x00010afc Section 0 dfixul.o(.text) + .text 0x00010b3c Section 40 cdrcmple.o(.text) + .text 0x00010b64 Section 36 init.o(.text) + .text 0x00010b88 Section 0 __dczerorl2.o(.text) + i.ADC_IRQn_Handler 0x00010be0 Section 0 irq_redirect .o(i.ADC_IRQn_Handler) + i.AP_NRESET_IRQn_Handler 0x00010bf8 Section 0 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + i.DMA_IRQn_Handler 0x00010c10 Section 0 irq_redirect .o(i.DMA_IRQn_Handler) + i.EXTI_INT0_IRQn_Handler 0x00010c24 Section 0 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + i.EXTI_INT1_IRQn_Handler 0x00010c40 Section 0 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + i.EXTI_INT2_IRQn_Handler 0x00010c5c Section 0 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + i.EXTI_INT3_IRQn_Handler 0x00010c78 Section 0 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + i.EXTI_INT4_IRQn_Handler 0x00010c94 Section 0 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + i.EXTI_INT5_IRQn_Handler 0x00010cb0 Section 0 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + i.EXTI_INT6_IRQn_Handler 0x00010ccc Section 0 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + i.EXTI_INT7_IRQn_Handler 0x00010ce8 Section 0 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + i.FLSCTRL_IRQn_Handler 0x00010d04 Section 0 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + i.Gpio_swire_output 0x00010d18 Section 0 ap_demo.o(i.Gpio_swire_output) + i.HardFault_Handler 0x00010d68 Section 0 irq_redirect .o(i.HardFault_Handler) + i.I2C0_IRQn_Handler 0x00010d7c Section 0 irq_redirect .o(i.I2C0_IRQn_Handler) + i.I2C1_IRQn_Handler 0x00010d94 Section 0 irq_redirect .o(i.I2C1_IRQn_Handler) + i.LCDC_IRQn_Handler 0x00010dac Section 0 irq_redirect .o(i.LCDC_IRQn_Handler) + i.LOG_printf 0x00010dc4 Section 0 tau_log.o(i.LOG_printf) + i.MEMC_IRQn_Handler 0x00010dec Section 0 irq_redirect .o(i.MEMC_IRQn_Handler) + i.MIPI_RX_IRQn_Handler 0x00010e04 Section 0 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + i.MIPI_TX_IRQn_Handler 0x00010e1c Section 0 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + i.PWMDET_IRQn_Handler 0x00010e34 Section 0 irq_redirect .o(i.PWMDET_IRQn_Handler) + i.S20_Start_init 0x00010e50 Section 0 app_tp_transfer.o(i.S20_Start_init) + i.SPIM_IRQn_Handler 0x00010f9c Section 0 irq_redirect .o(i.SPIM_IRQn_Handler) + i.SPIS_IRQn_Handler 0x00010fb8 Section 0 irq_redirect .o(i.SPIS_IRQn_Handler) + i.SWIRE_IRQn_Handler 0x00010fd4 Section 0 irq_redirect .o(i.SWIRE_IRQn_Handler) + i.UART_DisableDma 0x00010ff0 Section 0 drv_uart.o(i.UART_DisableDma) + i.UART_GetInstance 0x00010ff2 Section 0 drv_uart.o(i.UART_GetInstance) + i.__scatterload_null 0x00010ff6 Section 2 handlers.o(i.__scatterload_null) + i.app_UART_IRQn_Handler 0x00010ff8 Section 0 drv_uart.o(i.app_UART_IRQn_Handler) + .ARM.__at_0x11000 0x00011000 Section 20 drv_common.o(.ARM.__at_0x11000) + i.drv_dsi_rx_set_inten 0x00011014 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + .ARM.__at_0x11018 0x00011018 Section 4 drv_common.o(.ARM.__at_0x11018) + i.SysTick_Handler 0x0001101c Section 0 irq_redirect .o(i.SysTick_Handler) + i.TIMER0_IRQn_Handler 0x00011034 Section 0 irq_redirect .o(i.TIMER0_IRQn_Handler) + i.TIMER1_IRQn_Handler 0x0001104c Section 0 irq_redirect .o(i.TIMER1_IRQn_Handler) + i.TIMER2_IRQn_Handler 0x00011064 Section 0 irq_redirect .o(i.TIMER2_IRQn_Handler) + i.TIMER3_IRQn_Handler 0x0001107c Section 0 irq_redirect .o(i.TIMER3_IRQn_Handler) + i.UART0_IRQ_Handle 0x00011094 Section 0 drv_uart.o(i.UART0_IRQ_Handle) + i.UART_IRQn_Handler 0x000110b0 Section 0 irq_redirect .o(i.UART_IRQn_Handler) + i.UART_ResetRxFIFO 0x000110c8 Section 0 drv_uart.o(i.UART_ResetRxFIFO) + i.UART_SetBaudRate 0x000110ec Section 0 drv_uart.o(i.UART_SetBaudRate) + i.UART_SwitchSCLK 0x00011134 Section 0 drv_uart.o(i.UART_SwitchSCLK) + i.UART_TransferHandleIRQ 0x0001114e Section 0 drv_uart.o(i.UART_TransferHandleIRQ) + i.UART_WriteBlocking 0x00011282 Section 0 drv_uart.o(i.UART_WriteBlocking) + i.UART_init 0x0001129c Section 0 drv_uart.o(i.UART_init) + i.VIDC_IRQn_Handler 0x00011358 Section 0 irq_redirect .o(i.VIDC_IRQn_Handler) + i.VPRE_IRQn_Handler 0x00011370 Section 0 irq_redirect .o(i.VPRE_IRQn_Handler) + i.WDG_IRQn_Handler 0x00011388 Section 0 irq_redirect .o(i.WDG_IRQn_Handler) + i.__0printf 0x000113a0 Section 0 printfa.o(i.__0printf) + i.__0vsprintf 0x000113c0 Section 0 printfa.o(i.__0vsprintf) + i.__ARM_clz 0x000113e4 Section 0 depilogue.o(i.__ARM_clz) + i.__ARM_common_switch8 0x00011412 Section 0 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + i.__NVIC_ClearPendingIRQ 0x0001142c Section 0 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x0001142d Thumb Code 18 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_ClearPendingIRQ 0x00011444 Section 0 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x00011445 Thumb Code 18 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_DisableIRQ 0x0001145c Section 0 drv_rxbr.o(i.__NVIC_DisableIRQ) + __NVIC_DisableIRQ 0x0001145d Thumb Code 26 drv_rxbr.o(i.__NVIC_DisableIRQ) + i.__NVIC_EnableIRQ 0x0001147c Section 0 drv_rxbr.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x0001147d Thumb Code 18 drv_rxbr.o(i.__NVIC_EnableIRQ) + i.__NVIC_SetPriority 0x00011494 Section 0 hal_spi_slave.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x00011495 Thumb Code 60 hal_spi_slave.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x000114d8 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_zeroinit 0x000114e6 Section 14 handlers.o(i.__scatterload_zeroinit) + i.__set_errno 0x000114f4 Section 0 errno.o(i.__set_errno) + i._fp_digits 0x00011500 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x00011501 Thumb Code 344 printfa.o(i._fp_digits) + i._printf_core 0x00011674 Section 0 printfa.o(i._printf_core) + _printf_core 0x00011675 Thumb Code 1754 printfa.o(i._printf_core) + i._printf_post_padding 0x00011d60 Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x00011d61 Thumb Code 32 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x00011d80 Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x00011d81 Thumb Code 44 printfa.o(i._printf_pre_padding) + i._sputc 0x00011dac Section 0 printfa.o(i._sputc) + _sputc 0x00011dad Thumb Code 10 printfa.o(i._sputc) + i.ap_dcs_read 0x00011db8 Section 0 ap_demo.o(i.ap_dcs_read) + ap_dcs_read 0x00011db9 Thumb Code 688 ap_demo.o(i.ap_dcs_read) + i.ap_demo 0x00012094 Section 0 ap_demo.o(i.ap_demo) + i.ap_get_reg_53 0x000122d0 Section 0 ap_demo.o(i.ap_get_reg_53) + ap_get_reg_53 0x000122d1 Thumb Code 44 ap_demo.o(i.ap_get_reg_53) + i.ap_get_reg_df 0x00012300 Section 0 ap_demo.o(i.ap_get_reg_df) + ap_get_reg_df 0x00012301 Thumb Code 146 ap_demo.o(i.ap_get_reg_df) + i.ap_reset_cb 0x00012398 Section 0 ap_demo.o(i.ap_reset_cb) + ap_reset_cb 0x00012399 Thumb Code 40 ap_demo.o(i.ap_reset_cb) + i.ap_set_backlight_51 0x000123fc Section 0 ap_demo.o(i.ap_set_backlight_51) + ap_set_backlight_51 0x000123fd Thumb Code 74 ap_demo.o(i.ap_set_backlight_51) + i.ap_set_display_off 0x0001244c Section 0 ap_demo.o(i.ap_set_display_off) + ap_set_display_off 0x0001244d Thumb Code 48 ap_demo.o(i.ap_set_display_off) + i.ap_set_display_on 0x0001249c Section 0 ap_demo.o(i.ap_set_display_on) + ap_set_display_on 0x0001249d Thumb Code 18 ap_demo.o(i.ap_set_display_on) + i.ap_set_enter_sleep_mode 0x000124c8 Section 0 ap_demo.o(i.ap_set_enter_sleep_mode) + ap_set_enter_sleep_mode 0x000124c9 Thumb Code 56 ap_demo.o(i.ap_set_enter_sleep_mode) + i.ap_set_exit_sleep_mode 0x00012528 Section 0 ap_demo.o(i.ap_set_exit_sleep_mode) + ap_set_exit_sleep_mode 0x00012529 Thumb Code 26 ap_demo.o(i.ap_set_exit_sleep_mode) + i.ap_set_tp_calibration_04 0x00012570 Section 0 ap_demo.o(i.ap_set_tp_calibration_04) + ap_set_tp_calibration_04 0x00012571 Thumb Code 22 ap_demo.o(i.ap_set_tp_calibration_04) + i.ap_tp_calibration 0x0001258c Section 0 app_tp_transfer.o(i.ap_tp_calibration) + i.app_ADC_IRQn_Handler 0x0001263c Section 0 drv_rxbr.o(i.app_ADC_IRQn_Handler) + i.app_AP_NRESET_IRQn_Handler 0x00012658 Section 0 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + i.app_EXTI_INT0_IRQn_Handler 0x0001267c Section 0 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + i.app_EXTI_INT1_IRQn_Handler 0x00012698 Section 0 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + i.app_EXTI_INT2_IRQn_Handler 0x000126b4 Section 0 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + i.app_EXTI_INT3_IRQn_Handler 0x000126d0 Section 0 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + i.app_EXTI_INT4_IRQn_Handler 0x000126ec Section 0 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + i.app_EXTI_INT5_IRQn_Handler 0x00012708 Section 0 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + i.app_EXTI_INT6_IRQn_Handler 0x00012724 Section 0 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + i.app_EXTI_INT7_IRQn_Handler 0x00012740 Section 0 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + i.app_HardFault_Handler 0x0001275c Section 0 drv_common.o(i.app_HardFault_Handler) + i.app_I2C0_IRQn_Handler 0x000127a4 Section 0 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + i.app_I2C1_IRQn_Handler 0x000127bc Section 0 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + i.app_LCDC_IRQn_Handler 0x000127cc Section 0 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + i.app_MEMC_IRQn_Handler 0x00012970 Section 0 drv_memc.o(i.app_MEMC_IRQn_Handler) + i.app_MIPI_RX_IRQn_Handler 0x000129f8 Section 0 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + i.app_MIPI_TX_IRQn_Handler 0x00012c90 Section 0 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + i.app_PWMDET_IRQn_Handler 0x00012d30 Section 0 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + i.app_SPIM_IRQn_Handler 0x00012d78 Section 0 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + i.app_SPIS_IRQn_Handler 0x00012da8 Section 0 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + i.app_SWIRE_IRQn_Handler 0x00012fa8 Section 0 drv_swire.o(i.app_SWIRE_IRQn_Handler) + i.app_SysTick_Handler 0x00012fc8 Section 0 drv_common.o(i.app_SysTick_Handler) + i.app_TIMER0_IRQn_Handler 0x00012fe0 Section 0 drv_timer.o(i.app_TIMER0_IRQn_Handler) + i.app_TIMER1_IRQn_Handler 0x00012fea Section 0 drv_timer.o(i.app_TIMER1_IRQn_Handler) + i.app_TIMER2_IRQn_Handler 0x00012ff4 Section 0 drv_timer.o(i.app_TIMER2_IRQn_Handler) + i.app_TIMER3_IRQn_Handler 0x00012ffe Section 0 drv_timer.o(i.app_TIMER3_IRQn_Handler) + i.app_VIDC_IRQn_Handler 0x00013008 Section 0 drv_vidc.o(i.app_VIDC_IRQn_Handler) + i.app_VPRE_IRQn_Handler 0x00013024 Section 0 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + i.app_WDG_IRQn_Handler 0x00013040 Section 0 drv_wdg.o(i.app_WDG_IRQn_Handler) + i.app_dma_irq_handler 0x00013078 Section 0 drv_dma.o(i.app_dma_irq_handler) + i.app_fls_ctrl_Handler 0x00013088 Section 0 norflash.o(i.app_fls_ctrl_Handler) + i.app_tp_I2C_init 0x000130b8 Section 0 app_tp_transfer.o(i.app_tp_I2C_init) + i.app_tp_calibration_exec 0x000130dc Section 0 ap_demo.o(i.app_tp_calibration_exec) + i.app_tp_i2cs_callback 0x000130f4 Section 0 app_tp_transfer.o(i.app_tp_i2cs_callback) + app_tp_i2cs_callback 0x000130f5 Thumb Code 42 app_tp_transfer.o(i.app_tp_i2cs_callback) + i.app_tp_init 0x00013124 Section 0 app_tp_transfer.o(i.app_tp_init) + i.app_tp_m_read 0x00013168 Section 0 app_tp_transfer.o(i.app_tp_m_read) + app_tp_m_read 0x00013169 Thumb Code 32 app_tp_transfer.o(i.app_tp_m_read) + i.app_tp_m_write 0x00013188 Section 0 app_tp_transfer.o(i.app_tp_m_write) + app_tp_m_write 0x00013189 Thumb Code 8 app_tp_transfer.o(i.app_tp_m_write) + i.app_tp_phone_analysis_data 0x00013190 Section 0 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + i.app_tp_s_read 0x00013488 Section 0 app_tp_transfer.o(i.app_tp_s_read) + i.app_tp_s_write 0x00013490 Section 0 app_tp_transfer.o(i.app_tp_s_write) + i.app_tp_screen_analysis_int 0x00013498 Section 0 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + i.app_tp_screen_init 0x000137e4 Section 0 app_tp_transfer.o(i.app_tp_screen_init) + i.app_tp_screen_int_callback 0x00013814 Section 0 app_tp_transfer.o(i.app_tp_screen_int_callback) + app_tp_screen_int_callback 0x00013815 Thumb Code 8 app_tp_transfer.o(i.app_tp_screen_int_callback) + i.app_tp_transfer_screen_const 0x00013820 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_const) + app_tp_transfer_screen_const 0x00013821 Thumb Code 50 app_tp_transfer.o(i.app_tp_transfer_screen_const) + i.app_tp_transfer_screen_int 0x00013860 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_int) + i.app_tp_transfer_screen_start 0x0001396c Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_start) + i.board_Init 0x00013980 Section 0 board.o(i.board_Init) + i.calc_framebuffer_setting 0x000139a4 Section 0 hal_internal_vsync.o(i.calc_framebuffer_setting) + i.ceil 0x00013e94 Section 0 ceil.o(i.ceil) + i.check_mipi_rx_tx_video_info 0x00013f5c Section 0 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + check_mipi_rx_tx_video_info 0x00013f5d Thumb Code 44 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + i.check_pkt_buf_rev 0x00013f88 Section 0 hal_internal_vsync.o(i.check_pkt_buf_rev) + check_pkt_buf_rev 0x00013f89 Thumb Code 90 hal_internal_vsync.o(i.check_pkt_buf_rev) + i.dcs_packet_fifo_alloc 0x0001401c Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + i.dcs_packet_fifo_init 0x00014074 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + i.dcs_packet_free_fifo_header 0x0001408c Section 0 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + i.dcs_packet_get_fifo_header 0x000140d0 Section 0 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + i.dcs_sw_filter 0x000140f4 Section 0 hal_internal_vsync.o(i.dcs_sw_filter) + dcs_sw_filter 0x000140f5 Thumb Code 24 hal_internal_vsync.o(i.dcs_sw_filter) + i.delayMs 0x00014110 Section 0 tau_delay.o(i.delayMs) + i.delayUs 0x00014128 Section 0 tau_delay.o(i.delayUs) + i.drv_ap_rst_trig_edge_detect 0x0001414c Section 0 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + i.drv_chip_info_get_info 0x00014184 Section 0 drv_chip_info.o(i.drv_chip_info_get_info) + i.drv_chip_info_init 0x00014190 Section 0 drv_chip_info.o(i.drv_chip_info_init) + i.drv_chip_rx_info_check 0x000141d0 Section 0 drv_chip_info.o(i.drv_chip_rx_info_check) + i.drv_chip_rx_init_done 0x00014280 Section 0 drv_chip_info.o(i.drv_chip_rx_init_done) + i.drv_common_enable_systick 0x00014294 Section 0 drv_common.o(i.drv_common_enable_systick) + i.drv_common_system_init 0x000142ec Section 0 drv_common.o(i.drv_common_system_init) + i.drv_crgu_config_reset_modules 0x000142f4 Section 0 drv_crgu.o(i.drv_crgu_config_reset_modules) + i.drv_crgu_set_ahb_pre_div 0x00014304 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + i.drv_crgu_set_ahb_src 0x00014318 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_src) + i.drv_crgu_set_clock 0x0001432c Section 0 drv_crgu.o(i.drv_crgu_set_clock) + i.drv_crgu_set_dpi_mux_src 0x0001434c Section 0 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + i.drv_crgu_set_dpi_pre_div 0x00014360 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + i.drv_crgu_set_dpi_pre_src 0x00014378 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + i.drv_crgu_set_dsc_core_div 0x0001438c Section 0 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + i.drv_crgu_set_dsco_src 0x000143a0 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src) + i.drv_crgu_set_dsco_src_div 0x000143b4 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + i.drv_crgu_set_fb_div 0x000143c8 Section 0 drv_crgu.o(i.drv_crgu_set_fb_div) + i.drv_crgu_set_fb_src 0x000143dc Section 0 drv_crgu.o(i.drv_crgu_set_fb_src) + i.drv_crgu_set_lcdc_div 0x000143f0 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_div) + i.drv_crgu_set_lcdc_src 0x00014404 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_src) + i.drv_crgu_set_mipi_cfg_src 0x00014418 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + i.drv_crgu_set_mipi_ref_src 0x0001442c Section 0 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + i.drv_crgu_set_reset 0x00014444 Section 0 drv_crgu.o(i.drv_crgu_set_reset) + i.drv_crgu_set_rxbr_div 0x0001445c Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_div) + i.drv_crgu_set_rxbr_src 0x00014470 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_src) + i.drv_crgu_set_vidc_src 0x00014484 Section 0 drv_crgu.o(i.drv_crgu_set_vidc_src) + i.drv_dma_clear_flag 0x00014498 Section 0 drv_dma.o(i.drv_dma_clear_flag) + i.drv_dma_create_handle 0x000144b0 Section 0 drv_dma.o(i.drv_dma_create_handle) + i.drv_dma_disenable_channel 0x000144cc Section 0 drv_dma.o(i.drv_dma_disenable_channel) + i.drv_dma_enable_channel 0x000144dc Section 0 drv_dma.o(i.drv_dma_enable_channel) + i.drv_dma_enable_channel_interrupts 0x000144ec Section 0 drv_dma.o(i.drv_dma_enable_channel_interrupts) + i.drv_dma_get_channel_flag 0x00014510 Section 0 drv_dma.o(i.drv_dma_get_channel_flag) + i.drv_dma_irq_handler 0x0001451c Section 0 drv_dma.o(i.drv_dma_irq_handler) + i.drv_dma_prepar_transfer 0x000145ac Section 0 drv_dma.o(i.drv_dma_prepar_transfer) + i.drv_dma_set_burst 0x000145be Section 0 drv_dma.o(i.drv_dma_set_burst) + i.drv_dma_set_callback 0x000145d8 Section 0 drv_dma.o(i.drv_dma_set_callback) + i.drv_dma_set_transfer 0x000145e0 Section 0 drv_dma.o(i.drv_dma_set_transfer) + i.drv_dsc_dec_convert_pps_rc_parameter 0x00014624 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + i.drv_dsc_dec_disable 0x0001465a Section 0 drv_dsc_dec.o(i.drv_dsc_dec_disable) + i.drv_dsc_dec_enable 0x00014668 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_enable) + i.drv_dsc_dec_get_nslc 0x000146dc Section 0 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + i.drv_dsc_dec_set_u8_pps 0x000146e6 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + i.drv_dsi_rx_calc_ipi_tx_delay 0x00014710 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + i.drv_dsi_rx_enable_irq 0x00014814 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + i.drv_dsi_rx_get_color_bpp 0x00014854 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + drv_dsi_rx_get_color_bpp 0x00014855 Thumb Code 62 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + i.drv_dsi_rx_get_color_pcc 0x000148a4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + drv_dsi_rx_get_color_pcc 0x000148a5 Thumb Code 24 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + i.drv_dsi_rx_get_compression_en 0x000148c0 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + i.drv_dsi_rx_get_max_ret_size 0x000148c8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + i.drv_dsi_rx_power_up 0x000148ce Section 0 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + i.drv_dsi_rx_set_ctrl_cfg 0x000148dc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + i.drv_dsi_rx_set_ddi_cfg 0x000148fc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + i.drv_dsi_rx_set_ipi_cfg 0x0001490c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + i.drv_dsi_rx_set_lane_swap 0x0001491c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + i.drv_dsi_rx_set_resp_cnt 0x00014962 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + i.drv_dsi_rx_set_up_phy 0x00014988 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + i.drv_dsi_rx_shut_down 0x00014a8c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + i.drv_dsi_tx_command_header 0x00014a9a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + i.drv_dsi_tx_command_mode_cfg 0x00014aae Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + i.drv_dsi_tx_command_put_payload 0x00014b1a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + i.drv_dsi_tx_config_eotp 0x00014b1e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + i.drv_dsi_tx_config_int 0x00014b36 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + i.drv_dsi_tx_dpi_lpcmd_time 0x00014b3e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + i.drv_dsi_tx_dpi_mode 0x00014b46 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + i.drv_dsi_tx_dpi_polarity 0x00014b50 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + i.drv_dsi_tx_edpi_cmd_size 0x00014b74 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + i.drv_dsi_tx_get_cmd_status 0x00014b78 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + i.drv_dsi_tx_mode 0x00014b7c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_mode) + i.drv_dsi_tx_phy_clock_lane_auto_lp 0x00014b80 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + i.drv_dsi_tx_phy_clock_lane_req_hs 0x00014b98 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + i.drv_dsi_tx_phy_lane_mode 0x00014bb2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + i.drv_dsi_tx_phy_status_ready 0x00014bbe Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + i.drv_dsi_tx_phy_status_stopstate 0x00014c22 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + i.drv_dsi_tx_phy_test_setup 0x00014c60 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + i.drv_dsi_tx_phy_time_cfg 0x00014d94 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + i.drv_dsi_tx_powerup 0x00014db2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + i.drv_dsi_tx_response_mode 0x00014dba Section 0 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + i.drv_dsi_tx_set_bta_ack 0x00014dd6 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + i.drv_dsi_tx_set_esc_div 0x00014dee Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + i.drv_dsi_tx_set_int 0x00014dfc Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + i.drv_dsi_tx_set_time_out_div 0x00014e3c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + i.drv_dsi_tx_set_video_chunk 0x00014e4c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + i.drv_dsi_tx_set_video_timing 0x00014e54 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + i.drv_dsi_tx_shutdown 0x00014e76 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + i.drv_dsi_tx_timeout_cfg 0x00014e7e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + i.drv_dsi_tx_video_mode_cfg 0x00014ea4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + i.drv_dsi_tx_video_mode_disable_hact_cmd 0x00014f4e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + i.drv_dsi_tx_video_mode_set_lp_cmd 0x00014f64 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + i.drv_efuse_enter_inactive 0x00014f7c Section 0 drv_efuse.o(i.drv_efuse_enter_inactive) + i.drv_efuse_int_enable 0x00014faa Section 0 drv_efuse.o(i.drv_efuse_int_enable) + i.drv_efuse_read 0x00014fb6 Section 0 drv_efuse.o(i.drv_efuse_read) + i.drv_efuse_read_req 0x00014fe8 Section 0 drv_efuse.o(i.drv_efuse_read_req) + i.drv_gpio_get_input_data 0x00015000 Section 0 drv_gpio.o(i.drv_gpio_get_input_data) + i.drv_gpio_register_ap_reset_callback 0x00015018 Section 0 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + i.drv_gpio_register_callback 0x00015024 Section 0 drv_gpio.o(i.drv_gpio_register_callback) + i.drv_gpio_set_int 0x00015038 Section 0 drv_gpio.o(i.drv_gpio_set_int) + i.drv_gpio_set_ioe 0x00015088 Section 0 drv_gpio.o(i.drv_gpio_set_ioe) + i.drv_gpio_set_mode0 0x000150a8 Section 0 drv_gpio.o(i.drv_gpio_set_mode0) + i.drv_gpio_set_mode1 0x000150b8 Section 0 drv_gpio.o(i.drv_gpio_set_mode1) + i.drv_gpio_set_mode2 0x000150c8 Section 0 drv_gpio.o(i.drv_gpio_set_mode2) + i.drv_gpio_set_mode3 0x000150d8 Section 0 drv_gpio.o(i.drv_gpio_set_mode3) + i.drv_gpio_set_output_data 0x000150e8 Section 0 hal_gpio.o(i.drv_gpio_set_output_data) + drv_gpio_set_output_data 0x000150e9 Thumb Code 26 hal_gpio.o(i.drv_gpio_set_output_data) + i.drv_gpio_set_pull_state 0x00015108 Section 0 drv_gpio.o(i.drv_gpio_set_pull_state) + i.drv_i2c0_set_callback 0x00015238 Section 0 drv_i2c_slave.o(i.drv_i2c0_set_callback) + i.drv_i2c1_set_callback 0x00015244 Section 0 drv_i2c_master.o(i.drv_i2c1_set_callback) + i.drv_i2c_dma_callback 0x00015250 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_callback) + drv_i2c_dma_callback 0x00015251 Thumb Code 40 drv_i2c_dma.o(i.drv_i2c_dma_callback) + i.drv_i2c_dma_init 0x00015284 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_init) + i.drv_i2c_enable_rx_dma 0x00015330 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + i.drv_i2c_enable_tx_dma 0x0001534a Section 0 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + i.drv_i2c_m_clear_it_pending_bit 0x00015364 Section 0 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + i.drv_i2c_m_enable 0x000153c4 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable) + i.drv_i2c_m_enable_intr 0x000153d4 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + i.drv_i2c_master_init 0x0001540c Section 0 drv_i2c_master.o(i.drv_i2c_master_init) + i.drv_i2c_master_read_dma 0x00015498 Section 0 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + i.drv_i2c_master_write_dma 0x000154f4 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + i.drv_i2c_master_write_read_cmd 0x00015530 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + drv_i2c_master_write_read_cmd 0x00015531 Thumb Code 62 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + i.drv_i2c_s_clear_it_pending_bit 0x0001556e Section 0 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + i.drv_i2c_s_config_intr 0x000155b0 Section 0 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + i.drv_i2c_s_enable 0x000155b4 Section 0 drv_i2c_slave.o(i.drv_i2c_s_enable) + i.drv_i2c_s_get_fifo_status 0x000155bc Section 0 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + i.drv_i2c_s_set_intr 0x000155d0 Section 0 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + i.drv_i2c_s_write_data 0x00015620 Section 0 drv_i2c_slave.o(i.drv_i2c_s_write_data) + i.drv_i2c_set_dma_irq_callback 0x0001563c Section 0 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + i.drv_i2c_slave_init 0x00015694 Section 0 drv_i2c_slave.o(i.drv_i2c_slave_init) + i.drv_i2c_slave_write_dma 0x000156c8 Section 0 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + i.drv_lcdc_config_bypass 0x000156e0 Section 0 drv_lcdc.o(i.drv_lcdc_config_bypass) + i.drv_lcdc_config_ccm 0x000156f8 Section 0 drv_lcdc.o(i.drv_lcdc_config_ccm) + i.drv_lcdc_config_disp_mode 0x00015728 Section 0 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + i.drv_lcdc_config_dpi_polarity 0x0001573e Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + i.drv_lcdc_config_dpi_timing 0x00015762 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + i.drv_lcdc_config_edpi_mode 0x00015788 Section 0 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + i.drv_lcdc_config_endianness 0x0001579e Section 0 drv_lcdc.o(i.drv_lcdc_config_endianness) + i.drv_lcdc_config_input_size 0x000157b4 Section 0 drv_lcdc.o(i.drv_lcdc_config_input_size) + i.drv_lcdc_config_int 0x000157c0 Section 0 drv_lcdc.o(i.drv_lcdc_config_int) + i.drv_lcdc_config_int_single 0x000157de Section 0 drv_lcdc.o(i.drv_lcdc_config_int_single) + i.drv_lcdc_config_overwrite 0x00015800 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite) + i.drv_lcdc_config_overwrite_rgb 0x00015822 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + i.drv_lcdc_config_partial_display_area 0x0001582e Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + i.drv_lcdc_config_partial_display_enable 0x00015848 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + i.drv_lcdc_config_scale_up_coef 0x0001586a Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + i.drv_lcdc_config_scale_up_step 0x00015884 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + i.drv_lcdc_config_src_parameter 0x00015890 Section 0 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + i.drv_lcdc_config_thresh 0x000158dc Section 0 drv_lcdc.o(i.drv_lcdc_config_thresh) + i.drv_lcdc_ctrl_flow 0x000158e2 Section 0 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + i.drv_lcdc_enable_shadow_reg 0x000158f4 Section 0 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + i.drv_lcdc_set_int 0x00015914 Section 0 drv_lcdc.o(i.drv_lcdc_set_int) + i.drv_lcdc_set_video_hw_mode 0x00015954 Section 0 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + i.drv_lcdc_start 0x00015968 Section 0 drv_lcdc.o(i.drv_lcdc_start) + i.drv_memc_clear_status 0x00015988 Section 0 drv_memc.o(i.drv_memc_clear_status) + i.drv_memc_enable_irq 0x00015994 Section 0 drv_memc.o(i.drv_memc_enable_irq) + i.drv_memc_gen_a_tear_signal 0x000159d4 Section 0 drv_memc.o(i.drv_memc_gen_a_tear_signal) + i.drv_memc_get_status 0x000159e0 Section 0 drv_memc.o(i.drv_memc_get_status) + i.drv_memc_rate_transfer_sel 0x000159f2 Section 0 drv_memc.o(i.drv_memc_rate_transfer_sel) + i.drv_memc_sel_vsync 0x00015a02 Section 0 drv_memc.o(i.drv_memc_sel_vsync) + i.drv_memc_set_active_height 0x00015a10 Section 0 drv_memc.o(i.drv_memc_set_active_height) + i.drv_memc_set_data_mode 0x00015a24 Section 0 drv_memc.o(i.drv_memc_set_data_mode) + i.drv_memc_set_double_buffer 0x00015a30 Section 0 drv_memc.o(i.drv_memc_set_double_buffer) + i.drv_memc_set_double_buffer_reverse 0x00015a40 Section 0 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + i.drv_memc_set_fs_en_conditions 0x00015a52 Section 0 drv_memc.o(i.drv_memc_set_fs_en_conditions) + i.drv_memc_set_inten 0x00015a62 Section 0 drv_memc.o(i.drv_memc_set_inten) + i.drv_memc_set_lcdc_st_conditions 0x00015a78 Section 0 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + i.drv_memc_set_ltpo_mode 0x00015a90 Section 0 drv_memc.o(i.drv_memc_set_ltpo_mode) + i.drv_memc_set_tear_mode 0x00015aaa Section 0 drv_memc.o(i.drv_memc_set_tear_mode) + i.drv_memc_set_tear_waveform 0x00015ab8 Section 0 drv_memc.o(i.drv_memc_set_tear_waveform) + i.drv_memc_set_vidc_sync_cnt 0x00015ae0 Section 0 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + i.drv_param_init_get_ccm 0x00015af0 Section 0 drv_param_init.o(i.drv_param_init_get_ccm) + i.drv_param_init_get_scld_filter_h 0x00015af8 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + i.drv_param_init_get_scld_filter_v 0x00015b0c Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + i.drv_param_init_get_sclu_filter 0x00015b20 Section 0 drv_param_init.o(i.drv_param_init_get_sclu_filter) + i.drv_param_init_set_ccm 0x00015b28 Section 0 drv_param_init.o(i.drv_param_init_set_ccm) + i.drv_param_p2r_filter_init 0x00015b3c Section 0 drv_param_init.o(i.drv_param_p2r_filter_init) + i.drv_phy_enable_calibration 0x00015b60 Section 0 drv_phy_common.o(i.drv_phy_enable_calibration) + i.drv_phy_get_calibration 0x00015b70 Section 0 drv_phy_common.o(i.drv_phy_get_calibration) + i.drv_phy_get_pll_para 0x00015bac Section 0 drv_phy_common.o(i.drv_phy_get_pll_para) + i.drv_phy_get_rate_para 0x00015c0c Section 0 drv_phy_common.o(i.drv_phy_get_rate_para) + i.drv_phy_test_clear 0x00015c60 Section 0 drv_phy_common.o(i.drv_phy_test_clear) + i.drv_phy_test_lock 0x00015c70 Section 0 drv_phy_common.o(i.drv_phy_test_lock) + i.drv_phy_test_write_1_byte 0x00015c88 Section 0 drv_phy_common.o(i.drv_phy_test_write_1_byte) + i.drv_phy_test_write_2_byte 0x00015ca8 Section 0 drv_phy_common.o(i.drv_phy_test_write_2_byte) + i.drv_phy_test_write_code 0x00015cce Section 0 drv_phy_common.o(i.drv_phy_test_write_code) + i.drv_phy_test_write_data 0x00015cec Section 0 drv_phy_common.o(i.drv_phy_test_write_data) + drv_phy_test_write_data 0x00015ced Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_data) + i.drv_pwr_set_cp_mode 0x00015d0c Section 0 drv_pwr.o(i.drv_pwr_set_cp_mode) + i.drv_pwr_set_pvd_mode 0x00015d2c Section 0 drv_pwr.o(i.drv_pwr_set_pvd_mode) + i.drv_pwr_set_system_clk_src 0x00015d44 Section 0 drv_pwr.o(i.drv_pwr_set_system_clk_src) + i.drv_rx_phy_test_clear 0x00015d7c Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + drv_rx_phy_test_clear 0x00015d7d Thumb Code 12 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + i.drv_rx_phy_test_lock 0x00015d88 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + drv_rx_phy_test_lock 0x00015d89 Thumb Code 16 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + i.drv_rx_phy_test_write_1_byte 0x00015d98 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + drv_rx_phy_test_write_1_byte 0x00015d99 Thumb Code 20 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + i.drv_rx_phy_test_write_2_byte 0x00015dac Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + drv_rx_phy_test_write_2_byte 0x00015dad Thumb Code 22 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + i.drv_rxbr_clear_pkt_buffer 0x00015dc2 Section 0 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + i.drv_rxbr_clear_status0 0x00015dcc Section 0 drv_rxbr.o(i.drv_rxbr_clear_status0) + i.drv_rxbr_enable_irq 0x00015dd0 Section 0 drv_rxbr.o(i.drv_rxbr_enable_irq) + i.drv_rxbr_frame_drop_cfg 0x00015e2c Section 0 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + i.drv_rxbr_get_clk 0x00015e40 Section 0 drv_rxbr.o(i.drv_rxbr_get_clk) + i.drv_rxbr_get_col_addr 0x00015ea4 Section 0 drv_rxbr.o(i.drv_rxbr_get_col_addr) + i.drv_rxbr_get_int_source 0x00015ea8 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + drv_rxbr_get_int_source 0x00015ea9 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + i.drv_rxbr_get_page_addr 0x00015eba Section 0 drv_rxbr.o(i.drv_rxbr_get_page_addr) + i.drv_rxbr_get_status0 0x00015ebe Section 0 hal_internal_vsync.o(i.drv_rxbr_get_status0) + drv_rxbr_get_status0 0x00015ebf Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_status0) + i.drv_rxbr_hline_rcv0_cfg 0x00015ed0 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + i.drv_rxbr_hline_rcv_cfg 0x00015edc Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + i.drv_rxbr_register_irq0_callback 0x00015ee4 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + i.drv_rxbr_register_irq1_callback 0x00015ef0 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + i.drv_rxbr_set_ack_pkt_header 0x00015efc Section 0 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + i.drv_rxbr_set_cmd_filter 0x00015f10 Section 0 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + i.drv_rxbr_set_color_format 0x00015fdc Section 0 drv_rxbr.o(i.drv_rxbr_set_color_format) + i.drv_rxbr_set_inten 0x00015ff0 Section 0 drv_rxbr.o(i.drv_rxbr_set_inten) + i.drv_rxbr_set_ltpo_drop_th 0x00016004 Section 0 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + i.drv_rxbr_set_usr_cfg 0x00016014 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + i.drv_rxbr_set_usr_col 0x0001603a Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_col) + i.drv_rxbr_set_usr_row 0x00016042 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_row) + i.drv_spi_m_read_data 0x0001604c Section 0 drv_spi_master.o(i.drv_spi_m_read_data) + i.drv_swire_enable 0x0001606c Section 0 drv_swire.o(i.drv_swire_enable) + i.drv_swire_set_int 0x00016088 Section 0 drv_swire.o(i.drv_swire_set_int) + i.drv_swire_set_power_down 0x000160dc Section 0 drv_swire.o(i.drv_swire_set_power_down) + i.drv_sys_cfg_clear_all_int 0x000160f8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + i.drv_sys_cfg_clear_pending 0x00016104 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + i.drv_sys_cfg_sel_ap_rst_lvl_trig 0x0001612c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + i.drv_sys_cfg_sel_ap_rst_trig 0x00016144 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + i.drv_sys_cfg_sel_gpio_group 0x00016160 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + i.drv_sys_cfg_sel_int_trig 0x00016184 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + i.drv_sys_cfg_set_dma_rx_req 0x000161a8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + i.drv_sys_cfg_set_dma_tx_req 0x000161b8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + i.drv_sys_cfg_set_int 0x000161c8 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + i.drv_timer_clear_status_flags 0x000161ec Section 0 drv_timer.o(i.drv_timer_clear_status_flags) + drv_timer_clear_status_flags 0x000161ed Thumb Code 26 drv_timer.o(i.drv_timer_clear_status_flags) + i.drv_timer_enable 0x00016206 Section 0 drv_timer.o(i.drv_timer_enable) + i.drv_timer_get_instance 0x00016228 Section 0 drv_timer.o(i.drv_timer_get_instance) + i.drv_timer_get_prescaler 0x00016238 Section 0 drv_timer.o(i.drv_timer_get_prescaler) + i.drv_timer_handle_interrupt 0x00016248 Section 0 drv_timer.o(i.drv_timer_handle_interrupt) + drv_timer_handle_interrupt 0x00016249 Thumb Code 62 drv_timer.o(i.drv_timer_handle_interrupt) + i.drv_timer_register_callback 0x0001628c Section 0 drv_timer.o(i.drv_timer_register_callback) + i.drv_timer_set_compare_val 0x000162a0 Section 0 drv_timer.o(i.drv_timer_set_compare_val) + i.drv_timer_set_int 0x000162b0 Section 0 drv_timer.o(i.drv_timer_set_int) + i.drv_timer_set_prescaler 0x00016304 Section 0 drv_timer.o(i.drv_timer_set_prescaler) + i.drv_timer_set_repeat 0x0001632c Section 0 drv_timer.o(i.drv_timer_set_repeat) + i.drv_tx_phy_test_clear 0x0001633c Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + drv_tx_phy_test_clear 0x0001633d Thumb Code 10 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + i.drv_tx_phy_test_enter 0x00016346 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + i.drv_tx_phy_test_exit 0x00016362 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + i.drv_tx_phy_test_write_1_byte 0x0001637e Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + drv_tx_phy_test_write_1_byte 0x0001637f Thumb Code 18 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + i.drv_tx_phy_test_write_2_byte 0x00016390 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + drv_tx_phy_test_write_2_byte 0x00016391 Thumb Code 20 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + i.drv_tx_phy_test_write_code 0x000163a4 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + drv_tx_phy_test_write_code 0x000163a5 Thumb Code 16 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + i.drv_vidc_clear_irq 0x000163b4 Section 0 drv_vidc.o(i.drv_vidc_clear_irq) + i.drv_vidc_enable 0x000163bc Section 0 drv_vidc.o(i.drv_vidc_enable) + i.drv_vidc_enable_irq 0x000163d4 Section 0 drv_vidc.o(i.drv_vidc_enable_irq) + i.drv_vidc_get_irq_status 0x00016414 Section 0 drv_vidc.o(i.drv_vidc_get_irq_status) + i.drv_vidc_init_module_enable 0x00016428 Section 0 drv_vidc.o(i.drv_vidc_init_module_enable) + i.drv_vidc_register_callback 0x00016450 Section 0 drv_vidc.o(i.drv_vidc_register_callback) + i.drv_vidc_reset 0x0001645c Section 0 drv_vidc.o(i.drv_vidc_reset) + i.drv_vidc_set_dst_parameter 0x00016462 Section 0 drv_vidc.o(i.drv_vidc_set_dst_parameter) + i.drv_vidc_set_irqen 0x0001649e Section 0 drv_vidc.o(i.drv_vidc_set_irqen) + i.drv_vidc_set_mirror 0x000164b2 Section 0 drv_vidc.o(i.drv_vidc_set_mirror) + i.drv_vidc_set_p2r_hcoef0 0x000164c2 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + i.drv_vidc_set_p2r_hinitb 0x000164ca Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + i.drv_vidc_set_p2r_hinitr 0x000164f0 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + i.drv_vidc_set_pentile_swap 0x00016518 Section 0 drv_vidc.o(i.drv_vidc_set_pentile_swap) + i.drv_vidc_set_pu_ctrl 0x00016530 Section 0 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + i.drv_vidc_set_rotation 0x0001653a Section 0 drv_vidc.o(i.drv_vidc_set_rotation) + i.drv_vidc_set_scld_hcoef0 0x0001654a Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + i.drv_vidc_set_scld_hcoef1 0x00016554 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + i.drv_vidc_set_scld_step 0x0001655e Section 0 drv_vidc.o(i.drv_vidc_set_scld_step) + i.drv_vidc_set_scld_vcoef0 0x00016570 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + i.drv_vidc_set_scld_vcoef1 0x0001657a Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + i.drv_vidc_set_src_parameter 0x00016584 Section 0 drv_vidc.o(i.drv_vidc_set_src_parameter) + i.drv_wdg_clear_counter 0x0001659c Section 0 drv_wdg.o(i.drv_wdg_clear_counter) + i.drv_wdg_clear_edge_flag 0x000165ac Section 0 drv_wdg.o(i.drv_wdg_clear_edge_flag) + drv_wdg_clear_edge_flag 0x000165ad Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_edge_flag) + i.drv_wdg_read_edge_flag 0x000165bc Section 0 drv_wdg.o(i.drv_wdg_read_edge_flag) + drv_wdg_read_edge_flag 0x000165bd Thumb Code 10 drv_wdg.o(i.drv_wdg_read_edge_flag) + i.drv_wdg_set_int 0x000165cc Section 0 drv_wdg.o(i.drv_wdg_set_int) + i.fls_clr_interrupt_flag 0x0001660c Section 0 drv_fls.o(i.fls_clr_interrupt_flag) + i.fputc 0x00016616 Section 0 tau_log.o(i.fputc) + i.hal_dsi_rx_ctrl_create_handle 0x0001662c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + i.hal_dsi_rx_ctrl_deinit 0x00016660 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + i.hal_dsi_rx_ctrl_dsc_async_handler 0x000166fc Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + i.hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016780 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + i.hal_dsi_rx_ctrl_get_max_ret_size 0x000167a8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + i.hal_dsi_rx_ctrl_init 0x000167d0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + i.hal_dsi_rx_ctrl_init_clk 0x00016830 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + hal_dsi_rx_ctrl_init_clk 0x00016831 Thumb Code 332 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + i.hal_dsi_rx_ctrl_init_dsi_rx 0x000169d4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + hal_dsi_rx_ctrl_init_dsi_rx 0x000169d5 Thumb Code 184 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + i.hal_dsi_rx_ctrl_init_memc 0x00016aac Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + hal_dsi_rx_ctrl_init_memc 0x00016aad Thumb Code 334 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + i.hal_dsi_rx_ctrl_init_rxbr 0x00016c04 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + hal_dsi_rx_ctrl_init_rxbr 0x00016c05 Thumb Code 312 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + i.hal_dsi_rx_ctrl_init_vidc 0x00016d4c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + hal_dsi_rx_ctrl_init_vidc 0x00016d4d Thumb Code 544 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + i.hal_dsi_rx_ctrl_send_ack_cmd 0x00016f78 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + i.hal_dsi_rx_ctrl_set_cus_sync_line 0x00017068 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + i.hal_dsi_rx_ctrl_set_hw_tear_mode 0x0001709c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + i.hal_dsi_rx_ctrl_set_ipi_cfg 0x000170d0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + hal_dsi_rx_ctrl_set_ipi_cfg 0x000170d1 Thumb Code 50 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + i.hal_dsi_rx_ctrl_set_rxbr_clk 0x00017108 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + hal_dsi_rx_ctrl_set_rxbr_clk 0x00017109 Thumb Code 114 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + i.hal_dsi_rx_ctrl_set_sw_tear_mode 0x0001717c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + i.hal_dsi_rx_ctrl_start 0x000171b0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + i.hal_dsi_rx_ctrl_stop 0x000171ec Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + i.hal_dsi_rx_ctrl_toggle_resolution 0x00017228 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + i.hal_dsi_tx_calc_video_chunks 0x00017248 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + hal_dsi_tx_calc_video_chunks 0x00017249 Thumb Code 384 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + i.hal_dsi_tx_config_params_for_lane_rate 0x000173d8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + hal_dsi_tx_config_params_for_lane_rate 0x000173d9 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + i.hal_dsi_tx_count_lane_rate 0x0001740c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + hal_dsi_tx_count_lane_rate 0x0001740d Thumb Code 1022 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + i.hal_dsi_tx_ctrl_create_handle 0x0001785c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + i.hal_dsi_tx_ctrl_deinit 0x00017888 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + i.hal_dsi_tx_ctrl_enter_init_panel_mode 0x0001790c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + i.hal_dsi_tx_ctrl_exit_init_panel_mode 0x00017958 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + i.hal_dsi_tx_ctrl_init 0x00017980 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + i.hal_dsi_tx_ctrl_init_clk 0x00017a24 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + hal_dsi_tx_ctrl_init_clk 0x00017a25 Thumb Code 36 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + i.hal_dsi_tx_ctrl_panel_reset_pin 0x00017a48 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + i.hal_dsi_tx_ctrl_set_ccm 0x00017a54 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + i.hal_dsi_tx_ctrl_set_overwrite_rgb 0x00017a74 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + i.hal_dsi_tx_ctrl_set_partial_disp 0x00017a88 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + i.hal_dsi_tx_ctrl_set_partial_disp_area 0x00017a98 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + i.hal_dsi_tx_ctrl_start 0x00017abc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + i.hal_dsi_tx_ctrl_stop 0x00017b58 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + i.hal_dsi_tx_ctrl_write_array_cmd 0x00017b9c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + i.hal_dsi_tx_ctrl_write_cmd 0x00017c74 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + i.hal_dsi_tx_init_data_mode 0x00017d24 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + hal_dsi_tx_init_data_mode 0x00017d25 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + i.hal_dsi_tx_init_dpi_cfg 0x00017d68 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + hal_dsi_tx_init_dpi_cfg 0x00017d69 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + i.hal_dsi_tx_init_interrupt 0x00017d98 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + hal_dsi_tx_init_interrupt 0x00017d99 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + i.hal_dsi_tx_init_phy_cfg 0x00017db8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + hal_dsi_tx_init_phy_cfg 0x00017db9 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + i.hal_dsi_tx_init_remains 0x00017dd8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + hal_dsi_tx_init_remains 0x00017dd9 Thumb Code 142 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + i.hal_dsi_tx_init_video_mode 0x00017e6c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + hal_dsi_tx_init_video_mode 0x00017e6d Thumb Code 82 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + i.hal_dsi_tx_send_cmd 0x00017ec4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + hal_dsi_tx_send_cmd 0x00017ec5 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + i.hal_gpio_ctrl_eint 0x00017f08 Section 0 hal_gpio.o(i.hal_gpio_ctrl_eint) + i.hal_gpio_get_input_data 0x00017f20 Section 0 hal_gpio.o(i.hal_gpio_get_input_data) + i.hal_gpio_init_eint 0x00017f34 Section 0 hal_gpio.o(i.hal_gpio_init_eint) + i.hal_gpio_init_input 0x00017f74 Section 0 hal_gpio.o(i.hal_gpio_init_input) + i.hal_gpio_init_output 0x00017f94 Section 0 hal_gpio.o(i.hal_gpio_init_output) + i.hal_gpio_reg_eint_cb 0x00017fbc Section 0 hal_gpio.o(i.hal_gpio_reg_eint_cb) + i.hal_gpio_set_ap_reset_int 0x00017fd4 Section 0 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + i.hal_gpio_set_mode 0x00018024 Section 0 hal_gpio.o(i.hal_gpio_set_mode) + i.hal_gpio_set_output_data 0x00018084 Section 0 hal_gpio.o(i.hal_gpio_set_output_data) + i.hal_gpio_set_pull_state 0x0001808c Section 0 hal_gpio.o(i.hal_gpio_set_pull_state) + i.hal_i2c_m_dma_init 0x000180ac Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_init) + i.hal_i2c_m_dma_read 0x00018118 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_read) + i.hal_i2c_m_dma_write 0x00018138 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_write) + i.hal_i2c_m_transfer_complate 0x00018154 Section 0 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + i.hal_i2c_master_irq_callback 0x00018160 Section 0 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + hal_i2c_master_irq_callback 0x00018161 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + i.hal_i2c_s_dma_user_callback 0x00018180 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + hal_i2c_s_dma_user_callback 0x00018181 Thumb Code 12 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + i.hal_i2c_s_dma_write 0x00018190 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + i.hal_i2c_s_init 0x000181dc Section 0 hal_i2c_slave.o(i.hal_i2c_s_init) + i.hal_i2c_s_nonblocking_read 0x000182a4 Section 0 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + i.hal_i2c_s_set_transfer 0x000182b8 Section 0 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + i.hal_i2c_slave_irq_callback 0x000182c4 Section 0 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + hal_i2c_slave_irq_callback 0x000182c5 Thumb Code 354 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + i.hal_internal_init_memc 0x00018438 Section 0 hal_internal_vsync.o(i.hal_internal_init_memc) + i.hal_internal_sync_get_fb_setting 0x00018534 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + i.hal_internal_sync_get_hight_performan_mode 0x00018544 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + i.hal_internal_sync_input_resolution_change 0x00018554 Section 0 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + i.hal_internal_update_dpi_param 0x00018780 Section 0 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + i.hal_internal_video_mode_auto_sync 0x00018790 Section 0 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + i.hal_internal_vsync_deinit 0x0001889c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + i.hal_internal_vsync_get_rx_state 0x000188c4 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + i.hal_internal_vsync_get_sync_line 0x000188d0 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + i.hal_internal_vsync_get_tear_mode 0x000188e8 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + i.hal_internal_vsync_get_tx_state 0x000188f4 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + i.hal_internal_vsync_init_rx 0x00018900 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + i.hal_internal_vsync_init_tx 0x00018a18 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + i.hal_internal_vsync_set_auto_hw_filter 0x00018ac8 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + i.hal_internal_vsync_set_rx_state 0x00018be4 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + i.hal_internal_vsync_set_sync_line 0x00018bf8 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + i.hal_internal_vsync_set_tear_mode 0x00018c1c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + i.hal_internal_vsync_set_tx_state 0x00018c6c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + i.hal_lcdc_config_ccm 0x00018cec Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + hal_lcdc_config_ccm 0x00018ced Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + i.hal_lcdc_config_remains 0x00018d10 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + hal_lcdc_config_remains 0x00018d11 Thumb Code 84 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + i.hal_lcdc_config_rgb_to_pentile 0x00018d68 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + hal_lcdc_config_rgb_to_pentile 0x00018d69 Thumb Code 14 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + i.hal_lcdc_config_upscaler 0x00018d7c Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + hal_lcdc_config_upscaler 0x00018d7d Thumb Code 348 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + i.hal_lcdc_init_cfg 0x00018ee0 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + hal_lcdc_init_cfg 0x00018ee1 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + i.hal_lcdc_init_clk 0x00018f20 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + hal_lcdc_init_clk 0x00018f21 Thumb Code 422 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + i.hal_lcdc_init_interrupt 0x000190d0 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + hal_lcdc_init_interrupt 0x000190d1 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + i.hal_spi_m_clear_rxfifo 0x00019110 Section 0 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + i.hal_swire_deinit 0x0001911e Section 0 hal_swire.o(i.hal_swire_deinit) + i.hal_swire_open 0x00019130 Section 0 hal_swire.o(i.hal_swire_open) + i.hal_system_enable_systick 0x00019146 Section 0 hal_system.o(i.hal_system_enable_systick) + i.hal_system_init 0x00019150 Section 0 hal_system.o(i.hal_system_init) + i.hal_system_init_console 0x000191d8 Section 0 hal_system.o(i.hal_system_init_console) + i.hal_system_set_phy_calibration 0x000191f4 Section 0 hal_system.o(i.hal_system_set_phy_calibration) + i.hal_system_set_pvd 0x000191fc Section 0 hal_system.o(i.hal_system_set_pvd) + i.hal_system_set_vcc 0x00019204 Section 0 hal_system.o(i.hal_system_set_vcc) + i.hal_timer_deinit 0x0001920c Section 0 hal_timer.o(i.hal_timer_deinit) + i.hal_timer_init 0x0001923a Section 0 hal_timer.o(i.hal_timer_init) + i.hal_timer_start 0x00019254 Section 0 hal_timer.o(i.hal_timer_start) + i.hal_timer_stop 0x0001929c Section 0 hal_timer.o(i.hal_timer_stop) + i.hal_uart_init 0x000192c4 Section 0 hal_uart.o(i.hal_uart_init) + i.hal_uart_transmit_blocking 0x00019350 Section 0 hal_uart.o(i.hal_uart_transmit_blocking) + i.handle_init 0x00019360 Section 0 irq_redirect .o(i.handle_init) + i.init_mipi_tx 0x00019470 Section 0 ap_demo.o(i.init_mipi_tx) + init_mipi_tx 0x00019471 Thumb Code 98 ap_demo.o(i.init_mipi_tx) + i.init_panel 0x000194d8 Section 0 ap_demo.o(i.init_panel) + init_panel 0x000194d9 Thumb Code 140 ap_demo.o(i.init_panel) + i.main 0x0001956c Section 0 main.o(i.main) + i.open_mipi_rx 0x00019578 Section 0 ap_demo.o(i.open_mipi_rx) + open_mipi_rx 0x00019579 Thumb Code 118 ap_demo.o(i.open_mipi_rx) + i.pps_update_handle 0x00019604 Section 0 ap_demo.o(i.pps_update_handle) + pps_update_handle 0x00019605 Thumb Code 80 ap_demo.o(i.pps_update_handle) + i.rx_get_dcs_packet_data 0x00019658 Section 0 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + rx_get_dcs_packet_data 0x00019659 Thumb Code 654 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + i.rx_partial_update 0x00019a4c Section 0 hal_internal_vsync.o(i.rx_partial_update) + rx_partial_update 0x00019a4d Thumb Code 358 hal_internal_vsync.o(i.rx_partial_update) + i.rx_receive_packet 0x00019bc4 Section 0 hal_internal_vsync.o(i.rx_receive_packet) + rx_receive_packet 0x00019bc5 Thumb Code 128 hal_internal_vsync.o(i.rx_receive_packet) + i.rx_receive_pps 0x00019c50 Section 0 hal_internal_vsync.o(i.rx_receive_pps) + rx_receive_pps 0x00019c51 Thumb Code 268 hal_internal_vsync.o(i.rx_receive_pps) + i.rxbr_irq0_callback 0x00019dd0 Section 0 hal_internal_vsync.o(i.rxbr_irq0_callback) + rxbr_irq0_callback 0x00019dd1 Thumb Code 158 hal_internal_vsync.o(i.rxbr_irq0_callback) + i.rxbr_irq1_callback 0x00019e74 Section 0 hal_internal_vsync.o(i.rxbr_irq1_callback) + rxbr_irq1_callback 0x00019e75 Thumb Code 316 hal_internal_vsync.o(i.rxbr_irq1_callback) + i.soft_gen_te 0x0001a048 Section 0 hal_internal_vsync.o(i.soft_gen_te) + soft_gen_te 0x0001a049 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te) + i.soft_gen_te_double_buffer 0x0001a10c Section 0 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + soft_gen_te_double_buffer 0x0001a10d Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + i.soft_te_timer_cb 0x0001a1cc Section 0 ap_demo.o(i.soft_te_timer_cb) + soft_te_timer_cb 0x0001a1cd Thumb Code 36 ap_demo.o(i.soft_te_timer_cb) + i.soft_timer3_cb 0x0001a1f8 Section 0 ap_demo.o(i.soft_timer3_cb) + soft_timer3_cb 0x0001a1f9 Thumb Code 36 ap_demo.o(i.soft_timer3_cb) + i.sqrt 0x0001a228 Section 0 sqrt.o(i.sqrt) + i.vidc_callback 0x0001a270 Section 0 hal_internal_vsync.o(i.vidc_callback) + vidc_callback 0x0001a271 Thumb Code 232 hal_internal_vsync.o(i.vidc_callback) + i.vpre_err_reset 0x0001a378 Section 0 hal_internal_vsync.o(i.vpre_err_reset) + vpre_err_reset 0x0001a379 Thumb Code 184 hal_internal_vsync.o(i.vpre_err_reset) + i.vsync_set_te_mode 0x0001a448 Section 0 hal_internal_vsync.o(i.vsync_set_te_mode) + vsync_set_te_mode 0x0001a449 Thumb Code 300 hal_internal_vsync.o(i.vsync_set_te_mode) + .constdata 0x0001a614 Section 10075 ap_demo.o(.constdata) + g_cus_rx_dcs_execute_table 0x0001a614 Data 108 ap_demo.o(.constdata) + .constdata 0x0001cd6f Section 10152 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001f517 Section 1 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001f518 Section 36 hal_dsi_tx_ctrl.o(.constdata) + .constdata 0x0001f53c Section 210 hal_gpio.o(.constdata) + s_gpio_map 0x0001f53c Data 120 hal_gpio.o(.constdata) + s_gpio_perf 0x0001f5b4 Data 90 hal_gpio.o(.constdata) + .constdata 0x0001f610 Section 32 hal_i2c_slave.o(.constdata) + sg_i2c_s_config 0x0001f610 Data 32 hal_i2c_slave.o(.constdata) + .constdata 0x0001f630 Section 8 drv_param_init.o(.constdata) + .constdata 0x0001f638 Section 390 drv_phy_common.o(.constdata) + phy_para_mapping_h 0x0001f638 Data 184 drv_phy_common.o(.constdata) + phy_para_mapping_l 0x0001f6f0 Data 128 drv_phy_common.o(.constdata) + phy_data_high_map 0x0001f770 Data 48 drv_phy_common.o(.constdata) + phy_data_lp_map 0x0001f7a0 Data 30 drv_phy_common.o(.constdata) + .conststring 0x0001f7c0 Section 72 hal_dsi_rx_ctrl.o(.conststring) + .conststring 0x0001f808 Section 67 hal_dsi_tx_ctrl.o(.conststring) + .conststring 0x0001f84c Section 308 hal_internal_vsync.o(.conststring) + .ARM.__AT_0x00070100 0x00070100 Section 192 irq_redirect .o(.ARM.__AT_0x00070100) + .data 0x000701d0 Section 32 ap_demo.o(.data) + start_display_on 0x000701d0 Data 1 ap_demo.o(.data) + g_exit_sleep_mode 0x000701d1 Data 1 ap_demo.o(.data) + panel_display_done 0x000701d2 Data 1 ap_demo.o(.data) + input_compress_flag 0x000701d3 Data 1 ap_demo.o(.data) + g_exite_sleep_mode 0x000701d4 Data 1 ap_demo.o(.data) + send_29_flag 0x000701d5 Data 1 ap_demo.o(.data) + g_calibration_flag 0x000701d6 Data 1 ap_demo.o(.data) + g_need_enter_sleep_mode 0x000701d9 Data 1 ap_demo.o(.data) + g_rx_ctrl_handle 0x000701e4 Data 4 ap_demo.o(.data) + g_tx_ctrl_handle 0x000701e8 Data 4 ap_demo.o(.data) + value_reg_df 0x000701ec Data 4 ap_demo.o(.data) + .data 0x000701f0 Section 46 app_tp_transfer.o(.data) + s_spim_write 0x000701f0 Data 1 app_tp_transfer.o(.data) + s_screen_int_flag 0x000701f1 Data 1 app_tp_transfer.o(.data) + s_phone_reset_flag 0x000701f2 Data 1 app_tp_transfer.o(.data) + s_screen_int_transfer_status 0x000701f3 Data 1 app_tp_transfer.o(.data) + s_screen_const_transfer_count 0x000701f5 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_count 0x000701f6 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_buffer_ready 0x000701f7 Data 1 app_tp_transfer.o(.data) + .data 0x0007021e Section 262 app_tp_for_custom_s8.o(.data) + fingerprint_enable 0x00070229 Data 1 app_tp_for_custom_s8.o(.data) + app_tp_count 0x0007022a Data 1 app_tp_for_custom_s8.o(.data) + phone_85_flag 0x0007022b Data 1 app_tp_for_custom_s8.o(.data) + phone_E4_flag 0x0007022c Data 1 app_tp_for_custom_s8.o(.data) + phone_72_flag 0x0007022d Data 1 app_tp_for_custom_s8.o(.data) + phone_75_flag 0x0007022e Data 1 app_tp_for_custom_s8.o(.data) + phone_92_flag 0x0007022f Data 1 app_tp_for_custom_s8.o(.data) + phone_74_flag 0x00070230 Data 1 app_tp_for_custom_s8.o(.data) + u16CoordY 0x00070234 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX 0x00070236 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordY_back 0x00070238 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX_back 0x0007023a Data 2 app_tp_for_custom_s8.o(.data) + .data 0x00070324 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070325 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070326 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070327 Section 3 app_tp_for_custom_s8.o(.data) + .data 0x0007032a Section 5 app_tp_for_custom_s8.o(.data) + .data 0x00070330 Section 48 app_tp_for_custom_s8.o(.data) + .data 0x00070360 Section 8 hal_dsi_rx_ctrl.o(.data) + g_hw_auto_filter 0x00070360 Data 1 hal_dsi_rx_ctrl.o(.data) + g_esc_clk 0x00070364 Data 4 hal_dsi_rx_ctrl.o(.data) + .data 0x00070368 Section 3 hal_dsi_tx_ctrl.o(.data) + g_tx_vcom_en 0x00070368 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_vpg_en 0x00070369 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_mode 0x0007036a Data 1 hal_dsi_tx_ctrl.o(.data) + .data 0x0007036b Section 1 hal_i2c_master.o(.data) + s_i2c_m_transfer_end 0x0007036b Data 1 hal_i2c_master.o(.data) + .data 0x0007036c Section 32 hal_i2c_slave.o(.data) + s_txbuffer_complate 0x0007036c Data 1 hal_i2c_slave.o(.data) + s_i2c_s_dma_end 0x0007036d Data 1 hal_i2c_slave.o(.data) + s_i2c_s_receive_cnt 0x0007036e Data 1 hal_i2c_slave.o(.data) + sg_i2c_s_index 0x0007036f Data 1 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer 0x00070370 Data 4 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer_size 0x00070374 Data 4 hal_i2c_slave.o(.data) + hal_i2c_s_callback 0x00070378 Data 4 hal_i2c_slave.o(.data) + sg_tx_byte_num 0x0007037c Data 4 hal_i2c_slave.o(.data) + s_receive_count 0x00070380 Data 4 hal_i2c_slave.o(.data) + s_tx_buffer_t 0x00070384 Data 4 hal_i2c_slave.o(.data) + tx_sum 0x00070388 Data 4 hal_i2c_slave.o(.data) + .data 0x0007038c Section 18 norflash.o(.data) + tmprg 0x00070394 Data 4 norflash.o(.data) + .data 0x000703a0 Section 12 drv_common.o(.data) + s_my_tick 0x000703a0 Data 4 drv_common.o(.data) + .data 0x000703ac Section 4 drv_gpio.o(.data) + g_ap_reset_cb 0x000703ac Data 4 drv_gpio.o(.data) + .data 0x000703b0 Section 8 drv_i2c_dma.o(.data) + i2c0_dma_callback 0x000703b0 Data 4 drv_i2c_dma.o(.data) + i2c1_dma_callback 0x000703b4 Data 4 drv_i2c_dma.o(.data) + .data 0x000703b8 Section 4 drv_i2c_master.o(.data) + i2c1_intr_callback 0x000703b8 Data 4 drv_i2c_master.o(.data) + .data 0x000703bc Section 4 drv_i2c_slave.o(.data) + i2c0_intr_callback 0x000703bc Data 4 drv_i2c_slave.o(.data) + .data 0x000703c0 Section 1188 drv_param_init.o(.data) + .data 0x00070864 Section 4 drv_spi_master.o(.data) + SPIM_intr_callback 0x00070864 Data 4 drv_spi_master.o(.data) + .data 0x00070868 Section 8 drv_swire.o(.data) + s_swire_cb 0x00070868 Data 8 drv_swire.o(.data) + .data 0x00070870 Section 1 drv_sys_cfg.o(.data) + sg_ap_rstn_trigger_type 0x00070870 Data 1 drv_sys_cfg.o(.data) + .data 0x00070874 Section 80 drv_timer.o(.data) + sg_timer_info 0x00070874 Data 80 drv_timer.o(.data) + .data 0x000708c4 Section 12 hal_internal_vsync.o(.data) + sg_cmd_mode_tx_start 0x000708c4 Data 1 hal_internal_vsync.o(.data) + sg_cur_te_info 0x000708c8 Data 4 hal_internal_vsync.o(.data) + .data 0x000708d0 Section 8 drv_rxbr.o(.data) + .data 0x000708d8 Section 4 drv_vidc.o(.data) + .data 0x000708dc Section 1 drv_phy_common.o(.data) + g_phy_calibration 0x000708dc Data 1 drv_phy_common.o(.data) + .data 0x000708e0 Section 12 drv_chip_info.o(.data) + sg_chip_info 0x000708e0 Data 4 drv_chip_info.o(.data) + sg_chip_function 0x000708e4 Data 4 drv_chip_info.o(.data) + sg_chip_encrypt 0x000708e8 Data 4 drv_chip_info.o(.data) + .data 0x000708ec Section 12 drv_pwm.o(.data) + s_pwm_type 0x000708ec Data 1 drv_pwm.o(.data) + s_pwm_cb 0x000708f0 Data 8 drv_pwm.o(.data) + .data 0x000708f8 Section 8 drv_uart.o(.data) + s_UartFcrReg 0x000708f8 Data 4 drv_uart.o(.data) + uart_userData 0x000708fc Data 4 drv_uart.o(.data) + .data 0x00070900 Section 12 drv_wdg.o(.data) + sg_wdg_repeat 0x00070900 Data 1 drv_wdg.o(.data) + sg_wdg_cb 0x00070904 Data 8 drv_wdg.o(.data) + .data 0x0007090c Section 4 stdout.o(.data) + .data 0x00070910 Section 4 errno.o(.data) + _errno 0x00070910 Data 4 errno.o(.data) + .bss 0x00070914 Section 400 app_tp_transfer.o(.bss) + s_screen_read_buffer 0x00070914 Data 200 app_tp_transfer.o(.bss) + s_phone_read_buffer 0x000709dc Data 200 app_tp_transfer.o(.bss) + .bss 0x00070aa4 Section 196 hal_dsi_rx_ctrl.o(.bss) + g_rx_ctrl_handle 0x00070aa4 Data 196 hal_dsi_rx_ctrl.o(.bss) + .bss 0x00070b68 Section 76 hal_dsi_tx_ctrl.o(.bss) + g_tx_ctrl_handle 0x00070b68 Data 76 hal_dsi_tx_ctrl.o(.bss) + .bss 0x00070bb4 Section 256 tau_log.o(.bss) + .bss 0x00070cb4 Section 208 hal_uart.o(.bss) + .bss 0x00070d84 Section 28 drv_dma.o(.bss) + s_dma_handle 0x00070d84 Data 28 drv_dma.o(.bss) + .bss 0x00070da0 Section 64 drv_gpio.o(.bss) + s_gpio_cb 0x00070da0 Data 64 drv_gpio.o(.bss) + .bss 0x00070de0 Section 320 drv_i2c_dma.o(.bss) + i2c0_dma_slave_handle 0x00070de0 Data 160 drv_i2c_dma.o(.bss) + i2c1_dma_master_handle 0x00070e80 Data 160 drv_i2c_dma.o(.bss) + .bss 0x00070f20 Section 2436 hal_internal_vsync.o(.bss) + g_imm_buffer 0x00071784 Data 255 hal_internal_vsync.o(.bss) + sg_te_info 0x00071884 Data 12 hal_internal_vsync.o(.bss) + g_imm_packet 0x00071890 Data 20 hal_internal_vsync.o(.bss) + .bss 0x000718a4 Section 4144 dcs_packet_fifo.o(.bss) + .bss 0x000728d4 Section 32 hal_spi_slave.o(.bss) + STACK 0x000728f8 Section 4096 startup_armcm0.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x000000c0 Number 0 startup_armcm0.o ABSOLUTE + __Vectors 0x00010000 Data 4 startup_armcm0.o(RESET) + __Vectors_End 0x000100c0 Data 0 startup_armcm0.o(RESET) + __main 0x000100c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x000100c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x000100c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x000100c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x000100c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x000100c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x000100c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x000100d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x000100d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x000100d5 Thumb Code 28 startup_armcm0.o(.text) + NMI_Handler 0x000100f1 Thumb Code 2 startup_armcm0.o(.text) + SVC_Handler 0x000100f5 Thumb Code 2 startup_armcm0.o(.text) + PendSV_Handler 0x000100f7 Thumb Code 2 startup_armcm0.o(.text) + OTP_IRQn_Handler 0x00010123 Thumb Code 2 startup_armcm0.o(.text) + PVD_IRQn_Handler 0x00010127 Thumb Code 2 startup_armcm0.o(.text) + __aeabi_uidiv 0x0001014d Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x0001014d Thumb Code 44 uidiv.o(.text) + __aeabi_idiv 0x00010179 Thumb Code 0 idiv.o(.text) + __aeabi_idivmod 0x00010179 Thumb Code 40 idiv.o(.text) + __aeabi_memcpy 0x000101a1 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x000101c5 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x000101d3 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x000101d3 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x000101d3 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x000101d7 Thumb Code 18 memseta.o(.text) + __aeabi_fadd 0x000101e9 Thumb Code 162 fadd.o(.text) + __aeabi_fsub 0x0001028b Thumb Code 8 fadd.o(.text) + __aeabi_frsub 0x00010293 Thumb Code 8 fadd.o(.text) + __aeabi_fmul 0x0001029b Thumb Code 122 fmul.o(.text) + __aeabi_fdiv 0x00010315 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x00010391 Thumb Code 24 fscalb.o(.text) + scalbnf 0x00010391 Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x000103a9 Thumb Code 328 dadd.o(.text) + __aeabi_dsub 0x000104f1 Thumb Code 12 dadd.o(.text) + __aeabi_drsub 0x000104fd Thumb Code 12 dadd.o(.text) + __aeabi_dmul 0x0001050d Thumb Code 202 dmul.o(.text) + __aeabi_ddiv 0x000105dd Thumb Code 234 ddiv.o(.text) + __aeabi_i2f 0x000106cd Thumb Code 22 fflti.o(.text) + __aeabi_ui2f 0x000106e3 Thumb Code 14 ffltui.o(.text) + __aeabi_ui2d 0x000106f1 Thumb Code 24 dfltui.o(.text) + __aeabi_f2iz 0x0001070d Thumb Code 50 ffixi.o(.text) + __aeabi_f2uiz 0x0001073f Thumb Code 40 ffixui.o(.text) + __aeabi_d2iz 0x00010769 Thumb Code 62 dfixi.o(.text) + __aeabi_d2uiz 0x000107b1 Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x000107ed Thumb Code 40 f2d.o(.text) + __aeabi_cdcmpeq 0x00010815 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x00010815 Thumb Code 38 cdcmple.o(.text) + __aeabi_cfrcmple 0x0001083d Thumb Code 20 cfrcmple.o(.text) + __aeabi_uldivmod 0x00010851 Thumb Code 96 uldiv.o(.text) + __aeabi_llsl 0x000108b1 Thumb Code 32 llshl.o(.text) + _ll_shift_l 0x000108b1 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x000108d1 Thumb Code 34 llushr.o(.text) + _ll_ushift_r 0x000108d1 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x000108f3 Thumb Code 38 llsshr.o(.text) + _ll_sshift_r 0x000108f3 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x00010919 Thumb Code 0 iusefp.o(.text) + _float_round 0x00010919 Thumb Code 16 fepilogue.o(.text) + _float_epilogue 0x00010929 Thumb Code 114 fepilogue.o(.text) + _double_round 0x0001099b Thumb Code 26 depilogue.o(.text) + _double_epilogue 0x000109b5 Thumb Code 164 depilogue.o(.text) + _dsqrt 0x00010a59 Thumb Code 162 dsqrt.o(.text) + __aeabi_d2ulz 0x00010afd Thumb Code 54 dfixul.o(.text) + __aeabi_cdrcmple 0x00010b3d Thumb Code 38 cdrcmple.o(.text) + __scatterload 0x00010b65 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x00010b65 Thumb Code 0 init.o(.text) + __decompress 0x00010b89 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x00010b89 Thumb Code 86 __dczerorl2.o(.text) + ADC_IRQn_Handler 0x00010be1 Thumb Code 18 irq_redirect .o(i.ADC_IRQn_Handler) + AP_NRESET_IRQn_Handler 0x00010bf9 Thumb Code 18 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + DMA_IRQn_Handler 0x00010c11 Thumb Code 14 irq_redirect .o(i.DMA_IRQn_Handler) + EXTI_INT0_IRQn_Handler 0x00010c25 Thumb Code 22 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + EXTI_INT1_IRQn_Handler 0x00010c41 Thumb Code 22 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + EXTI_INT2_IRQn_Handler 0x00010c5d Thumb Code 22 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + EXTI_INT3_IRQn_Handler 0x00010c79 Thumb Code 22 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + EXTI_INT4_IRQn_Handler 0x00010c95 Thumb Code 22 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + EXTI_INT5_IRQn_Handler 0x00010cb1 Thumb Code 22 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + EXTI_INT6_IRQn_Handler 0x00010ccd Thumb Code 22 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + EXTI_INT7_IRQn_Handler 0x00010ce9 Thumb Code 22 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + FLSCTRL_IRQn_Handler 0x00010d05 Thumb Code 14 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + Gpio_swire_output 0x00010d19 Thumb Code 78 ap_demo.o(i.Gpio_swire_output) + HardFault_Handler 0x00010d69 Thumb Code 14 irq_redirect .o(i.HardFault_Handler) + I2C0_IRQn_Handler 0x00010d7d Thumb Code 18 irq_redirect .o(i.I2C0_IRQn_Handler) + I2C1_IRQn_Handler 0x00010d95 Thumb Code 18 irq_redirect .o(i.I2C1_IRQn_Handler) + LCDC_IRQn_Handler 0x00010dad Thumb Code 18 irq_redirect .o(i.LCDC_IRQn_Handler) + LOG_printf 0x00010dc5 Thumb Code 30 tau_log.o(i.LOG_printf) + MEMC_IRQn_Handler 0x00010ded Thumb Code 18 irq_redirect .o(i.MEMC_IRQn_Handler) + MIPI_RX_IRQn_Handler 0x00010e05 Thumb Code 18 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + MIPI_TX_IRQn_Handler 0x00010e1d Thumb Code 18 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + PWMDET_IRQn_Handler 0x00010e35 Thumb Code 22 irq_redirect .o(i.PWMDET_IRQn_Handler) + S20_Start_init 0x00010e51 Thumb Code 306 app_tp_transfer.o(i.S20_Start_init) + SPIM_IRQn_Handler 0x00010f9d Thumb Code 22 irq_redirect .o(i.SPIM_IRQn_Handler) + SPIS_IRQn_Handler 0x00010fb9 Thumb Code 22 irq_redirect .o(i.SPIS_IRQn_Handler) + SWIRE_IRQn_Handler 0x00010fd5 Thumb Code 22 irq_redirect .o(i.SWIRE_IRQn_Handler) + UART_DisableDma 0x00010ff1 Thumb Code 2 drv_uart.o(i.UART_DisableDma) + UART_GetInstance 0x00010ff3 Thumb Code 4 drv_uart.o(i.UART_GetInstance) + __scatterload_null 0x00010ff7 Thumb Code 2 handlers.o(i.__scatterload_null) + app_UART_IRQn_Handler 0x00010ff9 Thumb Code 8 drv_uart.o(i.app_UART_IRQn_Handler) + s_RAM_CK 0x00011000 Data 20 drv_common.o(.ARM.__at_0x11000) + drv_dsi_rx_set_inten 0x00011015 Thumb Code 4 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + s_debug_state 0x00011018 Data 4 drv_common.o(.ARM.__at_0x11018) + SysTick_Handler 0x0001101d Thumb Code 18 irq_redirect .o(i.SysTick_Handler) + TIMER0_IRQn_Handler 0x00011035 Thumb Code 18 irq_redirect .o(i.TIMER0_IRQn_Handler) + TIMER1_IRQn_Handler 0x0001104d Thumb Code 18 irq_redirect .o(i.TIMER1_IRQn_Handler) + TIMER2_IRQn_Handler 0x00011065 Thumb Code 18 irq_redirect .o(i.TIMER2_IRQn_Handler) + TIMER3_IRQn_Handler 0x0001107d Thumb Code 18 irq_redirect .o(i.TIMER3_IRQn_Handler) + UART0_IRQ_Handle 0x00011095 Thumb Code 20 drv_uart.o(i.UART0_IRQ_Handle) + UART_IRQn_Handler 0x000110b1 Thumb Code 18 irq_redirect .o(i.UART_IRQn_Handler) + UART_ResetRxFIFO 0x000110c9 Thumb Code 32 drv_uart.o(i.UART_ResetRxFIFO) + UART_SetBaudRate 0x000110ed Thumb Code 72 drv_uart.o(i.UART_SetBaudRate) + UART_SwitchSCLK 0x00011135 Thumb Code 26 drv_uart.o(i.UART_SwitchSCLK) + UART_TransferHandleIRQ 0x0001114f Thumb Code 308 drv_uart.o(i.UART_TransferHandleIRQ) + UART_WriteBlocking 0x00011283 Thumb Code 26 drv_uart.o(i.UART_WriteBlocking) + UART_init 0x0001129d Thumb Code 182 drv_uart.o(i.UART_init) + VIDC_IRQn_Handler 0x00011359 Thumb Code 18 irq_redirect .o(i.VIDC_IRQn_Handler) + VPRE_IRQn_Handler 0x00011371 Thumb Code 18 irq_redirect .o(i.VPRE_IRQn_Handler) + WDG_IRQn_Handler 0x00011389 Thumb Code 18 irq_redirect .o(i.WDG_IRQn_Handler) + __0printf 0x000113a1 Thumb Code 24 printfa.o(i.__0printf) + __1printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __2printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __c89printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __0vsprintf 0x000113c1 Thumb Code 30 printfa.o(i.__0vsprintf) + __1vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __2vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __c89vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __ARM_clz 0x000113e5 Thumb Code 46 depilogue.o(i.__ARM_clz) + __ARM_common_switch8 0x00011413 Thumb Code 26 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + __scatterload_copy 0x000114d9 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_zeroinit 0x000114e7 Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + __set_errno 0x000114f5 Thumb Code 6 errno.o(i.__set_errno) + ap_demo 0x00012095 Thumb Code 368 ap_demo.o(i.ap_demo) + ap_tp_calibration 0x0001258d Thumb Code 170 app_tp_transfer.o(i.ap_tp_calibration) + app_ADC_IRQn_Handler 0x0001263d Thumb Code 22 drv_rxbr.o(i.app_ADC_IRQn_Handler) + app_AP_NRESET_IRQn_Handler 0x00012659 Thumb Code 32 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + app_EXTI_INT0_IRQn_Handler 0x0001267d Thumb Code 22 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + app_EXTI_INT1_IRQn_Handler 0x00012699 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + app_EXTI_INT2_IRQn_Handler 0x000126b5 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + app_EXTI_INT3_IRQn_Handler 0x000126d1 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + app_EXTI_INT4_IRQn_Handler 0x000126ed Thumb Code 22 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + app_EXTI_INT5_IRQn_Handler 0x00012709 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + app_EXTI_INT6_IRQn_Handler 0x00012725 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + app_EXTI_INT7_IRQn_Handler 0x00012741 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + app_HardFault_Handler 0x0001275d Thumb Code 12 drv_common.o(i.app_HardFault_Handler) + app_I2C0_IRQn_Handler 0x000127a5 Thumb Code 14 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + app_I2C1_IRQn_Handler 0x000127bd Thumb Code 8 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + app_LCDC_IRQn_Handler 0x000127cd Thumb Code 208 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + app_MEMC_IRQn_Handler 0x00012971 Thumb Code 132 drv_memc.o(i.app_MEMC_IRQn_Handler) + app_MIPI_RX_IRQn_Handler 0x000129f9 Thumb Code 232 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + app_MIPI_TX_IRQn_Handler 0x00012c91 Thumb Code 56 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + app_PWMDET_IRQn_Handler 0x00012d31 Thumb Code 62 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + app_SPIM_IRQn_Handler 0x00012d79 Thumb Code 34 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + app_SPIS_IRQn_Handler 0x00012da9 Thumb Code 500 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + app_SWIRE_IRQn_Handler 0x00012fa9 Thumb Code 28 drv_swire.o(i.app_SWIRE_IRQn_Handler) + app_SysTick_Handler 0x00012fc9 Thumb Code 20 drv_common.o(i.app_SysTick_Handler) + app_TIMER0_IRQn_Handler 0x00012fe1 Thumb Code 10 drv_timer.o(i.app_TIMER0_IRQn_Handler) + app_TIMER1_IRQn_Handler 0x00012feb Thumb Code 10 drv_timer.o(i.app_TIMER1_IRQn_Handler) + app_TIMER2_IRQn_Handler 0x00012ff5 Thumb Code 10 drv_timer.o(i.app_TIMER2_IRQn_Handler) + app_TIMER3_IRQn_Handler 0x00012fff Thumb Code 10 drv_timer.o(i.app_TIMER3_IRQn_Handler) + app_VIDC_IRQn_Handler 0x00013009 Thumb Code 22 drv_vidc.o(i.app_VIDC_IRQn_Handler) + app_VPRE_IRQn_Handler 0x00013025 Thumb Code 22 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + app_WDG_IRQn_Handler 0x00013041 Thumb Code 52 drv_wdg.o(i.app_WDG_IRQn_Handler) + app_dma_irq_handler 0x00013079 Thumb Code 10 drv_dma.o(i.app_dma_irq_handler) + app_fls_ctrl_Handler 0x00013089 Thumb Code 38 norflash.o(i.app_fls_ctrl_Handler) + app_tp_I2C_init 0x000130b9 Thumb Code 26 app_tp_transfer.o(i.app_tp_I2C_init) + app_tp_calibration_exec 0x000130dd Thumb Code 20 ap_demo.o(i.app_tp_calibration_exec) + app_tp_init 0x00013125 Thumb Code 56 app_tp_transfer.o(i.app_tp_init) + app_tp_phone_analysis_data 0x00013191 Thumb Code 696 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + app_tp_s_read 0x00013489 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_read) + app_tp_s_write 0x00013491 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_write) + app_tp_screen_analysis_int 0x00013499 Thumb Code 828 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + app_tp_screen_init 0x000137e5 Thumb Code 42 app_tp_transfer.o(i.app_tp_screen_init) + app_tp_transfer_screen_int 0x00013861 Thumb Code 250 app_tp_transfer.o(i.app_tp_transfer_screen_int) + app_tp_transfer_screen_start 0x0001396d Thumb Code 16 app_tp_transfer.o(i.app_tp_transfer_screen_start) + board_Init 0x00013981 Thumb Code 30 board.o(i.board_Init) + calc_framebuffer_setting 0x000139a5 Thumb Code 1258 hal_internal_vsync.o(i.calc_framebuffer_setting) + ceil 0x00013e95 Thumb Code 180 ceil.o(i.ceil) + dcs_packet_fifo_alloc 0x0001401d Thumb Code 80 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + dcs_packet_fifo_init 0x00014075 Thumb Code 18 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + dcs_packet_free_fifo_header 0x0001408d Thumb Code 60 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + dcs_packet_get_fifo_header 0x000140d1 Thumb Code 26 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + delayMs 0x00014111 Thumb Code 24 tau_delay.o(i.delayMs) + delayUs 0x00014129 Thumb Code 34 tau_delay.o(i.delayUs) + drv_ap_rst_trig_edge_detect 0x0001414d Thumb Code 46 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + drv_chip_info_get_info 0x00014185 Thumb Code 6 drv_chip_info.o(i.drv_chip_info_get_info) + drv_chip_info_init 0x00014191 Thumb Code 56 drv_chip_info.o(i.drv_chip_info_init) + drv_chip_rx_info_check 0x000141d1 Thumb Code 98 drv_chip_info.o(i.drv_chip_rx_info_check) + drv_chip_rx_init_done 0x00014281 Thumb Code 16 drv_chip_info.o(i.drv_chip_rx_init_done) + drv_common_enable_systick 0x00014295 Thumb Code 70 drv_common.o(i.drv_common_enable_systick) + drv_common_system_init 0x000142ed Thumb Code 8 drv_common.o(i.drv_common_system_init) + drv_crgu_config_reset_modules 0x000142f5 Thumb Code 10 drv_crgu.o(i.drv_crgu_config_reset_modules) + drv_crgu_set_ahb_pre_div 0x00014305 Thumb Code 14 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + drv_crgu_set_ahb_src 0x00014319 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_ahb_src) + drv_crgu_set_clock 0x0001432d Thumb Code 26 drv_crgu.o(i.drv_crgu_set_clock) + drv_crgu_set_dpi_mux_src 0x0001434d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + drv_crgu_set_dpi_pre_div 0x00014361 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + drv_crgu_set_dpi_pre_src 0x00014379 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + drv_crgu_set_dsc_core_div 0x0001438d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + drv_crgu_set_dsco_src 0x000143a1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src) + drv_crgu_set_dsco_src_div 0x000143b5 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + drv_crgu_set_fb_div 0x000143c9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_div) + drv_crgu_set_fb_src 0x000143dd Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_src) + drv_crgu_set_lcdc_div 0x000143f1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_div) + drv_crgu_set_lcdc_src 0x00014405 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_src) + drv_crgu_set_mipi_cfg_src 0x00014419 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + drv_crgu_set_mipi_ref_src 0x0001442d Thumb Code 18 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + drv_crgu_set_reset 0x00014445 Thumb Code 20 drv_crgu.o(i.drv_crgu_set_reset) + drv_crgu_set_rxbr_div 0x0001445d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_div) + drv_crgu_set_rxbr_src 0x00014471 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_src) + drv_crgu_set_vidc_src 0x00014485 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_vidc_src) + drv_dma_clear_flag 0x00014499 Thumb Code 24 drv_dma.o(i.drv_dma_clear_flag) + drv_dma_create_handle 0x000144b1 Thumb Code 22 drv_dma.o(i.drv_dma_create_handle) + drv_dma_disenable_channel 0x000144cd Thumb Code 16 drv_dma.o(i.drv_dma_disenable_channel) + drv_dma_enable_channel 0x000144dd Thumb Code 16 drv_dma.o(i.drv_dma_enable_channel) + drv_dma_enable_channel_interrupts 0x000144ed Thumb Code 32 drv_dma.o(i.drv_dma_enable_channel_interrupts) + drv_dma_get_channel_flag 0x00014511 Thumb Code 12 drv_dma.o(i.drv_dma_get_channel_flag) + drv_dma_irq_handler 0x0001451d Thumb Code 138 drv_dma.o(i.drv_dma_irq_handler) + drv_dma_prepar_transfer 0x000145ad Thumb Code 18 drv_dma.o(i.drv_dma_prepar_transfer) + drv_dma_set_burst 0x000145bf Thumb Code 26 drv_dma.o(i.drv_dma_set_burst) + drv_dma_set_callback 0x000145d9 Thumb Code 6 drv_dma.o(i.drv_dma_set_callback) + drv_dma_set_transfer 0x000145e1 Thumb Code 62 drv_dma.o(i.drv_dma_set_transfer) + drv_dsc_dec_convert_pps_rc_parameter 0x00014625 Thumb Code 54 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + drv_dsc_dec_disable 0x0001465b Thumb Code 12 drv_dsc_dec.o(i.drv_dsc_dec_disable) + drv_dsc_dec_enable 0x00014669 Thumb Code 88 drv_dsc_dec.o(i.drv_dsc_dec_enable) + drv_dsc_dec_get_nslc 0x000146dd Thumb Code 10 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + drv_dsc_dec_set_u8_pps 0x000146e7 Thumb Code 40 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + drv_dsi_rx_calc_ipi_tx_delay 0x00014711 Thumb Code 244 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + drv_dsi_rx_enable_irq 0x00014815 Thumb Code 58 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + drv_dsi_rx_get_compression_en 0x000148c1 Thumb Code 8 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + drv_dsi_rx_get_max_ret_size 0x000148c9 Thumb Code 6 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + drv_dsi_rx_power_up 0x000148cf Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + drv_dsi_rx_set_ctrl_cfg 0x000148dd Thumb Code 32 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + drv_dsi_rx_set_ddi_cfg 0x000148fd Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + drv_dsi_rx_set_ipi_cfg 0x0001490d Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + drv_dsi_rx_set_lane_swap 0x0001491d Thumb Code 70 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + drv_dsi_rx_set_resp_cnt 0x00014963 Thumb Code 38 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + drv_dsi_rx_set_up_phy 0x00014989 Thumb Code 256 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + drv_dsi_rx_shut_down 0x00014a8d Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + drv_dsi_tx_command_header 0x00014a9b Thumb Code 20 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + drv_dsi_tx_command_mode_cfg 0x00014aaf Thumb Code 108 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + drv_dsi_tx_command_put_payload 0x00014b1b Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + drv_dsi_tx_config_eotp 0x00014b1f Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + drv_dsi_tx_config_int 0x00014b37 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + drv_dsi_tx_dpi_lpcmd_time 0x00014b3f Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + drv_dsi_tx_dpi_mode 0x00014b47 Thumb Code 10 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + drv_dsi_tx_dpi_polarity 0x00014b51 Thumb Code 36 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + drv_dsi_tx_edpi_cmd_size 0x00014b75 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + drv_dsi_tx_get_cmd_status 0x00014b79 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + drv_dsi_tx_mode 0x00014b7d Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_mode) + drv_dsi_tx_phy_clock_lane_auto_lp 0x00014b81 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + drv_dsi_tx_phy_clock_lane_req_hs 0x00014b99 Thumb Code 26 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + drv_dsi_tx_phy_lane_mode 0x00014bb3 Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + drv_dsi_tx_phy_status_ready 0x00014bbf Thumb Code 100 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + drv_dsi_tx_phy_status_stopstate 0x00014c23 Thumb Code 62 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + drv_dsi_tx_phy_test_setup 0x00014c61 Thumb Code 308 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + drv_dsi_tx_phy_time_cfg 0x00014d95 Thumb Code 30 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + drv_dsi_tx_powerup 0x00014db3 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + drv_dsi_tx_response_mode 0x00014dbb Thumb Code 28 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + drv_dsi_tx_set_bta_ack 0x00014dd7 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + drv_dsi_tx_set_esc_div 0x00014def Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + drv_dsi_tx_set_int 0x00014dfd Thumb Code 58 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + drv_dsi_tx_set_time_out_div 0x00014e3d Thumb Code 16 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + drv_dsi_tx_set_video_chunk 0x00014e4d Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + drv_dsi_tx_set_video_timing 0x00014e55 Thumb Code 34 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + drv_dsi_tx_shutdown 0x00014e77 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + drv_dsi_tx_timeout_cfg 0x00014e7f Thumb Code 38 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + drv_dsi_tx_video_mode_cfg 0x00014ea5 Thumb Code 170 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + drv_dsi_tx_video_mode_disable_hact_cmd 0x00014f4f Thumb Code 22 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + drv_dsi_tx_video_mode_set_lp_cmd 0x00014f65 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + drv_efuse_enter_inactive 0x00014f7d Thumb Code 46 drv_efuse.o(i.drv_efuse_enter_inactive) + drv_efuse_int_enable 0x00014fab Thumb Code 12 drv_efuse.o(i.drv_efuse_int_enable) + drv_efuse_read 0x00014fb7 Thumb Code 50 drv_efuse.o(i.drv_efuse_read) + drv_efuse_read_req 0x00014fe9 Thumb Code 24 drv_efuse.o(i.drv_efuse_read_req) + drv_gpio_get_input_data 0x00015001 Thumb Code 20 drv_gpio.o(i.drv_gpio_get_input_data) + drv_gpio_register_ap_reset_callback 0x00015019 Thumb Code 6 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + drv_gpio_register_callback 0x00015025 Thumb Code 14 drv_gpio.o(i.drv_gpio_register_callback) + drv_gpio_set_int 0x00015039 Thumb Code 74 drv_gpio.o(i.drv_gpio_set_int) + drv_gpio_set_ioe 0x00015089 Thumb Code 26 drv_gpio.o(i.drv_gpio_set_ioe) + drv_gpio_set_mode0 0x000150a9 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode0) + drv_gpio_set_mode1 0x000150b9 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode1) + drv_gpio_set_mode2 0x000150c9 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode2) + drv_gpio_set_mode3 0x000150d9 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode3) + drv_gpio_set_pull_state 0x00015109 Thumb Code 298 drv_gpio.o(i.drv_gpio_set_pull_state) + drv_i2c0_set_callback 0x00015239 Thumb Code 6 drv_i2c_slave.o(i.drv_i2c0_set_callback) + drv_i2c1_set_callback 0x00015245 Thumb Code 6 drv_i2c_master.o(i.drv_i2c1_set_callback) + drv_i2c_dma_init 0x00015285 Thumb Code 146 drv_i2c_dma.o(i.drv_i2c_dma_init) + drv_i2c_enable_rx_dma 0x00015331 Thumb Code 26 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + drv_i2c_enable_tx_dma 0x0001534b Thumb Code 24 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + drv_i2c_m_clear_it_pending_bit 0x00015365 Thumb Code 86 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + drv_i2c_m_enable 0x000153c5 Thumb Code 10 drv_i2c_master.o(i.drv_i2c_m_enable) + drv_i2c_m_enable_intr 0x000153d5 Thumb Code 42 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + drv_i2c_master_init 0x0001540d Thumb Code 118 drv_i2c_master.o(i.drv_i2c_master_init) + drv_i2c_master_read_dma 0x00015499 Thumb Code 82 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + drv_i2c_master_write_dma 0x000154f5 Thumb Code 50 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + drv_i2c_s_clear_it_pending_bit 0x0001556f Thumb Code 66 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + drv_i2c_s_config_intr 0x000155b1 Thumb Code 4 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + drv_i2c_s_enable 0x000155b5 Thumb Code 8 drv_i2c_slave.o(i.drv_i2c_s_enable) + drv_i2c_s_get_fifo_status 0x000155bd Thumb Code 20 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + drv_i2c_s_set_intr 0x000155d1 Thumb Code 74 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + drv_i2c_s_write_data 0x00015621 Thumb Code 28 drv_i2c_slave.o(i.drv_i2c_s_write_data) + drv_i2c_set_dma_irq_callback 0x0001563d Thumb Code 68 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + drv_i2c_slave_init 0x00015695 Thumb Code 50 drv_i2c_slave.o(i.drv_i2c_slave_init) + drv_i2c_slave_write_dma 0x000156c9 Thumb Code 20 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + drv_lcdc_config_bypass 0x000156e1 Thumb Code 24 drv_lcdc.o(i.drv_lcdc_config_bypass) + drv_lcdc_config_ccm 0x000156f9 Thumb Code 48 drv_lcdc.o(i.drv_lcdc_config_ccm) + drv_lcdc_config_disp_mode 0x00015729 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + drv_lcdc_config_dpi_polarity 0x0001573f Thumb Code 36 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + drv_lcdc_config_dpi_timing 0x00015763 Thumb Code 38 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + drv_lcdc_config_edpi_mode 0x00015789 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + drv_lcdc_config_endianness 0x0001579f Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_endianness) + drv_lcdc_config_input_size 0x000157b5 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_input_size) + drv_lcdc_config_int 0x000157c1 Thumb Code 30 drv_lcdc.o(i.drv_lcdc_config_int) + drv_lcdc_config_int_single 0x000157df Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_int_single) + drv_lcdc_config_overwrite 0x00015801 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_overwrite) + drv_lcdc_config_overwrite_rgb 0x00015823 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + drv_lcdc_config_partial_display_area 0x0001582f Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + drv_lcdc_config_partial_display_enable 0x00015849 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + drv_lcdc_config_scale_up_coef 0x0001586b Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + drv_lcdc_config_scale_up_step 0x00015885 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + drv_lcdc_config_src_parameter 0x00015891 Thumb Code 76 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + drv_lcdc_config_thresh 0x000158dd Thumb Code 6 drv_lcdc.o(i.drv_lcdc_config_thresh) + drv_lcdc_ctrl_flow 0x000158e3 Thumb Code 18 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + drv_lcdc_enable_shadow_reg 0x000158f5 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + drv_lcdc_set_int 0x00015915 Thumb Code 58 drv_lcdc.o(i.drv_lcdc_set_int) + drv_lcdc_set_video_hw_mode 0x00015955 Thumb Code 20 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + drv_lcdc_start 0x00015969 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_start) + drv_memc_clear_status 0x00015989 Thumb Code 12 drv_memc.o(i.drv_memc_clear_status) + drv_memc_enable_irq 0x00015995 Thumb Code 58 drv_memc.o(i.drv_memc_enable_irq) + drv_memc_gen_a_tear_signal 0x000159d5 Thumb Code 12 drv_memc.o(i.drv_memc_gen_a_tear_signal) + drv_memc_get_status 0x000159e1 Thumb Code 18 drv_memc.o(i.drv_memc_get_status) + drv_memc_rate_transfer_sel 0x000159f3 Thumb Code 16 drv_memc.o(i.drv_memc_rate_transfer_sel) + drv_memc_sel_vsync 0x00015a03 Thumb Code 14 drv_memc.o(i.drv_memc_sel_vsync) + drv_memc_set_active_height 0x00015a11 Thumb Code 14 drv_memc.o(i.drv_memc_set_active_height) + drv_memc_set_data_mode 0x00015a25 Thumb Code 12 drv_memc.o(i.drv_memc_set_data_mode) + drv_memc_set_double_buffer 0x00015a31 Thumb Code 16 drv_memc.o(i.drv_memc_set_double_buffer) + drv_memc_set_double_buffer_reverse 0x00015a41 Thumb Code 18 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + drv_memc_set_fs_en_conditions 0x00015a53 Thumb Code 16 drv_memc.o(i.drv_memc_set_fs_en_conditions) + drv_memc_set_inten 0x00015a63 Thumb Code 20 drv_memc.o(i.drv_memc_set_inten) + drv_memc_set_lcdc_st_conditions 0x00015a79 Thumb Code 18 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + drv_memc_set_ltpo_mode 0x00015a91 Thumb Code 26 drv_memc.o(i.drv_memc_set_ltpo_mode) + drv_memc_set_tear_mode 0x00015aab Thumb Code 14 drv_memc.o(i.drv_memc_set_tear_mode) + drv_memc_set_tear_waveform 0x00015ab9 Thumb Code 34 drv_memc.o(i.drv_memc_set_tear_waveform) + drv_memc_set_vidc_sync_cnt 0x00015ae1 Thumb Code 14 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + drv_param_init_get_ccm 0x00015af1 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_ccm) + drv_param_init_get_scld_filter_h 0x00015af9 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + drv_param_init_get_scld_filter_v 0x00015b0d Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + drv_param_init_get_sclu_filter 0x00015b21 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_sclu_filter) + drv_param_init_set_ccm 0x00015b29 Thumb Code 14 drv_param_init.o(i.drv_param_init_set_ccm) + drv_param_p2r_filter_init 0x00015b3d Thumb Code 30 drv_param_init.o(i.drv_param_p2r_filter_init) + drv_phy_enable_calibration 0x00015b61 Thumb Code 12 drv_phy_common.o(i.drv_phy_enable_calibration) + drv_phy_get_calibration 0x00015b71 Thumb Code 50 drv_phy_common.o(i.drv_phy_get_calibration) + drv_phy_get_pll_para 0x00015bad Thumb Code 88 drv_phy_common.o(i.drv_phy_get_pll_para) + drv_phy_get_rate_para 0x00015c0d Thumb Code 76 drv_phy_common.o(i.drv_phy_get_rate_para) + drv_phy_test_clear 0x00015c61 Thumb Code 16 drv_phy_common.o(i.drv_phy_test_clear) + drv_phy_test_lock 0x00015c71 Thumb Code 24 drv_phy_common.o(i.drv_phy_test_lock) + drv_phy_test_write_1_byte 0x00015c89 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_1_byte) + drv_phy_test_write_2_byte 0x00015ca9 Thumb Code 38 drv_phy_common.o(i.drv_phy_test_write_2_byte) + drv_phy_test_write_code 0x00015ccf Thumb Code 30 drv_phy_common.o(i.drv_phy_test_write_code) + drv_pwr_set_cp_mode 0x00015d0d Thumb Code 26 drv_pwr.o(i.drv_pwr_set_cp_mode) + drv_pwr_set_pvd_mode 0x00015d2d Thumb Code 18 drv_pwr.o(i.drv_pwr_set_pvd_mode) + drv_pwr_set_system_clk_src 0x00015d45 Thumb Code 44 drv_pwr.o(i.drv_pwr_set_system_clk_src) + drv_rxbr_clear_pkt_buffer 0x00015dc3 Thumb Code 10 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + drv_rxbr_clear_status0 0x00015dcd Thumb Code 4 drv_rxbr.o(i.drv_rxbr_clear_status0) + drv_rxbr_enable_irq 0x00015dd1 Thumb Code 90 drv_rxbr.o(i.drv_rxbr_enable_irq) + drv_rxbr_frame_drop_cfg 0x00015e2d Thumb Code 16 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + drv_rxbr_get_clk 0x00015e41 Thumb Code 66 drv_rxbr.o(i.drv_rxbr_get_clk) + drv_rxbr_get_col_addr 0x00015ea5 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_col_addr) + drv_rxbr_get_page_addr 0x00015ebb Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_page_addr) + drv_rxbr_hline_rcv0_cfg 0x00015ed1 Thumb Code 12 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + drv_rxbr_hline_rcv_cfg 0x00015edd Thumb Code 8 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + drv_rxbr_register_irq0_callback 0x00015ee5 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + drv_rxbr_register_irq1_callback 0x00015ef1 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + drv_rxbr_set_ack_pkt_header 0x00015efd Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + drv_rxbr_set_cmd_filter 0x00015f11 Thumb Code 204 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + drv_rxbr_set_color_format 0x00015fdd Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_color_format) + drv_rxbr_set_inten 0x00015ff1 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_inten) + drv_rxbr_set_ltpo_drop_th 0x00016005 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + drv_rxbr_set_usr_cfg 0x00016015 Thumb Code 38 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + drv_rxbr_set_usr_col 0x0001603b Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_col) + drv_rxbr_set_usr_row 0x00016043 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_row) + drv_spi_m_read_data 0x0001604d Thumb Code 28 drv_spi_master.o(i.drv_spi_m_read_data) + drv_swire_enable 0x0001606d Thumb Code 24 drv_swire.o(i.drv_swire_enable) + drv_swire_set_int 0x00016089 Thumb Code 76 drv_swire.o(i.drv_swire_set_int) + drv_swire_set_power_down 0x000160dd Thumb Code 24 drv_swire.o(i.drv_swire_set_power_down) + drv_sys_cfg_clear_all_int 0x000160f9 Thumb Code 8 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + drv_sys_cfg_clear_pending 0x00016105 Thumb Code 32 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + drv_sys_cfg_sel_ap_rst_lvl_trig 0x0001612d Thumb Code 18 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + drv_sys_cfg_sel_ap_rst_trig 0x00016145 Thumb Code 22 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + drv_sys_cfg_sel_gpio_group 0x00016161 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + drv_sys_cfg_sel_int_trig 0x00016185 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + drv_sys_cfg_set_dma_rx_req 0x000161a9 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + drv_sys_cfg_set_dma_tx_req 0x000161b9 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + drv_sys_cfg_set_int 0x000161c9 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + drv_timer_enable 0x00016207 Thumb Code 32 drv_timer.o(i.drv_timer_enable) + drv_timer_get_instance 0x00016229 Thumb Code 10 drv_timer.o(i.drv_timer_get_instance) + drv_timer_get_prescaler 0x00016239 Thumb Code 12 drv_timer.o(i.drv_timer_get_prescaler) + drv_timer_register_callback 0x0001628d Thumb Code 14 drv_timer.o(i.drv_timer_register_callback) + drv_timer_set_compare_val 0x000162a1 Thumb Code 16 drv_timer.o(i.drv_timer_set_compare_val) + drv_timer_set_int 0x000162b1 Thumb Code 80 drv_timer.o(i.drv_timer_set_int) + drv_timer_set_prescaler 0x00016305 Thumb Code 36 drv_timer.o(i.drv_timer_set_prescaler) + drv_timer_set_repeat 0x0001632d Thumb Code 12 drv_timer.o(i.drv_timer_set_repeat) + drv_tx_phy_test_enter 0x00016347 Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + drv_tx_phy_test_exit 0x00016363 Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + drv_vidc_clear_irq 0x000163b5 Thumb Code 8 drv_vidc.o(i.drv_vidc_clear_irq) + drv_vidc_enable 0x000163bd Thumb Code 24 drv_vidc.o(i.drv_vidc_enable) + drv_vidc_enable_irq 0x000163d5 Thumb Code 58 drv_vidc.o(i.drv_vidc_enable_irq) + drv_vidc_get_irq_status 0x00016415 Thumb Code 18 drv_vidc.o(i.drv_vidc_get_irq_status) + drv_vidc_init_module_enable 0x00016429 Thumb Code 36 drv_vidc.o(i.drv_vidc_init_module_enable) + drv_vidc_register_callback 0x00016451 Thumb Code 6 drv_vidc.o(i.drv_vidc_register_callback) + drv_vidc_reset 0x0001645d Thumb Code 6 drv_vidc.o(i.drv_vidc_reset) + drv_vidc_set_dst_parameter 0x00016463 Thumb Code 60 drv_vidc.o(i.drv_vidc_set_dst_parameter) + drv_vidc_set_irqen 0x0001649f Thumb Code 20 drv_vidc.o(i.drv_vidc_set_irqen) + drv_vidc_set_mirror 0x000164b3 Thumb Code 16 drv_vidc.o(i.drv_vidc_set_mirror) + drv_vidc_set_p2r_hcoef0 0x000164c3 Thumb Code 8 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + drv_vidc_set_p2r_hinitb 0x000164cb Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + drv_vidc_set_p2r_hinitr 0x000164f1 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + drv_vidc_set_pentile_swap 0x00016519 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_pentile_swap) + drv_vidc_set_pu_ctrl 0x00016531 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + drv_vidc_set_rotation 0x0001653b Thumb Code 16 drv_vidc.o(i.drv_vidc_set_rotation) + drv_vidc_set_scld_hcoef0 0x0001654b Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + drv_vidc_set_scld_hcoef1 0x00016555 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + drv_vidc_set_scld_step 0x0001655f Thumb Code 18 drv_vidc.o(i.drv_vidc_set_scld_step) + drv_vidc_set_scld_vcoef0 0x00016571 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + drv_vidc_set_scld_vcoef1 0x0001657b Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + drv_vidc_set_src_parameter 0x00016585 Thumb Code 22 drv_vidc.o(i.drv_vidc_set_src_parameter) + drv_wdg_clear_counter 0x0001659d Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_counter) + drv_wdg_set_int 0x000165cd Thumb Code 60 drv_wdg.o(i.drv_wdg_set_int) + fls_clr_interrupt_flag 0x0001660d Thumb Code 10 drv_fls.o(i.fls_clr_interrupt_flag) + fputc 0x00016617 Thumb Code 20 tau_log.o(i.fputc) + hal_dsi_rx_ctrl_create_handle 0x0001662d Thumb Code 48 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + hal_dsi_rx_ctrl_deinit 0x00016661 Thumb Code 148 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + hal_dsi_rx_ctrl_dsc_async_handler 0x000166fd Thumb Code 120 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016781 Thumb Code 32 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + hal_dsi_rx_ctrl_get_max_ret_size 0x000167a9 Thumb Code 30 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + hal_dsi_rx_ctrl_init 0x000167d1 Thumb Code 88 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + hal_dsi_rx_ctrl_send_ack_cmd 0x00016f79 Thumb Code 212 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + hal_dsi_rx_ctrl_set_cus_sync_line 0x00017069 Thumb Code 44 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + hal_dsi_rx_ctrl_set_hw_tear_mode 0x0001709d Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) + hal_dsi_rx_ctrl_set_sw_tear_mode 0x0001717d Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + hal_dsi_rx_ctrl_start 0x000171b1 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + hal_dsi_rx_ctrl_stop 0x000171ed Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + hal_dsi_rx_ctrl_toggle_resolution 0x00017229 Thumb Code 28 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) + hal_dsi_tx_ctrl_create_handle 0x0001785d Thumb Code 34 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + hal_dsi_tx_ctrl_deinit 0x00017889 Thumb Code 118 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + hal_dsi_tx_ctrl_enter_init_panel_mode 0x0001790d Thumb Code 68 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + hal_dsi_tx_ctrl_exit_init_panel_mode 0x00017959 Thumb Code 32 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + hal_dsi_tx_ctrl_init 0x00017981 Thumb Code 154 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + hal_dsi_tx_ctrl_panel_reset_pin 0x00017a49 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + hal_dsi_tx_ctrl_set_ccm 0x00017a55 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + hal_dsi_tx_ctrl_set_overwrite_rgb 0x00017a75 Thumb Code 16 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + hal_dsi_tx_ctrl_set_partial_disp 0x00017a89 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + hal_dsi_tx_ctrl_set_partial_disp_area 0x00017a99 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + hal_dsi_tx_ctrl_start 0x00017abd Thumb Code 140 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + hal_dsi_tx_ctrl_stop 0x00017b59 Thumb Code 56 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + hal_dsi_tx_ctrl_write_array_cmd 0x00017b9d Thumb Code 210 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + hal_dsi_tx_ctrl_write_cmd 0x00017c75 Thumb Code 172 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + hal_gpio_ctrl_eint 0x00017f09 Thumb Code 18 hal_gpio.o(i.hal_gpio_ctrl_eint) + hal_gpio_get_input_data 0x00017f21 Thumb Code 18 hal_gpio.o(i.hal_gpio_get_input_data) + hal_gpio_init_eint 0x00017f35 Thumb Code 58 hal_gpio.o(i.hal_gpio_init_eint) + hal_gpio_init_input 0x00017f75 Thumb Code 28 hal_gpio.o(i.hal_gpio_init_input) + hal_gpio_init_output 0x00017f95 Thumb Code 34 hal_gpio.o(i.hal_gpio_init_output) + hal_gpio_reg_eint_cb 0x00017fbd Thumb Code 20 hal_gpio.o(i.hal_gpio_reg_eint_cb) + hal_gpio_set_ap_reset_int 0x00017fd5 Thumb Code 76 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + hal_gpio_set_mode 0x00018025 Thumb Code 90 hal_gpio.o(i.hal_gpio_set_mode) + hal_gpio_set_output_data 0x00018085 Thumb Code 8 hal_gpio.o(i.hal_gpio_set_output_data) + hal_gpio_set_pull_state 0x0001808d Thumb Code 26 hal_gpio.o(i.hal_gpio_set_pull_state) + hal_i2c_m_dma_init 0x000180ad Thumb Code 92 hal_i2c_master.o(i.hal_i2c_m_dma_init) + hal_i2c_m_dma_read 0x00018119 Thumb Code 26 hal_i2c_master.o(i.hal_i2c_m_dma_read) + hal_i2c_m_dma_write 0x00018139 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_m_dma_write) + hal_i2c_m_transfer_complate 0x00018155 Thumb Code 6 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + hal_i2c_s_dma_write 0x00018191 Thumb Code 62 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + hal_i2c_s_init 0x000181dd Thumb Code 176 hal_i2c_slave.o(i.hal_i2c_s_init) + hal_i2c_s_nonblocking_read 0x000182a5 Thumb Code 14 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + hal_i2c_s_set_transfer 0x000182b9 Thumb Code 6 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + hal_internal_init_memc 0x00018439 Thumb Code 170 hal_internal_vsync.o(i.hal_internal_init_memc) + hal_internal_sync_get_fb_setting 0x00018535 Thumb Code 12 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + hal_internal_sync_get_hight_performan_mode 0x00018545 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + hal_internal_sync_input_resolution_change 0x00018555 Thumb Code 438 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) + hal_internal_update_dpi_param 0x00018781 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + hal_internal_video_mode_auto_sync 0x00018791 Thumb Code 238 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + hal_internal_vsync_deinit 0x0001889d Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + hal_internal_vsync_get_rx_state 0x000188c5 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + hal_internal_vsync_get_sync_line 0x000188d1 Thumb Code 18 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + hal_internal_vsync_get_tear_mode 0x000188e9 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + hal_internal_vsync_get_tx_state 0x000188f5 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + hal_internal_vsync_init_rx 0x00018901 Thumb Code 236 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + hal_internal_vsync_init_tx 0x00018a19 Thumb Code 172 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + hal_internal_vsync_set_auto_hw_filter 0x00018ac9 Thumb Code 222 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + hal_internal_vsync_set_rx_state 0x00018be5 Thumb Code 16 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + hal_internal_vsync_set_sync_line 0x00018bf9 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + hal_internal_vsync_set_tear_mode 0x00018c1d Thumb Code 72 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + hal_internal_vsync_set_tx_state 0x00018c6d Thumb Code 118 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + hal_spi_m_clear_rxfifo 0x00019111 Thumb Code 14 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + hal_swire_deinit 0x0001911f Thumb Code 18 hal_swire.o(i.hal_swire_deinit) + hal_swire_open 0x00019131 Thumb Code 22 hal_swire.o(i.hal_swire_open) + hal_system_enable_systick 0x00019147 Thumb Code 8 hal_system.o(i.hal_system_enable_systick) + hal_system_init 0x00019151 Thumb Code 104 hal_system.o(i.hal_system_init) + hal_system_init_console 0x000191d9 Thumb Code 28 hal_system.o(i.hal_system_init_console) + hal_system_set_phy_calibration 0x000191f5 Thumb Code 8 hal_system.o(i.hal_system_set_phy_calibration) + hal_system_set_pvd 0x000191fd Thumb Code 8 hal_system.o(i.hal_system_set_pvd) + hal_system_set_vcc 0x00019205 Thumb Code 8 hal_system.o(i.hal_system_set_vcc) + hal_timer_deinit 0x0001920d Thumb Code 46 hal_timer.o(i.hal_timer_deinit) + hal_timer_init 0x0001923b Thumb Code 26 hal_timer.o(i.hal_timer_init) + hal_timer_start 0x00019255 Thumb Code 66 hal_timer.o(i.hal_timer_start) + hal_timer_stop 0x0001929d Thumb Code 40 hal_timer.o(i.hal_timer_stop) + hal_uart_init 0x000192c5 Thumb Code 126 hal_uart.o(i.hal_uart_init) + hal_uart_transmit_blocking 0x00019351 Thumb Code 12 hal_uart.o(i.hal_uart_transmit_blocking) + handle_init 0x00019361 Thumb Code 140 irq_redirect .o(i.handle_init) + main 0x0001956d Thumb Code 10 main.o(i.main) + sqrt 0x0001a229 Thumb Code 66 sqrt.o(i.sqrt) + panel_init_code 0x0001a680 Data 9967 ap_demo.o(.constdata) + phone_data_21 0x0001cd6f Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_55 0x0001cd70 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_85_00 0x0001cd71 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_30 0x0001cd72 Data 2 app_tp_for_custom_s8.o(.constdata) + phone_data_52 0x0001cd74 Data 3 app_tp_for_custom_s8.o(.constdata) + phone_data_A3 0x0001cd77 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A4 0x0001cd7b Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A5 0x0001cd7f Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_AF 0x0001cd83 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_F1 0x0001cd87 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_22 0x0001cd8b Data 5 app_tp_for_custom_s8.o(.constdata) + phone_data_60_1 0x0001cd90 Data 16 app_tp_for_custom_s8.o(.constdata) + phone_data_23 0x0001cda0 Data 13 app_tp_for_custom_s8.o(.constdata) + phone_data_85_02 0x0001cdad Data 30 app_tp_for_custom_s8.o(.constdata) + phone_data_90 0x0001cdcb Data 10 app_tp_for_custom_s8.o(.constdata) + phone_data_72_03 0x0001cdd5 Data 1292 app_tp_for_custom_s8.o(.constdata) + phone_data_72_05 0x0001d2e1 Data 1292 app_tp_for_custom_s8.o(.constdata) + phone_data_72_1D 0x0001d7ed Data 1292 app_tp_for_custom_s8.o(.constdata) + phone_data_72_13 0x0001dcf9 Data 1292 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7401_7D01 0x0001e205 Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7401_7D02 0x0001e493 Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7401_7D03 0x0001e721 Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7402_7D01 0x0001e9af Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7402_7D03 0x0001ec3d Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7403_7D01 0x0001eecb Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7403_7D03 0x0001f159 Data 654 app_tp_for_custom_s8.o(.constdata) + phone_data_75_FF 0x0001f3e7 Data 288 app_tp_for_custom_s8.o(.constdata) + sleep_on 0x0001f507 Data 16 app_tp_for_custom_s8.o(.constdata) + screen_reg_start_data_size 0x0001f517 Data 1 app_tp_for_custom_s8.o(.constdata) + Region$$Table$$Base 0x0001f980 Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0001f9b0 Number 0 anon$$obj.o(Region$$Table) + g_fun_handle 0x00070100 Data 192 irq_redirect .o(.ARM.__AT_0x00070100) + phone_start_flag 0x000701d7 Data 1 ap_demo.o(.data) + phone_DisplayOFF_flag 0x000701d8 Data 1 ap_demo.o(.data) + panel_mode 0x000701da Data 1 ap_demo.o(.data) + phone_DisplayOFF_count 0x000701dc Data 2 ap_demo.o(.data) + panel_r 0x000701de Data 2 ap_demo.o(.data) + panel_g 0x000701e0 Data 2 ap_demo.o(.data) + panel_b 0x000701e2 Data 2 ap_demo.o(.data) + s_screen_init_complate 0x000701f4 Data 1 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data1 0x000701f8 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data3 0x000701fb Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data4 0x000701fe Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data2 0x00070201 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data3 0x00070204 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data6 0x00070207 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data7 0x0007020a Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data8 0x0007020d Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data4 0x00070210 Data 4 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data5 0x00070214 Data 4 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data2 0x00070218 Data 6 app_tp_transfer.o(.data) + phone_data_E4 0x0007021e Data 1 app_tp_for_custom_s8.o(.data) + tp_flag 0x0007021f Data 1 app_tp_for_custom_s8.o(.data) + g_phone_output_int_pad 0x00070220 Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_in 0x00070221 Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_count 0x00070222 Data 1 app_tp_for_custom_s8.o(.data) + sleep_double_EN 0x00070223 Data 1 app_tp_for_custom_s8.o(.data) + Flag_EA_EN 0x00070224 Data 1 app_tp_for_custom_s8.o(.data) + Flag_touch_count 0x00070225 Data 1 app_tp_for_custom_s8.o(.data) + touchnum_bak 0x00070226 Data 1 app_tp_for_custom_s8.o(.data) + Flag_blacklight_EN 0x00070227 Data 1 app_tp_for_custom_s8.o(.data) + fingerprint_flag 0x00070228 Data 1 app_tp_for_custom_s8.o(.data) + phone_data_B1 0x00070231 Data 2 app_tp_for_custom_s8.o(.data) + fingerprint_arr_on 0x0007023c Data 16 app_tp_for_custom_s8.o(.data) + fingerprint_arr_off 0x0007024c Data 16 app_tp_for_custom_s8.o(.data) + phone_reg_coord_back 0x0007025c Data 200 app_tp_for_custom_s8.o(.data) + g_screen_input_rst_pad 0x00070324 Data 1 app_tp_for_custom_s8.o(.data) + g_screen_input_int_pad 0x00070325 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_1 0x00070326 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_2 0x00070327 Data 3 app_tp_for_custom_s8.o(.data) + screen_data_write_3 0x0007032a Data 5 app_tp_for_custom_s8.o(.data) + screen_reg_int_data 0x00070330 Data 48 app_tp_for_custom_s8.o(.data) + g_fls_w_cmd 0x0007038c Data 1 norflash.o(.data) + g_fls_r_cmd 0x0007038d Data 1 norflash.o(.data) + g_fls_write_en_status 0x0007038e Data 1 norflash.o(.data) + isFlsTransferEnd 0x0007038f Data 1 norflash.o(.data) + isFlsFifoReq 0x00070390 Data 1 norflash.o(.data) + isNandWriteCompleted 0x00070391 Data 1 norflash.o(.data) + isNandReadCompleted 0x00070392 Data 1 norflash.o(.data) + g_fls_error_info 0x00070398 Data 6 norflash.o(.data) + g_systick_cb_func 0x000703a4 Data 4 drv_common.o(.data) + g_system_clock 0x000703a8 Data 4 drv_common.o(.data) + g_scld_fhd_filter_h 0x000703c0 Data 256 drv_param_init.o(.data) + g_scld_fhd_filter_v 0x000704c0 Data 256 drv_param_init.o(.data) + g_scld_hd_filter_h 0x000705c0 Data 256 drv_param_init.o(.data) + g_scld_hd_filter_v 0x000706c0 Data 256 drv_param_init.o(.data) + g_sclu_lanczos_filter 0x000707c0 Data 128 drv_param_init.o(.data) + g_ccm_setting 0x00070840 Data 36 drv_param_init.o(.data) + g_sof_gen_te_func 0x000708cc Data 4 hal_internal_vsync.o(.data) + g_int_rxbr_irq0_cb_func 0x000708d0 Data 4 drv_rxbr.o(.data) + g_int_rxbr_irq1_cb_func 0x000708d4 Data 4 drv_rxbr.o(.data) + g_int_vidc_cb_func 0x000708d8 Data 4 drv_vidc.o(.data) + __stdout 0x0007090c Data 4 stdout.o(.data) + string 0x00070bb4 Data 256 tau_log.o(.bss) + hal_dmahandle 0x00070cb4 Data 160 hal_uart.o(.bss) + hal_uarthandle_dma 0x00070d54 Data 32 hal_uart.o(.bss) + hal_uart_handle_global 0x00070d74 Data 16 hal_uart.o(.bss) + g_vsync_hande 0x00070f20 Data 100 hal_internal_vsync.o(.bss) + g_dcs_execute_table 0x00070f84 Data 2048 hal_internal_vsync.o(.bss) + g_packet_fifo 0x000718a4 Data 4144 dcs_packet_fifo.o(.bss) + g_spis_ctrl_handle 0x000728d4 Data 32 hal_spi_slave.o(.bss) + __stack_limit 0x000728f8 Data 0 startup_armcm0.o(STACK) + __initial_sp 0x000738f8 Data 0 startup_armcm0.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x000100c1 + + Load Region LR_IROM2 (Base: 0x00010000, Size: 0x000100f4, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x0000fd9c]) + + Execution Region ER_IROM2 (Exec base: 0x00010000, Load base: 0x00010000, Size: 0x0000f9b0, Max: 0x00010000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00010000 0x00010000 0x000000c0 Data RO 514 RESET startup_armcm0.o + 0x000100c0 0x000100c0 0x00000000 Code RO 2551 * .ARM.Collect$$$$00000000 mc_p.l(entry.o) + 0x000100c0 0x000100c0 0x00000004 Code RO 2861 .ARM.Collect$$$$00000001 mc_p.l(entry2.o) + 0x000100c4 0x000100c4 0x00000004 Code RO 2864 .ARM.Collect$$$$00000004 mc_p.l(entry5.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2866 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2868 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o) + 0x000100c8 0x000100c8 0x00000008 Code RO 2869 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2871 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2873 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o) + 0x000100d0 0x000100d0 0x00000004 Code RO 2862 .ARM.Collect$$$$00002712 mc_p.l(entry2.o) + 0x000100d4 0x000100d4 0x00000078 Code RO 515 .text startup_armcm0.o + 0x0001014c 0x0001014c 0x0000002c Code RO 2554 .text mc_p.l(uidiv.o) + 0x00010178 0x00010178 0x00000028 Code RO 2556 .text mc_p.l(idiv.o) + 0x000101a0 0x000101a0 0x00000024 Code RO 2558 .text mc_p.l(memcpya.o) + 0x000101c4 0x000101c4 0x00000024 Code RO 2560 .text mc_p.l(memseta.o) + 0x000101e8 0x000101e8 0x000000b2 Code RO 2825 .text mf_p.l(fadd.o) + 0x0001029a 0x0001029a 0x0000007a Code RO 2827 .text mf_p.l(fmul.o) + 0x00010314 0x00010314 0x0000007c Code RO 2829 .text mf_p.l(fdiv.o) + 0x00010390 0x00010390 0x00000018 Code RO 2831 .text mf_p.l(fscalb.o) + 0x000103a8 0x000103a8 0x00000164 Code RO 2833 .text mf_p.l(dadd.o) + 0x0001050c 0x0001050c 0x000000d0 Code RO 2835 .text mf_p.l(dmul.o) + 0x000105dc 0x000105dc 0x000000f0 Code RO 2837 .text mf_p.l(ddiv.o) + 0x000106cc 0x000106cc 0x00000016 Code RO 2839 .text mf_p.l(fflti.o) + 0x000106e2 0x000106e2 0x0000000e Code RO 2841 .text mf_p.l(ffltui.o) + 0x000106f0 0x000106f0 0x0000001c Code RO 2845 .text mf_p.l(dfltui.o) + 0x0001070c 0x0001070c 0x00000032 Code RO 2847 .text mf_p.l(ffixi.o) + 0x0001073e 0x0001073e 0x00000028 Code RO 2849 .text mf_p.l(ffixui.o) + 0x00010766 0x00010766 0x00000002 PAD + 0x00010768 0x00010768 0x00000048 Code RO 2851 .text mf_p.l(dfixi.o) + 0x000107b0 0x000107b0 0x0000003c Code RO 2853 .text mf_p.l(dfixui.o) + 0x000107ec 0x000107ec 0x00000028 Code RO 2855 .text mf_p.l(f2d.o) + 0x00010814 0x00010814 0x00000028 Code RO 2857 .text mf_p.l(cdcmple.o) + 0x0001083c 0x0001083c 0x00000014 Code RO 2859 .text mf_p.l(cfrcmple.o) + 0x00010850 0x00010850 0x00000060 Code RO 2876 .text mc_p.l(uldiv.o) + 0x000108b0 0x000108b0 0x00000020 Code RO 2878 .text mc_p.l(llshl.o) + 0x000108d0 0x000108d0 0x00000022 Code RO 2880 .text mc_p.l(llushr.o) + 0x000108f2 0x000108f2 0x00000026 Code RO 2882 .text mc_p.l(llsshr.o) + 0x00010918 0x00010918 0x00000000 Code RO 2891 .text mc_p.l(iusefp.o) + 0x00010918 0x00010918 0x00000082 Code RO 2892 .text mf_p.l(fepilogue.o) + 0x0001099a 0x0001099a 0x000000be Code RO 2894 .text mf_p.l(depilogue.o) + 0x00010a58 0x00010a58 0x000000a2 Code RO 2898 .text mf_p.l(dsqrt.o) + 0x00010afa 0x00010afa 0x00000002 PAD + 0x00010afc 0x00010afc 0x00000040 Code RO 2900 .text mf_p.l(dfixul.o) + 0x00010b3c 0x00010b3c 0x00000028 Code RO 2902 .text mf_p.l(cdrcmple.o) + 0x00010b64 0x00010b64 0x00000024 Code RO 2904 .text mc_p.l(init.o) + 0x00010b88 0x00010b88 0x00000056 Code RO 2914 .text mc_p.l(__dczerorl2.o) + 0x00010bde 0x00010bde 0x00000002 PAD + 0x00010be0 0x00010be0 0x00000018 Code RO 2146 i.ADC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010bf8 0x00010bf8 0x00000018 Code RO 2147 i.AP_NRESET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c10 0x00010c10 0x00000014 Code RO 2148 i.DMA_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c24 0x00010c24 0x0000001c Code RO 2149 i.EXTI_INT0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c40 0x00010c40 0x0000001c Code RO 2150 i.EXTI_INT1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c5c 0x00010c5c 0x0000001c Code RO 2151 i.EXTI_INT2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c78 0x00010c78 0x0000001c Code RO 2152 i.EXTI_INT3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c94 0x00010c94 0x0000001c Code RO 2153 i.EXTI_INT4_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cb0 0x00010cb0 0x0000001c Code RO 2154 i.EXTI_INT5_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ccc 0x00010ccc 0x0000001c Code RO 2155 i.EXTI_INT6_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ce8 0x00010ce8 0x0000001c Code RO 2156 i.EXTI_INT7_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d04 0x00010d04 0x00000014 Code RO 2157 i.FLSCTRL_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d18 0x00010d18 0x0000004e Code RO 86 i.Gpio_swire_output ap_demo.o + 0x00010d66 0x00010d66 0x00000002 PAD + 0x00010d68 0x00010d68 0x00000014 Code RO 2158 i.HardFault_Handler CVWL368.lib(irq_redirect .o) + 0x00010d7c 0x00010d7c 0x00000018 Code RO 2159 i.I2C0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d94 0x00010d94 0x00000018 Code RO 2160 i.I2C1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dac 0x00010dac 0x00000018 Code RO 2161 i.LCDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dc4 0x00010dc4 0x00000028 Code RO 927 i.LOG_printf CVWL368.lib(tau_log.o) + 0x00010dec 0x00010dec 0x00000018 Code RO 2162 i.MEMC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e04 0x00010e04 0x00000018 Code RO 2163 i.MIPI_RX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e1c 0x00010e1c 0x00000018 Code RO 2164 i.MIPI_TX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e34 0x00010e34 0x0000001c Code RO 2165 i.PWMDET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e50 0x00010e50 0x0000014c Code RO 246 i.S20_Start_init app_tp_transfer.o + 0x00010f9c 0x00010f9c 0x0000001c Code RO 2166 i.SPIM_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fb8 0x00010fb8 0x0000001c Code RO 2167 i.SPIS_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fd4 0x00010fd4 0x0000001c Code RO 2168 i.SWIRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ff0 0x00010ff0 0x00000002 Code RO 2433 i.UART_DisableDma CVWL368.lib(drv_uart.o) + 0x00010ff2 0x00010ff2 0x00000004 Code RO 2439 i.UART_GetInstance CVWL368.lib(drv_uart.o) + 0x00010ff6 0x00010ff6 0x00000002 Code RO 2909 i.__scatterload_null mc_p.l(handlers.o) + 0x00010ff8 0x00010ff8 0x00000008 Code RO 2457 i.app_UART_IRQn_Handler CVWL368.lib(drv_uart.o) + 0x00011000 0x00011000 0x00000014 Data RO 1049 .ARM.__at_0x11000 CVWL368.lib(drv_common.o) + 0x00011014 0x00011014 0x00000004 Code RO 1730 i.drv_dsi_rx_set_inten CVWL368.lib(drv_dsi_rx.o) + 0x00011018 0x00011018 0x00000004 Data RO 1050 .ARM.__at_0x11018 CVWL368.lib(drv_common.o) + 0x0001101c 0x0001101c 0x00000018 Code RO 2169 i.SysTick_Handler CVWL368.lib(irq_redirect .o) + 0x00011034 0x00011034 0x00000018 Code RO 2170 i.TIMER0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001104c 0x0001104c 0x00000018 Code RO 2171 i.TIMER1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011064 0x00011064 0x00000018 Code RO 2172 i.TIMER2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001107c 0x0001107c 0x00000018 Code RO 2173 i.TIMER3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011094 0x00011094 0x0000001c Code RO 2429 i.UART0_IRQ_Handle CVWL368.lib(drv_uart.o) + 0x000110b0 0x000110b0 0x00000018 Code RO 2174 i.UART_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110c8 0x000110c8 0x00000024 Code RO 2447 i.UART_ResetRxFIFO CVWL368.lib(drv_uart.o) + 0x000110ec 0x000110ec 0x00000048 Code RO 2450 i.UART_SetBaudRate CVWL368.lib(drv_uart.o) + 0x00011134 0x00011134 0x0000001a Code RO 2451 i.UART_SwitchSCLK CVWL368.lib(drv_uart.o) + 0x0001114e 0x0001114e 0x00000134 Code RO 2453 i.UART_TransferHandleIRQ CVWL368.lib(drv_uart.o) + 0x00011282 0x00011282 0x0000001a Code RO 2455 i.UART_WriteBlocking CVWL368.lib(drv_uart.o) + 0x0001129c 0x0001129c 0x000000bc Code RO 2456 i.UART_init CVWL368.lib(drv_uart.o) + 0x00011358 0x00011358 0x00000018 Code RO 2175 i.VIDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011370 0x00011370 0x00000018 Code RO 2176 i.VPRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011388 0x00011388 0x00000018 Code RO 2177 i.WDG_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113a0 0x000113a0 0x00000020 Code RO 2797 i.__0printf mc_p.l(printfa.o) + 0x000113c0 0x000113c0 0x00000024 Code RO 2803 i.__0vsprintf mc_p.l(printfa.o) + 0x000113e4 0x000113e4 0x0000002e Code RO 2896 i.__ARM_clz mf_p.l(depilogue.o) + 0x00011412 0x00011412 0x0000001a Code RO 612 i.__ARM_common_switch8 CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001142c 0x0001142c 0x00000018 Code RO 1370 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_i2c_master.o) + 0x00011444 0x00011444 0x00000018 Code RO 1494 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_spi_master.o) + 0x0001145c 0x0001145c 0x00000020 Code RO 2000 i.__NVIC_DisableIRQ CVWL368.lib(drv_rxbr.o) + 0x0001147c 0x0001147c 0x00000018 Code RO 2001 i.__NVIC_EnableIRQ CVWL368.lib(drv_rxbr.o) + 0x00011494 0x00011494 0x00000044 Code RO 2296 i.__NVIC_SetPriority CVWL368.lib(hal_spi_slave.o) + 0x000114d8 0x000114d8 0x0000000e Code RO 2908 i.__scatterload_copy mc_p.l(handlers.o) + 0x000114e6 0x000114e6 0x0000000e Code RO 2910 i.__scatterload_zeroinit mc_p.l(handlers.o) + 0x000114f4 0x000114f4 0x0000000c Code RO 2886 i.__set_errno mc_p.l(errno.o) + 0x00011500 0x00011500 0x00000174 Code RO 2804 i._fp_digits mc_p.l(printfa.o) + 0x00011674 0x00011674 0x000006ec Code RO 2805 i._printf_core mc_p.l(printfa.o) + 0x00011d60 0x00011d60 0x00000020 Code RO 2806 i._printf_post_padding mc_p.l(printfa.o) + 0x00011d80 0x00011d80 0x0000002c Code RO 2807 i._printf_pre_padding mc_p.l(printfa.o) + 0x00011dac 0x00011dac 0x0000000a Code RO 2809 i._sputc mc_p.l(printfa.o) + 0x00011db6 0x00011db6 0x00000002 PAD + 0x00011db8 0x00011db8 0x000002dc Code RO 87 i.ap_dcs_read ap_demo.o + 0x00012094 0x00012094 0x0000023c Code RO 88 i.ap_demo ap_demo.o + 0x000122d0 0x000122d0 0x00000030 Code RO 89 i.ap_get_reg_53 ap_demo.o + 0x00012300 0x00012300 0x00000098 Code RO 90 i.ap_get_reg_df ap_demo.o + 0x00012398 0x00012398 0x00000064 Code RO 91 i.ap_reset_cb ap_demo.o + 0x000123fc 0x000123fc 0x00000050 Code RO 92 i.ap_set_backlight_51 ap_demo.o + 0x0001244c 0x0001244c 0x00000050 Code RO 93 i.ap_set_display_off ap_demo.o + 0x0001249c 0x0001249c 0x0000002c Code RO 94 i.ap_set_display_on ap_demo.o + 0x000124c8 0x000124c8 0x00000060 Code RO 95 i.ap_set_enter_sleep_mode ap_demo.o + 0x00012528 0x00012528 0x00000048 Code RO 96 i.ap_set_exit_sleep_mode ap_demo.o + 0x00012570 0x00012570 0x0000001c Code RO 97 i.ap_set_tp_calibration_04 ap_demo.o + 0x0001258c 0x0001258c 0x000000b0 Code RO 247 i.ap_tp_calibration app_tp_transfer.o + 0x0001263c 0x0001263c 0x0000001c Code RO 2002 i.app_ADC_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00012658 0x00012658 0x00000024 Code RO 1294 i.app_AP_NRESET_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x0001267c 0x0001267c 0x0000001c Code RO 1295 i.app_EXTI_INT0_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012698 0x00012698 0x0000001c Code RO 1296 i.app_EXTI_INT1_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000126b4 0x000126b4 0x0000001c Code RO 1297 i.app_EXTI_INT2_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000126d0 0x000126d0 0x0000001c Code RO 1298 i.app_EXTI_INT3_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x000126ec 0x000126ec 0x0000001c Code RO 1299 i.app_EXTI_INT4_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012708 0x00012708 0x0000001c Code RO 1300 i.app_EXTI_INT5_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012724 0x00012724 0x0000001c Code RO 1301 i.app_EXTI_INT6_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012740 0x00012740 0x0000001c Code RO 1302 i.app_EXTI_INT7_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x0001275c 0x0001275c 0x00000048 Code RO 1041 i.app_HardFault_Handler CVWL368.lib(drv_common.o) + 0x000127a4 0x000127a4 0x00000018 Code RO 1405 i.app_I2C0_IRQn_Handler CVWL368.lib(drv_i2c_slave.o) + 0x000127bc 0x000127bc 0x00000010 Code RO 1371 i.app_I2C1_IRQn_Handler CVWL368.lib(drv_i2c_master.o) + 0x000127cc 0x000127cc 0x000001a4 Code RO 1612 i.app_LCDC_IRQn_Handler CVWL368.lib(hal_internal_vsync.o) + 0x00012970 0x00012970 0x00000088 Code RO 1944 i.app_MEMC_IRQn_Handler CVWL368.lib(drv_memc.o) + 0x000129f8 0x000129f8 0x00000298 Code RO 1716 i.app_MIPI_RX_IRQn_Handler CVWL368.lib(drv_dsi_rx.o) + 0x00012c90 0x00012c90 0x000000a0 Code RO 1772 i.app_MIPI_TX_IRQn_Handler CVWL368.lib(drv_dsi_tx.o) + 0x00012d30 0x00012d30 0x00000048 Code RO 2364 i.app_PWMDET_IRQn_Handler CVWL368.lib(drv_pwm.o) + 0x00012d78 0x00012d78 0x00000030 Code RO 1495 i.app_SPIM_IRQn_Handler CVWL368.lib(drv_spi_master.o) + 0x00012da8 0x00012da8 0x00000200 Code RO 2297 i.app_SPIS_IRQn_Handler CVWL368.lib(hal_spi_slave.o) + 0x00012fa8 0x00012fa8 0x00000020 Code RO 1527 i.app_SWIRE_IRQn_Handler CVWL368.lib(drv_swire.o) + 0x00012fc8 0x00012fc8 0x00000018 Code RO 1042 i.app_SysTick_Handler CVWL368.lib(drv_common.o) + 0x00012fe0 0x00012fe0 0x0000000a Code RO 1577 i.app_TIMER0_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012fea 0x00012fea 0x0000000a Code RO 1578 i.app_TIMER1_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012ff4 0x00012ff4 0x0000000a Code RO 1579 i.app_TIMER2_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00012ffe 0x00012ffe 0x0000000a Code RO 1580 i.app_TIMER3_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00013008 0x00013008 0x0000001c Code RO 2067 i.app_VIDC_IRQn_Handler CVWL368.lib(drv_vidc.o) + 0x00013024 0x00013024 0x0000001c Code RO 2003 i.app_VPRE_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00013040 0x00013040 0x00000038 Code RO 2516 i.app_WDG_IRQn_Handler CVWL368.lib(drv_wdg.o) + 0x00013078 0x00013078 0x00000010 Code RO 1156 i.app_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00013088 0x00013088 0x00000030 Code RO 957 i.app_fls_ctrl_Handler CVWL368.lib(norflash.o) + 0x000130b8 0x000130b8 0x00000024 Code RO 248 i.app_tp_I2C_init app_tp_transfer.o + 0x000130dc 0x000130dc 0x00000018 Code RO 98 i.app_tp_calibration_exec ap_demo.o + 0x000130f4 0x000130f4 0x00000030 Code RO 249 i.app_tp_i2cs_callback app_tp_transfer.o + 0x00013124 0x00013124 0x00000044 Code RO 250 i.app_tp_init app_tp_transfer.o + 0x00013168 0x00013168 0x00000020 Code RO 251 i.app_tp_m_read app_tp_transfer.o + 0x00013188 0x00013188 0x00000008 Code RO 253 i.app_tp_m_write app_tp_transfer.o + 0x00013190 0x00013190 0x000002f8 Code RO 396 i.app_tp_phone_analysis_data app_tp_for_custom_s8.o + 0x00013488 0x00013488 0x00000008 Code RO 256 i.app_tp_s_read app_tp_transfer.o + 0x00013490 0x00013490 0x00000008 Code RO 258 i.app_tp_s_write app_tp_transfer.o + 0x00013498 0x00013498 0x0000034c Code RO 398 i.app_tp_screen_analysis_int app_tp_for_custom_s8.o + 0x000137e4 0x000137e4 0x00000030 Code RO 259 i.app_tp_screen_init app_tp_transfer.o + 0x00013814 0x00013814 0x0000000c Code RO 260 i.app_tp_screen_int_callback app_tp_transfer.o + 0x00013820 0x00013820 0x00000040 Code RO 261 i.app_tp_transfer_screen_const app_tp_transfer.o + 0x00013860 0x00013860 0x0000010c Code RO 262 i.app_tp_transfer_screen_int app_tp_transfer.o + 0x0001396c 0x0001396c 0x00000014 Code RO 263 i.app_tp_transfer_screen_start app_tp_transfer.o + 0x00013980 0x00013980 0x00000024 Code RO 494 i.board_Init board.o + 0x000139a4 0x000139a4 0x000004f0 Code RO 1613 i.calc_framebuffer_setting CVWL368.lib(hal_internal_vsync.o) + 0x00013e94 0x00013e94 0x000000c8 Code RO 2540 i.ceil m_ps.l(ceil.o) + 0x00013f5c 0x00013f5c 0x0000002c Code RO 1614 i.check_mipi_rx_tx_video_info CVWL368.lib(hal_internal_vsync.o) + 0x00013f88 0x00013f88 0x00000094 Code RO 1615 i.check_pkt_buf_rev CVWL368.lib(hal_internal_vsync.o) + 0x0001401c 0x0001401c 0x00000058 Code RO 1703 i.dcs_packet_fifo_alloc CVWL368.lib(dcs_packet_fifo.o) + 0x00014074 0x00014074 0x00000018 Code RO 1704 i.dcs_packet_fifo_init CVWL368.lib(dcs_packet_fifo.o) + 0x0001408c 0x0001408c 0x00000044 Code RO 1705 i.dcs_packet_free_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x000140d0 0x000140d0 0x00000024 Code RO 1706 i.dcs_packet_get_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x000140f4 0x000140f4 0x0000001c Code RO 1616 i.dcs_sw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00014110 0x00014110 0x00000018 Code RO 919 i.delayMs CVWL368.lib(tau_delay.o) + 0x00014128 0x00014128 0x00000022 Code RO 920 i.delayUs CVWL368.lib(tau_delay.o) + 0x0001414a 0x0001414a 0x00000002 PAD + 0x0001414c 0x0001414c 0x00000038 Code RO 1546 i.drv_ap_rst_trig_edge_detect CVWL368.lib(drv_sys_cfg.o) + 0x00014184 0x00014184 0x0000000c Code RO 2267 i.drv_chip_info_get_info CVWL368.lib(drv_chip_info.o) + 0x00014190 0x00014190 0x00000040 Code RO 2268 i.drv_chip_info_init CVWL368.lib(drv_chip_info.o) + 0x000141d0 0x000141d0 0x000000b0 Code RO 2269 i.drv_chip_rx_info_check CVWL368.lib(drv_chip_info.o) + 0x00014280 0x00014280 0x00000014 Code RO 2270 i.drv_chip_rx_init_done CVWL368.lib(drv_chip_info.o) + 0x00014294 0x00014294 0x00000058 Code RO 1044 i.drv_common_enable_systick CVWL368.lib(drv_common.o) + 0x000142ec 0x000142ec 0x00000008 Code RO 1047 i.drv_common_system_init CVWL368.lib(drv_common.o) + 0x000142f4 0x000142f4 0x00000010 Code RO 1069 i.drv_crgu_config_reset_modules CVWL368.lib(drv_crgu.o) + 0x00014304 0x00014304 0x00000014 Code RO 1082 i.drv_crgu_set_ahb_pre_div CVWL368.lib(drv_crgu.o) + 0x00014318 0x00014318 0x00000014 Code RO 1083 i.drv_crgu_set_ahb_src CVWL368.lib(drv_crgu.o) + 0x0001432c 0x0001432c 0x00000020 Code RO 1086 i.drv_crgu_set_clock CVWL368.lib(drv_crgu.o) + 0x0001434c 0x0001434c 0x00000014 Code RO 1087 i.drv_crgu_set_dpi_mux_src CVWL368.lib(drv_crgu.o) + 0x00014360 0x00014360 0x00000018 Code RO 1088 i.drv_crgu_set_dpi_pre_div CVWL368.lib(drv_crgu.o) + 0x00014378 0x00014378 0x00000014 Code RO 1089 i.drv_crgu_set_dpi_pre_src CVWL368.lib(drv_crgu.o) + 0x0001438c 0x0001438c 0x00000014 Code RO 1090 i.drv_crgu_set_dsc_core_div CVWL368.lib(drv_crgu.o) + 0x000143a0 0x000143a0 0x00000014 Code RO 1091 i.drv_crgu_set_dsco_src CVWL368.lib(drv_crgu.o) + 0x000143b4 0x000143b4 0x00000014 Code RO 1092 i.drv_crgu_set_dsco_src_div CVWL368.lib(drv_crgu.o) + 0x000143c8 0x000143c8 0x00000014 Code RO 1093 i.drv_crgu_set_fb_div CVWL368.lib(drv_crgu.o) + 0x000143dc 0x000143dc 0x00000014 Code RO 1094 i.drv_crgu_set_fb_src CVWL368.lib(drv_crgu.o) + 0x000143f0 0x000143f0 0x00000014 Code RO 1097 i.drv_crgu_set_lcdc_div CVWL368.lib(drv_crgu.o) + 0x00014404 0x00014404 0x00000014 Code RO 1098 i.drv_crgu_set_lcdc_src CVWL368.lib(drv_crgu.o) + 0x00014418 0x00014418 0x00000014 Code RO 1099 i.drv_crgu_set_mipi_cfg_src CVWL368.lib(drv_crgu.o) + 0x0001442c 0x0001442c 0x00000018 Code RO 1100 i.drv_crgu_set_mipi_ref_src CVWL368.lib(drv_crgu.o) + 0x00014444 0x00014444 0x00000018 Code RO 1103 i.drv_crgu_set_reset CVWL368.lib(drv_crgu.o) + 0x0001445c 0x0001445c 0x00000014 Code RO 1104 i.drv_crgu_set_rxbr_div CVWL368.lib(drv_crgu.o) + 0x00014470 0x00014470 0x00000014 Code RO 1105 i.drv_crgu_set_rxbr_src CVWL368.lib(drv_crgu.o) + 0x00014484 0x00014484 0x00000014 Code RO 1107 i.drv_crgu_set_vidc_src CVWL368.lib(drv_crgu.o) + 0x00014498 0x00014498 0x00000018 Code RO 1160 i.drv_dma_clear_flag CVWL368.lib(drv_dma.o) + 0x000144b0 0x000144b0 0x0000001c Code RO 1161 i.drv_dma_create_handle CVWL368.lib(drv_dma.o) + 0x000144cc 0x000144cc 0x00000010 Code RO 1163 i.drv_dma_disenable_channel CVWL368.lib(drv_dma.o) + 0x000144dc 0x000144dc 0x00000010 Code RO 1165 i.drv_dma_enable_channel CVWL368.lib(drv_dma.o) + 0x000144ec 0x000144ec 0x00000024 Code RO 1166 i.drv_dma_enable_channel_interrupts CVWL368.lib(drv_dma.o) + 0x00014510 0x00014510 0x0000000c Code RO 1168 i.drv_dma_get_channel_flag CVWL368.lib(drv_dma.o) + 0x0001451c 0x0001451c 0x00000090 Code RO 1171 i.drv_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x000145ac 0x000145ac 0x00000012 Code RO 1173 i.drv_dma_prepar_transfer CVWL368.lib(drv_dma.o) + 0x000145be 0x000145be 0x0000001a Code RO 1175 i.drv_dma_set_burst CVWL368.lib(drv_dma.o) + 0x000145d8 0x000145d8 0x00000006 Code RO 1176 i.drv_dma_set_callback CVWL368.lib(drv_dma.o) + 0x000145de 0x000145de 0x00000002 PAD + 0x000145e0 0x000145e0 0x00000044 Code RO 1178 i.drv_dma_set_transfer CVWL368.lib(drv_dma.o) + 0x00014624 0x00014624 0x00000036 Code RO 2280 i.drv_dsc_dec_convert_pps_rc_parameter CVWL368.lib(drv_dsc_dec.o) + 0x0001465a 0x0001465a 0x0000000c Code RO 2281 i.drv_dsc_dec_disable CVWL368.lib(drv_dsc_dec.o) + 0x00014666 0x00014666 0x00000002 PAD + 0x00014668 0x00014668 0x00000074 Code RO 2282 i.drv_dsc_dec_enable CVWL368.lib(drv_dsc_dec.o) + 0x000146dc 0x000146dc 0x0000000a Code RO 2283 i.drv_dsc_dec_get_nslc CVWL368.lib(drv_dsc_dec.o) + 0x000146e6 0x000146e6 0x00000028 Code RO 2285 i.drv_dsc_dec_set_u8_pps CVWL368.lib(drv_dsc_dec.o) + 0x0001470e 0x0001470e 0x00000002 PAD + 0x00014710 0x00014710 0x00000104 Code RO 1717 i.drv_dsi_rx_calc_ipi_tx_delay CVWL368.lib(drv_dsi_rx.o) + 0x00014814 0x00014814 0x00000040 Code RO 1718 i.drv_dsi_rx_enable_irq CVWL368.lib(drv_dsi_rx.o) + 0x00014854 0x00014854 0x00000050 Code RO 1719 i.drv_dsi_rx_get_color_bpp CVWL368.lib(drv_dsi_rx.o) + 0x000148a4 0x000148a4 0x0000001c Code RO 1720 i.drv_dsi_rx_get_color_pcc CVWL368.lib(drv_dsi_rx.o) + 0x000148c0 0x000148c0 0x00000008 Code RO 1721 i.drv_dsi_rx_get_compression_en CVWL368.lib(drv_dsi_rx.o) + 0x000148c8 0x000148c8 0x00000006 Code RO 1722 i.drv_dsi_rx_get_max_ret_size CVWL368.lib(drv_dsi_rx.o) + 0x000148ce 0x000148ce 0x0000000e Code RO 1726 i.drv_dsi_rx_power_up CVWL368.lib(drv_dsi_rx.o) + 0x000148dc 0x000148dc 0x00000020 Code RO 1727 i.drv_dsi_rx_set_ctrl_cfg CVWL368.lib(drv_dsi_rx.o) + 0x000148fc 0x000148fc 0x00000010 Code RO 1728 i.drv_dsi_rx_set_ddi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x0001490c 0x0001490c 0x00000010 Code RO 1731 i.drv_dsi_rx_set_ipi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x0001491c 0x0001491c 0x00000046 Code RO 1733 i.drv_dsi_rx_set_lane_swap CVWL368.lib(drv_dsi_rx.o) + 0x00014962 0x00014962 0x00000026 Code RO 1734 i.drv_dsi_rx_set_resp_cnt CVWL368.lib(drv_dsi_rx.o) + 0x00014988 0x00014988 0x00000104 Code RO 1735 i.drv_dsi_rx_set_up_phy CVWL368.lib(drv_dsi_rx.o) + 0x00014a8c 0x00014a8c 0x0000000e Code RO 1736 i.drv_dsi_rx_shut_down CVWL368.lib(drv_dsi_rx.o) + 0x00014a9a 0x00014a9a 0x00000014 Code RO 1774 i.drv_dsi_tx_command_header CVWL368.lib(drv_dsi_tx.o) + 0x00014aae 0x00014aae 0x0000006c Code RO 1775 i.drv_dsi_tx_command_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00014b1a 0x00014b1a 0x00000004 Code RO 1776 i.drv_dsi_tx_command_put_payload CVWL368.lib(drv_dsi_tx.o) + 0x00014b1e 0x00014b1e 0x00000018 Code RO 1777 i.drv_dsi_tx_config_eotp CVWL368.lib(drv_dsi_tx.o) + 0x00014b36 0x00014b36 0x00000008 Code RO 1778 i.drv_dsi_tx_config_int CVWL368.lib(drv_dsi_tx.o) + 0x00014b3e 0x00014b3e 0x00000008 Code RO 1779 i.drv_dsi_tx_dpi_lpcmd_time CVWL368.lib(drv_dsi_tx.o) + 0x00014b46 0x00014b46 0x0000000a Code RO 1780 i.drv_dsi_tx_dpi_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014b50 0x00014b50 0x00000024 Code RO 1781 i.drv_dsi_tx_dpi_polarity CVWL368.lib(drv_dsi_tx.o) + 0x00014b74 0x00014b74 0x00000004 Code RO 1782 i.drv_dsi_tx_edpi_cmd_size CVWL368.lib(drv_dsi_tx.o) + 0x00014b78 0x00014b78 0x00000004 Code RO 1784 i.drv_dsi_tx_get_cmd_status CVWL368.lib(drv_dsi_tx.o) + 0x00014b7c 0x00014b7c 0x00000004 Code RO 1786 i.drv_dsi_tx_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014b80 0x00014b80 0x00000018 Code RO 1787 i.drv_dsi_tx_phy_clock_lane_auto_lp CVWL368.lib(drv_dsi_tx.o) + 0x00014b98 0x00014b98 0x0000001a Code RO 1788 i.drv_dsi_tx_phy_clock_lane_req_hs CVWL368.lib(drv_dsi_tx.o) + 0x00014bb2 0x00014bb2 0x0000000c Code RO 1790 i.drv_dsi_tx_phy_lane_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014bbe 0x00014bbe 0x00000064 Code RO 1794 i.drv_dsi_tx_phy_status_ready CVWL368.lib(drv_dsi_tx.o) + 0x00014c22 0x00014c22 0x0000003e Code RO 1795 i.drv_dsi_tx_phy_status_stopstate CVWL368.lib(drv_dsi_tx.o) + 0x00014c60 0x00014c60 0x00000134 Code RO 1797 i.drv_dsi_tx_phy_test_setup CVWL368.lib(drv_dsi_tx.o) + 0x00014d94 0x00014d94 0x0000001e Code RO 1798 i.drv_dsi_tx_phy_time_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00014db2 0x00014db2 0x00000008 Code RO 1802 i.drv_dsi_tx_powerup CVWL368.lib(drv_dsi_tx.o) + 0x00014dba 0x00014dba 0x0000001c Code RO 1803 i.drv_dsi_tx_response_mode CVWL368.lib(drv_dsi_tx.o) + 0x00014dd6 0x00014dd6 0x00000018 Code RO 1806 i.drv_dsi_tx_set_bta_ack CVWL368.lib(drv_dsi_tx.o) + 0x00014dee 0x00014dee 0x0000000c Code RO 1807 i.drv_dsi_tx_set_esc_div CVWL368.lib(drv_dsi_tx.o) + 0x00014dfa 0x00014dfa 0x00000002 PAD + 0x00014dfc 0x00014dfc 0x00000040 Code RO 1808 i.drv_dsi_tx_set_int CVWL368.lib(drv_dsi_tx.o) + 0x00014e3c 0x00014e3c 0x00000010 Code RO 1809 i.drv_dsi_tx_set_time_out_div CVWL368.lib(drv_dsi_tx.o) + 0x00014e4c 0x00014e4c 0x00000008 Code RO 1810 i.drv_dsi_tx_set_video_chunk CVWL368.lib(drv_dsi_tx.o) + 0x00014e54 0x00014e54 0x00000022 Code RO 1811 i.drv_dsi_tx_set_video_timing CVWL368.lib(drv_dsi_tx.o) + 0x00014e76 0x00014e76 0x00000008 Code RO 1813 i.drv_dsi_tx_shutdown CVWL368.lib(drv_dsi_tx.o) + 0x00014e7e 0x00014e7e 0x00000026 Code RO 1814 i.drv_dsi_tx_timeout_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00014ea4 0x00014ea4 0x000000aa Code RO 1817 i.drv_dsi_tx_video_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00014f4e 0x00014f4e 0x00000016 Code RO 1818 i.drv_dsi_tx_video_mode_disable_hact_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00014f64 0x00014f64 0x00000018 Code RO 1819 i.drv_dsi_tx_video_mode_set_lp_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00014f7c 0x00014f7c 0x0000002e Code RO 2218 i.drv_efuse_enter_inactive CVWL368.lib(drv_efuse.o) + 0x00014faa 0x00014faa 0x0000000c Code RO 2221 i.drv_efuse_int_enable CVWL368.lib(drv_efuse.o) + 0x00014fb6 0x00014fb6 0x00000032 Code RO 2222 i.drv_efuse_read CVWL368.lib(drv_efuse.o) + 0x00014fe8 0x00014fe8 0x00000018 Code RO 2223 i.drv_efuse_read_req CVWL368.lib(drv_efuse.o) + 0x00015000 0x00015000 0x00000018 Code RO 1303 i.drv_gpio_get_input_data CVWL368.lib(drv_gpio.o) + 0x00015018 0x00015018 0x0000000c Code RO 1305 i.drv_gpio_register_ap_reset_callback CVWL368.lib(drv_gpio.o) + 0x00015024 0x00015024 0x00000014 Code RO 1306 i.drv_gpio_register_callback CVWL368.lib(drv_gpio.o) + 0x00015038 0x00015038 0x00000050 Code RO 1308 i.drv_gpio_set_int CVWL368.lib(drv_gpio.o) + 0x00015088 0x00015088 0x00000020 Code RO 1309 i.drv_gpio_set_ioe CVWL368.lib(drv_gpio.o) + 0x000150a8 0x000150a8 0x00000010 Code RO 1310 i.drv_gpio_set_mode0 CVWL368.lib(drv_gpio.o) + 0x000150b8 0x000150b8 0x00000010 Code RO 1311 i.drv_gpio_set_mode1 CVWL368.lib(drv_gpio.o) + 0x000150c8 0x000150c8 0x00000010 Code RO 1312 i.drv_gpio_set_mode2 CVWL368.lib(drv_gpio.o) + 0x000150d8 0x000150d8 0x00000010 Code RO 1313 i.drv_gpio_set_mode3 CVWL368.lib(drv_gpio.o) + 0x000150e8 0x000150e8 0x00000020 Code RO 720 i.drv_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x00015108 0x00015108 0x00000130 Code RO 1314 i.drv_gpio_set_pull_state CVWL368.lib(drv_gpio.o) + 0x00015238 0x00015238 0x0000000c Code RO 1406 i.drv_i2c0_set_callback CVWL368.lib(drv_i2c_slave.o) + 0x00015244 0x00015244 0x0000000c Code RO 1372 i.drv_i2c1_set_callback CVWL368.lib(drv_i2c_master.o) + 0x00015250 0x00015250 0x00000034 Code RO 1346 i.drv_i2c_dma_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015284 0x00015284 0x000000ac Code RO 1347 i.drv_i2c_dma_init CVWL368.lib(drv_i2c_dma.o) + 0x00015330 0x00015330 0x0000001a Code RO 1348 i.drv_i2c_enable_rx_dma CVWL368.lib(drv_i2c_dma.o) + 0x0001534a 0x0001534a 0x00000018 Code RO 1349 i.drv_i2c_enable_tx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015362 0x00015362 0x00000002 PAD + 0x00015364 0x00015364 0x00000060 Code RO 1374 i.drv_i2c_m_clear_it_pending_bit CVWL368.lib(drv_i2c_master.o) + 0x000153c4 0x000153c4 0x00000010 Code RO 1377 i.drv_i2c_m_enable CVWL368.lib(drv_i2c_master.o) + 0x000153d4 0x000153d4 0x00000038 Code RO 1378 i.drv_i2c_m_enable_intr CVWL368.lib(drv_i2c_master.o) + 0x0001540c 0x0001540c 0x0000008c Code RO 1384 i.drv_i2c_master_init CVWL368.lib(drv_i2c_master.o) + 0x00015498 0x00015498 0x0000005c Code RO 1350 i.drv_i2c_master_read_dma CVWL368.lib(drv_i2c_dma.o) + 0x000154f4 0x000154f4 0x0000003c Code RO 1351 i.drv_i2c_master_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015530 0x00015530 0x0000003e Code RO 1352 i.drv_i2c_master_write_read_cmd CVWL368.lib(drv_i2c_dma.o) + 0x0001556e 0x0001556e 0x00000042 Code RO 1407 i.drv_i2c_s_clear_it_pending_bit CVWL368.lib(drv_i2c_slave.o) + 0x000155b0 0x000155b0 0x00000004 Code RO 1408 i.drv_i2c_s_config_intr CVWL368.lib(drv_i2c_slave.o) + 0x000155b4 0x000155b4 0x00000008 Code RO 1409 i.drv_i2c_s_enable CVWL368.lib(drv_i2c_slave.o) + 0x000155bc 0x000155bc 0x00000014 Code RO 1410 i.drv_i2c_s_get_fifo_status CVWL368.lib(drv_i2c_slave.o) + 0x000155d0 0x000155d0 0x00000050 Code RO 1413 i.drv_i2c_s_set_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015620 0x00015620 0x0000001c Code RO 1414 i.drv_i2c_s_write_data CVWL368.lib(drv_i2c_slave.o) + 0x0001563c 0x0001563c 0x00000058 Code RO 1353 i.drv_i2c_set_dma_irq_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015694 0x00015694 0x00000032 Code RO 1415 i.drv_i2c_slave_init CVWL368.lib(drv_i2c_slave.o) + 0x000156c6 0x000156c6 0x00000002 PAD + 0x000156c8 0x000156c8 0x00000018 Code RO 1354 i.drv_i2c_slave_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x000156e0 0x000156e0 0x00000018 Code RO 1886 i.drv_lcdc_config_bypass CVWL368.lib(drv_lcdc.o) + 0x000156f8 0x000156f8 0x00000030 Code RO 1887 i.drv_lcdc_config_ccm CVWL368.lib(drv_lcdc.o) + 0x00015728 0x00015728 0x00000016 Code RO 1888 i.drv_lcdc_config_disp_mode CVWL368.lib(drv_lcdc.o) + 0x0001573e 0x0001573e 0x00000024 Code RO 1889 i.drv_lcdc_config_dpi_polarity CVWL368.lib(drv_lcdc.o) + 0x00015762 0x00015762 0x00000026 Code RO 1890 i.drv_lcdc_config_dpi_timing CVWL368.lib(drv_lcdc.o) + 0x00015788 0x00015788 0x00000016 Code RO 1891 i.drv_lcdc_config_edpi_mode CVWL368.lib(drv_lcdc.o) + 0x0001579e 0x0001579e 0x00000016 Code RO 1892 i.drv_lcdc_config_endianness CVWL368.lib(drv_lcdc.o) + 0x000157b4 0x000157b4 0x0000000c Code RO 1893 i.drv_lcdc_config_input_size CVWL368.lib(drv_lcdc.o) + 0x000157c0 0x000157c0 0x0000001e Code RO 1894 i.drv_lcdc_config_int CVWL368.lib(drv_lcdc.o) + 0x000157de 0x000157de 0x00000022 Code RO 1895 i.drv_lcdc_config_int_single CVWL368.lib(drv_lcdc.o) + 0x00015800 0x00015800 0x00000022 Code RO 1896 i.drv_lcdc_config_overwrite CVWL368.lib(drv_lcdc.o) + 0x00015822 0x00015822 0x0000000c Code RO 1897 i.drv_lcdc_config_overwrite_rgb CVWL368.lib(drv_lcdc.o) + 0x0001582e 0x0001582e 0x0000001a Code RO 1898 i.drv_lcdc_config_partial_display_area CVWL368.lib(drv_lcdc.o) + 0x00015848 0x00015848 0x00000022 Code RO 1899 i.drv_lcdc_config_partial_display_enable CVWL368.lib(drv_lcdc.o) + 0x0001586a 0x0001586a 0x0000001a Code RO 1901 i.drv_lcdc_config_scale_up_coef CVWL368.lib(drv_lcdc.o) + 0x00015884 0x00015884 0x0000000c Code RO 1902 i.drv_lcdc_config_scale_up_step CVWL368.lib(drv_lcdc.o) + 0x00015890 0x00015890 0x0000004c Code RO 1903 i.drv_lcdc_config_src_parameter CVWL368.lib(drv_lcdc.o) + 0x000158dc 0x000158dc 0x00000006 Code RO 1904 i.drv_lcdc_config_thresh CVWL368.lib(drv_lcdc.o) + 0x000158e2 0x000158e2 0x00000012 Code RO 1905 i.drv_lcdc_ctrl_flow CVWL368.lib(drv_lcdc.o) + 0x000158f4 0x000158f4 0x00000020 Code RO 1907 i.drv_lcdc_enable_shadow_reg CVWL368.lib(drv_lcdc.o) + 0x00015914 0x00015914 0x00000040 Code RO 1908 i.drv_lcdc_set_int CVWL368.lib(drv_lcdc.o) + 0x00015954 0x00015954 0x00000014 Code RO 1910 i.drv_lcdc_set_video_hw_mode CVWL368.lib(drv_lcdc.o) + 0x00015968 0x00015968 0x00000020 Code RO 1911 i.drv_lcdc_start CVWL368.lib(drv_lcdc.o) + 0x00015988 0x00015988 0x0000000c Code RO 1945 i.drv_memc_clear_status CVWL368.lib(drv_memc.o) + 0x00015994 0x00015994 0x00000040 Code RO 1946 i.drv_memc_enable_irq CVWL368.lib(drv_memc.o) + 0x000159d4 0x000159d4 0x0000000c Code RO 1947 i.drv_memc_gen_a_tear_signal CVWL368.lib(drv_memc.o) + 0x000159e0 0x000159e0 0x00000012 Code RO 1948 i.drv_memc_get_status CVWL368.lib(drv_memc.o) + 0x000159f2 0x000159f2 0x00000010 Code RO 1949 i.drv_memc_rate_transfer_sel CVWL368.lib(drv_memc.o) + 0x00015a02 0x00015a02 0x0000000e Code RO 1950 i.drv_memc_sel_vsync CVWL368.lib(drv_memc.o) + 0x00015a10 0x00015a10 0x00000014 Code RO 1951 i.drv_memc_set_active_height CVWL368.lib(drv_memc.o) + 0x00015a24 0x00015a24 0x0000000c Code RO 1952 i.drv_memc_set_data_mode CVWL368.lib(drv_memc.o) + 0x00015a30 0x00015a30 0x00000010 Code RO 1955 i.drv_memc_set_double_buffer CVWL368.lib(drv_memc.o) + 0x00015a40 0x00015a40 0x00000012 Code RO 1956 i.drv_memc_set_double_buffer_reverse CVWL368.lib(drv_memc.o) + 0x00015a52 0x00015a52 0x00000010 Code RO 1958 i.drv_memc_set_fs_en_conditions CVWL368.lib(drv_memc.o) + 0x00015a62 0x00015a62 0x00000014 Code RO 1959 i.drv_memc_set_inten CVWL368.lib(drv_memc.o) + 0x00015a76 0x00015a76 0x00000002 PAD + 0x00015a78 0x00015a78 0x00000018 Code RO 1960 i.drv_memc_set_lcdc_st_conditions CVWL368.lib(drv_memc.o) + 0x00015a90 0x00015a90 0x0000001a Code RO 1961 i.drv_memc_set_ltpo_mode CVWL368.lib(drv_memc.o) + 0x00015aaa 0x00015aaa 0x0000000e Code RO 1965 i.drv_memc_set_tear_mode CVWL368.lib(drv_memc.o) + 0x00015ab8 0x00015ab8 0x00000028 Code RO 1966 i.drv_memc_set_tear_waveform CVWL368.lib(drv_memc.o) + 0x00015ae0 0x00015ae0 0x0000000e Code RO 1968 i.drv_memc_set_vidc_sync_cnt CVWL368.lib(drv_memc.o) + 0x00015aee 0x00015aee 0x00000002 PAD + 0x00015af0 0x00015af0 0x00000008 Code RO 1432 i.drv_param_init_get_ccm CVWL368.lib(drv_param_init.o) + 0x00015af8 0x00015af8 0x00000014 Code RO 1433 i.drv_param_init_get_scld_filter_h CVWL368.lib(drv_param_init.o) + 0x00015b0c 0x00015b0c 0x00000014 Code RO 1434 i.drv_param_init_get_scld_filter_v CVWL368.lib(drv_param_init.o) + 0x00015b20 0x00015b20 0x00000008 Code RO 1435 i.drv_param_init_get_sclu_filter CVWL368.lib(drv_param_init.o) + 0x00015b28 0x00015b28 0x00000014 Code RO 1436 i.drv_param_init_set_ccm CVWL368.lib(drv_param_init.o) + 0x00015b3c 0x00015b3c 0x00000024 Code RO 1439 i.drv_param_p2r_filter_init CVWL368.lib(drv_param_init.o) + 0x00015b60 0x00015b60 0x00000010 Code RO 2239 i.drv_phy_enable_calibration CVWL368.lib(drv_phy_common.o) + 0x00015b70 0x00015b70 0x0000003c Code RO 2240 i.drv_phy_get_calibration CVWL368.lib(drv_phy_common.o) + 0x00015bac 0x00015bac 0x00000060 Code RO 2241 i.drv_phy_get_pll_para CVWL368.lib(drv_phy_common.o) + 0x00015c0c 0x00015c0c 0x00000054 Code RO 2242 i.drv_phy_get_rate_para CVWL368.lib(drv_phy_common.o) + 0x00015c60 0x00015c60 0x00000010 Code RO 2243 i.drv_phy_test_clear CVWL368.lib(drv_phy_common.o) + 0x00015c70 0x00015c70 0x00000018 Code RO 2244 i.drv_phy_test_lock CVWL368.lib(drv_phy_common.o) + 0x00015c88 0x00015c88 0x00000020 Code RO 2246 i.drv_phy_test_write_1_byte CVWL368.lib(drv_phy_common.o) + 0x00015ca8 0x00015ca8 0x00000026 Code RO 2247 i.drv_phy_test_write_2_byte CVWL368.lib(drv_phy_common.o) + 0x00015cce 0x00015cce 0x0000001e Code RO 2248 i.drv_phy_test_write_code CVWL368.lib(drv_phy_common.o) + 0x00015cec 0x00015cec 0x00000020 Code RO 2249 i.drv_phy_test_write_data CVWL368.lib(drv_phy_common.o) + 0x00015d0c 0x00015d0c 0x00000020 Code RO 1455 i.drv_pwr_set_cp_mode CVWL368.lib(drv_pwr.o) + 0x00015d2c 0x00015d2c 0x00000018 Code RO 1457 i.drv_pwr_set_pvd_mode CVWL368.lib(drv_pwr.o) + 0x00015d44 0x00015d44 0x00000038 Code RO 1458 i.drv_pwr_set_system_clk_src CVWL368.lib(drv_pwr.o) + 0x00015d7c 0x00015d7c 0x0000000c Code RO 1737 i.drv_rx_phy_test_clear CVWL368.lib(drv_dsi_rx.o) + 0x00015d88 0x00015d88 0x00000010 Code RO 1738 i.drv_rx_phy_test_lock CVWL368.lib(drv_dsi_rx.o) + 0x00015d98 0x00015d98 0x00000014 Code RO 1740 i.drv_rx_phy_test_write_1_byte CVWL368.lib(drv_dsi_rx.o) + 0x00015dac 0x00015dac 0x00000016 Code RO 1741 i.drv_rx_phy_test_write_2_byte CVWL368.lib(drv_dsi_rx.o) + 0x00015dc2 0x00015dc2 0x0000000a Code RO 2004 i.drv_rxbr_clear_pkt_buffer CVWL368.lib(drv_rxbr.o) + 0x00015dcc 0x00015dcc 0x00000004 Code RO 2005 i.drv_rxbr_clear_status0 CVWL368.lib(drv_rxbr.o) + 0x00015dd0 0x00015dd0 0x0000005a Code RO 2007 i.drv_rxbr_enable_irq CVWL368.lib(drv_rxbr.o) + 0x00015e2a 0x00015e2a 0x00000002 PAD + 0x00015e2c 0x00015e2c 0x00000014 Code RO 2008 i.drv_rxbr_frame_drop_cfg CVWL368.lib(drv_rxbr.o) + 0x00015e40 0x00015e40 0x00000064 Code RO 2009 i.drv_rxbr_get_clk CVWL368.lib(drv_rxbr.o) + 0x00015ea4 0x00015ea4 0x00000004 Code RO 2010 i.drv_rxbr_get_col_addr CVWL368.lib(drv_rxbr.o) + 0x00015ea8 0x00015ea8 0x00000012 Code RO 1617 i.drv_rxbr_get_int_source CVWL368.lib(hal_internal_vsync.o) + 0x00015eba 0x00015eba 0x00000004 Code RO 2013 i.drv_rxbr_get_page_addr CVWL368.lib(drv_rxbr.o) + 0x00015ebe 0x00015ebe 0x00000012 Code RO 1618 i.drv_rxbr_get_status0 CVWL368.lib(hal_internal_vsync.o) + 0x00015ed0 0x00015ed0 0x0000000c Code RO 2015 i.drv_rxbr_hline_rcv0_cfg CVWL368.lib(drv_rxbr.o) + 0x00015edc 0x00015edc 0x00000008 Code RO 2016 i.drv_rxbr_hline_rcv_cfg CVWL368.lib(drv_rxbr.o) + 0x00015ee4 0x00015ee4 0x0000000c Code RO 2017 i.drv_rxbr_register_irq0_callback CVWL368.lib(drv_rxbr.o) + 0x00015ef0 0x00015ef0 0x0000000c Code RO 2018 i.drv_rxbr_register_irq1_callback CVWL368.lib(drv_rxbr.o) + 0x00015efc 0x00015efc 0x00000014 Code RO 2019 i.drv_rxbr_set_ack_pkt_header CVWL368.lib(drv_rxbr.o) + 0x00015f10 0x00015f10 0x000000cc Code RO 2020 i.drv_rxbr_set_cmd_filter CVWL368.lib(drv_rxbr.o) + 0x00015fdc 0x00015fdc 0x00000014 Code RO 2022 i.drv_rxbr_set_color_format CVWL368.lib(drv_rxbr.o) + 0x00015ff0 0x00015ff0 0x00000014 Code RO 2024 i.drv_rxbr_set_inten CVWL368.lib(drv_rxbr.o) + 0x00016004 0x00016004 0x00000010 Code RO 2025 i.drv_rxbr_set_ltpo_drop_th CVWL368.lib(drv_rxbr.o) + 0x00016014 0x00016014 0x00000026 Code RO 2027 i.drv_rxbr_set_usr_cfg CVWL368.lib(drv_rxbr.o) + 0x0001603a 0x0001603a 0x00000008 Code RO 2028 i.drv_rxbr_set_usr_col CVWL368.lib(drv_rxbr.o) + 0x00016042 0x00016042 0x00000008 Code RO 2029 i.drv_rxbr_set_usr_row CVWL368.lib(drv_rxbr.o) + 0x0001604a 0x0001604a 0x00000002 PAD + 0x0001604c 0x0001604c 0x00000020 Code RO 1503 i.drv_spi_m_read_data CVWL368.lib(drv_spi_master.o) + 0x0001606c 0x0001606c 0x0000001c Code RO 1528 i.drv_swire_enable CVWL368.lib(drv_swire.o) + 0x00016088 0x00016088 0x00000054 Code RO 1531 i.drv_swire_set_int CVWL368.lib(drv_swire.o) + 0x000160dc 0x000160dc 0x0000001c Code RO 1532 i.drv_swire_set_power_down CVWL368.lib(drv_swire.o) + 0x000160f8 0x000160f8 0x0000000c Code RO 1547 i.drv_sys_cfg_clear_all_int CVWL368.lib(drv_sys_cfg.o) + 0x00016104 0x00016104 0x00000028 Code RO 1548 i.drv_sys_cfg_clear_pending CVWL368.lib(drv_sys_cfg.o) + 0x0001612c 0x0001612c 0x00000018 Code RO 1551 i.drv_sys_cfg_sel_ap_rst_lvl_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016144 0x00016144 0x0000001c Code RO 1552 i.drv_sys_cfg_sel_ap_rst_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016160 0x00016160 0x00000024 Code RO 1553 i.drv_sys_cfg_sel_gpio_group CVWL368.lib(drv_sys_cfg.o) + 0x00016184 0x00016184 0x00000024 Code RO 1554 i.drv_sys_cfg_sel_int_trig CVWL368.lib(drv_sys_cfg.o) + 0x000161a8 0x000161a8 0x00000010 Code RO 1556 i.drv_sys_cfg_set_dma_rx_req CVWL368.lib(drv_sys_cfg.o) + 0x000161b8 0x000161b8 0x00000010 Code RO 1557 i.drv_sys_cfg_set_dma_tx_req CVWL368.lib(drv_sys_cfg.o) + 0x000161c8 0x000161c8 0x00000024 Code RO 1558 i.drv_sys_cfg_set_int CVWL368.lib(drv_sys_cfg.o) + 0x000161ec 0x000161ec 0x0000001a Code RO 1581 i.drv_timer_clear_status_flags CVWL368.lib(drv_timer.o) + 0x00016206 0x00016206 0x00000020 Code RO 1582 i.drv_timer_enable CVWL368.lib(drv_timer.o) + 0x00016226 0x00016226 0x00000002 PAD + 0x00016228 0x00016228 0x00000010 Code RO 1583 i.drv_timer_get_instance CVWL368.lib(drv_timer.o) + 0x00016238 0x00016238 0x00000010 Code RO 1584 i.drv_timer_get_prescaler CVWL368.lib(drv_timer.o) + 0x00016248 0x00016248 0x00000044 Code RO 1586 i.drv_timer_handle_interrupt CVWL368.lib(drv_timer.o) + 0x0001628c 0x0001628c 0x00000014 Code RO 1587 i.drv_timer_register_callback CVWL368.lib(drv_timer.o) + 0x000162a0 0x000162a0 0x00000010 Code RO 1588 i.drv_timer_set_compare_val CVWL368.lib(drv_timer.o) + 0x000162b0 0x000162b0 0x00000054 Code RO 1589 i.drv_timer_set_int CVWL368.lib(drv_timer.o) + 0x00016304 0x00016304 0x00000028 Code RO 1590 i.drv_timer_set_prescaler CVWL368.lib(drv_timer.o) + 0x0001632c 0x0001632c 0x00000010 Code RO 1591 i.drv_timer_set_repeat CVWL368.lib(drv_timer.o) + 0x0001633c 0x0001633c 0x0000000a Code RO 1820 i.drv_tx_phy_test_clear CVWL368.lib(drv_dsi_tx.o) + 0x00016346 0x00016346 0x0000001c Code RO 1821 i.drv_tx_phy_test_enter CVWL368.lib(drv_dsi_tx.o) + 0x00016362 0x00016362 0x0000001c Code RO 1822 i.drv_tx_phy_test_exit CVWL368.lib(drv_dsi_tx.o) + 0x0001637e 0x0001637e 0x00000012 Code RO 1824 i.drv_tx_phy_test_write_1_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016390 0x00016390 0x00000014 Code RO 1825 i.drv_tx_phy_test_write_2_byte CVWL368.lib(drv_dsi_tx.o) + 0x000163a4 0x000163a4 0x00000010 Code RO 1826 i.drv_tx_phy_test_write_code CVWL368.lib(drv_dsi_tx.o) + 0x000163b4 0x000163b4 0x00000008 Code RO 2068 i.drv_vidc_clear_irq CVWL368.lib(drv_vidc.o) + 0x000163bc 0x000163bc 0x00000018 Code RO 2072 i.drv_vidc_enable CVWL368.lib(drv_vidc.o) + 0x000163d4 0x000163d4 0x00000040 Code RO 2073 i.drv_vidc_enable_irq CVWL368.lib(drv_vidc.o) + 0x00016414 0x00016414 0x00000012 Code RO 2075 i.drv_vidc_get_irq_status CVWL368.lib(drv_vidc.o) + 0x00016426 0x00016426 0x00000002 PAD + 0x00016428 0x00016428 0x00000028 Code RO 2079 i.drv_vidc_init_module_enable CVWL368.lib(drv_vidc.o) + 0x00016450 0x00016450 0x0000000c Code RO 2080 i.drv_vidc_register_callback CVWL368.lib(drv_vidc.o) + 0x0001645c 0x0001645c 0x00000006 Code RO 2081 i.drv_vidc_reset CVWL368.lib(drv_vidc.o) + 0x00016462 0x00016462 0x0000003c Code RO 2083 i.drv_vidc_set_dst_parameter CVWL368.lib(drv_vidc.o) + 0x0001649e 0x0001649e 0x00000014 Code RO 2087 i.drv_vidc_set_irqen CVWL368.lib(drv_vidc.o) + 0x000164b2 0x000164b2 0x00000010 Code RO 2088 i.drv_vidc_set_mirror CVWL368.lib(drv_vidc.o) + 0x000164c2 0x000164c2 0x00000008 Code RO 2091 i.drv_vidc_set_p2r_hcoef0 CVWL368.lib(drv_vidc.o) + 0x000164ca 0x000164ca 0x00000026 Code RO 2092 i.drv_vidc_set_p2r_hinitb CVWL368.lib(drv_vidc.o) + 0x000164f0 0x000164f0 0x00000026 Code RO 2093 i.drv_vidc_set_p2r_hinitr CVWL368.lib(drv_vidc.o) + 0x00016516 0x00016516 0x00000002 PAD + 0x00016518 0x00016518 0x00000018 Code RO 2094 i.drv_vidc_set_pentile_swap CVWL368.lib(drv_vidc.o) + 0x00016530 0x00016530 0x0000000a Code RO 2095 i.drv_vidc_set_pu_ctrl CVWL368.lib(drv_vidc.o) + 0x0001653a 0x0001653a 0x00000010 Code RO 2096 i.drv_vidc_set_rotation CVWL368.lib(drv_vidc.o) + 0x0001654a 0x0001654a 0x0000000a Code RO 2097 i.drv_vidc_set_scld_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016554 0x00016554 0x0000000a Code RO 2098 i.drv_vidc_set_scld_hcoef1 CVWL368.lib(drv_vidc.o) + 0x0001655e 0x0001655e 0x00000012 Code RO 2099 i.drv_vidc_set_scld_step CVWL368.lib(drv_vidc.o) + 0x00016570 0x00016570 0x0000000a Code RO 2100 i.drv_vidc_set_scld_vcoef0 CVWL368.lib(drv_vidc.o) + 0x0001657a 0x0001657a 0x0000000a Code RO 2101 i.drv_vidc_set_scld_vcoef1 CVWL368.lib(drv_vidc.o) + 0x00016584 0x00016584 0x00000016 Code RO 2102 i.drv_vidc_set_src_parameter CVWL368.lib(drv_vidc.o) + 0x0001659a 0x0001659a 0x00000002 PAD + 0x0001659c 0x0001659c 0x00000010 Code RO 2517 i.drv_wdg_clear_counter CVWL368.lib(drv_wdg.o) + 0x000165ac 0x000165ac 0x00000010 Code RO 2518 i.drv_wdg_clear_edge_flag CVWL368.lib(drv_wdg.o) + 0x000165bc 0x000165bc 0x00000010 Code RO 2521 i.drv_wdg_read_edge_flag CVWL368.lib(drv_wdg.o) + 0x000165cc 0x000165cc 0x00000040 Code RO 2524 i.drv_wdg_set_int CVWL368.lib(drv_wdg.o) + 0x0001660c 0x0001660c 0x0000000a Code RO 1215 i.fls_clr_interrupt_flag CVWL368.lib(drv_fls.o) + 0x00016616 0x00016616 0x00000014 Code RO 929 i.fputc CVWL368.lib(tau_log.o) + 0x0001662a 0x0001662a 0x00000002 PAD + 0x0001662c 0x0001662c 0x00000034 Code RO 523 i.hal_dsi_rx_ctrl_create_handle CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016660 0x00016660 0x0000009c Code RO 525 i.hal_dsi_rx_ctrl_deinit CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000166fc 0x000166fc 0x00000084 Code RO 527 i.hal_dsi_rx_ctrl_dsc_async_handler CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016780 0x00016780 0x00000028 Code RO 529 i.hal_dsi_rx_ctrl_gen_a_tear_signal CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000167a8 0x000167a8 0x00000028 Code RO 531 i.hal_dsi_rx_ctrl_get_max_ret_size CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000167d0 0x000167d0 0x00000060 Code RO 533 i.hal_dsi_rx_ctrl_init CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016830 0x00016830 0x000001a4 Code RO 534 i.hal_dsi_rx_ctrl_init_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000169d4 0x000169d4 0x000000d8 Code RO 535 i.hal_dsi_rx_ctrl_init_dsi_rx CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016aac 0x00016aac 0x00000158 Code RO 536 i.hal_dsi_rx_ctrl_init_memc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016c04 0x00016c04 0x00000148 Code RO 537 i.hal_dsi_rx_ctrl_init_rxbr CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016d4c 0x00016d4c 0x0000022c Code RO 538 i.hal_dsi_rx_ctrl_init_vidc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016f78 0x00016f78 0x000000f0 Code RO 542 i.hal_dsi_rx_ctrl_send_ack_cmd CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017068 0x00017068 0x00000034 Code RO 546 i.hal_dsi_rx_ctrl_set_cus_sync_line CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001709c 0x0001709c 0x00000034 Code RO 549 i.hal_dsi_rx_ctrl_set_hw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000170d0 0x000170d0 0x00000038 Code RO 550 i.hal_dsi_rx_ctrl_set_ipi_cfg CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017108 0x00017108 0x00000072 Code RO 555 i.hal_dsi_rx_ctrl_set_rxbr_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001717a 0x0001717a 0x00000002 PAD + 0x0001717c 0x0001717c 0x00000034 Code RO 556 i.hal_dsi_rx_ctrl_set_sw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000171b0 0x000171b0 0x0000003c Code RO 559 i.hal_dsi_rx_ctrl_start CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000171ec 0x000171ec 0x0000003c Code RO 560 i.hal_dsi_rx_ctrl_stop CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017228 0x00017228 0x00000020 Code RO 562 i.hal_dsi_rx_ctrl_toggle_resolution CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017248 0x00017248 0x00000190 Code RO 616 i.hal_dsi_tx_calc_video_chunks CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000173d8 0x000173d8 0x00000034 Code RO 617 i.hal_dsi_tx_config_params_for_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001740c 0x0001740c 0x00000450 Code RO 618 i.hal_dsi_tx_count_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001785c 0x0001785c 0x0000002c Code RO 621 i.hal_dsi_tx_ctrl_create_handle CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017888 0x00017888 0x00000084 Code RO 622 i.hal_dsi_tx_ctrl_deinit CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001790c 0x0001790c 0x0000004c Code RO 626 i.hal_dsi_tx_ctrl_enter_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017958 0x00017958 0x00000028 Code RO 628 i.hal_dsi_tx_ctrl_exit_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017980 0x00017980 0x000000a4 Code RO 630 i.hal_dsi_tx_ctrl_init CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a24 0x00017a24 0x00000024 Code RO 631 i.hal_dsi_tx_ctrl_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a48 0x00017a48 0x0000000c Code RO 632 i.hal_dsi_tx_ctrl_panel_reset_pin CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a54 0x00017a54 0x00000020 Code RO 635 i.hal_dsi_tx_ctrl_set_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a74 0x00017a74 0x00000014 Code RO 641 i.hal_dsi_tx_ctrl_set_overwrite_rgb CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a88 0x00017a88 0x00000010 Code RO 642 i.hal_dsi_tx_ctrl_set_partial_disp CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a98 0x00017a98 0x00000024 Code RO 643 i.hal_dsi_tx_ctrl_set_partial_disp_area CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017abc 0x00017abc 0x0000009c Code RO 646 i.hal_dsi_tx_ctrl_start CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017b58 0x00017b58 0x00000044 Code RO 647 i.hal_dsi_tx_ctrl_stop CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017b9c 0x00017b9c 0x000000d8 Code RO 648 i.hal_dsi_tx_ctrl_write_array_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017c74 0x00017c74 0x000000b0 Code RO 649 i.hal_dsi_tx_ctrl_write_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017d24 0x00017d24 0x00000044 Code RO 650 i.hal_dsi_tx_init_data_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017d68 0x00017d68 0x00000030 Code RO 651 i.hal_dsi_tx_init_dpi_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017d98 0x00017d98 0x00000020 Code RO 652 i.hal_dsi_tx_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017db8 0x00017db8 0x00000020 Code RO 653 i.hal_dsi_tx_init_phy_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017dd8 0x00017dd8 0x00000094 Code RO 654 i.hal_dsi_tx_init_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017e6c 0x00017e6c 0x00000058 Code RO 655 i.hal_dsi_tx_init_video_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ec4 0x00017ec4 0x00000044 Code RO 656 i.hal_dsi_tx_send_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017f08 0x00017f08 0x00000018 Code RO 721 i.hal_gpio_ctrl_eint CVWL368.lib(hal_gpio.o) + 0x00017f20 0x00017f20 0x00000012 Code RO 722 i.hal_gpio_get_input_data CVWL368.lib(hal_gpio.o) + 0x00017f32 0x00017f32 0x00000002 PAD + 0x00017f34 0x00017f34 0x00000040 Code RO 725 i.hal_gpio_init_eint CVWL368.lib(hal_gpio.o) + 0x00017f74 0x00017f74 0x00000020 Code RO 726 i.hal_gpio_init_input CVWL368.lib(hal_gpio.o) + 0x00017f94 0x00017f94 0x00000028 Code RO 727 i.hal_gpio_init_output CVWL368.lib(hal_gpio.o) + 0x00017fbc 0x00017fbc 0x00000018 Code RO 728 i.hal_gpio_reg_eint_cb CVWL368.lib(hal_gpio.o) + 0x00017fd4 0x00017fd4 0x00000050 Code RO 729 i.hal_gpio_set_ap_reset_int CVWL368.lib(hal_gpio.o) + 0x00018024 0x00018024 0x00000060 Code RO 731 i.hal_gpio_set_mode CVWL368.lib(hal_gpio.o) + 0x00018084 0x00018084 0x00000008 Code RO 732 i.hal_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x0001808c 0x0001808c 0x00000020 Code RO 734 i.hal_gpio_set_pull_state CVWL368.lib(hal_gpio.o) + 0x000180ac 0x000180ac 0x0000006c Code RO 760 i.hal_i2c_m_dma_init CVWL368.lib(hal_i2c_master.o) + 0x00018118 0x00018118 0x00000020 Code RO 761 i.hal_i2c_m_dma_read CVWL368.lib(hal_i2c_master.o) + 0x00018138 0x00018138 0x0000001c Code RO 762 i.hal_i2c_m_dma_write CVWL368.lib(hal_i2c_master.o) + 0x00018154 0x00018154 0x0000000c Code RO 764 i.hal_i2c_m_transfer_complate CVWL368.lib(hal_i2c_master.o) + 0x00018160 0x00018160 0x00000020 Code RO 765 i.hal_i2c_master_irq_callback CVWL368.lib(hal_i2c_master.o) + 0x00018180 0x00018180 0x00000010 Code RO 779 i.hal_i2c_s_dma_user_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018190 0x00018190 0x0000004c Code RO 780 i.hal_i2c_s_dma_write CVWL368.lib(hal_i2c_slave.o) + 0x000181dc 0x000181dc 0x000000c8 Code RO 782 i.hal_i2c_s_init CVWL368.lib(hal_i2c_slave.o) + 0x000182a4 0x000182a4 0x00000014 Code RO 783 i.hal_i2c_s_nonblocking_read CVWL368.lib(hal_i2c_slave.o) + 0x000182b8 0x000182b8 0x0000000c Code RO 791 i.hal_i2c_s_set_transfer CVWL368.lib(hal_i2c_slave.o) + 0x000182c4 0x000182c4 0x00000174 Code RO 794 i.hal_i2c_slave_irq_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018438 0x00018438 0x000000fc Code RO 1619 i.hal_internal_init_memc CVWL368.lib(hal_internal_vsync.o) + 0x00018534 0x00018534 0x00000010 Code RO 1621 i.hal_internal_sync_get_fb_setting CVWL368.lib(hal_internal_vsync.o) + 0x00018544 0x00018544 0x00000010 Code RO 1622 i.hal_internal_sync_get_hight_performan_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018554 0x00018554 0x0000022c Code RO 1623 i.hal_internal_sync_input_resolution_change CVWL368.lib(hal_internal_vsync.o) + 0x00018780 0x00018780 0x00000010 Code RO 1626 i.hal_internal_update_dpi_param CVWL368.lib(hal_internal_vsync.o) + 0x00018790 0x00018790 0x0000010c Code RO 1627 i.hal_internal_video_mode_auto_sync CVWL368.lib(hal_internal_vsync.o) + 0x0001889c 0x0001889c 0x00000028 Code RO 1628 i.hal_internal_vsync_deinit CVWL368.lib(hal_internal_vsync.o) + 0x000188c4 0x000188c4 0x0000000c Code RO 1629 i.hal_internal_vsync_get_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x000188d0 0x000188d0 0x00000018 Code RO 1630 i.hal_internal_vsync_get_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x000188e8 0x000188e8 0x0000000c Code RO 1631 i.hal_internal_vsync_get_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x000188f4 0x000188f4 0x0000000c Code RO 1632 i.hal_internal_vsync_get_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018900 0x00018900 0x00000118 Code RO 1633 i.hal_internal_vsync_init_rx CVWL368.lib(hal_internal_vsync.o) + 0x00018a18 0x00018a18 0x000000b0 Code RO 1634 i.hal_internal_vsync_init_tx CVWL368.lib(hal_internal_vsync.o) + 0x00018ac8 0x00018ac8 0x0000011c Code RO 1635 i.hal_internal_vsync_set_auto_hw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00018be4 0x00018be4 0x00000014 Code RO 1637 i.hal_internal_vsync_set_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018bf8 0x00018bf8 0x00000024 Code RO 1638 i.hal_internal_vsync_set_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00018c1c 0x00018c1c 0x00000050 Code RO 1639 i.hal_internal_vsync_set_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018c6c 0x00018c6c 0x00000080 Code RO 1640 i.hal_internal_vsync_set_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018cec 0x00018cec 0x00000024 Code RO 657 i.hal_lcdc_config_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018d10 0x00018d10 0x00000058 Code RO 658 i.hal_lcdc_config_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018d68 0x00018d68 0x00000014 Code RO 659 i.hal_lcdc_config_rgb_to_pentile CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018d7c 0x00018d7c 0x00000164 Code RO 660 i.hal_lcdc_config_upscaler CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018ee0 0x00018ee0 0x00000040 Code RO 661 i.hal_lcdc_init_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018f20 0x00018f20 0x000001b0 Code RO 662 i.hal_lcdc_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000190d0 0x000190d0 0x00000040 Code RO 663 i.hal_lcdc_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019110 0x00019110 0x0000000e Code RO 819 i.hal_spi_m_clear_rxfifo CVWL368.lib(hal_spi_master.o) + 0x0001911e 0x0001911e 0x00000012 Code RO 843 i.hal_swire_deinit CVWL368.lib(hal_swire.o) + 0x00019130 0x00019130 0x00000016 Code RO 845 i.hal_swire_open CVWL368.lib(hal_swire.o) + 0x00019146 0x00019146 0x00000008 Code RO 860 i.hal_system_enable_systick CVWL368.lib(hal_system.o) + 0x0001914e 0x0001914e 0x00000002 PAD + 0x00019150 0x00019150 0x00000088 Code RO 868 i.hal_system_init CVWL368.lib(hal_system.o) + 0x000191d8 0x000191d8 0x0000001c Code RO 869 i.hal_system_init_console CVWL368.lib(hal_system.o) + 0x000191f4 0x000191f4 0x00000008 Code RO 872 i.hal_system_set_phy_calibration CVWL368.lib(hal_system.o) + 0x000191fc 0x000191fc 0x00000008 Code RO 873 i.hal_system_set_pvd CVWL368.lib(hal_system.o) + 0x00019204 0x00019204 0x00000008 Code RO 874 i.hal_system_set_vcc CVWL368.lib(hal_system.o) + 0x0001920c 0x0001920c 0x0000002e Code RO 901 i.hal_timer_deinit CVWL368.lib(hal_timer.o) + 0x0001923a 0x0001923a 0x0000001a Code RO 903 i.hal_timer_init CVWL368.lib(hal_timer.o) + 0x00019254 0x00019254 0x00000048 Code RO 905 i.hal_timer_start CVWL368.lib(hal_timer.o) + 0x0001929c 0x0001929c 0x00000028 Code RO 907 i.hal_timer_stop CVWL368.lib(hal_timer.o) + 0x000192c4 0x000192c4 0x0000008c Code RO 940 i.hal_uart_init CVWL368.lib(hal_uart.o) + 0x00019350 0x00019350 0x00000010 Code RO 943 i.hal_uart_transmit_blocking CVWL368.lib(hal_uart.o) + 0x00019360 0x00019360 0x00000110 Code RO 2178 i.handle_init CVWL368.lib(irq_redirect .o) + 0x00019470 0x00019470 0x00000068 Code RO 99 i.init_mipi_tx ap_demo.o + 0x000194d8 0x000194d8 0x00000094 Code RO 100 i.init_panel ap_demo.o + 0x0001956c 0x0001956c 0x0000000a Code RO 3 i.main main.o + 0x00019576 0x00019576 0x00000002 PAD + 0x00019578 0x00019578 0x0000008c Code RO 101 i.open_mipi_rx ap_demo.o + 0x00019604 0x00019604 0x00000054 Code RO 102 i.pps_update_handle ap_demo.o + 0x00019658 0x00019658 0x000003f4 Code RO 1644 i.rx_get_dcs_packet_data CVWL368.lib(hal_internal_vsync.o) + 0x00019a4c 0x00019a4c 0x00000178 Code RO 1645 i.rx_partial_update CVWL368.lib(hal_internal_vsync.o) + 0x00019bc4 0x00019bc4 0x0000008c Code RO 1646 i.rx_receive_packet CVWL368.lib(hal_internal_vsync.o) + 0x00019c50 0x00019c50 0x00000180 Code RO 1647 i.rx_receive_pps CVWL368.lib(hal_internal_vsync.o) + 0x00019dd0 0x00019dd0 0x000000a4 Code RO 1648 i.rxbr_irq0_callback CVWL368.lib(hal_internal_vsync.o) + 0x00019e74 0x00019e74 0x000001d4 Code RO 1649 i.rxbr_irq1_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a048 0x0001a048 0x000000c4 Code RO 1650 i.soft_gen_te CVWL368.lib(hal_internal_vsync.o) + 0x0001a10c 0x0001a10c 0x000000c0 Code RO 1651 i.soft_gen_te_double_buffer CVWL368.lib(hal_internal_vsync.o) + 0x0001a1cc 0x0001a1cc 0x0000002c Code RO 103 i.soft_te_timer_cb ap_demo.o + 0x0001a1f8 0x0001a1f8 0x00000030 Code RO 104 i.soft_timer3_cb ap_demo.o + 0x0001a228 0x0001a228 0x00000048 Code RO 2544 i.sqrt m_ps.l(sqrt.o) + 0x0001a270 0x0001a270 0x00000108 Code RO 1652 i.vidc_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a378 0x0001a378 0x000000d0 Code RO 1653 i.vpre_err_reset CVWL368.lib(hal_internal_vsync.o) + 0x0001a448 0x0001a448 0x000001cc Code RO 1654 i.vsync_set_te_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001a614 0x0001a614 0x0000275b Data RO 105 .constdata ap_demo.o + 0x0001cd6f 0x0001cd6f 0x000027a8 Data RO 400 .constdata app_tp_for_custom_s8.o + 0x0001f517 0x0001f517 0x00000001 Data RO 423 .constdata app_tp_for_custom_s8.o + 0x0001f518 0x0001f518 0x00000024 Data RO 665 .constdata CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001f53c 0x0001f53c 0x000000d2 Data RO 737 .constdata CVWL368.lib(hal_gpio.o) + 0x0001f60e 0x0001f60e 0x00000002 PAD + 0x0001f610 0x0001f610 0x00000020 Data RO 795 .constdata CVWL368.lib(hal_i2c_slave.o) + 0x0001f630 0x0001f630 0x00000008 Data RO 1440 .constdata CVWL368.lib(drv_param_init.o) + 0x0001f638 0x0001f638 0x00000186 Data RO 2250 .constdata CVWL368.lib(drv_phy_common.o) + 0x0001f7be 0x0001f7be 0x00000002 PAD + 0x0001f7c0 0x0001f7c0 0x00000048 Data RO 565 .conststring CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001f808 0x0001f808 0x00000043 Data RO 666 .conststring CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001f84b 0x0001f84b 0x00000001 PAD + 0x0001f84c 0x0001f84c 0x00000134 Data RO 1656 .conststring CVWL368.lib(hal_internal_vsync.o) + 0x0001f980 0x0001f980 0x00000030 Data RO 2906 Region$$Table anon$$obj.o + + + Execution Region RW_RAM1 (Exec base: 0x00070000, Load base: 0x0001f9b0, Size: 0x00000000, Max: 0x000000f0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM2 (Exec base: 0x00070100, Load base: 0x0001f9b0, Size: 0x000000c0, Max: 0x000000d0, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00070100 - 0x000000c0 Zero RW 2179 .ARM.__AT_0x00070100 CVWL368.lib(irq_redirect .o) + + + Execution Region RW_RAM3 (Exec base: 0x000701d0, Load base: 0x0001f9b0, Size: 0x00003728, Max: 0x00007e30, ABSOLUTE, COMPRESSED[0x000003ec]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x000701d0 COMPRESSED 0x00000020 Data RW 106 .data ap_demo.o + 0x000701f0 COMPRESSED 0x0000002e Data RW 265 .data app_tp_transfer.o + 0x0007021e COMPRESSED 0x00000106 Data RW 424 .data app_tp_for_custom_s8.o + 0x00070324 COMPRESSED 0x00000001 Data RW 427 .data app_tp_for_custom_s8.o + 0x00070325 COMPRESSED 0x00000001 Data RW 428 .data app_tp_for_custom_s8.o + 0x00070326 COMPRESSED 0x00000001 Data RW 433 .data app_tp_for_custom_s8.o + 0x00070327 COMPRESSED 0x00000003 Data RW 434 .data app_tp_for_custom_s8.o + 0x0007032a COMPRESSED 0x00000005 Data RW 435 .data app_tp_for_custom_s8.o + 0x0007032f COMPRESSED 0x00000001 PAD + 0x00070330 COMPRESSED 0x00000030 Data RW 445 .data app_tp_for_custom_s8.o + 0x00070360 COMPRESSED 0x00000008 Data RW 566 .data CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070368 COMPRESSED 0x00000003 Data RW 667 .data CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0007036b COMPRESSED 0x00000001 Data RW 766 .data CVWL368.lib(hal_i2c_master.o) + 0x0007036c COMPRESSED 0x00000020 Data RW 796 .data CVWL368.lib(hal_i2c_slave.o) + 0x0007038c COMPRESSED 0x00000012 Data RW 997 .data CVWL368.lib(norflash.o) + 0x0007039e COMPRESSED 0x00000002 PAD + 0x000703a0 COMPRESSED 0x0000000c Data RW 1051 .data CVWL368.lib(drv_common.o) + 0x000703ac COMPRESSED 0x00000004 Data RW 1318 .data CVWL368.lib(drv_gpio.o) + 0x000703b0 COMPRESSED 0x00000008 Data RW 1356 .data CVWL368.lib(drv_i2c_dma.o) + 0x000703b8 COMPRESSED 0x00000004 Data RW 1385 .data CVWL368.lib(drv_i2c_master.o) + 0x000703bc COMPRESSED 0x00000004 Data RW 1416 .data CVWL368.lib(drv_i2c_slave.o) + 0x000703c0 COMPRESSED 0x000004a4 Data RW 1441 .data CVWL368.lib(drv_param_init.o) + 0x00070864 COMPRESSED 0x00000004 Data RW 1508 .data CVWL368.lib(drv_spi_master.o) + 0x00070868 COMPRESSED 0x00000008 Data RW 1534 .data CVWL368.lib(drv_swire.o) + 0x00070870 COMPRESSED 0x00000001 Data RW 1559 .data CVWL368.lib(drv_sys_cfg.o) + 0x00070871 COMPRESSED 0x00000003 PAD + 0x00070874 COMPRESSED 0x00000050 Data RW 1592 .data CVWL368.lib(drv_timer.o) + 0x000708c4 COMPRESSED 0x0000000c Data RW 1657 .data CVWL368.lib(hal_internal_vsync.o) + 0x000708d0 COMPRESSED 0x00000008 Data RW 2031 .data CVWL368.lib(drv_rxbr.o) + 0x000708d8 COMPRESSED 0x00000004 Data RW 2104 .data CVWL368.lib(drv_vidc.o) + 0x000708dc COMPRESSED 0x00000001 Data RW 2251 .data CVWL368.lib(drv_phy_common.o) + 0x000708dd COMPRESSED 0x00000003 PAD + 0x000708e0 COMPRESSED 0x0000000c Data RW 2271 .data CVWL368.lib(drv_chip_info.o) + 0x000708ec COMPRESSED 0x0000000c Data RW 2381 .data CVWL368.lib(drv_pwm.o) + 0x000708f8 COMPRESSED 0x00000008 Data RW 2459 .data CVWL368.lib(drv_uart.o) + 0x00070900 COMPRESSED 0x0000000c Data RW 2526 .data CVWL368.lib(drv_wdg.o) + 0x0007090c COMPRESSED 0x00000004 Data RW 2875 .data mc_p.l(stdout.o) + 0x00070910 COMPRESSED 0x00000004 Data RW 2887 .data mc_p.l(errno.o) + 0x00070914 - 0x00000190 Zero RW 264 .bss app_tp_transfer.o + 0x00070aa4 - 0x000000c4 Zero RW 564 .bss CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070b68 - 0x0000004c Zero RW 664 .bss CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070bb4 - 0x00000100 Zero RW 930 .bss CVWL368.lib(tau_log.o) + 0x00070cb4 - 0x000000d0 Zero RW 945 .bss CVWL368.lib(hal_uart.o) + 0x00070d84 - 0x0000001c Zero RW 1180 .bss CVWL368.lib(drv_dma.o) + 0x00070da0 - 0x00000040 Zero RW 1317 .bss CVWL368.lib(drv_gpio.o) + 0x00070de0 - 0x00000140 Zero RW 1355 .bss CVWL368.lib(drv_i2c_dma.o) + 0x00070f20 - 0x00000984 Zero RW 1655 .bss CVWL368.lib(hal_internal_vsync.o) + 0x000718a4 - 0x00001030 Zero RW 1708 .bss CVWL368.lib(dcs_packet_fifo.o) + 0x000728d4 - 0x00000020 Zero RW 2315 .bss CVWL368.lib(hal_spi_slave.o) + 0x000728f4 COMPRESSED 0x00000004 PAD + 0x000728f8 - 0x00001000 Zero RW 512 STACK startup_armcm0.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 2674 538 10075 32 0 37872 ap_demo.o + 1604 80 10153 321 0 14696 app_tp_for_custom_s8.o + 1128 106 0 46 400 13104 app_tp_transfer.o + 36 6 0 0 0 509 board.o + 10 0 0 0 0 7231 main.o + 120 18 192 0 4096 2092 startup_armcm0.o + + ---------------------------------------------------------------------- + 5576 748 20468 400 4496 75504 Object Totals + 0 0 48 0 0 0 (incl. Generated) + 4 0 0 1 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 216 32 0 0 4144 252 dcs_packet_fifo.o + 272 96 0 12 0 256 drv_chip_info.o + 192 82 24 12 0 264 drv_common.o + 420 90 0 0 0 1200 drv_crgu.o + 410 28 0 0 28 796 drv_dma.o + 232 28 0 0 0 340 drv_dsc_dec.o + 1644 494 0 0 0 1336 drv_dsi_rx.o + 1528 118 0 0 0 2428 drv_dsi_tx.o + 132 0 0 0 0 256 drv_efuse.o + 10 0 0 0 0 60 drv_fls.o + 796 112 0 4 64 1236 drv_gpio.o + 600 82 0 8 320 624 drv_i2c_dma.o + 360 86 0 4 0 456 drv_i2c_master.o + 292 36 0 4 0 580 drv_i2c_slave.o + 680 6 0 0 0 1444 drv_lcdc.o + 492 28 0 0 0 1112 drv_memc.o + 112 36 8 1188 0 376 drv_param_init.o + 428 30 390 1 0 664 drv_phy_common.o + 72 10 0 12 0 76 drv_pwm.o + 112 24 0 0 0 180 drv_pwr.o + 722 84 0 8 0 1456 drv_rxbr.o + 104 24 0 4 0 188 drv_spi_master.o + 172 20 0 8 0 260 drv_swire.o + 300 64 0 1 0 628 drv_sys_cfg.o + 374 34 0 80 0 932 drv_timer.o + 698 18 0 8 0 680 drv_uart.o + 510 28 0 4 0 1452 drv_vidc.o + 168 22 0 12 0 316 drv_wdg.o + 3124 310 72 8 196 1528 hal_dsi_rx_ctrl.o + 4324 302 103 3 76 2408 hal_dsi_tx_ctrl.o + 450 48 210 0 0 752 hal_gpio.o + 212 40 0 1 0 340 hal_i2c_master.o + 696 72 32 32 0 408 hal_i2c_slave.o + 8032 1706 308 12 2436 2616 hal_internal_vsync.o + 14 0 0 0 0 68 hal_spi_master.o + 580 32 0 0 32 136 hal_spi_slave.o + 40 0 0 0 0 136 hal_swire.o + 196 32 0 0 0 408 hal_system.o + 184 6 0 0 0 276 hal_timer.o + 156 18 0 0 208 144 hal_uart.o + 1076 324 0 0 192 1980 irq_redirect .o + 48 10 0 18 0 68 norflash.o + 58 0 0 0 0 128 tau_delay.o + 60 10 0 0 256 156 tau_log.o + 200 20 0 0 0 76 ceil.o + 72 6 0 0 0 76 sqrt.o + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 12 6 0 4 0 60 errno.o + 30 0 0 0 0 0 handlers.o + 40 0 0 0 0 72 idiv.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 32 0 0 0 0 68 llshl.o + 38 0 0 0 0 68 llsshr.o + 34 0 0 0 0 68 llushr.o + 36 0 0 0 0 60 memcpya.o + 36 0 0 0 0 100 memseta.o + 2298 104 0 0 0 544 printfa.o + 0 0 0 4 0 0 stdout.o + 44 0 0 0 0 72 uidiv.o + 96 0 0 0 0 84 uldiv.o + 40 2 0 0 0 68 cdcmple.o + 40 2 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfrcmple.o + 356 4 0 0 0 140 dadd.o + 240 6 0 0 0 84 ddiv.o + 236 0 0 0 0 216 depilogue.o + 72 10 0 0 0 72 dfixi.o + 60 10 0 0 0 68 dfixui.o + 64 10 0 0 0 68 dfixul.o + 28 4 0 0 0 68 dfltui.o + 208 6 0 0 0 88 dmul.o + 162 0 0 0 0 80 dsqrt.o + 40 0 0 0 0 60 f2d.o + 178 0 0 0 0 108 fadd.o + 124 0 0 0 0 72 fdiv.o + 130 0 0 0 0 144 fepilogue.o + 50 0 0 0 0 60 ffixi.o + 40 0 0 0 0 60 ffixui.o + 22 0 0 0 0 68 fflti.o + 14 0 0 0 0 68 ffltui.o + 122 0 0 0 0 72 fmul.o + 24 0 0 0 0 60 fscalb.o + + ---------------------------------------------------------------------- + 36724 4828 1152 1460 7956 34676 Library Totals + 46 0 5 8 4 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 31298 4622 1147 1444 7952 31400 CVWL368.lib + 272 26 0 0 0 152 m_ps.l + 2838 126 0 8 0 1264 mc_p.l + 2270 54 0 0 0 1860 mf_p.l + + ---------------------------------------------------------------------- + 36724 4828 1152 1460 7956 34676 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 42300 5576 21620 1860 12452 86312 Grand Totals + 42300 5576 21620 1004 12452 86312 ELF Image Totals (compressed) + 42300 5576 21620 1004 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 63920 ( 62.42kB) + Total RW Size (RW Data + ZI Data) 14312 ( 13.98kB) + Total ROM Size (Code + RO Data + RW Data) 64924 ( 63.40kB) + +============================================================================== + diff --git a/project/ISP_368/Listings/WL368_MAT30_F6419.map b/project/ISP_368/Listings/WL368_MAT30_F6419.map new file mode 100644 index 0000000..f1df6ba --- /dev/null +++ b/project/ISP_368/Listings/WL368_MAT30_F6419.map @@ -0,0 +1,5320 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.PWM_OUTPUT_TEST) refers to ap_demo.o(i.test_pwm_out_adjust) for test_pwm_out_adjust + ap_demo.o(i.PWM_OUTPUT_TEST) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.PWM_Task) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.PWM_Task) refers to app_tp_for_custom_s8.o(.data) for Flag_blacklight_EN + ap_demo.o(i.PWM_Task) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.ap_demo) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_pvd) for hal_system_set_pvd + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_update_frame_rate) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) for hal_dsi_rx_ctrl_set_tear_mode_ex + ap_demo.o(i.ap_update_frame_rate) refers to ap_demo.o(.data) for .data + ap_demo.o(i.app_tp_calibration_exec) refers to app_tp_transfer.o(i.ap_tp_calibration) for ap_tp_calibration + ap_demo.o(i.app_tp_calibration_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) for hal_dsi_tx_ctrl_read_cmd + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.init_panel) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) for hal_dsi_rx_ctrl_set_cus_scld_filter + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) for hal_dsi_rx_ctrl_get_compressen_en + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) for hal_dsi_rx_ctrl_toggle_resolution_ex + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.test_pwm_out_adjust) refers to uidiv.o(.text) for __aeabi_uidivmod + ap_demo.o(i.test_pwm_out_adjust) refers to hal_pwm.o(i.hal_pwm_out_init) for hal_pwm_out_init + ap_demo.o(i.test_pwm_out_adjust) refers to hal_pwm.o(i.hal_pwm_out_config_all) for hal_pwm_out_config_all + ap_demo.o(i.test_pwm_out_adjust) refers to hal_pwm.o(i.hal_pwm_out_sync_all) for hal_pwm_out_sync_all + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_update_frame_rate) for ap_update_frame_rate + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + board.o(i.board_Init) refers to hal_system.o(i.hal_system_set_phy_calibration) for hal_system_set_phy_calibration + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_set_prefetch) for drv_lcdc_set_prefetch + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_pwm.o(i.hal_pwm_in_clear_int) refers to drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all) for drv_pwm_in_clear_pwm_int_all + hal_pwm.o(i.hal_pwm_in_config_int) refers to drv_pwm.o(i.drv_pwm_in_set_pwm_int) for drv_pwm_in_set_pwm_int + hal_pwm.o(i.hal_pwm_in_ctrl_int) refers to drv_pwm.o(i.drv_pwm_in_set_sys_int) for drv_pwm_in_set_sys_int + hal_pwm.o(i.hal_pwm_in_deinit) refers to drv_pwm.o(i.drv_pwm_in_enable) for drv_pwm_in_enable + hal_pwm.o(i.hal_pwm_in_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_in_get_current_count) refers to drv_pwm.o(i.drv_pwm_in_get_current_count) for drv_pwm_in_get_current_count + hal_pwm.o(i.hal_pwm_in_get_high_period) refers to drv_pwm.o(i.drv_pwm_in_get_high_period) for drv_pwm_in_get_high_period + hal_pwm.o(i.hal_pwm_in_get_high_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_in_get_high_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_in_get_low_period) refers to drv_pwm.o(i.drv_pwm_in_get_low_period) for drv_pwm_in_get_low_period + hal_pwm.o(i.hal_pwm_in_get_low_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_in_get_low_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_in_get_total_period) refers to drv_pwm.o(i.drv_pwm_in_get_counter_period) for drv_pwm_in_get_counter_period + hal_pwm.o(i.hal_pwm_in_get_total_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_in_get_total_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_in_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_in_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_pwm.o(i.hal_pwm_in_init) refers to drv_pwm.o(i.drv_pwm_in_enable) for drv_pwm_in_enable + hal_pwm.o(i.hal_pwm_in_register_callback) refers to drv_pwm.o(i.drv_pwm_in_register_callback) for drv_pwm_in_register_callback + hal_pwm.o(i.hal_pwm_in_set_int) refers to drv_pwm.o(i.drv_pwm_in_set_pwm_int) for drv_pwm_in_set_pwm_int + hal_pwm.o(i.hal_pwm_out_common_config) refers to drv_pwm.o(i.drv_pwm_out_set_control) for drv_pwm_out_set_control + hal_pwm.o(i.hal_pwm_out_common_config) refers to drv_pwm.o(i.drv_pwm_out_set_threshold) for drv_pwm_out_set_threshold + hal_pwm.o(i.hal_pwm_out_common_config) refers to drv_pwm.o(i.drv_pwm_out_set_period) for drv_pwm_out_set_period + hal_pwm.o(i.hal_pwm_out_config_all) refers to hal_pwm.o(i.hal_pwm_out_convert_time) for hal_pwm_out_convert_time + hal_pwm.o(i.hal_pwm_out_config_duty_ratio) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_config_duty_ratio) refers to hal_pwm.o(i.hal_pwm_out_convert_time) for hal_pwm_out_convert_time + hal_pwm.o(i.hal_pwm_out_config_duty_ratio) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_out_convert_time) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_pwm.o(i.drv_pwm_out_set_sync_mode) for drv_pwm_out_set_sync_mode + hal_pwm.o(i.hal_pwm_out_convert_time) refers to hal_pwm.o(i.hal_pwm_out_common_config) for hal_pwm_out_common_config + hal_pwm.o(i.hal_pwm_out_convert_time) refers to tau_delay.o(i.delayUs) for delayUs + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_pwm.o(i.drv_pwm_out_get_sync_flag) for drv_pwm_out_get_sync_flag + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_pwm.o(i.drv_pwm_out_enable) for drv_pwm_out_enable + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_out_convert_time) refers to hal_pwm.o(.data) for .data + hal_pwm.o(i.hal_pwm_out_deinit) refers to drv_pwm.o(i.drv_pwm_out_enable) for drv_pwm_out_enable + hal_pwm.o(i.hal_pwm_out_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_pwm.o(i.hal_pwm_out_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_out_deinit) refers to hal_pwm.o(.data) for .data + hal_pwm.o(i.hal_pwm_out_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_out_pause) refers to drv_pwm.o(i.drv_pwm_out_pause) for drv_pwm_out_pause + hal_pwm.o(i.hal_pwm_out_sel_io) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_pwm.o(i.hal_pwm_out_sync_all) refers to hal_pwm.o(i.hal_pwm_out_convert_time) for hal_pwm_out_convert_time + hal_pwm.o(i.hal_pwm_out_sync_ctl) refers to drv_pwm.o(i.drv_pwm_out_set_sync_mode) for drv_pwm_out_set_sync_mode + hal_pwm.o(i.hal_pwm_out_sync_ctl) refers to drv_pwm.o(i.drv_pwm_out_set_control) for drv_pwm_out_set_control + hal_pwm.o(i.hal_pwm_out_sync_pause) refers to drv_pwm.o(i.drv_pwm_out_set_sync_mode) for drv_pwm_out_set_sync_mode + hal_pwm.o(i.hal_pwm_out_sync_pause) refers to drv_pwm.o(i.drv_pwm_out_pause) for drv_pwm_out_pause + hal_pwm.o(i.hal_pwm_out_sync_period) refers to drv_pwm.o(i.drv_pwm_out_set_sync_mode) for drv_pwm_out_set_sync_mode + hal_pwm.o(i.hal_pwm_out_sync_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_sync_period) refers to drv_pwm.o(i.drv_pwm_out_set_period) for drv_pwm_out_set_period + hal_pwm.o(i.hal_pwm_out_sync_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to drv_pwm.o(i.drv_pwm_out_set_sync_mode) for drv_pwm_out_set_sync_mode + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to drv_pwm.o(i.drv_pwm_out_set_threshold) for drv_pwm_out_set_threshold + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to drv_common.o(.data) for g_system_clock + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(i.PWM_OUTPUT_TEST), (44 bytes). + Removing ap_demo.o(i.PWM_Task), (108 bytes). + Removing ap_demo.o(i.test_pwm_out_adjust), (104 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.app_tp_m_transfer_complate), (8 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1440 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (188 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic), (148 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_pwm.o(.rev16_text), (4 bytes). + Removing hal_pwm.o(.revsh_text), (4 bytes). + Removing hal_pwm.o(i.hal_pwm_in_clear_int), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_in_config_int), (60 bytes). + Removing hal_pwm.o(i.hal_pwm_in_ctrl_int), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_in_deinit), (18 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_current_count), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_high_period), (36 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_low_period), (36 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_total_period), (36 bytes). + Removing hal_pwm.o(i.hal_pwm_in_init), (26 bytes). + Removing hal_pwm.o(i.hal_pwm_in_register_callback), (10 bytes). + Removing hal_pwm.o(i.hal_pwm_in_set_int), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_out_common_config), (32 bytes). + Removing hal_pwm.o(i.hal_pwm_out_config_all), (16 bytes). + Removing hal_pwm.o(i.hal_pwm_out_config_duty_ratio), (76 bytes). + Removing hal_pwm.o(i.hal_pwm_out_convert_time), (164 bytes). + Removing hal_pwm.o(i.hal_pwm_out_deinit), (32 bytes). + Removing hal_pwm.o(i.hal_pwm_out_init), (12 bytes). + Removing hal_pwm.o(i.hal_pwm_out_pause), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sel_io), (38 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_all), (16 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_ctl), (30 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_pause), (28 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_period), (48 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_thr), (52 bytes). + Removing hal_pwm.o(.data), (1 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (112 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change), (556 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr), (48 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +602 unused section(s) (total 27623 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 idiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE + ../mathlib/ceil.c 0x00000000 Number 0 ceil.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE + ..\..\..\src\common\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\..\..\src\common\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\dcs_packet_fifo.c 0x00000000 Number 0 dcs_packet_fifo.o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_pwm.c 0x00000000 Number 0 hal_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\internal\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\..\src\app\demo\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\..\src\app\demo\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\..\src\app\demo\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\..\src\app\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\..\src\board\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\..\src\board\startup\startup_ARMCM0.s 0x00000000 Number 0 startup_armcm0.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\hal\\internal\\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_pwm.c 0x00000000 Number 0 hal_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\internal\\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\\..\\src\\app\\demo\\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\\..\\src\\app\\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\\..\\src\\board\\board.c 0x00000000 Number 0 board.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + RESET 0x00010000 Section 192 startup_armcm0.o(RESET) + .ARM.Collect$$$$00000000 0x000100c0 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x000100c0 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x000100c4 Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x000100c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x000100c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x000100c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x000100d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x000100d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x000100d0 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x000100d0 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x000100d4 Section 120 startup_armcm0.o(.text) + .text 0x0001014c Section 0 uidiv.o(.text) + .text 0x00010178 Section 0 idiv.o(.text) + .text 0x000101a0 Section 0 memcpya.o(.text) + .text 0x000101c4 Section 0 memseta.o(.text) + .text 0x000101e8 Section 0 fadd.o(.text) + .text 0x0001029a Section 0 fmul.o(.text) + .text 0x00010314 Section 0 fdiv.o(.text) + .text 0x00010390 Section 0 fscalb.o(.text) + .text 0x000103a8 Section 0 dadd.o(.text) + .text 0x0001050c Section 0 dmul.o(.text) + .text 0x000105dc Section 0 ddiv.o(.text) + .text 0x000106cc Section 0 fflti.o(.text) + .text 0x000106e2 Section 0 ffltui.o(.text) + .text 0x000106f0 Section 0 dfltui.o(.text) + .text 0x0001070c Section 0 ffixi.o(.text) + .text 0x0001073e Section 0 ffixui.o(.text) + .text 0x00010768 Section 0 dfixi.o(.text) + .text 0x000107b0 Section 0 dfixui.o(.text) + .text 0x000107ec Section 0 f2d.o(.text) + .text 0x00010814 Section 40 cdcmple.o(.text) + .text 0x0001083c Section 20 cfrcmple.o(.text) + .text 0x00010850 Section 0 uldiv.o(.text) + .text 0x000108b0 Section 0 llshl.o(.text) + .text 0x000108d0 Section 0 llushr.o(.text) + .text 0x000108f2 Section 0 llsshr.o(.text) + .text 0x00010918 Section 0 fepilogue.o(.text) + .text 0x00010918 Section 0 iusefp.o(.text) + .text 0x0001099a Section 0 depilogue.o(.text) + .text 0x00010a58 Section 0 dsqrt.o(.text) + .text 0x00010afc Section 0 dfixul.o(.text) + .text 0x00010b3c Section 40 cdrcmple.o(.text) + .text 0x00010b64 Section 36 init.o(.text) + .text 0x00010b88 Section 0 __dczerorl2.o(.text) + i.ADC_IRQn_Handler 0x00010be0 Section 0 irq_redirect .o(i.ADC_IRQn_Handler) + i.AP_NRESET_IRQn_Handler 0x00010bf8 Section 0 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + i.DMA_IRQn_Handler 0x00010c10 Section 0 irq_redirect .o(i.DMA_IRQn_Handler) + i.EXTI_INT0_IRQn_Handler 0x00010c24 Section 0 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + i.EXTI_INT1_IRQn_Handler 0x00010c40 Section 0 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + i.EXTI_INT2_IRQn_Handler 0x00010c5c Section 0 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + i.EXTI_INT3_IRQn_Handler 0x00010c78 Section 0 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + i.EXTI_INT4_IRQn_Handler 0x00010c94 Section 0 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + i.EXTI_INT5_IRQn_Handler 0x00010cb0 Section 0 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + i.EXTI_INT6_IRQn_Handler 0x00010ccc Section 0 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + i.EXTI_INT7_IRQn_Handler 0x00010ce8 Section 0 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + i.FLSCTRL_IRQn_Handler 0x00010d04 Section 0 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + i.Gpio_swire_output 0x00010d18 Section 0 ap_demo.o(i.Gpio_swire_output) + i.HardFault_Handler 0x00010d68 Section 0 irq_redirect .o(i.HardFault_Handler) + i.I2C0_IRQn_Handler 0x00010d7c Section 0 irq_redirect .o(i.I2C0_IRQn_Handler) + i.I2C1_IRQn_Handler 0x00010d94 Section 0 irq_redirect .o(i.I2C1_IRQn_Handler) + i.LCDC_IRQn_Handler 0x00010dac Section 0 irq_redirect .o(i.LCDC_IRQn_Handler) + i.LOG_printf 0x00010dc4 Section 0 tau_log.o(i.LOG_printf) + i.MEMC_IRQn_Handler 0x00010dec Section 0 irq_redirect .o(i.MEMC_IRQn_Handler) + i.MIPI_RX_IRQn_Handler 0x00010e04 Section 0 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + i.MIPI_TX_IRQn_Handler 0x00010e1c Section 0 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + i.PWMDET_IRQn_Handler 0x00010e34 Section 0 irq_redirect .o(i.PWMDET_IRQn_Handler) + i.S20_Start_init 0x00010e50 Section 0 app_tp_transfer.o(i.S20_Start_init) + i.SPIM_IRQn_Handler 0x00010f9c Section 0 irq_redirect .o(i.SPIM_IRQn_Handler) + i.SPIS_IRQn_Handler 0x00010fb8 Section 0 irq_redirect .o(i.SPIS_IRQn_Handler) + i.SWIRE_IRQn_Handler 0x00010fd4 Section 0 irq_redirect .o(i.SWIRE_IRQn_Handler) + i.UART_DisableDma 0x00010ff0 Section 0 drv_uart.o(i.UART_DisableDma) + i.UART_GetInstance 0x00010ff2 Section 0 drv_uart.o(i.UART_GetInstance) + i.__scatterload_null 0x00010ff6 Section 2 handlers.o(i.__scatterload_null) + i.ap_set_display_on 0x00010ff8 Section 0 ap_demo.o(i.ap_set_display_on) + ap_set_display_on 0x00010ff9 Thumb Code 4 ap_demo.o(i.ap_set_display_on) + i.drv_dsi_rx_set_inten 0x00010ffc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + .ARM.__at_0x11000 0x00011000 Section 20 drv_common.o(.ARM.__at_0x11000) + i.drv_dsi_tx_command_get_payload 0x00011014 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) + .ARM.__at_0x11018 0x00011018 Section 4 drv_common.o(.ARM.__at_0x11018) + i.SysTick_Handler 0x0001101c Section 0 irq_redirect .o(i.SysTick_Handler) + i.TIMER0_IRQn_Handler 0x00011034 Section 0 irq_redirect .o(i.TIMER0_IRQn_Handler) + i.TIMER1_IRQn_Handler 0x0001104c Section 0 irq_redirect .o(i.TIMER1_IRQn_Handler) + i.TIMER2_IRQn_Handler 0x00011064 Section 0 irq_redirect .o(i.TIMER2_IRQn_Handler) + i.TIMER3_IRQn_Handler 0x0001107c Section 0 irq_redirect .o(i.TIMER3_IRQn_Handler) + i.UART0_IRQ_Handle 0x00011094 Section 0 drv_uart.o(i.UART0_IRQ_Handle) + i.UART_IRQn_Handler 0x000110b0 Section 0 irq_redirect .o(i.UART_IRQn_Handler) + i.UART_ResetRxFIFO 0x000110c8 Section 0 drv_uart.o(i.UART_ResetRxFIFO) + i.UART_SetBaudRate 0x000110ec Section 0 drv_uart.o(i.UART_SetBaudRate) + i.UART_SwitchSCLK 0x00011134 Section 0 drv_uart.o(i.UART_SwitchSCLK) + i.UART_TransferHandleIRQ 0x0001114e Section 0 drv_uart.o(i.UART_TransferHandleIRQ) + i.UART_WriteBlocking 0x00011282 Section 0 drv_uart.o(i.UART_WriteBlocking) + i.UART_init 0x0001129c Section 0 drv_uart.o(i.UART_init) + i.VIDC_IRQn_Handler 0x00011358 Section 0 irq_redirect .o(i.VIDC_IRQn_Handler) + i.VPRE_IRQn_Handler 0x00011370 Section 0 irq_redirect .o(i.VPRE_IRQn_Handler) + i.WDG_IRQn_Handler 0x00011388 Section 0 irq_redirect .o(i.WDG_IRQn_Handler) + i.__0printf 0x000113a0 Section 0 printfa.o(i.__0printf) + i.__0vsprintf 0x000113c0 Section 0 printfa.o(i.__0vsprintf) + i.__ARM_clz 0x000113e4 Section 0 depilogue.o(i.__ARM_clz) + i.__ARM_common_switch8 0x00011412 Section 0 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + i.__NVIC_ClearPendingIRQ 0x0001142c Section 0 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x0001142d Thumb Code 18 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_ClearPendingIRQ 0x00011444 Section 0 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x00011445 Thumb Code 18 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_DisableIRQ 0x0001145c Section 0 drv_rxbr.o(i.__NVIC_DisableIRQ) + __NVIC_DisableIRQ 0x0001145d Thumb Code 26 drv_rxbr.o(i.__NVIC_DisableIRQ) + i.__NVIC_EnableIRQ 0x0001147c Section 0 drv_rxbr.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x0001147d Thumb Code 18 drv_rxbr.o(i.__NVIC_EnableIRQ) + i.__NVIC_SetPriority 0x00011494 Section 0 hal_spi_slave.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x00011495 Thumb Code 60 hal_spi_slave.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x000114d8 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_zeroinit 0x000114e6 Section 14 handlers.o(i.__scatterload_zeroinit) + i.__set_errno 0x000114f4 Section 0 errno.o(i.__set_errno) + i._fp_digits 0x00011500 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x00011501 Thumb Code 344 printfa.o(i._fp_digits) + i._printf_core 0x00011674 Section 0 printfa.o(i._printf_core) + _printf_core 0x00011675 Thumb Code 1754 printfa.o(i._printf_core) + i._printf_post_padding 0x00011d60 Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x00011d61 Thumb Code 32 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x00011d80 Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x00011d81 Thumb Code 44 printfa.o(i._printf_pre_padding) + i._sputc 0x00011dac Section 0 printfa.o(i._sputc) + _sputc 0x00011dad Thumb Code 10 printfa.o(i._sputc) + i.ap_dcs_read 0x00011db8 Section 0 ap_demo.o(i.ap_dcs_read) + ap_dcs_read 0x00011db9 Thumb Code 3094 ap_demo.o(i.ap_dcs_read) + i.ap_demo 0x000129d0 Section 0 ap_demo.o(i.ap_demo) + i.ap_get_reg_df 0x00012ae4 Section 0 ap_demo.o(i.ap_get_reg_df) + ap_get_reg_df 0x00012ae5 Thumb Code 146 ap_demo.o(i.ap_get_reg_df) + i.ap_reset_cb 0x00012b7c Section 0 ap_demo.o(i.ap_reset_cb) + ap_reset_cb 0x00012b7d Thumb Code 38 ap_demo.o(i.ap_reset_cb) + i.ap_set_backlight_51 0x00012bac Section 0 ap_demo.o(i.ap_set_backlight_51) + ap_set_backlight_51 0x00012bad Thumb Code 68 ap_demo.o(i.ap_set_backlight_51) + i.ap_set_display_off 0x00012bf4 Section 0 ap_demo.o(i.ap_set_display_off) + ap_set_display_off 0x00012bf5 Thumb Code 18 ap_demo.o(i.ap_set_display_off) + i.ap_set_enter_sleep_mode 0x00012c08 Section 0 ap_demo.o(i.ap_set_enter_sleep_mode) + ap_set_enter_sleep_mode 0x00012c09 Thumb Code 62 ap_demo.o(i.ap_set_enter_sleep_mode) + i.ap_set_exit_sleep_mode 0x00012c4c Section 0 ap_demo.o(i.ap_set_exit_sleep_mode) + ap_set_exit_sleep_mode 0x00012c4d Thumb Code 8 ap_demo.o(i.ap_set_exit_sleep_mode) + i.ap_tp_calibration 0x00012c58 Section 0 app_tp_transfer.o(i.ap_tp_calibration) + i.ap_update_frame_rate 0x00012d08 Section 0 ap_demo.o(i.ap_update_frame_rate) + ap_update_frame_rate 0x00012d09 Thumb Code 38 ap_demo.o(i.ap_update_frame_rate) + i.app_ADC_IRQn_Handler 0x00012d34 Section 0 drv_rxbr.o(i.app_ADC_IRQn_Handler) + i.app_AP_NRESET_IRQn_Handler 0x00012d50 Section 0 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + i.app_EXTI_INT0_IRQn_Handler 0x00012d74 Section 0 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + i.app_EXTI_INT1_IRQn_Handler 0x00012d90 Section 0 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + i.app_EXTI_INT2_IRQn_Handler 0x00012dac Section 0 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + i.app_EXTI_INT3_IRQn_Handler 0x00012dc8 Section 0 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + i.app_EXTI_INT4_IRQn_Handler 0x00012de4 Section 0 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + i.app_EXTI_INT5_IRQn_Handler 0x00012e00 Section 0 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + i.app_EXTI_INT6_IRQn_Handler 0x00012e1c Section 0 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + i.app_EXTI_INT7_IRQn_Handler 0x00012e38 Section 0 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + i.app_HardFault_Handler 0x00012e54 Section 0 drv_common.o(i.app_HardFault_Handler) + i.app_I2C0_IRQn_Handler 0x00012e9c Section 0 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + i.app_I2C1_IRQn_Handler 0x00012eb4 Section 0 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + i.app_LCDC_IRQn_Handler 0x00012ec4 Section 0 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + i.app_MEMC_IRQn_Handler 0x00012ff4 Section 0 drv_memc.o(i.app_MEMC_IRQn_Handler) + i.app_MIPI_RX_IRQn_Handler 0x0001307c Section 0 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + i.app_MIPI_TX_IRQn_Handler 0x00013314 Section 0 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + i.app_PWMDET_IRQn_Handler 0x000133b4 Section 0 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + i.app_SPIM_IRQn_Handler 0x000133fc Section 0 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + i.app_SPIS_IRQn_Handler 0x0001342c Section 0 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + i.app_SWIRE_IRQn_Handler 0x0001362c Section 0 drv_swire.o(i.app_SWIRE_IRQn_Handler) + i.app_SysTick_Handler 0x0001364c Section 0 drv_common.o(i.app_SysTick_Handler) + i.app_TIMER0_IRQn_Handler 0x00013664 Section 0 drv_timer.o(i.app_TIMER0_IRQn_Handler) + i.app_TIMER1_IRQn_Handler 0x0001366e Section 0 drv_timer.o(i.app_TIMER1_IRQn_Handler) + i.app_TIMER2_IRQn_Handler 0x00013678 Section 0 drv_timer.o(i.app_TIMER2_IRQn_Handler) + i.app_TIMER3_IRQn_Handler 0x00013682 Section 0 drv_timer.o(i.app_TIMER3_IRQn_Handler) + i.app_UART_IRQn_Handler 0x0001368c Section 0 drv_uart.o(i.app_UART_IRQn_Handler) + i.app_VIDC_IRQn_Handler 0x00013694 Section 0 drv_vidc.o(i.app_VIDC_IRQn_Handler) + i.app_VPRE_IRQn_Handler 0x000136b0 Section 0 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + i.app_WDG_IRQn_Handler 0x000136cc Section 0 drv_wdg.o(i.app_WDG_IRQn_Handler) + i.app_dma_irq_handler 0x00013704 Section 0 drv_dma.o(i.app_dma_irq_handler) + i.app_fls_ctrl_Handler 0x00013714 Section 0 norflash.o(i.app_fls_ctrl_Handler) + i.app_tp_I2C_init 0x00013744 Section 0 app_tp_transfer.o(i.app_tp_I2C_init) + i.app_tp_calibration_exec 0x00013768 Section 0 ap_demo.o(i.app_tp_calibration_exec) + i.app_tp_i2cs_callback 0x00013780 Section 0 app_tp_transfer.o(i.app_tp_i2cs_callback) + app_tp_i2cs_callback 0x00013781 Thumb Code 42 app_tp_transfer.o(i.app_tp_i2cs_callback) + i.app_tp_init 0x000137b0 Section 0 app_tp_transfer.o(i.app_tp_init) + i.app_tp_m_read 0x000137f4 Section 0 app_tp_transfer.o(i.app_tp_m_read) + app_tp_m_read 0x000137f5 Thumb Code 32 app_tp_transfer.o(i.app_tp_m_read) + i.app_tp_m_write 0x00013814 Section 0 app_tp_transfer.o(i.app_tp_m_write) + app_tp_m_write 0x00013815 Thumb Code 8 app_tp_transfer.o(i.app_tp_m_write) + i.app_tp_phone_analysis_data 0x0001381c Section 0 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + i.app_tp_s_read 0x00013b74 Section 0 app_tp_transfer.o(i.app_tp_s_read) + i.app_tp_s_write 0x00013b7c Section 0 app_tp_transfer.o(i.app_tp_s_write) + i.app_tp_screen_analysis_int 0x00013b84 Section 0 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + i.app_tp_screen_init 0x00013e34 Section 0 app_tp_transfer.o(i.app_tp_screen_init) + i.app_tp_screen_int_callback 0x00013e64 Section 0 app_tp_transfer.o(i.app_tp_screen_int_callback) + app_tp_screen_int_callback 0x00013e65 Thumb Code 8 app_tp_transfer.o(i.app_tp_screen_int_callback) + i.app_tp_transfer_screen_const 0x00013e70 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_const) + app_tp_transfer_screen_const 0x00013e71 Thumb Code 50 app_tp_transfer.o(i.app_tp_transfer_screen_const) + i.app_tp_transfer_screen_int 0x00013eb0 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_int) + i.app_tp_transfer_screen_start 0x00013fbc Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_start) + i.board_Init 0x00013fd0 Section 0 board.o(i.board_Init) + i.calc_framebuffer_setting 0x00013ff4 Section 0 hal_internal_vsync.o(i.calc_framebuffer_setting) + i.ceil 0x00014468 Section 0 ceil.o(i.ceil) + i.check_mipi_rx_tx_video_info 0x00014530 Section 0 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + check_mipi_rx_tx_video_info 0x00014531 Thumb Code 44 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + i.check_pkt_buf_rev 0x0001455c Section 0 hal_internal_vsync.o(i.check_pkt_buf_rev) + check_pkt_buf_rev 0x0001455d Thumb Code 90 hal_internal_vsync.o(i.check_pkt_buf_rev) + i.dcs_packet_fifo_alloc 0x000145f0 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + i.dcs_packet_fifo_init 0x00014648 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + i.dcs_packet_free_fifo_header 0x00014660 Section 0 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + i.dcs_packet_get_fifo_header 0x000146a4 Section 0 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + i.dcs_sw_filter 0x000146c8 Section 0 hal_internal_vsync.o(i.dcs_sw_filter) + dcs_sw_filter 0x000146c9 Thumb Code 24 hal_internal_vsync.o(i.dcs_sw_filter) + i.delayMs 0x000146e4 Section 0 tau_delay.o(i.delayMs) + i.delayUs 0x000146fc Section 0 tau_delay.o(i.delayUs) + i.drv_ap_rst_trig_edge_detect 0x00014720 Section 0 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + i.drv_chip_info_get_info 0x00014758 Section 0 drv_chip_info.o(i.drv_chip_info_get_info) + i.drv_chip_info_init 0x00014764 Section 0 drv_chip_info.o(i.drv_chip_info_init) + i.drv_chip_rx_info_check 0x000147a4 Section 0 drv_chip_info.o(i.drv_chip_rx_info_check) + i.drv_chip_rx_init_done 0x0001486c Section 0 drv_chip_info.o(i.drv_chip_rx_init_done) + i.drv_common_enable_systick 0x00014880 Section 0 drv_common.o(i.drv_common_enable_systick) + i.drv_common_system_init 0x000148d8 Section 0 drv_common.o(i.drv_common_system_init) + i.drv_crgu_config_reset_modules 0x000148e0 Section 0 drv_crgu.o(i.drv_crgu_config_reset_modules) + i.drv_crgu_set_ahb_pre_div 0x000148f0 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + i.drv_crgu_set_ahb_src 0x00014904 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_src) + i.drv_crgu_set_clock 0x00014918 Section 0 drv_crgu.o(i.drv_crgu_set_clock) + i.drv_crgu_set_dpi_mux_src 0x00014938 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + i.drv_crgu_set_dpi_pre_div 0x0001494c Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + i.drv_crgu_set_dpi_pre_src 0x00014964 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + i.drv_crgu_set_dsc_core_div 0x00014978 Section 0 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + i.drv_crgu_set_dsco_src 0x0001498c Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src) + i.drv_crgu_set_dsco_src_div 0x000149a0 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + i.drv_crgu_set_fb_div 0x000149b4 Section 0 drv_crgu.o(i.drv_crgu_set_fb_div) + i.drv_crgu_set_fb_src 0x000149c8 Section 0 drv_crgu.o(i.drv_crgu_set_fb_src) + i.drv_crgu_set_lcdc_div 0x000149dc Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_div) + i.drv_crgu_set_lcdc_src 0x000149f0 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_src) + i.drv_crgu_set_mipi_cfg_src 0x00014a04 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + i.drv_crgu_set_mipi_ref_src 0x00014a18 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + i.drv_crgu_set_reset 0x00014a30 Section 0 drv_crgu.o(i.drv_crgu_set_reset) + i.drv_crgu_set_rxbr_div 0x00014a48 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_div) + i.drv_crgu_set_rxbr_src 0x00014a5c Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_src) + i.drv_crgu_set_vidc_src 0x00014a70 Section 0 drv_crgu.o(i.drv_crgu_set_vidc_src) + i.drv_dma_clear_flag 0x00014a84 Section 0 drv_dma.o(i.drv_dma_clear_flag) + i.drv_dma_create_handle 0x00014a9c Section 0 drv_dma.o(i.drv_dma_create_handle) + i.drv_dma_disenable_channel 0x00014ab8 Section 0 drv_dma.o(i.drv_dma_disenable_channel) + i.drv_dma_enable_channel 0x00014ac8 Section 0 drv_dma.o(i.drv_dma_enable_channel) + i.drv_dma_enable_channel_interrupts 0x00014ad8 Section 0 drv_dma.o(i.drv_dma_enable_channel_interrupts) + i.drv_dma_get_channel_flag 0x00014afc Section 0 drv_dma.o(i.drv_dma_get_channel_flag) + i.drv_dma_irq_handler 0x00014b08 Section 0 drv_dma.o(i.drv_dma_irq_handler) + i.drv_dma_prepar_transfer 0x00014b98 Section 0 drv_dma.o(i.drv_dma_prepar_transfer) + i.drv_dma_set_burst 0x00014baa Section 0 drv_dma.o(i.drv_dma_set_burst) + i.drv_dma_set_callback 0x00014bc4 Section 0 drv_dma.o(i.drv_dma_set_callback) + i.drv_dma_set_transfer 0x00014bcc Section 0 drv_dma.o(i.drv_dma_set_transfer) + i.drv_dsc_dec_convert_pps_rc_parameter 0x00014c10 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + i.drv_dsc_dec_disable 0x00014c46 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_disable) + i.drv_dsc_dec_enable 0x00014c54 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_enable) + i.drv_dsc_dec_get_nslc 0x00014cc8 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + i.drv_dsc_dec_set_u8_pps 0x00014cd2 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + i.drv_dsi_rx_calc_ipi_tx_delay 0x00014cfc Section 0 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + i.drv_dsi_rx_enable_irq 0x00014e00 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + i.drv_dsi_rx_get_color_bpp 0x00014e40 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + drv_dsi_rx_get_color_bpp 0x00014e41 Thumb Code 62 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + i.drv_dsi_rx_get_color_pcc 0x00014e90 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + drv_dsi_rx_get_color_pcc 0x00014e91 Thumb Code 24 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + i.drv_dsi_rx_get_compression_en 0x00014eac Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + i.drv_dsi_rx_get_max_ret_size 0x00014eb4 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + i.drv_dsi_rx_power_up 0x00014eba Section 0 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + i.drv_dsi_rx_set_ctrl_cfg 0x00014ec8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + i.drv_dsi_rx_set_ddi_cfg 0x00014ee8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + i.drv_dsi_rx_set_ipi_cfg 0x00014ef8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + i.drv_dsi_rx_set_lane_swap 0x00014f08 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + i.drv_dsi_rx_set_resp_cnt 0x00014f4e Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + i.drv_dsi_rx_set_up_phy 0x00014f74 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + i.drv_dsi_rx_shut_down 0x00015078 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + i.drv_dsi_tx_command_header 0x00015086 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + i.drv_dsi_tx_command_mode_cfg 0x0001509a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + i.drv_dsi_tx_command_put_payload 0x00015106 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + i.drv_dsi_tx_config_eotp 0x0001510a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + i.drv_dsi_tx_config_int 0x00015122 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + i.drv_dsi_tx_dpi_lpcmd_time 0x0001512a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + i.drv_dsi_tx_dpi_mode 0x00015132 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + i.drv_dsi_tx_dpi_polarity 0x0001513c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + i.drv_dsi_tx_edpi_cmd_size 0x00015160 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + i.drv_dsi_tx_get_cmd_status 0x00015164 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + i.drv_dsi_tx_mode 0x00015168 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_mode) + i.drv_dsi_tx_phy_clock_lane_auto_lp 0x0001516c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + i.drv_dsi_tx_phy_clock_lane_req_hs 0x00015184 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + i.drv_dsi_tx_phy_lane_mode 0x0001519e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + i.drv_dsi_tx_phy_status_ready 0x000151aa Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + i.drv_dsi_tx_phy_status_stopstate 0x0001520e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + i.drv_dsi_tx_phy_test_setup 0x0001524c Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + i.drv_dsi_tx_phy_time_cfg 0x00015380 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + i.drv_dsi_tx_powerup 0x0001539e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + i.drv_dsi_tx_response_mode 0x000153a6 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + i.drv_dsi_tx_set_bta_ack 0x000153c2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + i.drv_dsi_tx_set_esc_div 0x000153da Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + i.drv_dsi_tx_set_int 0x000153e8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + i.drv_dsi_tx_set_time_out_div 0x00015428 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + i.drv_dsi_tx_set_video_chunk 0x00015438 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + i.drv_dsi_tx_set_video_timing 0x00015440 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + i.drv_dsi_tx_shutdown 0x00015462 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + i.drv_dsi_tx_timeout_cfg 0x0001546a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + i.drv_dsi_tx_video_mode_cfg 0x00015490 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + i.drv_dsi_tx_video_mode_disable_hact_cmd 0x0001553a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + i.drv_dsi_tx_video_mode_set_lp_cmd 0x00015550 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + i.drv_efuse_enter_inactive 0x00015568 Section 0 drv_efuse.o(i.drv_efuse_enter_inactive) + i.drv_efuse_int_enable 0x00015588 Section 0 drv_efuse.o(i.drv_efuse_int_enable) + i.drv_efuse_read 0x00015594 Section 0 drv_efuse.o(i.drv_efuse_read) + i.drv_efuse_read_req 0x000155c6 Section 0 drv_efuse.o(i.drv_efuse_read_req) + i.drv_gpio_get_input_data 0x000155e0 Section 0 drv_gpio.o(i.drv_gpio_get_input_data) + i.drv_gpio_register_ap_reset_callback 0x000155f8 Section 0 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + i.drv_gpio_register_callback 0x00015604 Section 0 drv_gpio.o(i.drv_gpio_register_callback) + i.drv_gpio_set_int 0x00015618 Section 0 drv_gpio.o(i.drv_gpio_set_int) + i.drv_gpio_set_ioe 0x00015668 Section 0 drv_gpio.o(i.drv_gpio_set_ioe) + i.drv_gpio_set_mode0 0x00015688 Section 0 drv_gpio.o(i.drv_gpio_set_mode0) + i.drv_gpio_set_mode1 0x00015698 Section 0 drv_gpio.o(i.drv_gpio_set_mode1) + i.drv_gpio_set_mode2 0x000156a8 Section 0 drv_gpio.o(i.drv_gpio_set_mode2) + i.drv_gpio_set_mode3 0x000156b8 Section 0 drv_gpio.o(i.drv_gpio_set_mode3) + i.drv_gpio_set_output_data 0x000156c8 Section 0 hal_gpio.o(i.drv_gpio_set_output_data) + drv_gpio_set_output_data 0x000156c9 Thumb Code 26 hal_gpio.o(i.drv_gpio_set_output_data) + i.drv_gpio_set_pull_state 0x000156e8 Section 0 drv_gpio.o(i.drv_gpio_set_pull_state) + i.drv_i2c0_set_callback 0x00015818 Section 0 drv_i2c_slave.o(i.drv_i2c0_set_callback) + i.drv_i2c1_set_callback 0x00015824 Section 0 drv_i2c_master.o(i.drv_i2c1_set_callback) + i.drv_i2c_dma_callback 0x00015830 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_callback) + drv_i2c_dma_callback 0x00015831 Thumb Code 40 drv_i2c_dma.o(i.drv_i2c_dma_callback) + i.drv_i2c_dma_init 0x00015864 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_init) + i.drv_i2c_enable_rx_dma 0x00015910 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + i.drv_i2c_enable_tx_dma 0x0001592a Section 0 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + i.drv_i2c_m_clear_it_pending_bit 0x00015944 Section 0 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + i.drv_i2c_m_enable 0x000159a4 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable) + i.drv_i2c_m_enable_intr 0x000159b4 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + i.drv_i2c_master_init 0x000159ec Section 0 drv_i2c_master.o(i.drv_i2c_master_init) + i.drv_i2c_master_read_dma 0x00015a78 Section 0 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + i.drv_i2c_master_write_dma 0x00015ad4 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + i.drv_i2c_master_write_read_cmd 0x00015b10 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + drv_i2c_master_write_read_cmd 0x00015b11 Thumb Code 46 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + i.drv_i2c_s_clear_it_pending_bit 0x00015b3e Section 0 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + i.drv_i2c_s_config_intr 0x00015b80 Section 0 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + i.drv_i2c_s_enable 0x00015b84 Section 0 drv_i2c_slave.o(i.drv_i2c_s_enable) + i.drv_i2c_s_get_fifo_status 0x00015b8c Section 0 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + i.drv_i2c_s_set_intr 0x00015ba0 Section 0 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + i.drv_i2c_s_write_data 0x00015bf0 Section 0 drv_i2c_slave.o(i.drv_i2c_s_write_data) + i.drv_i2c_set_dma_irq_callback 0x00015c0c Section 0 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + i.drv_i2c_slave_init 0x00015c64 Section 0 drv_i2c_slave.o(i.drv_i2c_slave_init) + i.drv_i2c_slave_write_dma 0x00015c98 Section 0 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + i.drv_lcdc_config_bypass 0x00015cb0 Section 0 drv_lcdc.o(i.drv_lcdc_config_bypass) + i.drv_lcdc_config_ccm 0x00015cc8 Section 0 drv_lcdc.o(i.drv_lcdc_config_ccm) + i.drv_lcdc_config_disp_mode 0x00015cf8 Section 0 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + i.drv_lcdc_config_dpi_polarity 0x00015d0e Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + i.drv_lcdc_config_dpi_timing 0x00015d32 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + i.drv_lcdc_config_edpi_mode 0x00015d58 Section 0 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + i.drv_lcdc_config_endianness 0x00015d6e Section 0 drv_lcdc.o(i.drv_lcdc_config_endianness) + i.drv_lcdc_config_input_size 0x00015d84 Section 0 drv_lcdc.o(i.drv_lcdc_config_input_size) + i.drv_lcdc_config_int 0x00015d90 Section 0 drv_lcdc.o(i.drv_lcdc_config_int) + i.drv_lcdc_config_int_single 0x00015dae Section 0 drv_lcdc.o(i.drv_lcdc_config_int_single) + i.drv_lcdc_config_overwrite 0x00015dd0 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite) + i.drv_lcdc_config_overwrite_rgb 0x00015df2 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + i.drv_lcdc_config_partial_display_area 0x00015dfe Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + i.drv_lcdc_config_partial_display_enable 0x00015e18 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + i.drv_lcdc_config_scale_up_coef 0x00015e3a Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + i.drv_lcdc_config_scale_up_step 0x00015e54 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + i.drv_lcdc_config_src_parameter 0x00015e60 Section 0 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + i.drv_lcdc_config_thresh 0x00015eac Section 0 drv_lcdc.o(i.drv_lcdc_config_thresh) + i.drv_lcdc_ctrl_flow 0x00015eb2 Section 0 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + i.drv_lcdc_enable_shadow_reg 0x00015ec4 Section 0 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + i.drv_lcdc_set_int 0x00015ee4 Section 0 drv_lcdc.o(i.drv_lcdc_set_int) + i.drv_lcdc_set_prefetch 0x00015f24 Section 0 drv_lcdc.o(i.drv_lcdc_set_prefetch) + i.drv_lcdc_set_video_hw_mode 0x00015f3c Section 0 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + i.drv_lcdc_start 0x00015f50 Section 0 drv_lcdc.o(i.drv_lcdc_start) + i.drv_memc_clear_status 0x00015f70 Section 0 drv_memc.o(i.drv_memc_clear_status) + i.drv_memc_enable_irq 0x00015f7c Section 0 drv_memc.o(i.drv_memc_enable_irq) + i.drv_memc_gen_a_tear_signal 0x00015fbc Section 0 drv_memc.o(i.drv_memc_gen_a_tear_signal) + i.drv_memc_get_status 0x00015fc8 Section 0 drv_memc.o(i.drv_memc_get_status) + i.drv_memc_rate_transfer_sel 0x00015fda Section 0 drv_memc.o(i.drv_memc_rate_transfer_sel) + i.drv_memc_sel_vsync 0x00015fea Section 0 drv_memc.o(i.drv_memc_sel_vsync) + i.drv_memc_set_active_height 0x00015ff8 Section 0 drv_memc.o(i.drv_memc_set_active_height) + i.drv_memc_set_data_mode 0x0001600c Section 0 drv_memc.o(i.drv_memc_set_data_mode) + i.drv_memc_set_double_buffer 0x00016018 Section 0 drv_memc.o(i.drv_memc_set_double_buffer) + i.drv_memc_set_double_buffer_reverse 0x00016028 Section 0 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + i.drv_memc_set_fs_en_conditions 0x0001603a Section 0 drv_memc.o(i.drv_memc_set_fs_en_conditions) + i.drv_memc_set_inten 0x0001604a Section 0 drv_memc.o(i.drv_memc_set_inten) + i.drv_memc_set_lcdc_st_conditions 0x00016060 Section 0 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + i.drv_memc_set_ltpo_mode 0x00016078 Section 0 drv_memc.o(i.drv_memc_set_ltpo_mode) + i.drv_memc_set_tear_mode 0x00016092 Section 0 drv_memc.o(i.drv_memc_set_tear_mode) + i.drv_memc_set_tear_waveform 0x000160a0 Section 0 drv_memc.o(i.drv_memc_set_tear_waveform) + i.drv_memc_set_vidc_sync_cnt 0x000160c8 Section 0 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + i.drv_param_init_get_ccm 0x000160d8 Section 0 drv_param_init.o(i.drv_param_init_get_ccm) + i.drv_param_init_get_scld_filter_h 0x000160e0 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + i.drv_param_init_get_scld_filter_v 0x000160f4 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + i.drv_param_init_get_sclu_filter 0x00016108 Section 0 drv_param_init.o(i.drv_param_init_get_sclu_filter) + i.drv_param_init_set_ccm 0x00016110 Section 0 drv_param_init.o(i.drv_param_init_set_ccm) + i.drv_param_init_set_scld_filter 0x00016124 Section 0 drv_param_init.o(i.drv_param_init_set_scld_filter) + i.drv_param_p2r_filter_init 0x00016188 Section 0 drv_param_init.o(i.drv_param_p2r_filter_init) + i.drv_phy_enable_calibration 0x000161ac Section 0 drv_phy_common.o(i.drv_phy_enable_calibration) + i.drv_phy_get_calibration 0x000161bc Section 0 drv_phy_common.o(i.drv_phy_get_calibration) + i.drv_phy_get_pll_para 0x000161f8 Section 0 drv_phy_common.o(i.drv_phy_get_pll_para) + i.drv_phy_get_rate_para 0x00016258 Section 0 drv_phy_common.o(i.drv_phy_get_rate_para) + i.drv_phy_test_clear 0x000162ac Section 0 drv_phy_common.o(i.drv_phy_test_clear) + i.drv_phy_test_lock 0x000162bc Section 0 drv_phy_common.o(i.drv_phy_test_lock) + i.drv_phy_test_write_1_byte 0x000162d4 Section 0 drv_phy_common.o(i.drv_phy_test_write_1_byte) + i.drv_phy_test_write_2_byte 0x000162f4 Section 0 drv_phy_common.o(i.drv_phy_test_write_2_byte) + i.drv_phy_test_write_code 0x0001631a Section 0 drv_phy_common.o(i.drv_phy_test_write_code) + i.drv_phy_test_write_data 0x00016338 Section 0 drv_phy_common.o(i.drv_phy_test_write_data) + drv_phy_test_write_data 0x00016339 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_data) + i.drv_pwr_set_cp_mode 0x00016358 Section 0 drv_pwr.o(i.drv_pwr_set_cp_mode) + i.drv_pwr_set_pvd_mode 0x00016378 Section 0 drv_pwr.o(i.drv_pwr_set_pvd_mode) + i.drv_pwr_set_system_clk_src 0x00016390 Section 0 drv_pwr.o(i.drv_pwr_set_system_clk_src) + i.drv_rx_phy_test_clear 0x000163c8 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + drv_rx_phy_test_clear 0x000163c9 Thumb Code 12 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + i.drv_rx_phy_test_lock 0x000163d4 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + drv_rx_phy_test_lock 0x000163d5 Thumb Code 16 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + i.drv_rx_phy_test_write_1_byte 0x000163e4 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + drv_rx_phy_test_write_1_byte 0x000163e5 Thumb Code 20 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + i.drv_rx_phy_test_write_2_byte 0x000163f8 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + drv_rx_phy_test_write_2_byte 0x000163f9 Thumb Code 22 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + i.drv_rxbr_clear_pkt_buffer 0x0001640e Section 0 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + i.drv_rxbr_clear_status0 0x00016418 Section 0 drv_rxbr.o(i.drv_rxbr_clear_status0) + i.drv_rxbr_enable_irq 0x0001641c Section 0 drv_rxbr.o(i.drv_rxbr_enable_irq) + i.drv_rxbr_frame_drop_cfg 0x00016478 Section 0 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + i.drv_rxbr_get_clk 0x0001648c Section 0 drv_rxbr.o(i.drv_rxbr_get_clk) + i.drv_rxbr_get_col_addr 0x000164f0 Section 0 drv_rxbr.o(i.drv_rxbr_get_col_addr) + i.drv_rxbr_get_int_source 0x000164f4 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + drv_rxbr_get_int_source 0x000164f5 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + i.drv_rxbr_get_page_addr 0x00016506 Section 0 drv_rxbr.o(i.drv_rxbr_get_page_addr) + i.drv_rxbr_get_status0 0x0001650a Section 0 hal_internal_vsync.o(i.drv_rxbr_get_status0) + drv_rxbr_get_status0 0x0001650b Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_status0) + i.drv_rxbr_hline_rcv0_cfg 0x0001651c Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + i.drv_rxbr_hline_rcv_cfg 0x00016528 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + i.drv_rxbr_register_irq0_callback 0x00016530 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + i.drv_rxbr_register_irq1_callback 0x0001653c Section 0 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + i.drv_rxbr_set_ack_pkt_header 0x00016548 Section 0 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + i.drv_rxbr_set_cmd_filter 0x0001655c Section 0 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + i.drv_rxbr_set_color_format 0x00016628 Section 0 drv_rxbr.o(i.drv_rxbr_set_color_format) + i.drv_rxbr_set_inten 0x0001663c Section 0 drv_rxbr.o(i.drv_rxbr_set_inten) + i.drv_rxbr_set_ltpo_drop_th 0x00016650 Section 0 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + i.drv_rxbr_set_usr_cfg 0x00016660 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + i.drv_rxbr_set_usr_col 0x00016686 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_col) + i.drv_rxbr_set_usr_row 0x0001668e Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_row) + i.drv_spi_m_read_data 0x00016698 Section 0 drv_spi_master.o(i.drv_spi_m_read_data) + i.drv_swire_enable 0x000166b8 Section 0 drv_swire.o(i.drv_swire_enable) + i.drv_swire_set_int 0x000166d4 Section 0 drv_swire.o(i.drv_swire_set_int) + i.drv_swire_set_power_down 0x00016728 Section 0 drv_swire.o(i.drv_swire_set_power_down) + i.drv_sys_cfg_clear_all_int 0x00016744 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + i.drv_sys_cfg_clear_pending 0x00016750 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + i.drv_sys_cfg_sel_ap_rst_lvl_trig 0x00016778 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + i.drv_sys_cfg_sel_ap_rst_trig 0x00016790 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + i.drv_sys_cfg_sel_gpio_group 0x000167ac Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + i.drv_sys_cfg_sel_int_trig 0x000167d0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + i.drv_sys_cfg_set_dma_rx_req 0x000167f4 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + i.drv_sys_cfg_set_dma_tx_req 0x00016804 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + i.drv_sys_cfg_set_int 0x00016814 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + i.drv_timer_clear_status_flags 0x00016838 Section 0 drv_timer.o(i.drv_timer_clear_status_flags) + drv_timer_clear_status_flags 0x00016839 Thumb Code 26 drv_timer.o(i.drv_timer_clear_status_flags) + i.drv_timer_enable 0x00016852 Section 0 drv_timer.o(i.drv_timer_enable) + i.drv_timer_get_instance 0x00016874 Section 0 drv_timer.o(i.drv_timer_get_instance) + i.drv_timer_get_prescaler 0x00016884 Section 0 drv_timer.o(i.drv_timer_get_prescaler) + i.drv_timer_handle_interrupt 0x00016894 Section 0 drv_timer.o(i.drv_timer_handle_interrupt) + drv_timer_handle_interrupt 0x00016895 Thumb Code 62 drv_timer.o(i.drv_timer_handle_interrupt) + i.drv_timer_register_callback 0x000168d8 Section 0 drv_timer.o(i.drv_timer_register_callback) + i.drv_timer_set_compare_val 0x000168ec Section 0 drv_timer.o(i.drv_timer_set_compare_val) + i.drv_timer_set_int 0x000168fc Section 0 drv_timer.o(i.drv_timer_set_int) + i.drv_timer_set_prescaler 0x00016950 Section 0 drv_timer.o(i.drv_timer_set_prescaler) + i.drv_timer_set_repeat 0x00016978 Section 0 drv_timer.o(i.drv_timer_set_repeat) + i.drv_tx_phy_test_clear 0x00016988 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + drv_tx_phy_test_clear 0x00016989 Thumb Code 10 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + i.drv_tx_phy_test_enter 0x00016992 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + i.drv_tx_phy_test_exit 0x000169ae Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + i.drv_tx_phy_test_write_1_byte 0x000169ca Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + drv_tx_phy_test_write_1_byte 0x000169cb Thumb Code 18 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + i.drv_tx_phy_test_write_2_byte 0x000169dc Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + drv_tx_phy_test_write_2_byte 0x000169dd Thumb Code 20 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + i.drv_tx_phy_test_write_code 0x000169f0 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + drv_tx_phy_test_write_code 0x000169f1 Thumb Code 16 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + i.drv_vidc_clear_irq 0x00016a00 Section 0 drv_vidc.o(i.drv_vidc_clear_irq) + i.drv_vidc_enable 0x00016a08 Section 0 drv_vidc.o(i.drv_vidc_enable) + i.drv_vidc_enable_irq 0x00016a20 Section 0 drv_vidc.o(i.drv_vidc_enable_irq) + i.drv_vidc_get_irq_status 0x00016a60 Section 0 drv_vidc.o(i.drv_vidc_get_irq_status) + i.drv_vidc_init_module_enable 0x00016a74 Section 0 drv_vidc.o(i.drv_vidc_init_module_enable) + i.drv_vidc_register_callback 0x00016a9c Section 0 drv_vidc.o(i.drv_vidc_register_callback) + i.drv_vidc_reset 0x00016aa8 Section 0 drv_vidc.o(i.drv_vidc_reset) + i.drv_vidc_set_dst_parameter 0x00016aae Section 0 drv_vidc.o(i.drv_vidc_set_dst_parameter) + i.drv_vidc_set_irqen 0x00016aea Section 0 drv_vidc.o(i.drv_vidc_set_irqen) + i.drv_vidc_set_mirror 0x00016afe Section 0 drv_vidc.o(i.drv_vidc_set_mirror) + i.drv_vidc_set_p2r_hcoef0 0x00016b0e Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + i.drv_vidc_set_p2r_hinitb 0x00016b16 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + i.drv_vidc_set_p2r_hinitr 0x00016b3c Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + i.drv_vidc_set_pentile_swap 0x00016b64 Section 0 drv_vidc.o(i.drv_vidc_set_pentile_swap) + i.drv_vidc_set_pu_ctrl 0x00016b7c Section 0 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + i.drv_vidc_set_rotation 0x00016b86 Section 0 drv_vidc.o(i.drv_vidc_set_rotation) + i.drv_vidc_set_scld_hcoef0 0x00016b96 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + i.drv_vidc_set_scld_hcoef1 0x00016ba0 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + i.drv_vidc_set_scld_step 0x00016baa Section 0 drv_vidc.o(i.drv_vidc_set_scld_step) + i.drv_vidc_set_scld_vcoef0 0x00016bbc Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + i.drv_vidc_set_scld_vcoef1 0x00016bc6 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + i.drv_vidc_set_src_parameter 0x00016bd0 Section 0 drv_vidc.o(i.drv_vidc_set_src_parameter) + i.drv_wdg_clear_counter 0x00016be8 Section 0 drv_wdg.o(i.drv_wdg_clear_counter) + i.drv_wdg_clear_edge_flag 0x00016bf8 Section 0 drv_wdg.o(i.drv_wdg_clear_edge_flag) + drv_wdg_clear_edge_flag 0x00016bf9 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_edge_flag) + i.drv_wdg_read_edge_flag 0x00016c08 Section 0 drv_wdg.o(i.drv_wdg_read_edge_flag) + drv_wdg_read_edge_flag 0x00016c09 Thumb Code 10 drv_wdg.o(i.drv_wdg_read_edge_flag) + i.drv_wdg_set_int 0x00016c18 Section 0 drv_wdg.o(i.drv_wdg_set_int) + i.fls_clr_interrupt_flag 0x00016c58 Section 0 drv_fls.o(i.fls_clr_interrupt_flag) + i.fputc 0x00016c62 Section 0 tau_log.o(i.fputc) + i.hal_dsi_rx_ctrl_create_handle 0x00016c78 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + i.hal_dsi_rx_ctrl_deinit 0x00016cac Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + i.hal_dsi_rx_ctrl_dsc_async_handler 0x00016d48 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + i.hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016dcc Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + i.hal_dsi_rx_ctrl_get_compressen_en 0x00016df4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) + i.hal_dsi_rx_ctrl_get_max_ret_size 0x00016e04 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + i.hal_dsi_rx_ctrl_init 0x00016e2c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + i.hal_dsi_rx_ctrl_init_clk 0x00016e8c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + hal_dsi_rx_ctrl_init_clk 0x00016e8d Thumb Code 332 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + i.hal_dsi_rx_ctrl_init_dsi_rx 0x00017030 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + hal_dsi_rx_ctrl_init_dsi_rx 0x00017031 Thumb Code 184 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + i.hal_dsi_rx_ctrl_init_memc 0x00017108 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + hal_dsi_rx_ctrl_init_memc 0x00017109 Thumb Code 334 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + i.hal_dsi_rx_ctrl_init_rxbr 0x00017260 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + hal_dsi_rx_ctrl_init_rxbr 0x00017261 Thumb Code 294 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + i.hal_dsi_rx_ctrl_init_vidc 0x00017398 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + hal_dsi_rx_ctrl_init_vidc 0x00017399 Thumb Code 546 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + i.hal_dsi_rx_ctrl_send_ack_cmd 0x000175c8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + i.hal_dsi_rx_ctrl_set_cus_scld_filter 0x000176b8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) + i.hal_dsi_rx_ctrl_set_cus_sync_line 0x00017724 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + i.hal_dsi_rx_ctrl_set_ipi_cfg 0x00017758 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + hal_dsi_rx_ctrl_set_ipi_cfg 0x00017759 Thumb Code 50 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + i.hal_dsi_rx_ctrl_set_rxbr_clk 0x00017790 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + hal_dsi_rx_ctrl_set_rxbr_clk 0x00017791 Thumb Code 114 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + i.hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017804 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + i.hal_dsi_rx_ctrl_set_tear_mode_ex 0x00017838 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) + i.hal_dsi_rx_ctrl_start 0x00017848 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + i.hal_dsi_rx_ctrl_stop 0x00017884 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + i.hal_dsi_rx_ctrl_toggle_resolution_ex 0x000178c0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) + i.hal_dsi_tx_calc_video_chunks 0x000178e0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + hal_dsi_tx_calc_video_chunks 0x000178e1 Thumb Code 384 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + i.hal_dsi_tx_config_params_for_lane_rate 0x00017a70 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + hal_dsi_tx_config_params_for_lane_rate 0x00017a71 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + i.hal_dsi_tx_count_lane_rate 0x00017aa4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + hal_dsi_tx_count_lane_rate 0x00017aa5 Thumb Code 1022 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + i.hal_dsi_tx_ctrl_create_handle 0x00017ef4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + i.hal_dsi_tx_ctrl_deinit 0x00017f20 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + i.hal_dsi_tx_ctrl_enter_init_panel_mode 0x00017fa4 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + i.hal_dsi_tx_ctrl_exit_init_panel_mode 0x00017ff0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + i.hal_dsi_tx_ctrl_init 0x00018018 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + i.hal_dsi_tx_ctrl_init_clk 0x000180bc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + hal_dsi_tx_ctrl_init_clk 0x000180bd Thumb Code 36 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + i.hal_dsi_tx_ctrl_panel_reset_pin 0x000180e0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + i.hal_dsi_tx_ctrl_read_cmd 0x000180ec Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) + i.hal_dsi_tx_ctrl_set_ccm 0x00018178 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + i.hal_dsi_tx_ctrl_set_overwrite_rgb 0x00018198 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + i.hal_dsi_tx_ctrl_set_partial_disp 0x000181ac Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + i.hal_dsi_tx_ctrl_set_partial_disp_area 0x000181bc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + i.hal_dsi_tx_ctrl_start 0x000181e0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + i.hal_dsi_tx_ctrl_stop 0x0001827c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + i.hal_dsi_tx_ctrl_write_array_cmd 0x000182c0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + i.hal_dsi_tx_ctrl_write_cmd 0x00018398 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + i.hal_dsi_tx_init_data_mode 0x00018448 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + hal_dsi_tx_init_data_mode 0x00018449 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + i.hal_dsi_tx_init_dpi_cfg 0x0001848c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + hal_dsi_tx_init_dpi_cfg 0x0001848d Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + i.hal_dsi_tx_init_interrupt 0x000184bc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + hal_dsi_tx_init_interrupt 0x000184bd Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + i.hal_dsi_tx_init_phy_cfg 0x000184dc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + hal_dsi_tx_init_phy_cfg 0x000184dd Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + i.hal_dsi_tx_init_remains 0x000184fc Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + hal_dsi_tx_init_remains 0x000184fd Thumb Code 142 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + i.hal_dsi_tx_init_video_mode 0x00018590 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + hal_dsi_tx_init_video_mode 0x00018591 Thumb Code 82 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + i.hal_dsi_tx_send_cmd 0x000185e8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + hal_dsi_tx_send_cmd 0x000185e9 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + i.hal_gpio_ctrl_eint 0x0001862c Section 0 hal_gpio.o(i.hal_gpio_ctrl_eint) + i.hal_gpio_get_input_data 0x00018644 Section 0 hal_gpio.o(i.hal_gpio_get_input_data) + i.hal_gpio_init_eint 0x00018658 Section 0 hal_gpio.o(i.hal_gpio_init_eint) + i.hal_gpio_init_input 0x00018698 Section 0 hal_gpio.o(i.hal_gpio_init_input) + i.hal_gpio_init_output 0x000186b8 Section 0 hal_gpio.o(i.hal_gpio_init_output) + i.hal_gpio_reg_eint_cb 0x000186e0 Section 0 hal_gpio.o(i.hal_gpio_reg_eint_cb) + i.hal_gpio_set_ap_reset_int 0x000186f8 Section 0 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + i.hal_gpio_set_mode 0x00018748 Section 0 hal_gpio.o(i.hal_gpio_set_mode) + i.hal_gpio_set_output_data 0x000187a8 Section 0 hal_gpio.o(i.hal_gpio_set_output_data) + i.hal_gpio_set_pull_state 0x000187b0 Section 0 hal_gpio.o(i.hal_gpio_set_pull_state) + i.hal_i2c_m_dma_init 0x000187d0 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_init) + i.hal_i2c_m_dma_read 0x0001883c Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_read) + i.hal_i2c_m_dma_write 0x0001885c Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_write) + i.hal_i2c_m_transfer_complate 0x00018878 Section 0 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + i.hal_i2c_master_irq_callback 0x00018884 Section 0 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + hal_i2c_master_irq_callback 0x00018885 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + i.hal_i2c_s_dma_user_callback 0x000188a4 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + hal_i2c_s_dma_user_callback 0x000188a5 Thumb Code 12 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + i.hal_i2c_s_dma_write 0x000188b4 Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + i.hal_i2c_s_init 0x00018900 Section 0 hal_i2c_slave.o(i.hal_i2c_s_init) + i.hal_i2c_s_nonblocking_read 0x000189c8 Section 0 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + i.hal_i2c_s_set_transfer 0x000189dc Section 0 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + i.hal_i2c_slave_irq_callback 0x000189e8 Section 0 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + hal_i2c_slave_irq_callback 0x000189e9 Thumb Code 354 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + i.hal_internal_init_memc 0x00018b5c Section 0 hal_internal_vsync.o(i.hal_internal_init_memc) + i.hal_internal_sync_get_fb_setting 0x00018c58 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + i.hal_internal_sync_get_hight_performan_mode 0x00018c68 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + i.hal_internal_sync_input_resolution_change_ex 0x00018c78 Section 0 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) + i.hal_internal_vsync_deinit 0x00018e4c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + i.hal_internal_vsync_get_rx_state 0x00018e74 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + i.hal_internal_vsync_get_sync_line 0x00018e80 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + i.hal_internal_vsync_get_tear_mode 0x00018e98 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + i.hal_internal_vsync_get_tx_state 0x00018ea4 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + i.hal_internal_vsync_init_rx 0x00018eb0 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + i.hal_internal_vsync_init_tx 0x00018fc8 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + i.hal_internal_vsync_set_auto_hw_filter 0x00019078 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + i.hal_internal_vsync_set_rx_state 0x00019194 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + i.hal_internal_vsync_set_sync_line 0x000191a8 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + i.hal_internal_vsync_set_tear_mode 0x000191cc Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + i.hal_internal_vsync_set_tx_state 0x0001921c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + i.hal_lcdc_config_ccm 0x0001929c Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + hal_lcdc_config_ccm 0x0001929d Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + i.hal_lcdc_config_remains 0x000192c0 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + hal_lcdc_config_remains 0x000192c1 Thumb Code 84 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + i.hal_lcdc_config_rgb_to_pentile 0x00019318 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + hal_lcdc_config_rgb_to_pentile 0x00019319 Thumb Code 14 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + i.hal_lcdc_config_upscaler 0x0001932c Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + hal_lcdc_config_upscaler 0x0001932d Thumb Code 348 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + i.hal_lcdc_init_cfg 0x00019490 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + hal_lcdc_init_cfg 0x00019491 Thumb Code 78 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + i.hal_lcdc_init_clk 0x000194e4 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + hal_lcdc_init_clk 0x000194e5 Thumb Code 392 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + i.hal_lcdc_init_interrupt 0x00019674 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + hal_lcdc_init_interrupt 0x00019675 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + i.hal_spi_m_clear_rxfifo 0x000196b4 Section 0 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + i.hal_swire_deinit 0x000196c2 Section 0 hal_swire.o(i.hal_swire_deinit) + i.hal_swire_open 0x000196d4 Section 0 hal_swire.o(i.hal_swire_open) + i.hal_system_enable_systick 0x000196ea Section 0 hal_system.o(i.hal_system_enable_systick) + i.hal_system_init 0x000196f4 Section 0 hal_system.o(i.hal_system_init) + i.hal_system_init_console 0x0001977c Section 0 hal_system.o(i.hal_system_init_console) + i.hal_system_set_phy_calibration 0x00019798 Section 0 hal_system.o(i.hal_system_set_phy_calibration) + i.hal_system_set_pvd 0x000197a0 Section 0 hal_system.o(i.hal_system_set_pvd) + i.hal_system_set_vcc 0x000197a8 Section 0 hal_system.o(i.hal_system_set_vcc) + i.hal_timer_deinit 0x000197b0 Section 0 hal_timer.o(i.hal_timer_deinit) + i.hal_timer_init 0x000197de Section 0 hal_timer.o(i.hal_timer_init) + i.hal_timer_start 0x000197f8 Section 0 hal_timer.o(i.hal_timer_start) + i.hal_timer_stop 0x00019840 Section 0 hal_timer.o(i.hal_timer_stop) + i.hal_uart_init 0x00019868 Section 0 hal_uart.o(i.hal_uart_init) + i.hal_uart_transmit_blocking 0x000198f4 Section 0 hal_uart.o(i.hal_uart_transmit_blocking) + i.hal_vsync_reset_lcdc_scaler 0x00019904 Section 0 hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) + hal_vsync_reset_lcdc_scaler 0x00019905 Thumb Code 460 hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) + i.handle_init 0x00019ae0 Section 0 irq_redirect .o(i.handle_init) + i.init_mipi_tx 0x00019bf0 Section 0 ap_demo.o(i.init_mipi_tx) + init_mipi_tx 0x00019bf1 Thumb Code 90 ap_demo.o(i.init_mipi_tx) + i.init_panel 0x00019c50 Section 0 ap_demo.o(i.init_panel) + init_panel 0x00019c51 Thumb Code 264 ap_demo.o(i.init_panel) + i.main 0x00019da4 Section 0 main.o(i.main) + i.open_mipi_rx 0x00019db0 Section 0 ap_demo.o(i.open_mipi_rx) + open_mipi_rx 0x00019db1 Thumb Code 128 ap_demo.o(i.open_mipi_rx) + i.pps_update_handle 0x00019e48 Section 0 ap_demo.o(i.pps_update_handle) + pps_update_handle 0x00019e49 Thumb Code 52 ap_demo.o(i.pps_update_handle) + i.rx_get_dcs_packet_data 0x00019e80 Section 0 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + rx_get_dcs_packet_data 0x00019e81 Thumb Code 654 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + i.rx_partial_update 0x0001a274 Section 0 hal_internal_vsync.o(i.rx_partial_update) + rx_partial_update 0x0001a275 Thumb Code 358 hal_internal_vsync.o(i.rx_partial_update) + i.rx_receive_packet 0x0001a3ec Section 0 hal_internal_vsync.o(i.rx_receive_packet) + rx_receive_packet 0x0001a3ed Thumb Code 128 hal_internal_vsync.o(i.rx_receive_packet) + i.rx_receive_pps 0x0001a478 Section 0 hal_internal_vsync.o(i.rx_receive_pps) + rx_receive_pps 0x0001a479 Thumb Code 268 hal_internal_vsync.o(i.rx_receive_pps) + i.rxbr_irq0_callback 0x0001a5f8 Section 0 hal_internal_vsync.o(i.rxbr_irq0_callback) + rxbr_irq0_callback 0x0001a5f9 Thumb Code 158 hal_internal_vsync.o(i.rxbr_irq0_callback) + i.rxbr_irq1_callback 0x0001a69c Section 0 hal_internal_vsync.o(i.rxbr_irq1_callback) + rxbr_irq1_callback 0x0001a69d Thumb Code 282 hal_internal_vsync.o(i.rxbr_irq1_callback) + i.soft_gen_te 0x0001a850 Section 0 hal_internal_vsync.o(i.soft_gen_te) + soft_gen_te 0x0001a851 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te) + i.soft_gen_te_double_buffer 0x0001a914 Section 0 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + soft_gen_te_double_buffer 0x0001a915 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + i.soft_timer3_cb 0x0001a9d4 Section 0 ap_demo.o(i.soft_timer3_cb) + soft_timer3_cb 0x0001a9d5 Thumb Code 36 ap_demo.o(i.soft_timer3_cb) + i.sqrt 0x0001aa04 Section 0 sqrt.o(i.sqrt) + i.vidc_callback 0x0001aa4c Section 0 hal_internal_vsync.o(i.vidc_callback) + vidc_callback 0x0001aa4d Thumb Code 232 hal_internal_vsync.o(i.vidc_callback) + i.vpre_err_reset 0x0001ab54 Section 0 hal_internal_vsync.o(i.vpre_err_reset) + vpre_err_reset 0x0001ab55 Thumb Code 184 hal_internal_vsync.o(i.vpre_err_reset) + i.vsync_set_te_mode 0x0001ac24 Section 0 hal_internal_vsync.o(i.vsync_set_te_mode) + vsync_set_te_mode 0x0001ac25 Thumb Code 300 hal_internal_vsync.o(i.vsync_set_te_mode) + .constdata 0x0001adf0 Section 10069 ap_demo.o(.constdata) + g_cus_rx_dcs_execute_table 0x0001adf0 Data 96 ap_demo.o(.constdata) + .constdata 0x0001d545 Section 8294 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001f5ab Section 1 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001f5ac Section 36 hal_dsi_tx_ctrl.o(.constdata) + .constdata 0x0001f5d0 Section 210 hal_gpio.o(.constdata) + s_gpio_map 0x0001f5d0 Data 120 hal_gpio.o(.constdata) + s_gpio_perf 0x0001f648 Data 90 hal_gpio.o(.constdata) + .constdata 0x0001f6a4 Section 32 hal_i2c_slave.o(.constdata) + sg_i2c_s_config 0x0001f6a4 Data 32 hal_i2c_slave.o(.constdata) + .constdata 0x0001f6c4 Section 8 drv_param_init.o(.constdata) + .constdata 0x0001f6cc Section 390 drv_phy_common.o(.constdata) + phy_para_mapping_h 0x0001f6cc Data 184 drv_phy_common.o(.constdata) + phy_para_mapping_l 0x0001f784 Data 128 drv_phy_common.o(.constdata) + phy_data_high_map 0x0001f804 Data 48 drv_phy_common.o(.constdata) + phy_data_lp_map 0x0001f834 Data 30 drv_phy_common.o(.constdata) + .conststring 0x0001f854 Section 72 hal_dsi_rx_ctrl.o(.conststring) + .conststring 0x0001f89c Section 67 hal_dsi_tx_ctrl.o(.conststring) + .conststring 0x0001f8e0 Section 224 hal_internal_vsync.o(.conststring) + .ARM.__AT_0x00070100 0x00070100 Section 192 irq_redirect .o(.ARM.__AT_0x00070100) + .data 0x000701d0 Section 556 ap_demo.o(.data) + g_need_enter_sleep_mode 0x000701d0 Data 1 ap_demo.o(.data) + g_calibration_flag 0x000701d1 Data 1 ap_demo.o(.data) + start_display_on 0x000701d2 Data 1 ap_demo.o(.data) + g_exit_sleep_mode 0x000701d3 Data 1 ap_demo.o(.data) + panel_display_done 0x000701d4 Data 1 ap_demo.o(.data) + R60_Parma_backup 0x000701d7 Data 1 ap_demo.o(.data) + read_A1_count 0x000701d9 Data 1 ap_demo.o(.data) + read_6e_10 0x000701da Data 1 ap_demo.o(.data) + read_6e_24 0x000701db Data 1 ap_demo.o(.data) + read_6e_38 0x000701dc Data 1 ap_demo.o(.data) + read_6e_52 0x000701dd Data 1 ap_demo.o(.data) + read_6e_66 0x000701de Data 1 ap_demo.o(.data) + read_6e_70 0x000701df Data 1 ap_demo.o(.data) + read_5a_39 0x000701e0 Data 1 ap_demo.o(.data) + read_7F_count 0x000701e1 Data 1 ap_demo.o(.data) + read_bl_data 0x000701e4 Data 2 ap_demo.o(.data) + read_bl_data_bak 0x000701e6 Data 2 ap_demo.o(.data) + g_rx_ctrl_handle 0x000701f0 Data 4 ap_demo.o(.data) + g_tx_ctrl_handle 0x000701f4 Data 4 ap_demo.o(.data) + value_reg_df 0x000701f8 Data 4 ap_demo.o(.data) + .data 0x000703fc Section 46 app_tp_transfer.o(.data) + s_spim_write 0x000703fc Data 1 app_tp_transfer.o(.data) + s_screen_int_flag 0x000703fd Data 1 app_tp_transfer.o(.data) + s_phone_reset_flag 0x000703fe Data 1 app_tp_transfer.o(.data) + s_screen_int_transfer_status 0x000703ff Data 1 app_tp_transfer.o(.data) + s_screen_const_transfer_count 0x00070401 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_count 0x00070402 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_buffer_ready 0x00070403 Data 1 app_tp_transfer.o(.data) + .data 0x0007042a Section 228 app_tp_for_custom_s8.o(.data) + app_tp_count 0x00070434 Data 1 app_tp_for_custom_s8.o(.data) + phone_85_flag 0x00070435 Data 1 app_tp_for_custom_s8.o(.data) + phone_F6_flag 0x00070436 Data 1 app_tp_for_custom_s8.o(.data) + phone_E4_flag 0x00070437 Data 1 app_tp_for_custom_s8.o(.data) + phone_72_flag 0x00070438 Data 1 app_tp_for_custom_s8.o(.data) + phone_75_flag 0x00070439 Data 1 app_tp_for_custom_s8.o(.data) + phone_92_flag 0x0007043a Data 1 app_tp_for_custom_s8.o(.data) + phone_74_flag 0x0007043b Data 1 app_tp_for_custom_s8.o(.data) + u16CoordY 0x0007043e Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX 0x00070440 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordY_back 0x00070442 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX_back 0x00070444 Data 2 app_tp_for_custom_s8.o(.data) + .data 0x0007050e Section 1 app_tp_for_custom_s8.o(.data) + .data 0x0007050f Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070510 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070511 Section 3 app_tp_for_custom_s8.o(.data) + .data 0x00070514 Section 5 app_tp_for_custom_s8.o(.data) + .data 0x0007051c Section 48 app_tp_for_custom_s8.o(.data) + .data 0x0007054c Section 8 hal_dsi_rx_ctrl.o(.data) + g_hw_auto_filter 0x0007054c Data 1 hal_dsi_rx_ctrl.o(.data) + g_esc_clk 0x00070550 Data 4 hal_dsi_rx_ctrl.o(.data) + .data 0x00070554 Section 3 hal_dsi_tx_ctrl.o(.data) + g_tx_vcom_en 0x00070554 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_vpg_en 0x00070555 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_mode 0x00070556 Data 1 hal_dsi_tx_ctrl.o(.data) + .data 0x00070557 Section 1 hal_i2c_master.o(.data) + s_i2c_m_transfer_end 0x00070557 Data 1 hal_i2c_master.o(.data) + .data 0x00070558 Section 32 hal_i2c_slave.o(.data) + s_txbuffer_complate 0x00070558 Data 1 hal_i2c_slave.o(.data) + s_i2c_s_dma_end 0x00070559 Data 1 hal_i2c_slave.o(.data) + s_i2c_s_receive_cnt 0x0007055a Data 1 hal_i2c_slave.o(.data) + sg_i2c_s_index 0x0007055b Data 1 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer 0x0007055c Data 4 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer_size 0x00070560 Data 4 hal_i2c_slave.o(.data) + hal_i2c_s_callback 0x00070564 Data 4 hal_i2c_slave.o(.data) + sg_tx_byte_num 0x00070568 Data 4 hal_i2c_slave.o(.data) + s_receive_count 0x0007056c Data 4 hal_i2c_slave.o(.data) + s_tx_buffer_t 0x00070570 Data 4 hal_i2c_slave.o(.data) + tx_sum 0x00070574 Data 4 hal_i2c_slave.o(.data) + .data 0x00070578 Section 18 norflash.o(.data) + tmprg 0x00070580 Data 4 norflash.o(.data) + .data 0x0007058c Section 12 drv_common.o(.data) + s_my_tick 0x0007058c Data 4 drv_common.o(.data) + .data 0x00070598 Section 4 drv_gpio.o(.data) + g_ap_reset_cb 0x00070598 Data 4 drv_gpio.o(.data) + .data 0x0007059c Section 8 drv_i2c_dma.o(.data) + i2c0_dma_callback 0x0007059c Data 4 drv_i2c_dma.o(.data) + i2c1_dma_callback 0x000705a0 Data 4 drv_i2c_dma.o(.data) + .data 0x000705a4 Section 4 drv_i2c_master.o(.data) + i2c1_intr_callback 0x000705a4 Data 4 drv_i2c_master.o(.data) + .data 0x000705a8 Section 4 drv_i2c_slave.o(.data) + i2c0_intr_callback 0x000705a8 Data 4 drv_i2c_slave.o(.data) + .data 0x000705ac Section 1188 drv_param_init.o(.data) + .data 0x00070a50 Section 12 drv_pwm.o(.data) + s_pwm_type 0x00070a50 Data 1 drv_pwm.o(.data) + s_pwm_cb 0x00070a54 Data 8 drv_pwm.o(.data) + .data 0x00070a5c Section 4 drv_spi_master.o(.data) + SPIM_intr_callback 0x00070a5c Data 4 drv_spi_master.o(.data) + .data 0x00070a60 Section 8 drv_swire.o(.data) + s_swire_cb 0x00070a60 Data 8 drv_swire.o(.data) + .data 0x00070a68 Section 1 drv_sys_cfg.o(.data) + sg_ap_rstn_trigger_type 0x00070a68 Data 1 drv_sys_cfg.o(.data) + .data 0x00070a6c Section 80 drv_timer.o(.data) + sg_timer_info 0x00070a6c Data 80 drv_timer.o(.data) + .data 0x00070abc Section 12 hal_internal_vsync.o(.data) + sg_cmd_mode_tx_start 0x00070abc Data 1 hal_internal_vsync.o(.data) + sg_cur_te_info 0x00070ac0 Data 4 hal_internal_vsync.o(.data) + .data 0x00070ac8 Section 8 drv_rxbr.o(.data) + .data 0x00070ad0 Section 4 drv_vidc.o(.data) + .data 0x00070ad4 Section 1 drv_phy_common.o(.data) + g_phy_calibration 0x00070ad4 Data 1 drv_phy_common.o(.data) + .data 0x00070ad8 Section 12 drv_chip_info.o(.data) + sg_chip_info 0x00070ad8 Data 4 drv_chip_info.o(.data) + sg_chip_function 0x00070adc Data 4 drv_chip_info.o(.data) + sg_chip_encrypt 0x00070ae0 Data 4 drv_chip_info.o(.data) + .data 0x00070ae4 Section 8 drv_uart.o(.data) + s_UartFcrReg 0x00070ae4 Data 4 drv_uart.o(.data) + uart_userData 0x00070ae8 Data 4 drv_uart.o(.data) + .data 0x00070aec Section 12 drv_wdg.o(.data) + sg_wdg_repeat 0x00070aec Data 1 drv_wdg.o(.data) + sg_wdg_cb 0x00070af0 Data 8 drv_wdg.o(.data) + .data 0x00070af8 Section 4 stdout.o(.data) + .data 0x00070afc Section 4 errno.o(.data) + _errno 0x00070afc Data 4 errno.o(.data) + .bss 0x00070b00 Section 400 app_tp_transfer.o(.bss) + s_screen_read_buffer 0x00070b00 Data 200 app_tp_transfer.o(.bss) + s_phone_read_buffer 0x00070bc8 Data 200 app_tp_transfer.o(.bss) + .bss 0x00070c90 Section 196 hal_dsi_rx_ctrl.o(.bss) + g_rx_ctrl_handle 0x00070c90 Data 196 hal_dsi_rx_ctrl.o(.bss) + .bss 0x00070d54 Section 76 hal_dsi_tx_ctrl.o(.bss) + g_tx_ctrl_handle 0x00070d54 Data 76 hal_dsi_tx_ctrl.o(.bss) + .bss 0x00070da0 Section 256 tau_log.o(.bss) + .bss 0x00070ea0 Section 208 hal_uart.o(.bss) + .bss 0x00070f70 Section 28 drv_dma.o(.bss) + s_dma_handle 0x00070f70 Data 28 drv_dma.o(.bss) + .bss 0x00070f8c Section 64 drv_gpio.o(.bss) + s_gpio_cb 0x00070f8c Data 64 drv_gpio.o(.bss) + .bss 0x00070fcc Section 320 drv_i2c_dma.o(.bss) + i2c0_dma_slave_handle 0x00070fcc Data 160 drv_i2c_dma.o(.bss) + i2c1_dma_master_handle 0x0007106c Data 160 drv_i2c_dma.o(.bss) + .bss 0x0007110c Section 2416 hal_internal_vsync.o(.bss) + g_imm_buffer 0x0007195c Data 255 hal_internal_vsync.o(.bss) + sg_te_info 0x00071a5c Data 12 hal_internal_vsync.o(.bss) + g_imm_packet 0x00071a68 Data 20 hal_internal_vsync.o(.bss) + .bss 0x00071a7c Section 4144 dcs_packet_fifo.o(.bss) + .bss 0x00072aac Section 32 hal_spi_slave.o(.bss) + STACK 0x00072ad0 Section 4096 startup_armcm0.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x000000c0 Number 0 startup_armcm0.o ABSOLUTE + __Vectors 0x00010000 Data 4 startup_armcm0.o(RESET) + __Vectors_End 0x000100c0 Data 0 startup_armcm0.o(RESET) + __main 0x000100c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x000100c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x000100c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x000100c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x000100c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x000100c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x000100c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x000100d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x000100d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x000100d5 Thumb Code 28 startup_armcm0.o(.text) + NMI_Handler 0x000100f1 Thumb Code 2 startup_armcm0.o(.text) + SVC_Handler 0x000100f5 Thumb Code 2 startup_armcm0.o(.text) + PendSV_Handler 0x000100f7 Thumb Code 2 startup_armcm0.o(.text) + OTP_IRQn_Handler 0x00010123 Thumb Code 2 startup_armcm0.o(.text) + PVD_IRQn_Handler 0x00010127 Thumb Code 2 startup_armcm0.o(.text) + __aeabi_uidiv 0x0001014d Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x0001014d Thumb Code 44 uidiv.o(.text) + __aeabi_idiv 0x00010179 Thumb Code 0 idiv.o(.text) + __aeabi_idivmod 0x00010179 Thumb Code 40 idiv.o(.text) + __aeabi_memcpy 0x000101a1 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x000101c5 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x000101d3 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x000101d3 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x000101d3 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x000101d7 Thumb Code 18 memseta.o(.text) + __aeabi_fadd 0x000101e9 Thumb Code 162 fadd.o(.text) + __aeabi_fsub 0x0001028b Thumb Code 8 fadd.o(.text) + __aeabi_frsub 0x00010293 Thumb Code 8 fadd.o(.text) + __aeabi_fmul 0x0001029b Thumb Code 122 fmul.o(.text) + __aeabi_fdiv 0x00010315 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x00010391 Thumb Code 24 fscalb.o(.text) + scalbnf 0x00010391 Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x000103a9 Thumb Code 328 dadd.o(.text) + __aeabi_dsub 0x000104f1 Thumb Code 12 dadd.o(.text) + __aeabi_drsub 0x000104fd Thumb Code 12 dadd.o(.text) + __aeabi_dmul 0x0001050d Thumb Code 202 dmul.o(.text) + __aeabi_ddiv 0x000105dd Thumb Code 234 ddiv.o(.text) + __aeabi_i2f 0x000106cd Thumb Code 22 fflti.o(.text) + __aeabi_ui2f 0x000106e3 Thumb Code 14 ffltui.o(.text) + __aeabi_ui2d 0x000106f1 Thumb Code 24 dfltui.o(.text) + __aeabi_f2iz 0x0001070d Thumb Code 50 ffixi.o(.text) + __aeabi_f2uiz 0x0001073f Thumb Code 40 ffixui.o(.text) + __aeabi_d2iz 0x00010769 Thumb Code 62 dfixi.o(.text) + __aeabi_d2uiz 0x000107b1 Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x000107ed Thumb Code 40 f2d.o(.text) + __aeabi_cdcmpeq 0x00010815 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x00010815 Thumb Code 38 cdcmple.o(.text) + __aeabi_cfrcmple 0x0001083d Thumb Code 20 cfrcmple.o(.text) + __aeabi_uldivmod 0x00010851 Thumb Code 96 uldiv.o(.text) + __aeabi_llsl 0x000108b1 Thumb Code 32 llshl.o(.text) + _ll_shift_l 0x000108b1 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x000108d1 Thumb Code 34 llushr.o(.text) + _ll_ushift_r 0x000108d1 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x000108f3 Thumb Code 38 llsshr.o(.text) + _ll_sshift_r 0x000108f3 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x00010919 Thumb Code 0 iusefp.o(.text) + _float_round 0x00010919 Thumb Code 16 fepilogue.o(.text) + _float_epilogue 0x00010929 Thumb Code 114 fepilogue.o(.text) + _double_round 0x0001099b Thumb Code 26 depilogue.o(.text) + _double_epilogue 0x000109b5 Thumb Code 164 depilogue.o(.text) + _dsqrt 0x00010a59 Thumb Code 162 dsqrt.o(.text) + __aeabi_d2ulz 0x00010afd Thumb Code 54 dfixul.o(.text) + __aeabi_cdrcmple 0x00010b3d Thumb Code 38 cdrcmple.o(.text) + __scatterload 0x00010b65 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x00010b65 Thumb Code 0 init.o(.text) + __decompress 0x00010b89 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x00010b89 Thumb Code 86 __dczerorl2.o(.text) + ADC_IRQn_Handler 0x00010be1 Thumb Code 18 irq_redirect .o(i.ADC_IRQn_Handler) + AP_NRESET_IRQn_Handler 0x00010bf9 Thumb Code 18 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + DMA_IRQn_Handler 0x00010c11 Thumb Code 14 irq_redirect .o(i.DMA_IRQn_Handler) + EXTI_INT0_IRQn_Handler 0x00010c25 Thumb Code 22 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + EXTI_INT1_IRQn_Handler 0x00010c41 Thumb Code 22 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + EXTI_INT2_IRQn_Handler 0x00010c5d Thumb Code 22 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + EXTI_INT3_IRQn_Handler 0x00010c79 Thumb Code 22 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + EXTI_INT4_IRQn_Handler 0x00010c95 Thumb Code 22 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + EXTI_INT5_IRQn_Handler 0x00010cb1 Thumb Code 22 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + EXTI_INT6_IRQn_Handler 0x00010ccd Thumb Code 22 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + EXTI_INT7_IRQn_Handler 0x00010ce9 Thumb Code 22 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + FLSCTRL_IRQn_Handler 0x00010d05 Thumb Code 14 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + Gpio_swire_output 0x00010d19 Thumb Code 78 ap_demo.o(i.Gpio_swire_output) + HardFault_Handler 0x00010d69 Thumb Code 14 irq_redirect .o(i.HardFault_Handler) + I2C0_IRQn_Handler 0x00010d7d Thumb Code 18 irq_redirect .o(i.I2C0_IRQn_Handler) + I2C1_IRQn_Handler 0x00010d95 Thumb Code 18 irq_redirect .o(i.I2C1_IRQn_Handler) + LCDC_IRQn_Handler 0x00010dad Thumb Code 18 irq_redirect .o(i.LCDC_IRQn_Handler) + LOG_printf 0x00010dc5 Thumb Code 30 tau_log.o(i.LOG_printf) + MEMC_IRQn_Handler 0x00010ded Thumb Code 18 irq_redirect .o(i.MEMC_IRQn_Handler) + MIPI_RX_IRQn_Handler 0x00010e05 Thumb Code 18 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + MIPI_TX_IRQn_Handler 0x00010e1d Thumb Code 18 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + PWMDET_IRQn_Handler 0x00010e35 Thumb Code 22 irq_redirect .o(i.PWMDET_IRQn_Handler) + S20_Start_init 0x00010e51 Thumb Code 306 app_tp_transfer.o(i.S20_Start_init) + SPIM_IRQn_Handler 0x00010f9d Thumb Code 22 irq_redirect .o(i.SPIM_IRQn_Handler) + SPIS_IRQn_Handler 0x00010fb9 Thumb Code 22 irq_redirect .o(i.SPIS_IRQn_Handler) + SWIRE_IRQn_Handler 0x00010fd5 Thumb Code 22 irq_redirect .o(i.SWIRE_IRQn_Handler) + UART_DisableDma 0x00010ff1 Thumb Code 2 drv_uart.o(i.UART_DisableDma) + UART_GetInstance 0x00010ff3 Thumb Code 4 drv_uart.o(i.UART_GetInstance) + __scatterload_null 0x00010ff7 Thumb Code 2 handlers.o(i.__scatterload_null) + drv_dsi_rx_set_inten 0x00010ffd Thumb Code 4 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + s_RAM_CK 0x00011000 Data 20 drv_common.o(.ARM.__at_0x11000) + drv_dsi_tx_command_get_payload 0x00011015 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) + s_debug_state 0x00011018 Data 4 drv_common.o(.ARM.__at_0x11018) + SysTick_Handler 0x0001101d Thumb Code 18 irq_redirect .o(i.SysTick_Handler) + TIMER0_IRQn_Handler 0x00011035 Thumb Code 18 irq_redirect .o(i.TIMER0_IRQn_Handler) + TIMER1_IRQn_Handler 0x0001104d Thumb Code 18 irq_redirect .o(i.TIMER1_IRQn_Handler) + TIMER2_IRQn_Handler 0x00011065 Thumb Code 18 irq_redirect .o(i.TIMER2_IRQn_Handler) + TIMER3_IRQn_Handler 0x0001107d Thumb Code 18 irq_redirect .o(i.TIMER3_IRQn_Handler) + UART0_IRQ_Handle 0x00011095 Thumb Code 20 drv_uart.o(i.UART0_IRQ_Handle) + UART_IRQn_Handler 0x000110b1 Thumb Code 18 irq_redirect .o(i.UART_IRQn_Handler) + UART_ResetRxFIFO 0x000110c9 Thumb Code 32 drv_uart.o(i.UART_ResetRxFIFO) + UART_SetBaudRate 0x000110ed Thumb Code 72 drv_uart.o(i.UART_SetBaudRate) + UART_SwitchSCLK 0x00011135 Thumb Code 26 drv_uart.o(i.UART_SwitchSCLK) + UART_TransferHandleIRQ 0x0001114f Thumb Code 308 drv_uart.o(i.UART_TransferHandleIRQ) + UART_WriteBlocking 0x00011283 Thumb Code 26 drv_uart.o(i.UART_WriteBlocking) + UART_init 0x0001129d Thumb Code 182 drv_uart.o(i.UART_init) + VIDC_IRQn_Handler 0x00011359 Thumb Code 18 irq_redirect .o(i.VIDC_IRQn_Handler) + VPRE_IRQn_Handler 0x00011371 Thumb Code 18 irq_redirect .o(i.VPRE_IRQn_Handler) + WDG_IRQn_Handler 0x00011389 Thumb Code 18 irq_redirect .o(i.WDG_IRQn_Handler) + __0printf 0x000113a1 Thumb Code 24 printfa.o(i.__0printf) + __1printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __2printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __c89printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + printf 0x000113a1 Thumb Code 0 printfa.o(i.__0printf) + __0vsprintf 0x000113c1 Thumb Code 30 printfa.o(i.__0vsprintf) + __1vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __2vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __c89vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + vsprintf 0x000113c1 Thumb Code 0 printfa.o(i.__0vsprintf) + __ARM_clz 0x000113e5 Thumb Code 46 depilogue.o(i.__ARM_clz) + __ARM_common_switch8 0x00011413 Thumb Code 26 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + __scatterload_copy 0x000114d9 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_zeroinit 0x000114e7 Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + __set_errno 0x000114f5 Thumb Code 6 errno.o(i.__set_errno) + ap_demo 0x000129d1 Thumb Code 254 ap_demo.o(i.ap_demo) + ap_tp_calibration 0x00012c59 Thumb Code 170 app_tp_transfer.o(i.ap_tp_calibration) + app_ADC_IRQn_Handler 0x00012d35 Thumb Code 22 drv_rxbr.o(i.app_ADC_IRQn_Handler) + app_AP_NRESET_IRQn_Handler 0x00012d51 Thumb Code 32 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + app_EXTI_INT0_IRQn_Handler 0x00012d75 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + app_EXTI_INT1_IRQn_Handler 0x00012d91 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + app_EXTI_INT2_IRQn_Handler 0x00012dad Thumb Code 22 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + app_EXTI_INT3_IRQn_Handler 0x00012dc9 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + app_EXTI_INT4_IRQn_Handler 0x00012de5 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + app_EXTI_INT5_IRQn_Handler 0x00012e01 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + app_EXTI_INT6_IRQn_Handler 0x00012e1d Thumb Code 22 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + app_EXTI_INT7_IRQn_Handler 0x00012e39 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + app_HardFault_Handler 0x00012e55 Thumb Code 12 drv_common.o(i.app_HardFault_Handler) + app_I2C0_IRQn_Handler 0x00012e9d Thumb Code 14 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + app_I2C1_IRQn_Handler 0x00012eb5 Thumb Code 8 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + app_LCDC_IRQn_Handler 0x00012ec5 Thumb Code 146 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + app_MEMC_IRQn_Handler 0x00012ff5 Thumb Code 132 drv_memc.o(i.app_MEMC_IRQn_Handler) + app_MIPI_RX_IRQn_Handler 0x0001307d Thumb Code 232 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + app_MIPI_TX_IRQn_Handler 0x00013315 Thumb Code 56 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + app_PWMDET_IRQn_Handler 0x000133b5 Thumb Code 62 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + app_SPIM_IRQn_Handler 0x000133fd Thumb Code 34 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + app_SPIS_IRQn_Handler 0x0001342d Thumb Code 500 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + app_SWIRE_IRQn_Handler 0x0001362d Thumb Code 28 drv_swire.o(i.app_SWIRE_IRQn_Handler) + app_SysTick_Handler 0x0001364d Thumb Code 20 drv_common.o(i.app_SysTick_Handler) + app_TIMER0_IRQn_Handler 0x00013665 Thumb Code 10 drv_timer.o(i.app_TIMER0_IRQn_Handler) + app_TIMER1_IRQn_Handler 0x0001366f Thumb Code 10 drv_timer.o(i.app_TIMER1_IRQn_Handler) + app_TIMER2_IRQn_Handler 0x00013679 Thumb Code 10 drv_timer.o(i.app_TIMER2_IRQn_Handler) + app_TIMER3_IRQn_Handler 0x00013683 Thumb Code 10 drv_timer.o(i.app_TIMER3_IRQn_Handler) + app_UART_IRQn_Handler 0x0001368d Thumb Code 8 drv_uart.o(i.app_UART_IRQn_Handler) + app_VIDC_IRQn_Handler 0x00013695 Thumb Code 22 drv_vidc.o(i.app_VIDC_IRQn_Handler) + app_VPRE_IRQn_Handler 0x000136b1 Thumb Code 22 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + app_WDG_IRQn_Handler 0x000136cd Thumb Code 52 drv_wdg.o(i.app_WDG_IRQn_Handler) + app_dma_irq_handler 0x00013705 Thumb Code 10 drv_dma.o(i.app_dma_irq_handler) + app_fls_ctrl_Handler 0x00013715 Thumb Code 38 norflash.o(i.app_fls_ctrl_Handler) + app_tp_I2C_init 0x00013745 Thumb Code 26 app_tp_transfer.o(i.app_tp_I2C_init) + app_tp_calibration_exec 0x00013769 Thumb Code 20 ap_demo.o(i.app_tp_calibration_exec) + app_tp_init 0x000137b1 Thumb Code 56 app_tp_transfer.o(i.app_tp_init) + app_tp_phone_analysis_data 0x0001381d Thumb Code 806 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + app_tp_s_read 0x00013b75 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_read) + app_tp_s_write 0x00013b7d Thumb Code 8 app_tp_transfer.o(i.app_tp_s_write) + app_tp_screen_analysis_int 0x00013b85 Thumb Code 680 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + app_tp_screen_init 0x00013e35 Thumb Code 42 app_tp_transfer.o(i.app_tp_screen_init) + app_tp_transfer_screen_int 0x00013eb1 Thumb Code 250 app_tp_transfer.o(i.app_tp_transfer_screen_int) + app_tp_transfer_screen_start 0x00013fbd Thumb Code 16 app_tp_transfer.o(i.app_tp_transfer_screen_start) + board_Init 0x00013fd1 Thumb Code 30 board.o(i.board_Init) + calc_framebuffer_setting 0x00013ff5 Thumb Code 1138 hal_internal_vsync.o(i.calc_framebuffer_setting) + ceil 0x00014469 Thumb Code 180 ceil.o(i.ceil) + dcs_packet_fifo_alloc 0x000145f1 Thumb Code 80 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + dcs_packet_fifo_init 0x00014649 Thumb Code 18 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + dcs_packet_free_fifo_header 0x00014661 Thumb Code 60 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + dcs_packet_get_fifo_header 0x000146a5 Thumb Code 26 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + delayMs 0x000146e5 Thumb Code 24 tau_delay.o(i.delayMs) + delayUs 0x000146fd Thumb Code 34 tau_delay.o(i.delayUs) + drv_ap_rst_trig_edge_detect 0x00014721 Thumb Code 46 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + drv_chip_info_get_info 0x00014759 Thumb Code 6 drv_chip_info.o(i.drv_chip_info_get_info) + drv_chip_info_init 0x00014765 Thumb Code 56 drv_chip_info.o(i.drv_chip_info_init) + drv_chip_rx_info_check 0x000147a5 Thumb Code 122 drv_chip_info.o(i.drv_chip_rx_info_check) + drv_chip_rx_init_done 0x0001486d Thumb Code 16 drv_chip_info.o(i.drv_chip_rx_init_done) + drv_common_enable_systick 0x00014881 Thumb Code 70 drv_common.o(i.drv_common_enable_systick) + drv_common_system_init 0x000148d9 Thumb Code 8 drv_common.o(i.drv_common_system_init) + drv_crgu_config_reset_modules 0x000148e1 Thumb Code 10 drv_crgu.o(i.drv_crgu_config_reset_modules) + drv_crgu_set_ahb_pre_div 0x000148f1 Thumb Code 14 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + drv_crgu_set_ahb_src 0x00014905 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_ahb_src) + drv_crgu_set_clock 0x00014919 Thumb Code 26 drv_crgu.o(i.drv_crgu_set_clock) + drv_crgu_set_dpi_mux_src 0x00014939 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + drv_crgu_set_dpi_pre_div 0x0001494d Thumb Code 18 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + drv_crgu_set_dpi_pre_src 0x00014965 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + drv_crgu_set_dsc_core_div 0x00014979 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + drv_crgu_set_dsco_src 0x0001498d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src) + drv_crgu_set_dsco_src_div 0x000149a1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + drv_crgu_set_fb_div 0x000149b5 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_div) + drv_crgu_set_fb_src 0x000149c9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_src) + drv_crgu_set_lcdc_div 0x000149dd Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_div) + drv_crgu_set_lcdc_src 0x000149f1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_src) + drv_crgu_set_mipi_cfg_src 0x00014a05 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + drv_crgu_set_mipi_ref_src 0x00014a19 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + drv_crgu_set_reset 0x00014a31 Thumb Code 20 drv_crgu.o(i.drv_crgu_set_reset) + drv_crgu_set_rxbr_div 0x00014a49 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_div) + drv_crgu_set_rxbr_src 0x00014a5d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_src) + drv_crgu_set_vidc_src 0x00014a71 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_vidc_src) + drv_dma_clear_flag 0x00014a85 Thumb Code 24 drv_dma.o(i.drv_dma_clear_flag) + drv_dma_create_handle 0x00014a9d Thumb Code 22 drv_dma.o(i.drv_dma_create_handle) + drv_dma_disenable_channel 0x00014ab9 Thumb Code 16 drv_dma.o(i.drv_dma_disenable_channel) + drv_dma_enable_channel 0x00014ac9 Thumb Code 16 drv_dma.o(i.drv_dma_enable_channel) + drv_dma_enable_channel_interrupts 0x00014ad9 Thumb Code 32 drv_dma.o(i.drv_dma_enable_channel_interrupts) + drv_dma_get_channel_flag 0x00014afd Thumb Code 12 drv_dma.o(i.drv_dma_get_channel_flag) + drv_dma_irq_handler 0x00014b09 Thumb Code 138 drv_dma.o(i.drv_dma_irq_handler) + drv_dma_prepar_transfer 0x00014b99 Thumb Code 18 drv_dma.o(i.drv_dma_prepar_transfer) + drv_dma_set_burst 0x00014bab Thumb Code 26 drv_dma.o(i.drv_dma_set_burst) + drv_dma_set_callback 0x00014bc5 Thumb Code 6 drv_dma.o(i.drv_dma_set_callback) + drv_dma_set_transfer 0x00014bcd Thumb Code 62 drv_dma.o(i.drv_dma_set_transfer) + drv_dsc_dec_convert_pps_rc_parameter 0x00014c11 Thumb Code 54 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + drv_dsc_dec_disable 0x00014c47 Thumb Code 12 drv_dsc_dec.o(i.drv_dsc_dec_disable) + drv_dsc_dec_enable 0x00014c55 Thumb Code 88 drv_dsc_dec.o(i.drv_dsc_dec_enable) + drv_dsc_dec_get_nslc 0x00014cc9 Thumb Code 10 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + drv_dsc_dec_set_u8_pps 0x00014cd3 Thumb Code 40 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + drv_dsi_rx_calc_ipi_tx_delay 0x00014cfd Thumb Code 244 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + drv_dsi_rx_enable_irq 0x00014e01 Thumb Code 58 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + drv_dsi_rx_get_compression_en 0x00014ead Thumb Code 8 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + drv_dsi_rx_get_max_ret_size 0x00014eb5 Thumb Code 6 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + drv_dsi_rx_power_up 0x00014ebb Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + drv_dsi_rx_set_ctrl_cfg 0x00014ec9 Thumb Code 32 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + drv_dsi_rx_set_ddi_cfg 0x00014ee9 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + drv_dsi_rx_set_ipi_cfg 0x00014ef9 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + drv_dsi_rx_set_lane_swap 0x00014f09 Thumb Code 70 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + drv_dsi_rx_set_resp_cnt 0x00014f4f Thumb Code 38 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + drv_dsi_rx_set_up_phy 0x00014f75 Thumb Code 256 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + drv_dsi_rx_shut_down 0x00015079 Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + drv_dsi_tx_command_header 0x00015087 Thumb Code 20 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + drv_dsi_tx_command_mode_cfg 0x0001509b Thumb Code 108 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + drv_dsi_tx_command_put_payload 0x00015107 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + drv_dsi_tx_config_eotp 0x0001510b Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + drv_dsi_tx_config_int 0x00015123 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + drv_dsi_tx_dpi_lpcmd_time 0x0001512b Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + drv_dsi_tx_dpi_mode 0x00015133 Thumb Code 10 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + drv_dsi_tx_dpi_polarity 0x0001513d Thumb Code 36 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + drv_dsi_tx_edpi_cmd_size 0x00015161 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + drv_dsi_tx_get_cmd_status 0x00015165 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + drv_dsi_tx_mode 0x00015169 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_mode) + drv_dsi_tx_phy_clock_lane_auto_lp 0x0001516d Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + drv_dsi_tx_phy_clock_lane_req_hs 0x00015185 Thumb Code 26 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + drv_dsi_tx_phy_lane_mode 0x0001519f Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + drv_dsi_tx_phy_status_ready 0x000151ab Thumb Code 100 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + drv_dsi_tx_phy_status_stopstate 0x0001520f Thumb Code 62 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + drv_dsi_tx_phy_test_setup 0x0001524d Thumb Code 308 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + drv_dsi_tx_phy_time_cfg 0x00015381 Thumb Code 30 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + drv_dsi_tx_powerup 0x0001539f Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + drv_dsi_tx_response_mode 0x000153a7 Thumb Code 28 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + drv_dsi_tx_set_bta_ack 0x000153c3 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + drv_dsi_tx_set_esc_div 0x000153db Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + drv_dsi_tx_set_int 0x000153e9 Thumb Code 58 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + drv_dsi_tx_set_time_out_div 0x00015429 Thumb Code 16 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + drv_dsi_tx_set_video_chunk 0x00015439 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + drv_dsi_tx_set_video_timing 0x00015441 Thumb Code 34 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + drv_dsi_tx_shutdown 0x00015463 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + drv_dsi_tx_timeout_cfg 0x0001546b Thumb Code 38 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + drv_dsi_tx_video_mode_cfg 0x00015491 Thumb Code 170 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + drv_dsi_tx_video_mode_disable_hact_cmd 0x0001553b Thumb Code 22 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + drv_dsi_tx_video_mode_set_lp_cmd 0x00015551 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + drv_efuse_enter_inactive 0x00015569 Thumb Code 32 drv_efuse.o(i.drv_efuse_enter_inactive) + drv_efuse_int_enable 0x00015589 Thumb Code 12 drv_efuse.o(i.drv_efuse_int_enable) + drv_efuse_read 0x00015595 Thumb Code 50 drv_efuse.o(i.drv_efuse_read) + drv_efuse_read_req 0x000155c7 Thumb Code 24 drv_efuse.o(i.drv_efuse_read_req) + drv_gpio_get_input_data 0x000155e1 Thumb Code 20 drv_gpio.o(i.drv_gpio_get_input_data) + drv_gpio_register_ap_reset_callback 0x000155f9 Thumb Code 6 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + drv_gpio_register_callback 0x00015605 Thumb Code 14 drv_gpio.o(i.drv_gpio_register_callback) + drv_gpio_set_int 0x00015619 Thumb Code 74 drv_gpio.o(i.drv_gpio_set_int) + drv_gpio_set_ioe 0x00015669 Thumb Code 26 drv_gpio.o(i.drv_gpio_set_ioe) + drv_gpio_set_mode0 0x00015689 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode0) + drv_gpio_set_mode1 0x00015699 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode1) + drv_gpio_set_mode2 0x000156a9 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode2) + drv_gpio_set_mode3 0x000156b9 Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode3) + drv_gpio_set_pull_state 0x000156e9 Thumb Code 298 drv_gpio.o(i.drv_gpio_set_pull_state) + drv_i2c0_set_callback 0x00015819 Thumb Code 6 drv_i2c_slave.o(i.drv_i2c0_set_callback) + drv_i2c1_set_callback 0x00015825 Thumb Code 6 drv_i2c_master.o(i.drv_i2c1_set_callback) + drv_i2c_dma_init 0x00015865 Thumb Code 146 drv_i2c_dma.o(i.drv_i2c_dma_init) + drv_i2c_enable_rx_dma 0x00015911 Thumb Code 26 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + drv_i2c_enable_tx_dma 0x0001592b Thumb Code 24 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + drv_i2c_m_clear_it_pending_bit 0x00015945 Thumb Code 86 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + drv_i2c_m_enable 0x000159a5 Thumb Code 10 drv_i2c_master.o(i.drv_i2c_m_enable) + drv_i2c_m_enable_intr 0x000159b5 Thumb Code 42 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + drv_i2c_master_init 0x000159ed Thumb Code 118 drv_i2c_master.o(i.drv_i2c_master_init) + drv_i2c_master_read_dma 0x00015a79 Thumb Code 82 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + drv_i2c_master_write_dma 0x00015ad5 Thumb Code 50 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + drv_i2c_s_clear_it_pending_bit 0x00015b3f Thumb Code 66 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + drv_i2c_s_config_intr 0x00015b81 Thumb Code 4 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + drv_i2c_s_enable 0x00015b85 Thumb Code 8 drv_i2c_slave.o(i.drv_i2c_s_enable) + drv_i2c_s_get_fifo_status 0x00015b8d Thumb Code 20 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + drv_i2c_s_set_intr 0x00015ba1 Thumb Code 74 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + drv_i2c_s_write_data 0x00015bf1 Thumb Code 28 drv_i2c_slave.o(i.drv_i2c_s_write_data) + drv_i2c_set_dma_irq_callback 0x00015c0d Thumb Code 68 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + drv_i2c_slave_init 0x00015c65 Thumb Code 50 drv_i2c_slave.o(i.drv_i2c_slave_init) + drv_i2c_slave_write_dma 0x00015c99 Thumb Code 20 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + drv_lcdc_config_bypass 0x00015cb1 Thumb Code 24 drv_lcdc.o(i.drv_lcdc_config_bypass) + drv_lcdc_config_ccm 0x00015cc9 Thumb Code 48 drv_lcdc.o(i.drv_lcdc_config_ccm) + drv_lcdc_config_disp_mode 0x00015cf9 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + drv_lcdc_config_dpi_polarity 0x00015d0f Thumb Code 36 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + drv_lcdc_config_dpi_timing 0x00015d33 Thumb Code 38 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + drv_lcdc_config_edpi_mode 0x00015d59 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + drv_lcdc_config_endianness 0x00015d6f Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_endianness) + drv_lcdc_config_input_size 0x00015d85 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_input_size) + drv_lcdc_config_int 0x00015d91 Thumb Code 30 drv_lcdc.o(i.drv_lcdc_config_int) + drv_lcdc_config_int_single 0x00015daf Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_int_single) + drv_lcdc_config_overwrite 0x00015dd1 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_overwrite) + drv_lcdc_config_overwrite_rgb 0x00015df3 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + drv_lcdc_config_partial_display_area 0x00015dff Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + drv_lcdc_config_partial_display_enable 0x00015e19 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + drv_lcdc_config_scale_up_coef 0x00015e3b Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + drv_lcdc_config_scale_up_step 0x00015e55 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + drv_lcdc_config_src_parameter 0x00015e61 Thumb Code 76 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + drv_lcdc_config_thresh 0x00015ead Thumb Code 6 drv_lcdc.o(i.drv_lcdc_config_thresh) + drv_lcdc_ctrl_flow 0x00015eb3 Thumb Code 18 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + drv_lcdc_enable_shadow_reg 0x00015ec5 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + drv_lcdc_set_int 0x00015ee5 Thumb Code 58 drv_lcdc.o(i.drv_lcdc_set_int) + drv_lcdc_set_prefetch 0x00015f25 Thumb Code 24 drv_lcdc.o(i.drv_lcdc_set_prefetch) + drv_lcdc_set_video_hw_mode 0x00015f3d Thumb Code 20 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + drv_lcdc_start 0x00015f51 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_start) + drv_memc_clear_status 0x00015f71 Thumb Code 12 drv_memc.o(i.drv_memc_clear_status) + drv_memc_enable_irq 0x00015f7d Thumb Code 58 drv_memc.o(i.drv_memc_enable_irq) + drv_memc_gen_a_tear_signal 0x00015fbd Thumb Code 12 drv_memc.o(i.drv_memc_gen_a_tear_signal) + drv_memc_get_status 0x00015fc9 Thumb Code 18 drv_memc.o(i.drv_memc_get_status) + drv_memc_rate_transfer_sel 0x00015fdb Thumb Code 16 drv_memc.o(i.drv_memc_rate_transfer_sel) + drv_memc_sel_vsync 0x00015feb Thumb Code 14 drv_memc.o(i.drv_memc_sel_vsync) + drv_memc_set_active_height 0x00015ff9 Thumb Code 14 drv_memc.o(i.drv_memc_set_active_height) + drv_memc_set_data_mode 0x0001600d Thumb Code 12 drv_memc.o(i.drv_memc_set_data_mode) + drv_memc_set_double_buffer 0x00016019 Thumb Code 16 drv_memc.o(i.drv_memc_set_double_buffer) + drv_memc_set_double_buffer_reverse 0x00016029 Thumb Code 18 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + drv_memc_set_fs_en_conditions 0x0001603b Thumb Code 16 drv_memc.o(i.drv_memc_set_fs_en_conditions) + drv_memc_set_inten 0x0001604b Thumb Code 20 drv_memc.o(i.drv_memc_set_inten) + drv_memc_set_lcdc_st_conditions 0x00016061 Thumb Code 18 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + drv_memc_set_ltpo_mode 0x00016079 Thumb Code 26 drv_memc.o(i.drv_memc_set_ltpo_mode) + drv_memc_set_tear_mode 0x00016093 Thumb Code 14 drv_memc.o(i.drv_memc_set_tear_mode) + drv_memc_set_tear_waveform 0x000160a1 Thumb Code 34 drv_memc.o(i.drv_memc_set_tear_waveform) + drv_memc_set_vidc_sync_cnt 0x000160c9 Thumb Code 14 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + drv_param_init_get_ccm 0x000160d9 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_ccm) + drv_param_init_get_scld_filter_h 0x000160e1 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + drv_param_init_get_scld_filter_v 0x000160f5 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + drv_param_init_get_sclu_filter 0x00016109 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_sclu_filter) + drv_param_init_set_ccm 0x00016111 Thumb Code 14 drv_param_init.o(i.drv_param_init_set_ccm) + drv_param_init_set_scld_filter 0x00016125 Thumb Code 92 drv_param_init.o(i.drv_param_init_set_scld_filter) + drv_param_p2r_filter_init 0x00016189 Thumb Code 30 drv_param_init.o(i.drv_param_p2r_filter_init) + drv_phy_enable_calibration 0x000161ad Thumb Code 12 drv_phy_common.o(i.drv_phy_enable_calibration) + drv_phy_get_calibration 0x000161bd Thumb Code 50 drv_phy_common.o(i.drv_phy_get_calibration) + drv_phy_get_pll_para 0x000161f9 Thumb Code 88 drv_phy_common.o(i.drv_phy_get_pll_para) + drv_phy_get_rate_para 0x00016259 Thumb Code 76 drv_phy_common.o(i.drv_phy_get_rate_para) + drv_phy_test_clear 0x000162ad Thumb Code 16 drv_phy_common.o(i.drv_phy_test_clear) + drv_phy_test_lock 0x000162bd Thumb Code 24 drv_phy_common.o(i.drv_phy_test_lock) + drv_phy_test_write_1_byte 0x000162d5 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_1_byte) + drv_phy_test_write_2_byte 0x000162f5 Thumb Code 38 drv_phy_common.o(i.drv_phy_test_write_2_byte) + drv_phy_test_write_code 0x0001631b Thumb Code 30 drv_phy_common.o(i.drv_phy_test_write_code) + drv_pwr_set_cp_mode 0x00016359 Thumb Code 26 drv_pwr.o(i.drv_pwr_set_cp_mode) + drv_pwr_set_pvd_mode 0x00016379 Thumb Code 18 drv_pwr.o(i.drv_pwr_set_pvd_mode) + drv_pwr_set_system_clk_src 0x00016391 Thumb Code 44 drv_pwr.o(i.drv_pwr_set_system_clk_src) + drv_rxbr_clear_pkt_buffer 0x0001640f Thumb Code 10 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + drv_rxbr_clear_status0 0x00016419 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_clear_status0) + drv_rxbr_enable_irq 0x0001641d Thumb Code 90 drv_rxbr.o(i.drv_rxbr_enable_irq) + drv_rxbr_frame_drop_cfg 0x00016479 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + drv_rxbr_get_clk 0x0001648d Thumb Code 66 drv_rxbr.o(i.drv_rxbr_get_clk) + drv_rxbr_get_col_addr 0x000164f1 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_col_addr) + drv_rxbr_get_page_addr 0x00016507 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_page_addr) + drv_rxbr_hline_rcv0_cfg 0x0001651d Thumb Code 12 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + drv_rxbr_hline_rcv_cfg 0x00016529 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + drv_rxbr_register_irq0_callback 0x00016531 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + drv_rxbr_register_irq1_callback 0x0001653d Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + drv_rxbr_set_ack_pkt_header 0x00016549 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + drv_rxbr_set_cmd_filter 0x0001655d Thumb Code 204 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + drv_rxbr_set_color_format 0x00016629 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_color_format) + drv_rxbr_set_inten 0x0001663d Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_inten) + drv_rxbr_set_ltpo_drop_th 0x00016651 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + drv_rxbr_set_usr_cfg 0x00016661 Thumb Code 38 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + drv_rxbr_set_usr_col 0x00016687 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_col) + drv_rxbr_set_usr_row 0x0001668f Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_row) + drv_spi_m_read_data 0x00016699 Thumb Code 28 drv_spi_master.o(i.drv_spi_m_read_data) + drv_swire_enable 0x000166b9 Thumb Code 24 drv_swire.o(i.drv_swire_enable) + drv_swire_set_int 0x000166d5 Thumb Code 76 drv_swire.o(i.drv_swire_set_int) + drv_swire_set_power_down 0x00016729 Thumb Code 24 drv_swire.o(i.drv_swire_set_power_down) + drv_sys_cfg_clear_all_int 0x00016745 Thumb Code 8 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + drv_sys_cfg_clear_pending 0x00016751 Thumb Code 32 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + drv_sys_cfg_sel_ap_rst_lvl_trig 0x00016779 Thumb Code 18 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + drv_sys_cfg_sel_ap_rst_trig 0x00016791 Thumb Code 22 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + drv_sys_cfg_sel_gpio_group 0x000167ad Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + drv_sys_cfg_sel_int_trig 0x000167d1 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + drv_sys_cfg_set_dma_rx_req 0x000167f5 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + drv_sys_cfg_set_dma_tx_req 0x00016805 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + drv_sys_cfg_set_int 0x00016815 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + drv_timer_enable 0x00016853 Thumb Code 32 drv_timer.o(i.drv_timer_enable) + drv_timer_get_instance 0x00016875 Thumb Code 10 drv_timer.o(i.drv_timer_get_instance) + drv_timer_get_prescaler 0x00016885 Thumb Code 12 drv_timer.o(i.drv_timer_get_prescaler) + drv_timer_register_callback 0x000168d9 Thumb Code 14 drv_timer.o(i.drv_timer_register_callback) + drv_timer_set_compare_val 0x000168ed Thumb Code 16 drv_timer.o(i.drv_timer_set_compare_val) + drv_timer_set_int 0x000168fd Thumb Code 80 drv_timer.o(i.drv_timer_set_int) + drv_timer_set_prescaler 0x00016951 Thumb Code 36 drv_timer.o(i.drv_timer_set_prescaler) + drv_timer_set_repeat 0x00016979 Thumb Code 12 drv_timer.o(i.drv_timer_set_repeat) + drv_tx_phy_test_enter 0x00016993 Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + drv_tx_phy_test_exit 0x000169af Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + drv_vidc_clear_irq 0x00016a01 Thumb Code 8 drv_vidc.o(i.drv_vidc_clear_irq) + drv_vidc_enable 0x00016a09 Thumb Code 24 drv_vidc.o(i.drv_vidc_enable) + drv_vidc_enable_irq 0x00016a21 Thumb Code 58 drv_vidc.o(i.drv_vidc_enable_irq) + drv_vidc_get_irq_status 0x00016a61 Thumb Code 18 drv_vidc.o(i.drv_vidc_get_irq_status) + drv_vidc_init_module_enable 0x00016a75 Thumb Code 36 drv_vidc.o(i.drv_vidc_init_module_enable) + drv_vidc_register_callback 0x00016a9d Thumb Code 6 drv_vidc.o(i.drv_vidc_register_callback) + drv_vidc_reset 0x00016aa9 Thumb Code 6 drv_vidc.o(i.drv_vidc_reset) + drv_vidc_set_dst_parameter 0x00016aaf Thumb Code 60 drv_vidc.o(i.drv_vidc_set_dst_parameter) + drv_vidc_set_irqen 0x00016aeb Thumb Code 20 drv_vidc.o(i.drv_vidc_set_irqen) + drv_vidc_set_mirror 0x00016aff Thumb Code 16 drv_vidc.o(i.drv_vidc_set_mirror) + drv_vidc_set_p2r_hcoef0 0x00016b0f Thumb Code 8 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + drv_vidc_set_p2r_hinitb 0x00016b17 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + drv_vidc_set_p2r_hinitr 0x00016b3d Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + drv_vidc_set_pentile_swap 0x00016b65 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_pentile_swap) + drv_vidc_set_pu_ctrl 0x00016b7d Thumb Code 10 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + drv_vidc_set_rotation 0x00016b87 Thumb Code 16 drv_vidc.o(i.drv_vidc_set_rotation) + drv_vidc_set_scld_hcoef0 0x00016b97 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + drv_vidc_set_scld_hcoef1 0x00016ba1 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + drv_vidc_set_scld_step 0x00016bab Thumb Code 18 drv_vidc.o(i.drv_vidc_set_scld_step) + drv_vidc_set_scld_vcoef0 0x00016bbd Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + drv_vidc_set_scld_vcoef1 0x00016bc7 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + drv_vidc_set_src_parameter 0x00016bd1 Thumb Code 22 drv_vidc.o(i.drv_vidc_set_src_parameter) + drv_wdg_clear_counter 0x00016be9 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_counter) + drv_wdg_set_int 0x00016c19 Thumb Code 60 drv_wdg.o(i.drv_wdg_set_int) + fls_clr_interrupt_flag 0x00016c59 Thumb Code 10 drv_fls.o(i.fls_clr_interrupt_flag) + fputc 0x00016c63 Thumb Code 20 tau_log.o(i.fputc) + hal_dsi_rx_ctrl_create_handle 0x00016c79 Thumb Code 48 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + hal_dsi_rx_ctrl_deinit 0x00016cad Thumb Code 148 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + hal_dsi_rx_ctrl_dsc_async_handler 0x00016d49 Thumb Code 120 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + hal_dsi_rx_ctrl_gen_a_tear_signal 0x00016dcd Thumb Code 32 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + hal_dsi_rx_ctrl_get_compressen_en 0x00016df5 Thumb Code 10 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) + hal_dsi_rx_ctrl_get_max_ret_size 0x00016e05 Thumb Code 30 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + hal_dsi_rx_ctrl_init 0x00016e2d Thumb Code 88 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + hal_dsi_rx_ctrl_send_ack_cmd 0x000175c9 Thumb Code 214 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + hal_dsi_rx_ctrl_set_cus_scld_filter 0x000176b9 Thumb Code 98 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) + hal_dsi_rx_ctrl_set_cus_sync_line 0x00017725 Thumb Code 44 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017805 Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + hal_dsi_rx_ctrl_set_tear_mode_ex 0x00017839 Thumb Code 14 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) + hal_dsi_rx_ctrl_start 0x00017849 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + hal_dsi_rx_ctrl_stop 0x00017885 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + hal_dsi_rx_ctrl_toggle_resolution_ex 0x000178c1 Thumb Code 28 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) + hal_dsi_tx_ctrl_create_handle 0x00017ef5 Thumb Code 34 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + hal_dsi_tx_ctrl_deinit 0x00017f21 Thumb Code 118 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + hal_dsi_tx_ctrl_enter_init_panel_mode 0x00017fa5 Thumb Code 68 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + hal_dsi_tx_ctrl_exit_init_panel_mode 0x00017ff1 Thumb Code 32 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + hal_dsi_tx_ctrl_init 0x00018019 Thumb Code 154 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + hal_dsi_tx_ctrl_panel_reset_pin 0x000180e1 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + hal_dsi_tx_ctrl_read_cmd 0x000180ed Thumb Code 134 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) + hal_dsi_tx_ctrl_set_ccm 0x00018179 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + hal_dsi_tx_ctrl_set_overwrite_rgb 0x00018199 Thumb Code 16 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + hal_dsi_tx_ctrl_set_partial_disp 0x000181ad Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + hal_dsi_tx_ctrl_set_partial_disp_area 0x000181bd Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + hal_dsi_tx_ctrl_start 0x000181e1 Thumb Code 140 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + hal_dsi_tx_ctrl_stop 0x0001827d Thumb Code 56 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + hal_dsi_tx_ctrl_write_array_cmd 0x000182c1 Thumb Code 210 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + hal_dsi_tx_ctrl_write_cmd 0x00018399 Thumb Code 172 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + hal_gpio_ctrl_eint 0x0001862d Thumb Code 18 hal_gpio.o(i.hal_gpio_ctrl_eint) + hal_gpio_get_input_data 0x00018645 Thumb Code 18 hal_gpio.o(i.hal_gpio_get_input_data) + hal_gpio_init_eint 0x00018659 Thumb Code 58 hal_gpio.o(i.hal_gpio_init_eint) + hal_gpio_init_input 0x00018699 Thumb Code 28 hal_gpio.o(i.hal_gpio_init_input) + hal_gpio_init_output 0x000186b9 Thumb Code 34 hal_gpio.o(i.hal_gpio_init_output) + hal_gpio_reg_eint_cb 0x000186e1 Thumb Code 20 hal_gpio.o(i.hal_gpio_reg_eint_cb) + hal_gpio_set_ap_reset_int 0x000186f9 Thumb Code 76 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + hal_gpio_set_mode 0x00018749 Thumb Code 90 hal_gpio.o(i.hal_gpio_set_mode) + hal_gpio_set_output_data 0x000187a9 Thumb Code 8 hal_gpio.o(i.hal_gpio_set_output_data) + hal_gpio_set_pull_state 0x000187b1 Thumb Code 26 hal_gpio.o(i.hal_gpio_set_pull_state) + hal_i2c_m_dma_init 0x000187d1 Thumb Code 92 hal_i2c_master.o(i.hal_i2c_m_dma_init) + hal_i2c_m_dma_read 0x0001883d Thumb Code 26 hal_i2c_master.o(i.hal_i2c_m_dma_read) + hal_i2c_m_dma_write 0x0001885d Thumb Code 24 hal_i2c_master.o(i.hal_i2c_m_dma_write) + hal_i2c_m_transfer_complate 0x00018879 Thumb Code 6 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + hal_i2c_s_dma_write 0x000188b5 Thumb Code 62 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + hal_i2c_s_init 0x00018901 Thumb Code 176 hal_i2c_slave.o(i.hal_i2c_s_init) + hal_i2c_s_nonblocking_read 0x000189c9 Thumb Code 14 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + hal_i2c_s_set_transfer 0x000189dd Thumb Code 6 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + hal_internal_init_memc 0x00018b5d Thumb Code 170 hal_internal_vsync.o(i.hal_internal_init_memc) + hal_internal_sync_get_fb_setting 0x00018c59 Thumb Code 12 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + hal_internal_sync_get_hight_performan_mode 0x00018c69 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + hal_internal_sync_input_resolution_change_ex 0x00018c79 Thumb Code 362 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) + hal_internal_vsync_deinit 0x00018e4d Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + hal_internal_vsync_get_rx_state 0x00018e75 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + hal_internal_vsync_get_sync_line 0x00018e81 Thumb Code 18 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + hal_internal_vsync_get_tear_mode 0x00018e99 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + hal_internal_vsync_get_tx_state 0x00018ea5 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + hal_internal_vsync_init_rx 0x00018eb1 Thumb Code 236 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + hal_internal_vsync_init_tx 0x00018fc9 Thumb Code 172 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + hal_internal_vsync_set_auto_hw_filter 0x00019079 Thumb Code 222 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + hal_internal_vsync_set_rx_state 0x00019195 Thumb Code 16 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + hal_internal_vsync_set_sync_line 0x000191a9 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + hal_internal_vsync_set_tear_mode 0x000191cd Thumb Code 72 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + hal_internal_vsync_set_tx_state 0x0001921d Thumb Code 118 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + hal_spi_m_clear_rxfifo 0x000196b5 Thumb Code 14 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + hal_swire_deinit 0x000196c3 Thumb Code 18 hal_swire.o(i.hal_swire_deinit) + hal_swire_open 0x000196d5 Thumb Code 22 hal_swire.o(i.hal_swire_open) + hal_system_enable_systick 0x000196eb Thumb Code 8 hal_system.o(i.hal_system_enable_systick) + hal_system_init 0x000196f5 Thumb Code 104 hal_system.o(i.hal_system_init) + hal_system_init_console 0x0001977d Thumb Code 28 hal_system.o(i.hal_system_init_console) + hal_system_set_phy_calibration 0x00019799 Thumb Code 8 hal_system.o(i.hal_system_set_phy_calibration) + hal_system_set_pvd 0x000197a1 Thumb Code 8 hal_system.o(i.hal_system_set_pvd) + hal_system_set_vcc 0x000197a9 Thumb Code 8 hal_system.o(i.hal_system_set_vcc) + hal_timer_deinit 0x000197b1 Thumb Code 46 hal_timer.o(i.hal_timer_deinit) + hal_timer_init 0x000197df Thumb Code 26 hal_timer.o(i.hal_timer_init) + hal_timer_start 0x000197f9 Thumb Code 66 hal_timer.o(i.hal_timer_start) + hal_timer_stop 0x00019841 Thumb Code 40 hal_timer.o(i.hal_timer_stop) + hal_uart_init 0x00019869 Thumb Code 126 hal_uart.o(i.hal_uart_init) + hal_uart_transmit_blocking 0x000198f5 Thumb Code 12 hal_uart.o(i.hal_uart_transmit_blocking) + handle_init 0x00019ae1 Thumb Code 140 irq_redirect .o(i.handle_init) + main 0x00019da5 Thumb Code 10 main.o(i.main) + sqrt 0x0001aa05 Thumb Code 66 sqrt.o(i.sqrt) + panel_init_code 0x0001ae50 Data 9973 ap_demo.o(.constdata) + phone_data_21 0x0001d545 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_55 0x0001d546 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_85_00 0x0001d547 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_1 0x0001d548 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_2 0x0001d549 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_3 0x0001d54a Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_4 0x0001d54b Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_30 0x0001d54c Data 2 app_tp_for_custom_s8.o(.constdata) + phone_data_92_F0 0x0001d54e Data 2 app_tp_for_custom_s8.o(.constdata) + phone_data_52 0x0001d550 Data 3 app_tp_for_custom_s8.o(.constdata) + phone_data_92_15 0x0001d553 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A3 0x0001d557 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A4 0x0001d55b Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A5 0x0001d55f Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_AF 0x0001d563 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_F1 0x0001d567 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_22 0x0001d56b Data 5 app_tp_for_custom_s8.o(.constdata) + phone_data_92_0A 0x0001d570 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_1 0x0001d576 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_2 0x0001d57c Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_3 0x0001d582 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_4 0x0001d588 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_60_1 0x0001d58e Data 16 app_tp_for_custom_s8.o(.constdata) + phone_data_23 0x0001d59e Data 11 app_tp_for_custom_s8.o(.constdata) + phone_data_85_02 0x0001d5a9 Data 28 app_tp_for_custom_s8.o(.constdata) + phone_data_85_20 0x0001d5c5 Data 28 app_tp_for_custom_s8.o(.constdata) + phone_data_90 0x0001d5e1 Data 10 app_tp_for_custom_s8.o(.constdata) + phone_data_72_05 0x0001d5eb Data 1440 app_tp_for_custom_s8.o(.constdata) + phone_data_72_13 0x0001db8b Data 1440 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7401_7D01 0x0001e12b Data 728 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7401_7D02 0x0001e403 Data 728 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7401_7D03 0x0001e6db Data 728 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7403_7D01 0x0001e9b3 Data 728 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7403_7D03 0x0001ec8b Data 728 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7D05 0x0001ef63 Data 728 app_tp_for_custom_s8.o(.constdata) + phone_data_75_7403_7D07 0x0001f23b Data 288 app_tp_for_custom_s8.o(.constdata) + phone_data_75_00 0x0001f35b Data 288 app_tp_for_custom_s8.o(.constdata) + phone_data_75_FF 0x0001f47b Data 288 app_tp_for_custom_s8.o(.constdata) + sleep_on 0x0001f59b Data 16 app_tp_for_custom_s8.o(.constdata) + screen_reg_start_data_size 0x0001f5ab Data 1 app_tp_for_custom_s8.o(.constdata) + Region$$Table$$Base 0x0001f9c0 Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0001f9f0 Number 0 anon$$obj.o(Region$$Table) + g_fun_handle 0x00070100 Data 192 irq_redirect .o(.ARM.__AT_0x00070100) + phone_start_flag 0x000701d5 Data 1 ap_demo.o(.data) + phone_DisplayOFF_flag 0x000701d6 Data 1 ap_demo.o(.data) + panel_mode 0x000701d8 Data 1 ap_demo.o(.data) + phone_DisplayOFF_count 0x000701e2 Data 2 ap_demo.o(.data) + panel_r 0x000701e8 Data 2 ap_demo.o(.data) + panel_g 0x000701ea Data 2 ap_demo.o(.data) + panel_b 0x000701ec Data 2 ap_demo.o(.data) + rx_filter_1080_h_4_96 0x000701fc Data 256 ap_demo.o(.data) + rx_filter_2400_v_4_96 0x000702fc Data 256 ap_demo.o(.data) + s_screen_init_complate 0x00070400 Data 1 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data1 0x00070404 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data3 0x00070407 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data4 0x0007040a Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data2 0x0007040d Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data3 0x00070410 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data6 0x00070413 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data7 0x00070416 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data8 0x00070419 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data4 0x0007041c Data 4 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data5 0x00070420 Data 4 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data2 0x00070424 Data 6 app_tp_transfer.o(.data) + phone_data_E4 0x0007042a Data 1 app_tp_for_custom_s8.o(.data) + tp_flag 0x0007042b Data 1 app_tp_for_custom_s8.o(.data) + g_phone_output_int_pad 0x0007042c Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_in 0x0007042d Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_count 0x0007042e Data 1 app_tp_for_custom_s8.o(.data) + sleep_double_EN 0x0007042f Data 1 app_tp_for_custom_s8.o(.data) + Flag_EA_EN 0x00070430 Data 1 app_tp_for_custom_s8.o(.data) + Flag_touch_count 0x00070431 Data 1 app_tp_for_custom_s8.o(.data) + touchnum_bak 0x00070432 Data 1 app_tp_for_custom_s8.o(.data) + Flag_blacklight_EN 0x00070433 Data 1 app_tp_for_custom_s8.o(.data) + phone_data_B1 0x0007043c Data 2 app_tp_for_custom_s8.o(.data) + phone_reg_coord_back 0x00070446 Data 200 app_tp_for_custom_s8.o(.data) + g_screen_input_rst_pad 0x0007050e Data 1 app_tp_for_custom_s8.o(.data) + g_screen_input_int_pad 0x0007050f Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_1 0x00070510 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_2 0x00070511 Data 3 app_tp_for_custom_s8.o(.data) + screen_data_write_3 0x00070514 Data 5 app_tp_for_custom_s8.o(.data) + screen_reg_int_data 0x0007051c Data 48 app_tp_for_custom_s8.o(.data) + g_fls_w_cmd 0x00070578 Data 1 norflash.o(.data) + g_fls_r_cmd 0x00070579 Data 1 norflash.o(.data) + g_fls_write_en_status 0x0007057a Data 1 norflash.o(.data) + isFlsTransferEnd 0x0007057b Data 1 norflash.o(.data) + isFlsFifoReq 0x0007057c Data 1 norflash.o(.data) + isNandWriteCompleted 0x0007057d Data 1 norflash.o(.data) + isNandReadCompleted 0x0007057e Data 1 norflash.o(.data) + g_fls_error_info 0x00070584 Data 6 norflash.o(.data) + g_systick_cb_func 0x00070590 Data 4 drv_common.o(.data) + g_system_clock 0x00070594 Data 4 drv_common.o(.data) + g_scld_fhd_filter_h 0x000705ac Data 256 drv_param_init.o(.data) + g_scld_fhd_filter_v 0x000706ac Data 256 drv_param_init.o(.data) + g_scld_hd_filter_h 0x000707ac Data 256 drv_param_init.o(.data) + g_scld_hd_filter_v 0x000708ac Data 256 drv_param_init.o(.data) + g_sclu_lanczos_filter 0x000709ac Data 128 drv_param_init.o(.data) + g_ccm_setting 0x00070a2c Data 36 drv_param_init.o(.data) + g_sof_gen_te_func 0x00070ac4 Data 4 hal_internal_vsync.o(.data) + g_int_rxbr_irq0_cb_func 0x00070ac8 Data 4 drv_rxbr.o(.data) + g_int_rxbr_irq1_cb_func 0x00070acc Data 4 drv_rxbr.o(.data) + g_int_vidc_cb_func 0x00070ad0 Data 4 drv_vidc.o(.data) + __stdout 0x00070af8 Data 4 stdout.o(.data) + string 0x00070da0 Data 256 tau_log.o(.bss) + hal_dmahandle 0x00070ea0 Data 160 hal_uart.o(.bss) + hal_uarthandle_dma 0x00070f40 Data 32 hal_uart.o(.bss) + hal_uart_handle_global 0x00070f60 Data 16 hal_uart.o(.bss) + g_vsync_hande 0x0007110c Data 80 hal_internal_vsync.o(.bss) + g_dcs_execute_table 0x0007115c Data 2048 hal_internal_vsync.o(.bss) + g_packet_fifo 0x00071a7c Data 4144 dcs_packet_fifo.o(.bss) + g_spis_ctrl_handle 0x00072aac Data 32 hal_spi_slave.o(.bss) + __stack_limit 0x00072ad0 Data 0 startup_armcm0.o(STACK) + __initial_sp 0x00073ad0 Data 0 startup_armcm0.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x000100c1 + + Load Region LR_IROM2 (Base: 0x00010000, Size: 0x00010320, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x0000ff3c]) + + Execution Region ER_IROM2 (Exec base: 0x00010000, Load base: 0x00010000, Size: 0x0000f9f0, Max: 0x00010000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00010000 0x00010000 0x000000c0 Data RO 514 RESET startup_armcm0.o + 0x000100c0 0x000100c0 0x00000000 Code RO 2594 * .ARM.Collect$$$$00000000 mc_p.l(entry.o) + 0x000100c0 0x000100c0 0x00000004 Code RO 2904 .ARM.Collect$$$$00000001 mc_p.l(entry2.o) + 0x000100c4 0x000100c4 0x00000004 Code RO 2907 .ARM.Collect$$$$00000004 mc_p.l(entry5.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2909 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2911 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o) + 0x000100c8 0x000100c8 0x00000008 Code RO 2912 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2914 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2916 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o) + 0x000100d0 0x000100d0 0x00000004 Code RO 2905 .ARM.Collect$$$$00002712 mc_p.l(entry2.o) + 0x000100d4 0x000100d4 0x00000078 Code RO 515 .text startup_armcm0.o + 0x0001014c 0x0001014c 0x0000002c Code RO 2597 .text mc_p.l(uidiv.o) + 0x00010178 0x00010178 0x00000028 Code RO 2599 .text mc_p.l(idiv.o) + 0x000101a0 0x000101a0 0x00000024 Code RO 2601 .text mc_p.l(memcpya.o) + 0x000101c4 0x000101c4 0x00000024 Code RO 2603 .text mc_p.l(memseta.o) + 0x000101e8 0x000101e8 0x000000b2 Code RO 2868 .text mf_p.l(fadd.o) + 0x0001029a 0x0001029a 0x0000007a Code RO 2870 .text mf_p.l(fmul.o) + 0x00010314 0x00010314 0x0000007c Code RO 2872 .text mf_p.l(fdiv.o) + 0x00010390 0x00010390 0x00000018 Code RO 2874 .text mf_p.l(fscalb.o) + 0x000103a8 0x000103a8 0x00000164 Code RO 2876 .text mf_p.l(dadd.o) + 0x0001050c 0x0001050c 0x000000d0 Code RO 2878 .text mf_p.l(dmul.o) + 0x000105dc 0x000105dc 0x000000f0 Code RO 2880 .text mf_p.l(ddiv.o) + 0x000106cc 0x000106cc 0x00000016 Code RO 2882 .text mf_p.l(fflti.o) + 0x000106e2 0x000106e2 0x0000000e Code RO 2884 .text mf_p.l(ffltui.o) + 0x000106f0 0x000106f0 0x0000001c Code RO 2888 .text mf_p.l(dfltui.o) + 0x0001070c 0x0001070c 0x00000032 Code RO 2890 .text mf_p.l(ffixi.o) + 0x0001073e 0x0001073e 0x00000028 Code RO 2892 .text mf_p.l(ffixui.o) + 0x00010766 0x00010766 0x00000002 PAD + 0x00010768 0x00010768 0x00000048 Code RO 2894 .text mf_p.l(dfixi.o) + 0x000107b0 0x000107b0 0x0000003c Code RO 2896 .text mf_p.l(dfixui.o) + 0x000107ec 0x000107ec 0x00000028 Code RO 2898 .text mf_p.l(f2d.o) + 0x00010814 0x00010814 0x00000028 Code RO 2900 .text mf_p.l(cdcmple.o) + 0x0001083c 0x0001083c 0x00000014 Code RO 2902 .text mf_p.l(cfrcmple.o) + 0x00010850 0x00010850 0x00000060 Code RO 2919 .text mc_p.l(uldiv.o) + 0x000108b0 0x000108b0 0x00000020 Code RO 2921 .text mc_p.l(llshl.o) + 0x000108d0 0x000108d0 0x00000022 Code RO 2923 .text mc_p.l(llushr.o) + 0x000108f2 0x000108f2 0x00000026 Code RO 2925 .text mc_p.l(llsshr.o) + 0x00010918 0x00010918 0x00000000 Code RO 2934 .text mc_p.l(iusefp.o) + 0x00010918 0x00010918 0x00000082 Code RO 2935 .text mf_p.l(fepilogue.o) + 0x0001099a 0x0001099a 0x000000be Code RO 2937 .text mf_p.l(depilogue.o) + 0x00010a58 0x00010a58 0x000000a2 Code RO 2941 .text mf_p.l(dsqrt.o) + 0x00010afa 0x00010afa 0x00000002 PAD + 0x00010afc 0x00010afc 0x00000040 Code RO 2943 .text mf_p.l(dfixul.o) + 0x00010b3c 0x00010b3c 0x00000028 Code RO 2945 .text mf_p.l(cdrcmple.o) + 0x00010b64 0x00010b64 0x00000024 Code RO 2947 .text mc_p.l(init.o) + 0x00010b88 0x00010b88 0x00000056 Code RO 2957 .text mc_p.l(__dczerorl2.o) + 0x00010bde 0x00010bde 0x00000002 PAD + 0x00010be0 0x00010be0 0x00000018 Code RO 2228 i.ADC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010bf8 0x00010bf8 0x00000018 Code RO 2229 i.AP_NRESET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c10 0x00010c10 0x00000014 Code RO 2230 i.DMA_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c24 0x00010c24 0x0000001c Code RO 2231 i.EXTI_INT0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c40 0x00010c40 0x0000001c Code RO 2232 i.EXTI_INT1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c5c 0x00010c5c 0x0000001c Code RO 2233 i.EXTI_INT2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c78 0x00010c78 0x0000001c Code RO 2234 i.EXTI_INT3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c94 0x00010c94 0x0000001c Code RO 2235 i.EXTI_INT4_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cb0 0x00010cb0 0x0000001c Code RO 2236 i.EXTI_INT5_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ccc 0x00010ccc 0x0000001c Code RO 2237 i.EXTI_INT6_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ce8 0x00010ce8 0x0000001c Code RO 2238 i.EXTI_INT7_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d04 0x00010d04 0x00000014 Code RO 2239 i.FLSCTRL_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d18 0x00010d18 0x0000004e Code RO 99 i.Gpio_swire_output ap_demo.o + 0x00010d66 0x00010d66 0x00000002 PAD + 0x00010d68 0x00010d68 0x00000014 Code RO 2240 i.HardFault_Handler CVWL368.lib(irq_redirect .o) + 0x00010d7c 0x00010d7c 0x00000018 Code RO 2241 i.I2C0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d94 0x00010d94 0x00000018 Code RO 2242 i.I2C1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dac 0x00010dac 0x00000018 Code RO 2243 i.LCDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dc4 0x00010dc4 0x00000028 Code RO 976 i.LOG_printf CVWL368.lib(tau_log.o) + 0x00010dec 0x00010dec 0x00000018 Code RO 2244 i.MEMC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e04 0x00010e04 0x00000018 Code RO 2245 i.MIPI_RX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e1c 0x00010e1c 0x00000018 Code RO 2246 i.MIPI_TX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e34 0x00010e34 0x0000001c Code RO 2247 i.PWMDET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e50 0x00010e50 0x0000014c Code RO 262 i.S20_Start_init app_tp_transfer.o + 0x00010f9c 0x00010f9c 0x0000001c Code RO 2248 i.SPIM_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fb8 0x00010fb8 0x0000001c Code RO 2249 i.SPIS_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fd4 0x00010fd4 0x0000001c Code RO 2250 i.SWIRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ff0 0x00010ff0 0x00000002 Code RO 2476 i.UART_DisableDma CVWL368.lib(drv_uart.o) + 0x00010ff2 0x00010ff2 0x00000004 Code RO 2482 i.UART_GetInstance CVWL368.lib(drv_uart.o) + 0x00010ff6 0x00010ff6 0x00000002 Code RO 2952 i.__scatterload_null mc_p.l(handlers.o) + 0x00010ff8 0x00010ff8 0x00000004 Code RO 108 i.ap_set_display_on ap_demo.o + 0x00010ffc 0x00010ffc 0x00000004 Code RO 1812 i.drv_dsi_rx_set_inten CVWL368.lib(drv_dsi_rx.o) + 0x00011000 0x00011000 0x00000014 Data RO 1098 .ARM.__at_0x11000 CVWL368.lib(drv_common.o) + 0x00011014 0x00011014 0x00000004 Code RO 1855 i.drv_dsi_tx_command_get_payload CVWL368.lib(drv_dsi_tx.o) + 0x00011018 0x00011018 0x00000004 Data RO 1099 .ARM.__at_0x11018 CVWL368.lib(drv_common.o) + 0x0001101c 0x0001101c 0x00000018 Code RO 2251 i.SysTick_Handler CVWL368.lib(irq_redirect .o) + 0x00011034 0x00011034 0x00000018 Code RO 2252 i.TIMER0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001104c 0x0001104c 0x00000018 Code RO 2253 i.TIMER1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011064 0x00011064 0x00000018 Code RO 2254 i.TIMER2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001107c 0x0001107c 0x00000018 Code RO 2255 i.TIMER3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011094 0x00011094 0x0000001c Code RO 2472 i.UART0_IRQ_Handle CVWL368.lib(drv_uart.o) + 0x000110b0 0x000110b0 0x00000018 Code RO 2256 i.UART_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000110c8 0x000110c8 0x00000024 Code RO 2490 i.UART_ResetRxFIFO CVWL368.lib(drv_uart.o) + 0x000110ec 0x000110ec 0x00000048 Code RO 2493 i.UART_SetBaudRate CVWL368.lib(drv_uart.o) + 0x00011134 0x00011134 0x0000001a Code RO 2494 i.UART_SwitchSCLK CVWL368.lib(drv_uart.o) + 0x0001114e 0x0001114e 0x00000134 Code RO 2496 i.UART_TransferHandleIRQ CVWL368.lib(drv_uart.o) + 0x00011282 0x00011282 0x0000001a Code RO 2498 i.UART_WriteBlocking CVWL368.lib(drv_uart.o) + 0x0001129c 0x0001129c 0x000000bc Code RO 2499 i.UART_init CVWL368.lib(drv_uart.o) + 0x00011358 0x00011358 0x00000018 Code RO 2257 i.VIDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011370 0x00011370 0x00000018 Code RO 2258 i.VPRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011388 0x00011388 0x00000018 Code RO 2259 i.WDG_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x000113a0 0x000113a0 0x00000020 Code RO 2840 i.__0printf mc_p.l(printfa.o) + 0x000113c0 0x000113c0 0x00000024 Code RO 2846 i.__0vsprintf mc_p.l(printfa.o) + 0x000113e4 0x000113e4 0x0000002e Code RO 2939 i.__ARM_clz mf_p.l(depilogue.o) + 0x00011412 0x00011412 0x0000001a Code RO 612 i.__ARM_common_switch8 CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001142c 0x0001142c 0x00000018 Code RO 1419 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_i2c_master.o) + 0x00011444 0x00011444 0x00000018 Code RO 1582 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_spi_master.o) + 0x0001145c 0x0001145c 0x00000020 Code RO 2082 i.__NVIC_DisableIRQ CVWL368.lib(drv_rxbr.o) + 0x0001147c 0x0001147c 0x00000018 Code RO 2083 i.__NVIC_EnableIRQ CVWL368.lib(drv_rxbr.o) + 0x00011494 0x00011494 0x00000044 Code RO 2378 i.__NVIC_SetPriority CVWL368.lib(hal_spi_slave.o) + 0x000114d8 0x000114d8 0x0000000e Code RO 2951 i.__scatterload_copy mc_p.l(handlers.o) + 0x000114e6 0x000114e6 0x0000000e Code RO 2953 i.__scatterload_zeroinit mc_p.l(handlers.o) + 0x000114f4 0x000114f4 0x0000000c Code RO 2929 i.__set_errno mc_p.l(errno.o) + 0x00011500 0x00011500 0x00000174 Code RO 2847 i._fp_digits mc_p.l(printfa.o) + 0x00011674 0x00011674 0x000006ec Code RO 2848 i._printf_core mc_p.l(printfa.o) + 0x00011d60 0x00011d60 0x00000020 Code RO 2849 i._printf_post_padding mc_p.l(printfa.o) + 0x00011d80 0x00011d80 0x0000002c Code RO 2850 i._printf_pre_padding mc_p.l(printfa.o) + 0x00011dac 0x00011dac 0x0000000a Code RO 2852 i._sputc mc_p.l(printfa.o) + 0x00011db6 0x00011db6 0x00000002 PAD + 0x00011db8 0x00011db8 0x00000c16 Code RO 102 i.ap_dcs_read ap_demo.o + 0x000129ce 0x000129ce 0x00000002 PAD + 0x000129d0 0x000129d0 0x00000114 Code RO 103 i.ap_demo ap_demo.o + 0x00012ae4 0x00012ae4 0x00000098 Code RO 104 i.ap_get_reg_df ap_demo.o + 0x00012b7c 0x00012b7c 0x00000030 Code RO 105 i.ap_reset_cb ap_demo.o + 0x00012bac 0x00012bac 0x00000048 Code RO 106 i.ap_set_backlight_51 ap_demo.o + 0x00012bf4 0x00012bf4 0x00000012 Code RO 107 i.ap_set_display_off ap_demo.o + 0x00012c06 0x00012c06 0x00000002 PAD + 0x00012c08 0x00012c08 0x00000044 Code RO 109 i.ap_set_enter_sleep_mode ap_demo.o + 0x00012c4c 0x00012c4c 0x0000000c Code RO 110 i.ap_set_exit_sleep_mode ap_demo.o + 0x00012c58 0x00012c58 0x000000b0 Code RO 263 i.ap_tp_calibration app_tp_transfer.o + 0x00012d08 0x00012d08 0x0000002c Code RO 111 i.ap_update_frame_rate ap_demo.o + 0x00012d34 0x00012d34 0x0000001c Code RO 2084 i.app_ADC_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00012d50 0x00012d50 0x00000024 Code RO 1343 i.app_AP_NRESET_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012d74 0x00012d74 0x0000001c Code RO 1344 i.app_EXTI_INT0_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012d90 0x00012d90 0x0000001c Code RO 1345 i.app_EXTI_INT1_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012dac 0x00012dac 0x0000001c Code RO 1346 i.app_EXTI_INT2_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012dc8 0x00012dc8 0x0000001c Code RO 1347 i.app_EXTI_INT3_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012de4 0x00012de4 0x0000001c Code RO 1348 i.app_EXTI_INT4_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012e00 0x00012e00 0x0000001c Code RO 1349 i.app_EXTI_INT5_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012e1c 0x00012e1c 0x0000001c Code RO 1350 i.app_EXTI_INT6_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012e38 0x00012e38 0x0000001c Code RO 1351 i.app_EXTI_INT7_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012e54 0x00012e54 0x00000048 Code RO 1090 i.app_HardFault_Handler CVWL368.lib(drv_common.o) + 0x00012e9c 0x00012e9c 0x00000018 Code RO 1454 i.app_I2C0_IRQn_Handler CVWL368.lib(drv_i2c_slave.o) + 0x00012eb4 0x00012eb4 0x00000010 Code RO 1420 i.app_I2C1_IRQn_Handler CVWL368.lib(drv_i2c_master.o) + 0x00012ec4 0x00012ec4 0x00000130 Code RO 1700 i.app_LCDC_IRQn_Handler CVWL368.lib(hal_internal_vsync.o) + 0x00012ff4 0x00012ff4 0x00000088 Code RO 2026 i.app_MEMC_IRQn_Handler CVWL368.lib(drv_memc.o) + 0x0001307c 0x0001307c 0x00000298 Code RO 1798 i.app_MIPI_RX_IRQn_Handler CVWL368.lib(drv_dsi_rx.o) + 0x00013314 0x00013314 0x000000a0 Code RO 1854 i.app_MIPI_TX_IRQn_Handler CVWL368.lib(drv_dsi_tx.o) + 0x000133b4 0x000133b4 0x00000048 Code RO 1503 i.app_PWMDET_IRQn_Handler CVWL368.lib(drv_pwm.o) + 0x000133fc 0x000133fc 0x00000030 Code RO 1583 i.app_SPIM_IRQn_Handler CVWL368.lib(drv_spi_master.o) + 0x0001342c 0x0001342c 0x00000200 Code RO 2379 i.app_SPIS_IRQn_Handler CVWL368.lib(hal_spi_slave.o) + 0x0001362c 0x0001362c 0x00000020 Code RO 1615 i.app_SWIRE_IRQn_Handler CVWL368.lib(drv_swire.o) + 0x0001364c 0x0001364c 0x00000018 Code RO 1091 i.app_SysTick_Handler CVWL368.lib(drv_common.o) + 0x00013664 0x00013664 0x0000000a Code RO 1665 i.app_TIMER0_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x0001366e 0x0001366e 0x0000000a Code RO 1666 i.app_TIMER1_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00013678 0x00013678 0x0000000a Code RO 1667 i.app_TIMER2_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00013682 0x00013682 0x0000000a Code RO 1668 i.app_TIMER3_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x0001368c 0x0001368c 0x00000008 Code RO 2500 i.app_UART_IRQn_Handler CVWL368.lib(drv_uart.o) + 0x00013694 0x00013694 0x0000001c Code RO 2149 i.app_VIDC_IRQn_Handler CVWL368.lib(drv_vidc.o) + 0x000136b0 0x000136b0 0x0000001c Code RO 2085 i.app_VPRE_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x000136cc 0x000136cc 0x00000038 Code RO 2559 i.app_WDG_IRQn_Handler CVWL368.lib(drv_wdg.o) + 0x00013704 0x00013704 0x00000010 Code RO 1205 i.app_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00013714 0x00013714 0x00000030 Code RO 1006 i.app_fls_ctrl_Handler CVWL368.lib(norflash.o) + 0x00013744 0x00013744 0x00000024 Code RO 264 i.app_tp_I2C_init app_tp_transfer.o + 0x00013768 0x00013768 0x00000018 Code RO 112 i.app_tp_calibration_exec ap_demo.o + 0x00013780 0x00013780 0x00000030 Code RO 265 i.app_tp_i2cs_callback app_tp_transfer.o + 0x000137b0 0x000137b0 0x00000044 Code RO 266 i.app_tp_init app_tp_transfer.o + 0x000137f4 0x000137f4 0x00000020 Code RO 267 i.app_tp_m_read app_tp_transfer.o + 0x00013814 0x00013814 0x00000008 Code RO 269 i.app_tp_m_write app_tp_transfer.o + 0x0001381c 0x0001381c 0x00000358 Code RO 406 i.app_tp_phone_analysis_data app_tp_for_custom_s8.o + 0x00013b74 0x00013b74 0x00000008 Code RO 272 i.app_tp_s_read app_tp_transfer.o + 0x00013b7c 0x00013b7c 0x00000008 Code RO 274 i.app_tp_s_write app_tp_transfer.o + 0x00013b84 0x00013b84 0x000002b0 Code RO 408 i.app_tp_screen_analysis_int app_tp_for_custom_s8.o + 0x00013e34 0x00013e34 0x00000030 Code RO 275 i.app_tp_screen_init app_tp_transfer.o + 0x00013e64 0x00013e64 0x0000000c Code RO 276 i.app_tp_screen_int_callback app_tp_transfer.o + 0x00013e70 0x00013e70 0x00000040 Code RO 277 i.app_tp_transfer_screen_const app_tp_transfer.o + 0x00013eb0 0x00013eb0 0x0000010c Code RO 278 i.app_tp_transfer_screen_int app_tp_transfer.o + 0x00013fbc 0x00013fbc 0x00000014 Code RO 279 i.app_tp_transfer_screen_start app_tp_transfer.o + 0x00013fd0 0x00013fd0 0x00000024 Code RO 494 i.board_Init board.o + 0x00013ff4 0x00013ff4 0x00000472 Code RO 1701 i.calc_framebuffer_setting CVWL368.lib(hal_internal_vsync.o) + 0x00014466 0x00014466 0x00000002 PAD + 0x00014468 0x00014468 0x000000c8 Code RO 2583 i.ceil m_ps.l(ceil.o) + 0x00014530 0x00014530 0x0000002c Code RO 1702 i.check_mipi_rx_tx_video_info CVWL368.lib(hal_internal_vsync.o) + 0x0001455c 0x0001455c 0x00000094 Code RO 1703 i.check_pkt_buf_rev CVWL368.lib(hal_internal_vsync.o) + 0x000145f0 0x000145f0 0x00000058 Code RO 1785 i.dcs_packet_fifo_alloc CVWL368.lib(dcs_packet_fifo.o) + 0x00014648 0x00014648 0x00000018 Code RO 1786 i.dcs_packet_fifo_init CVWL368.lib(dcs_packet_fifo.o) + 0x00014660 0x00014660 0x00000044 Code RO 1787 i.dcs_packet_free_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x000146a4 0x000146a4 0x00000024 Code RO 1788 i.dcs_packet_get_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x000146c8 0x000146c8 0x0000001c Code RO 1704 i.dcs_sw_filter CVWL368.lib(hal_internal_vsync.o) + 0x000146e4 0x000146e4 0x00000018 Code RO 968 i.delayMs CVWL368.lib(tau_delay.o) + 0x000146fc 0x000146fc 0x00000022 Code RO 969 i.delayUs CVWL368.lib(tau_delay.o) + 0x0001471e 0x0001471e 0x00000002 PAD + 0x00014720 0x00014720 0x00000038 Code RO 1634 i.drv_ap_rst_trig_edge_detect CVWL368.lib(drv_sys_cfg.o) + 0x00014758 0x00014758 0x0000000c Code RO 2349 i.drv_chip_info_get_info CVWL368.lib(drv_chip_info.o) + 0x00014764 0x00014764 0x00000040 Code RO 2350 i.drv_chip_info_init CVWL368.lib(drv_chip_info.o) + 0x000147a4 0x000147a4 0x000000c8 Code RO 2351 i.drv_chip_rx_info_check CVWL368.lib(drv_chip_info.o) + 0x0001486c 0x0001486c 0x00000014 Code RO 2352 i.drv_chip_rx_init_done CVWL368.lib(drv_chip_info.o) + 0x00014880 0x00014880 0x00000058 Code RO 1093 i.drv_common_enable_systick CVWL368.lib(drv_common.o) + 0x000148d8 0x000148d8 0x00000008 Code RO 1096 i.drv_common_system_init CVWL368.lib(drv_common.o) + 0x000148e0 0x000148e0 0x00000010 Code RO 1118 i.drv_crgu_config_reset_modules CVWL368.lib(drv_crgu.o) + 0x000148f0 0x000148f0 0x00000014 Code RO 1131 i.drv_crgu_set_ahb_pre_div CVWL368.lib(drv_crgu.o) + 0x00014904 0x00014904 0x00000014 Code RO 1132 i.drv_crgu_set_ahb_src CVWL368.lib(drv_crgu.o) + 0x00014918 0x00014918 0x00000020 Code RO 1135 i.drv_crgu_set_clock CVWL368.lib(drv_crgu.o) + 0x00014938 0x00014938 0x00000014 Code RO 1136 i.drv_crgu_set_dpi_mux_src CVWL368.lib(drv_crgu.o) + 0x0001494c 0x0001494c 0x00000018 Code RO 1137 i.drv_crgu_set_dpi_pre_div CVWL368.lib(drv_crgu.o) + 0x00014964 0x00014964 0x00000014 Code RO 1138 i.drv_crgu_set_dpi_pre_src CVWL368.lib(drv_crgu.o) + 0x00014978 0x00014978 0x00000014 Code RO 1139 i.drv_crgu_set_dsc_core_div CVWL368.lib(drv_crgu.o) + 0x0001498c 0x0001498c 0x00000014 Code RO 1140 i.drv_crgu_set_dsco_src CVWL368.lib(drv_crgu.o) + 0x000149a0 0x000149a0 0x00000014 Code RO 1141 i.drv_crgu_set_dsco_src_div CVWL368.lib(drv_crgu.o) + 0x000149b4 0x000149b4 0x00000014 Code RO 1142 i.drv_crgu_set_fb_div CVWL368.lib(drv_crgu.o) + 0x000149c8 0x000149c8 0x00000014 Code RO 1143 i.drv_crgu_set_fb_src CVWL368.lib(drv_crgu.o) + 0x000149dc 0x000149dc 0x00000014 Code RO 1146 i.drv_crgu_set_lcdc_div CVWL368.lib(drv_crgu.o) + 0x000149f0 0x000149f0 0x00000014 Code RO 1147 i.drv_crgu_set_lcdc_src CVWL368.lib(drv_crgu.o) + 0x00014a04 0x00014a04 0x00000014 Code RO 1148 i.drv_crgu_set_mipi_cfg_src CVWL368.lib(drv_crgu.o) + 0x00014a18 0x00014a18 0x00000018 Code RO 1149 i.drv_crgu_set_mipi_ref_src CVWL368.lib(drv_crgu.o) + 0x00014a30 0x00014a30 0x00000018 Code RO 1152 i.drv_crgu_set_reset CVWL368.lib(drv_crgu.o) + 0x00014a48 0x00014a48 0x00000014 Code RO 1153 i.drv_crgu_set_rxbr_div CVWL368.lib(drv_crgu.o) + 0x00014a5c 0x00014a5c 0x00000014 Code RO 1154 i.drv_crgu_set_rxbr_src CVWL368.lib(drv_crgu.o) + 0x00014a70 0x00014a70 0x00000014 Code RO 1156 i.drv_crgu_set_vidc_src CVWL368.lib(drv_crgu.o) + 0x00014a84 0x00014a84 0x00000018 Code RO 1209 i.drv_dma_clear_flag CVWL368.lib(drv_dma.o) + 0x00014a9c 0x00014a9c 0x0000001c Code RO 1210 i.drv_dma_create_handle CVWL368.lib(drv_dma.o) + 0x00014ab8 0x00014ab8 0x00000010 Code RO 1212 i.drv_dma_disenable_channel CVWL368.lib(drv_dma.o) + 0x00014ac8 0x00014ac8 0x00000010 Code RO 1214 i.drv_dma_enable_channel CVWL368.lib(drv_dma.o) + 0x00014ad8 0x00014ad8 0x00000024 Code RO 1215 i.drv_dma_enable_channel_interrupts CVWL368.lib(drv_dma.o) + 0x00014afc 0x00014afc 0x0000000c Code RO 1217 i.drv_dma_get_channel_flag CVWL368.lib(drv_dma.o) + 0x00014b08 0x00014b08 0x00000090 Code RO 1220 i.drv_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00014b98 0x00014b98 0x00000012 Code RO 1222 i.drv_dma_prepar_transfer CVWL368.lib(drv_dma.o) + 0x00014baa 0x00014baa 0x0000001a Code RO 1224 i.drv_dma_set_burst CVWL368.lib(drv_dma.o) + 0x00014bc4 0x00014bc4 0x00000006 Code RO 1225 i.drv_dma_set_callback CVWL368.lib(drv_dma.o) + 0x00014bca 0x00014bca 0x00000002 PAD + 0x00014bcc 0x00014bcc 0x00000044 Code RO 1227 i.drv_dma_set_transfer CVWL368.lib(drv_dma.o) + 0x00014c10 0x00014c10 0x00000036 Code RO 2362 i.drv_dsc_dec_convert_pps_rc_parameter CVWL368.lib(drv_dsc_dec.o) + 0x00014c46 0x00014c46 0x0000000c Code RO 2363 i.drv_dsc_dec_disable CVWL368.lib(drv_dsc_dec.o) + 0x00014c52 0x00014c52 0x00000002 PAD + 0x00014c54 0x00014c54 0x00000074 Code RO 2364 i.drv_dsc_dec_enable CVWL368.lib(drv_dsc_dec.o) + 0x00014cc8 0x00014cc8 0x0000000a Code RO 2365 i.drv_dsc_dec_get_nslc CVWL368.lib(drv_dsc_dec.o) + 0x00014cd2 0x00014cd2 0x00000028 Code RO 2367 i.drv_dsc_dec_set_u8_pps CVWL368.lib(drv_dsc_dec.o) + 0x00014cfa 0x00014cfa 0x00000002 PAD + 0x00014cfc 0x00014cfc 0x00000104 Code RO 1799 i.drv_dsi_rx_calc_ipi_tx_delay CVWL368.lib(drv_dsi_rx.o) + 0x00014e00 0x00014e00 0x00000040 Code RO 1800 i.drv_dsi_rx_enable_irq CVWL368.lib(drv_dsi_rx.o) + 0x00014e40 0x00014e40 0x00000050 Code RO 1801 i.drv_dsi_rx_get_color_bpp CVWL368.lib(drv_dsi_rx.o) + 0x00014e90 0x00014e90 0x0000001c Code RO 1802 i.drv_dsi_rx_get_color_pcc CVWL368.lib(drv_dsi_rx.o) + 0x00014eac 0x00014eac 0x00000008 Code RO 1803 i.drv_dsi_rx_get_compression_en CVWL368.lib(drv_dsi_rx.o) + 0x00014eb4 0x00014eb4 0x00000006 Code RO 1804 i.drv_dsi_rx_get_max_ret_size CVWL368.lib(drv_dsi_rx.o) + 0x00014eba 0x00014eba 0x0000000e Code RO 1808 i.drv_dsi_rx_power_up CVWL368.lib(drv_dsi_rx.o) + 0x00014ec8 0x00014ec8 0x00000020 Code RO 1809 i.drv_dsi_rx_set_ctrl_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014ee8 0x00014ee8 0x00000010 Code RO 1810 i.drv_dsi_rx_set_ddi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014ef8 0x00014ef8 0x00000010 Code RO 1813 i.drv_dsi_rx_set_ipi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00014f08 0x00014f08 0x00000046 Code RO 1815 i.drv_dsi_rx_set_lane_swap CVWL368.lib(drv_dsi_rx.o) + 0x00014f4e 0x00014f4e 0x00000026 Code RO 1816 i.drv_dsi_rx_set_resp_cnt CVWL368.lib(drv_dsi_rx.o) + 0x00014f74 0x00014f74 0x00000104 Code RO 1817 i.drv_dsi_rx_set_up_phy CVWL368.lib(drv_dsi_rx.o) + 0x00015078 0x00015078 0x0000000e Code RO 1818 i.drv_dsi_rx_shut_down CVWL368.lib(drv_dsi_rx.o) + 0x00015086 0x00015086 0x00000014 Code RO 1856 i.drv_dsi_tx_command_header CVWL368.lib(drv_dsi_tx.o) + 0x0001509a 0x0001509a 0x0000006c Code RO 1857 i.drv_dsi_tx_command_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015106 0x00015106 0x00000004 Code RO 1858 i.drv_dsi_tx_command_put_payload CVWL368.lib(drv_dsi_tx.o) + 0x0001510a 0x0001510a 0x00000018 Code RO 1859 i.drv_dsi_tx_config_eotp CVWL368.lib(drv_dsi_tx.o) + 0x00015122 0x00015122 0x00000008 Code RO 1860 i.drv_dsi_tx_config_int CVWL368.lib(drv_dsi_tx.o) + 0x0001512a 0x0001512a 0x00000008 Code RO 1861 i.drv_dsi_tx_dpi_lpcmd_time CVWL368.lib(drv_dsi_tx.o) + 0x00015132 0x00015132 0x0000000a Code RO 1862 i.drv_dsi_tx_dpi_mode CVWL368.lib(drv_dsi_tx.o) + 0x0001513c 0x0001513c 0x00000024 Code RO 1863 i.drv_dsi_tx_dpi_polarity CVWL368.lib(drv_dsi_tx.o) + 0x00015160 0x00015160 0x00000004 Code RO 1864 i.drv_dsi_tx_edpi_cmd_size CVWL368.lib(drv_dsi_tx.o) + 0x00015164 0x00015164 0x00000004 Code RO 1866 i.drv_dsi_tx_get_cmd_status CVWL368.lib(drv_dsi_tx.o) + 0x00015168 0x00015168 0x00000004 Code RO 1868 i.drv_dsi_tx_mode CVWL368.lib(drv_dsi_tx.o) + 0x0001516c 0x0001516c 0x00000018 Code RO 1869 i.drv_dsi_tx_phy_clock_lane_auto_lp CVWL368.lib(drv_dsi_tx.o) + 0x00015184 0x00015184 0x0000001a Code RO 1870 i.drv_dsi_tx_phy_clock_lane_req_hs CVWL368.lib(drv_dsi_tx.o) + 0x0001519e 0x0001519e 0x0000000c Code RO 1872 i.drv_dsi_tx_phy_lane_mode CVWL368.lib(drv_dsi_tx.o) + 0x000151aa 0x000151aa 0x00000064 Code RO 1876 i.drv_dsi_tx_phy_status_ready CVWL368.lib(drv_dsi_tx.o) + 0x0001520e 0x0001520e 0x0000003e Code RO 1877 i.drv_dsi_tx_phy_status_stopstate CVWL368.lib(drv_dsi_tx.o) + 0x0001524c 0x0001524c 0x00000134 Code RO 1879 i.drv_dsi_tx_phy_test_setup CVWL368.lib(drv_dsi_tx.o) + 0x00015380 0x00015380 0x0000001e Code RO 1880 i.drv_dsi_tx_phy_time_cfg CVWL368.lib(drv_dsi_tx.o) + 0x0001539e 0x0001539e 0x00000008 Code RO 1884 i.drv_dsi_tx_powerup CVWL368.lib(drv_dsi_tx.o) + 0x000153a6 0x000153a6 0x0000001c Code RO 1885 i.drv_dsi_tx_response_mode CVWL368.lib(drv_dsi_tx.o) + 0x000153c2 0x000153c2 0x00000018 Code RO 1888 i.drv_dsi_tx_set_bta_ack CVWL368.lib(drv_dsi_tx.o) + 0x000153da 0x000153da 0x0000000c Code RO 1889 i.drv_dsi_tx_set_esc_div CVWL368.lib(drv_dsi_tx.o) + 0x000153e6 0x000153e6 0x00000002 PAD + 0x000153e8 0x000153e8 0x00000040 Code RO 1890 i.drv_dsi_tx_set_int CVWL368.lib(drv_dsi_tx.o) + 0x00015428 0x00015428 0x00000010 Code RO 1891 i.drv_dsi_tx_set_time_out_div CVWL368.lib(drv_dsi_tx.o) + 0x00015438 0x00015438 0x00000008 Code RO 1892 i.drv_dsi_tx_set_video_chunk CVWL368.lib(drv_dsi_tx.o) + 0x00015440 0x00015440 0x00000022 Code RO 1893 i.drv_dsi_tx_set_video_timing CVWL368.lib(drv_dsi_tx.o) + 0x00015462 0x00015462 0x00000008 Code RO 1895 i.drv_dsi_tx_shutdown CVWL368.lib(drv_dsi_tx.o) + 0x0001546a 0x0001546a 0x00000026 Code RO 1896 i.drv_dsi_tx_timeout_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015490 0x00015490 0x000000aa Code RO 1899 i.drv_dsi_tx_video_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x0001553a 0x0001553a 0x00000016 Code RO 1900 i.drv_dsi_tx_video_mode_disable_hact_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00015550 0x00015550 0x00000018 Code RO 1901 i.drv_dsi_tx_video_mode_set_lp_cmd CVWL368.lib(drv_dsi_tx.o) + 0x00015568 0x00015568 0x00000020 Code RO 2300 i.drv_efuse_enter_inactive CVWL368.lib(drv_efuse.o) + 0x00015588 0x00015588 0x0000000c Code RO 2303 i.drv_efuse_int_enable CVWL368.lib(drv_efuse.o) + 0x00015594 0x00015594 0x00000032 Code RO 2304 i.drv_efuse_read CVWL368.lib(drv_efuse.o) + 0x000155c6 0x000155c6 0x00000018 Code RO 2305 i.drv_efuse_read_req CVWL368.lib(drv_efuse.o) + 0x000155de 0x000155de 0x00000002 PAD + 0x000155e0 0x000155e0 0x00000018 Code RO 1352 i.drv_gpio_get_input_data CVWL368.lib(drv_gpio.o) + 0x000155f8 0x000155f8 0x0000000c Code RO 1354 i.drv_gpio_register_ap_reset_callback CVWL368.lib(drv_gpio.o) + 0x00015604 0x00015604 0x00000014 Code RO 1355 i.drv_gpio_register_callback CVWL368.lib(drv_gpio.o) + 0x00015618 0x00015618 0x00000050 Code RO 1357 i.drv_gpio_set_int CVWL368.lib(drv_gpio.o) + 0x00015668 0x00015668 0x00000020 Code RO 1358 i.drv_gpio_set_ioe CVWL368.lib(drv_gpio.o) + 0x00015688 0x00015688 0x00000010 Code RO 1359 i.drv_gpio_set_mode0 CVWL368.lib(drv_gpio.o) + 0x00015698 0x00015698 0x00000010 Code RO 1360 i.drv_gpio_set_mode1 CVWL368.lib(drv_gpio.o) + 0x000156a8 0x000156a8 0x00000010 Code RO 1361 i.drv_gpio_set_mode2 CVWL368.lib(drv_gpio.o) + 0x000156b8 0x000156b8 0x00000010 Code RO 1362 i.drv_gpio_set_mode3 CVWL368.lib(drv_gpio.o) + 0x000156c8 0x000156c8 0x00000020 Code RO 720 i.drv_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x000156e8 0x000156e8 0x00000130 Code RO 1363 i.drv_gpio_set_pull_state CVWL368.lib(drv_gpio.o) + 0x00015818 0x00015818 0x0000000c Code RO 1455 i.drv_i2c0_set_callback CVWL368.lib(drv_i2c_slave.o) + 0x00015824 0x00015824 0x0000000c Code RO 1421 i.drv_i2c1_set_callback CVWL368.lib(drv_i2c_master.o) + 0x00015830 0x00015830 0x00000034 Code RO 1395 i.drv_i2c_dma_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015864 0x00015864 0x000000ac Code RO 1396 i.drv_i2c_dma_init CVWL368.lib(drv_i2c_dma.o) + 0x00015910 0x00015910 0x0000001a Code RO 1397 i.drv_i2c_enable_rx_dma CVWL368.lib(drv_i2c_dma.o) + 0x0001592a 0x0001592a 0x00000018 Code RO 1398 i.drv_i2c_enable_tx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015942 0x00015942 0x00000002 PAD + 0x00015944 0x00015944 0x00000060 Code RO 1423 i.drv_i2c_m_clear_it_pending_bit CVWL368.lib(drv_i2c_master.o) + 0x000159a4 0x000159a4 0x00000010 Code RO 1426 i.drv_i2c_m_enable CVWL368.lib(drv_i2c_master.o) + 0x000159b4 0x000159b4 0x00000038 Code RO 1427 i.drv_i2c_m_enable_intr CVWL368.lib(drv_i2c_master.o) + 0x000159ec 0x000159ec 0x0000008c Code RO 1433 i.drv_i2c_master_init CVWL368.lib(drv_i2c_master.o) + 0x00015a78 0x00015a78 0x0000005c Code RO 1399 i.drv_i2c_master_read_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015ad4 0x00015ad4 0x0000003c Code RO 1400 i.drv_i2c_master_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015b10 0x00015b10 0x0000002e Code RO 1401 i.drv_i2c_master_write_read_cmd CVWL368.lib(drv_i2c_dma.o) + 0x00015b3e 0x00015b3e 0x00000042 Code RO 1456 i.drv_i2c_s_clear_it_pending_bit CVWL368.lib(drv_i2c_slave.o) + 0x00015b80 0x00015b80 0x00000004 Code RO 1457 i.drv_i2c_s_config_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015b84 0x00015b84 0x00000008 Code RO 1458 i.drv_i2c_s_enable CVWL368.lib(drv_i2c_slave.o) + 0x00015b8c 0x00015b8c 0x00000014 Code RO 1459 i.drv_i2c_s_get_fifo_status CVWL368.lib(drv_i2c_slave.o) + 0x00015ba0 0x00015ba0 0x00000050 Code RO 1462 i.drv_i2c_s_set_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015bf0 0x00015bf0 0x0000001c Code RO 1463 i.drv_i2c_s_write_data CVWL368.lib(drv_i2c_slave.o) + 0x00015c0c 0x00015c0c 0x00000058 Code RO 1402 i.drv_i2c_set_dma_irq_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015c64 0x00015c64 0x00000032 Code RO 1464 i.drv_i2c_slave_init CVWL368.lib(drv_i2c_slave.o) + 0x00015c96 0x00015c96 0x00000002 PAD + 0x00015c98 0x00015c98 0x00000018 Code RO 1403 i.drv_i2c_slave_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015cb0 0x00015cb0 0x00000018 Code RO 1968 i.drv_lcdc_config_bypass CVWL368.lib(drv_lcdc.o) + 0x00015cc8 0x00015cc8 0x00000030 Code RO 1969 i.drv_lcdc_config_ccm CVWL368.lib(drv_lcdc.o) + 0x00015cf8 0x00015cf8 0x00000016 Code RO 1970 i.drv_lcdc_config_disp_mode CVWL368.lib(drv_lcdc.o) + 0x00015d0e 0x00015d0e 0x00000024 Code RO 1971 i.drv_lcdc_config_dpi_polarity CVWL368.lib(drv_lcdc.o) + 0x00015d32 0x00015d32 0x00000026 Code RO 1972 i.drv_lcdc_config_dpi_timing CVWL368.lib(drv_lcdc.o) + 0x00015d58 0x00015d58 0x00000016 Code RO 1973 i.drv_lcdc_config_edpi_mode CVWL368.lib(drv_lcdc.o) + 0x00015d6e 0x00015d6e 0x00000016 Code RO 1974 i.drv_lcdc_config_endianness CVWL368.lib(drv_lcdc.o) + 0x00015d84 0x00015d84 0x0000000c Code RO 1975 i.drv_lcdc_config_input_size CVWL368.lib(drv_lcdc.o) + 0x00015d90 0x00015d90 0x0000001e Code RO 1976 i.drv_lcdc_config_int CVWL368.lib(drv_lcdc.o) + 0x00015dae 0x00015dae 0x00000022 Code RO 1977 i.drv_lcdc_config_int_single CVWL368.lib(drv_lcdc.o) + 0x00015dd0 0x00015dd0 0x00000022 Code RO 1978 i.drv_lcdc_config_overwrite CVWL368.lib(drv_lcdc.o) + 0x00015df2 0x00015df2 0x0000000c Code RO 1979 i.drv_lcdc_config_overwrite_rgb CVWL368.lib(drv_lcdc.o) + 0x00015dfe 0x00015dfe 0x0000001a Code RO 1980 i.drv_lcdc_config_partial_display_area CVWL368.lib(drv_lcdc.o) + 0x00015e18 0x00015e18 0x00000022 Code RO 1981 i.drv_lcdc_config_partial_display_enable CVWL368.lib(drv_lcdc.o) + 0x00015e3a 0x00015e3a 0x0000001a Code RO 1983 i.drv_lcdc_config_scale_up_coef CVWL368.lib(drv_lcdc.o) + 0x00015e54 0x00015e54 0x0000000c Code RO 1984 i.drv_lcdc_config_scale_up_step CVWL368.lib(drv_lcdc.o) + 0x00015e60 0x00015e60 0x0000004c Code RO 1985 i.drv_lcdc_config_src_parameter CVWL368.lib(drv_lcdc.o) + 0x00015eac 0x00015eac 0x00000006 Code RO 1986 i.drv_lcdc_config_thresh CVWL368.lib(drv_lcdc.o) + 0x00015eb2 0x00015eb2 0x00000012 Code RO 1987 i.drv_lcdc_ctrl_flow CVWL368.lib(drv_lcdc.o) + 0x00015ec4 0x00015ec4 0x00000020 Code RO 1989 i.drv_lcdc_enable_shadow_reg CVWL368.lib(drv_lcdc.o) + 0x00015ee4 0x00015ee4 0x00000040 Code RO 1990 i.drv_lcdc_set_int CVWL368.lib(drv_lcdc.o) + 0x00015f24 0x00015f24 0x00000018 Code RO 1991 i.drv_lcdc_set_prefetch CVWL368.lib(drv_lcdc.o) + 0x00015f3c 0x00015f3c 0x00000014 Code RO 1992 i.drv_lcdc_set_video_hw_mode CVWL368.lib(drv_lcdc.o) + 0x00015f50 0x00015f50 0x00000020 Code RO 1993 i.drv_lcdc_start CVWL368.lib(drv_lcdc.o) + 0x00015f70 0x00015f70 0x0000000c Code RO 2027 i.drv_memc_clear_status CVWL368.lib(drv_memc.o) + 0x00015f7c 0x00015f7c 0x00000040 Code RO 2028 i.drv_memc_enable_irq CVWL368.lib(drv_memc.o) + 0x00015fbc 0x00015fbc 0x0000000c Code RO 2029 i.drv_memc_gen_a_tear_signal CVWL368.lib(drv_memc.o) + 0x00015fc8 0x00015fc8 0x00000012 Code RO 2030 i.drv_memc_get_status CVWL368.lib(drv_memc.o) + 0x00015fda 0x00015fda 0x00000010 Code RO 2031 i.drv_memc_rate_transfer_sel CVWL368.lib(drv_memc.o) + 0x00015fea 0x00015fea 0x0000000e Code RO 2032 i.drv_memc_sel_vsync CVWL368.lib(drv_memc.o) + 0x00015ff8 0x00015ff8 0x00000014 Code RO 2033 i.drv_memc_set_active_height CVWL368.lib(drv_memc.o) + 0x0001600c 0x0001600c 0x0000000c Code RO 2034 i.drv_memc_set_data_mode CVWL368.lib(drv_memc.o) + 0x00016018 0x00016018 0x00000010 Code RO 2037 i.drv_memc_set_double_buffer CVWL368.lib(drv_memc.o) + 0x00016028 0x00016028 0x00000012 Code RO 2038 i.drv_memc_set_double_buffer_reverse CVWL368.lib(drv_memc.o) + 0x0001603a 0x0001603a 0x00000010 Code RO 2040 i.drv_memc_set_fs_en_conditions CVWL368.lib(drv_memc.o) + 0x0001604a 0x0001604a 0x00000014 Code RO 2041 i.drv_memc_set_inten CVWL368.lib(drv_memc.o) + 0x0001605e 0x0001605e 0x00000002 PAD + 0x00016060 0x00016060 0x00000018 Code RO 2042 i.drv_memc_set_lcdc_st_conditions CVWL368.lib(drv_memc.o) + 0x00016078 0x00016078 0x0000001a Code RO 2043 i.drv_memc_set_ltpo_mode CVWL368.lib(drv_memc.o) + 0x00016092 0x00016092 0x0000000e Code RO 2047 i.drv_memc_set_tear_mode CVWL368.lib(drv_memc.o) + 0x000160a0 0x000160a0 0x00000028 Code RO 2048 i.drv_memc_set_tear_waveform CVWL368.lib(drv_memc.o) + 0x000160c8 0x000160c8 0x0000000e Code RO 2050 i.drv_memc_set_vidc_sync_cnt CVWL368.lib(drv_memc.o) + 0x000160d6 0x000160d6 0x00000002 PAD + 0x000160d8 0x000160d8 0x00000008 Code RO 1481 i.drv_param_init_get_ccm CVWL368.lib(drv_param_init.o) + 0x000160e0 0x000160e0 0x00000014 Code RO 1482 i.drv_param_init_get_scld_filter_h CVWL368.lib(drv_param_init.o) + 0x000160f4 0x000160f4 0x00000014 Code RO 1483 i.drv_param_init_get_scld_filter_v CVWL368.lib(drv_param_init.o) + 0x00016108 0x00016108 0x00000008 Code RO 1484 i.drv_param_init_get_sclu_filter CVWL368.lib(drv_param_init.o) + 0x00016110 0x00016110 0x00000014 Code RO 1485 i.drv_param_init_set_ccm CVWL368.lib(drv_param_init.o) + 0x00016124 0x00016124 0x00000064 Code RO 1486 i.drv_param_init_set_scld_filter CVWL368.lib(drv_param_init.o) + 0x00016188 0x00016188 0x00000024 Code RO 1488 i.drv_param_p2r_filter_init CVWL368.lib(drv_param_init.o) + 0x000161ac 0x000161ac 0x00000010 Code RO 2321 i.drv_phy_enable_calibration CVWL368.lib(drv_phy_common.o) + 0x000161bc 0x000161bc 0x0000003c Code RO 2322 i.drv_phy_get_calibration CVWL368.lib(drv_phy_common.o) + 0x000161f8 0x000161f8 0x00000060 Code RO 2323 i.drv_phy_get_pll_para CVWL368.lib(drv_phy_common.o) + 0x00016258 0x00016258 0x00000054 Code RO 2324 i.drv_phy_get_rate_para CVWL368.lib(drv_phy_common.o) + 0x000162ac 0x000162ac 0x00000010 Code RO 2325 i.drv_phy_test_clear CVWL368.lib(drv_phy_common.o) + 0x000162bc 0x000162bc 0x00000018 Code RO 2326 i.drv_phy_test_lock CVWL368.lib(drv_phy_common.o) + 0x000162d4 0x000162d4 0x00000020 Code RO 2328 i.drv_phy_test_write_1_byte CVWL368.lib(drv_phy_common.o) + 0x000162f4 0x000162f4 0x00000026 Code RO 2329 i.drv_phy_test_write_2_byte CVWL368.lib(drv_phy_common.o) + 0x0001631a 0x0001631a 0x0000001e Code RO 2330 i.drv_phy_test_write_code CVWL368.lib(drv_phy_common.o) + 0x00016338 0x00016338 0x00000020 Code RO 2331 i.drv_phy_test_write_data CVWL368.lib(drv_phy_common.o) + 0x00016358 0x00016358 0x00000020 Code RO 1543 i.drv_pwr_set_cp_mode CVWL368.lib(drv_pwr.o) + 0x00016378 0x00016378 0x00000018 Code RO 1545 i.drv_pwr_set_pvd_mode CVWL368.lib(drv_pwr.o) + 0x00016390 0x00016390 0x00000038 Code RO 1546 i.drv_pwr_set_system_clk_src CVWL368.lib(drv_pwr.o) + 0x000163c8 0x000163c8 0x0000000c Code RO 1819 i.drv_rx_phy_test_clear CVWL368.lib(drv_dsi_rx.o) + 0x000163d4 0x000163d4 0x00000010 Code RO 1820 i.drv_rx_phy_test_lock CVWL368.lib(drv_dsi_rx.o) + 0x000163e4 0x000163e4 0x00000014 Code RO 1822 i.drv_rx_phy_test_write_1_byte CVWL368.lib(drv_dsi_rx.o) + 0x000163f8 0x000163f8 0x00000016 Code RO 1823 i.drv_rx_phy_test_write_2_byte CVWL368.lib(drv_dsi_rx.o) + 0x0001640e 0x0001640e 0x0000000a Code RO 2086 i.drv_rxbr_clear_pkt_buffer CVWL368.lib(drv_rxbr.o) + 0x00016418 0x00016418 0x00000004 Code RO 2087 i.drv_rxbr_clear_status0 CVWL368.lib(drv_rxbr.o) + 0x0001641c 0x0001641c 0x0000005a Code RO 2089 i.drv_rxbr_enable_irq CVWL368.lib(drv_rxbr.o) + 0x00016476 0x00016476 0x00000002 PAD + 0x00016478 0x00016478 0x00000014 Code RO 2090 i.drv_rxbr_frame_drop_cfg CVWL368.lib(drv_rxbr.o) + 0x0001648c 0x0001648c 0x00000064 Code RO 2091 i.drv_rxbr_get_clk CVWL368.lib(drv_rxbr.o) + 0x000164f0 0x000164f0 0x00000004 Code RO 2092 i.drv_rxbr_get_col_addr CVWL368.lib(drv_rxbr.o) + 0x000164f4 0x000164f4 0x00000012 Code RO 1705 i.drv_rxbr_get_int_source CVWL368.lib(hal_internal_vsync.o) + 0x00016506 0x00016506 0x00000004 Code RO 2095 i.drv_rxbr_get_page_addr CVWL368.lib(drv_rxbr.o) + 0x0001650a 0x0001650a 0x00000012 Code RO 1706 i.drv_rxbr_get_status0 CVWL368.lib(hal_internal_vsync.o) + 0x0001651c 0x0001651c 0x0000000c Code RO 2097 i.drv_rxbr_hline_rcv0_cfg CVWL368.lib(drv_rxbr.o) + 0x00016528 0x00016528 0x00000008 Code RO 2098 i.drv_rxbr_hline_rcv_cfg CVWL368.lib(drv_rxbr.o) + 0x00016530 0x00016530 0x0000000c Code RO 2099 i.drv_rxbr_register_irq0_callback CVWL368.lib(drv_rxbr.o) + 0x0001653c 0x0001653c 0x0000000c Code RO 2100 i.drv_rxbr_register_irq1_callback CVWL368.lib(drv_rxbr.o) + 0x00016548 0x00016548 0x00000014 Code RO 2101 i.drv_rxbr_set_ack_pkt_header CVWL368.lib(drv_rxbr.o) + 0x0001655c 0x0001655c 0x000000cc Code RO 2102 i.drv_rxbr_set_cmd_filter CVWL368.lib(drv_rxbr.o) + 0x00016628 0x00016628 0x00000014 Code RO 2104 i.drv_rxbr_set_color_format CVWL368.lib(drv_rxbr.o) + 0x0001663c 0x0001663c 0x00000014 Code RO 2106 i.drv_rxbr_set_inten CVWL368.lib(drv_rxbr.o) + 0x00016650 0x00016650 0x00000010 Code RO 2107 i.drv_rxbr_set_ltpo_drop_th CVWL368.lib(drv_rxbr.o) + 0x00016660 0x00016660 0x00000026 Code RO 2109 i.drv_rxbr_set_usr_cfg CVWL368.lib(drv_rxbr.o) + 0x00016686 0x00016686 0x00000008 Code RO 2110 i.drv_rxbr_set_usr_col CVWL368.lib(drv_rxbr.o) + 0x0001668e 0x0001668e 0x00000008 Code RO 2111 i.drv_rxbr_set_usr_row CVWL368.lib(drv_rxbr.o) + 0x00016696 0x00016696 0x00000002 PAD + 0x00016698 0x00016698 0x00000020 Code RO 1591 i.drv_spi_m_read_data CVWL368.lib(drv_spi_master.o) + 0x000166b8 0x000166b8 0x0000001c Code RO 1616 i.drv_swire_enable CVWL368.lib(drv_swire.o) + 0x000166d4 0x000166d4 0x00000054 Code RO 1619 i.drv_swire_set_int CVWL368.lib(drv_swire.o) + 0x00016728 0x00016728 0x0000001c Code RO 1620 i.drv_swire_set_power_down CVWL368.lib(drv_swire.o) + 0x00016744 0x00016744 0x0000000c Code RO 1635 i.drv_sys_cfg_clear_all_int CVWL368.lib(drv_sys_cfg.o) + 0x00016750 0x00016750 0x00000028 Code RO 1636 i.drv_sys_cfg_clear_pending CVWL368.lib(drv_sys_cfg.o) + 0x00016778 0x00016778 0x00000018 Code RO 1639 i.drv_sys_cfg_sel_ap_rst_lvl_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016790 0x00016790 0x0000001c Code RO 1640 i.drv_sys_cfg_sel_ap_rst_trig CVWL368.lib(drv_sys_cfg.o) + 0x000167ac 0x000167ac 0x00000024 Code RO 1641 i.drv_sys_cfg_sel_gpio_group CVWL368.lib(drv_sys_cfg.o) + 0x000167d0 0x000167d0 0x00000024 Code RO 1642 i.drv_sys_cfg_sel_int_trig CVWL368.lib(drv_sys_cfg.o) + 0x000167f4 0x000167f4 0x00000010 Code RO 1644 i.drv_sys_cfg_set_dma_rx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016804 0x00016804 0x00000010 Code RO 1645 i.drv_sys_cfg_set_dma_tx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016814 0x00016814 0x00000024 Code RO 1646 i.drv_sys_cfg_set_int CVWL368.lib(drv_sys_cfg.o) + 0x00016838 0x00016838 0x0000001a Code RO 1669 i.drv_timer_clear_status_flags CVWL368.lib(drv_timer.o) + 0x00016852 0x00016852 0x00000020 Code RO 1670 i.drv_timer_enable CVWL368.lib(drv_timer.o) + 0x00016872 0x00016872 0x00000002 PAD + 0x00016874 0x00016874 0x00000010 Code RO 1671 i.drv_timer_get_instance CVWL368.lib(drv_timer.o) + 0x00016884 0x00016884 0x00000010 Code RO 1672 i.drv_timer_get_prescaler CVWL368.lib(drv_timer.o) + 0x00016894 0x00016894 0x00000044 Code RO 1674 i.drv_timer_handle_interrupt CVWL368.lib(drv_timer.o) + 0x000168d8 0x000168d8 0x00000014 Code RO 1675 i.drv_timer_register_callback CVWL368.lib(drv_timer.o) + 0x000168ec 0x000168ec 0x00000010 Code RO 1676 i.drv_timer_set_compare_val CVWL368.lib(drv_timer.o) + 0x000168fc 0x000168fc 0x00000054 Code RO 1677 i.drv_timer_set_int CVWL368.lib(drv_timer.o) + 0x00016950 0x00016950 0x00000028 Code RO 1678 i.drv_timer_set_prescaler CVWL368.lib(drv_timer.o) + 0x00016978 0x00016978 0x00000010 Code RO 1679 i.drv_timer_set_repeat CVWL368.lib(drv_timer.o) + 0x00016988 0x00016988 0x0000000a Code RO 1902 i.drv_tx_phy_test_clear CVWL368.lib(drv_dsi_tx.o) + 0x00016992 0x00016992 0x0000001c Code RO 1903 i.drv_tx_phy_test_enter CVWL368.lib(drv_dsi_tx.o) + 0x000169ae 0x000169ae 0x0000001c Code RO 1904 i.drv_tx_phy_test_exit CVWL368.lib(drv_dsi_tx.o) + 0x000169ca 0x000169ca 0x00000012 Code RO 1906 i.drv_tx_phy_test_write_1_byte CVWL368.lib(drv_dsi_tx.o) + 0x000169dc 0x000169dc 0x00000014 Code RO 1907 i.drv_tx_phy_test_write_2_byte CVWL368.lib(drv_dsi_tx.o) + 0x000169f0 0x000169f0 0x00000010 Code RO 1908 i.drv_tx_phy_test_write_code CVWL368.lib(drv_dsi_tx.o) + 0x00016a00 0x00016a00 0x00000008 Code RO 2150 i.drv_vidc_clear_irq CVWL368.lib(drv_vidc.o) + 0x00016a08 0x00016a08 0x00000018 Code RO 2154 i.drv_vidc_enable CVWL368.lib(drv_vidc.o) + 0x00016a20 0x00016a20 0x00000040 Code RO 2155 i.drv_vidc_enable_irq CVWL368.lib(drv_vidc.o) + 0x00016a60 0x00016a60 0x00000012 Code RO 2157 i.drv_vidc_get_irq_status CVWL368.lib(drv_vidc.o) + 0x00016a72 0x00016a72 0x00000002 PAD + 0x00016a74 0x00016a74 0x00000028 Code RO 2161 i.drv_vidc_init_module_enable CVWL368.lib(drv_vidc.o) + 0x00016a9c 0x00016a9c 0x0000000c Code RO 2162 i.drv_vidc_register_callback CVWL368.lib(drv_vidc.o) + 0x00016aa8 0x00016aa8 0x00000006 Code RO 2163 i.drv_vidc_reset CVWL368.lib(drv_vidc.o) + 0x00016aae 0x00016aae 0x0000003c Code RO 2165 i.drv_vidc_set_dst_parameter CVWL368.lib(drv_vidc.o) + 0x00016aea 0x00016aea 0x00000014 Code RO 2169 i.drv_vidc_set_irqen CVWL368.lib(drv_vidc.o) + 0x00016afe 0x00016afe 0x00000010 Code RO 2170 i.drv_vidc_set_mirror CVWL368.lib(drv_vidc.o) + 0x00016b0e 0x00016b0e 0x00000008 Code RO 2173 i.drv_vidc_set_p2r_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016b16 0x00016b16 0x00000026 Code RO 2174 i.drv_vidc_set_p2r_hinitb CVWL368.lib(drv_vidc.o) + 0x00016b3c 0x00016b3c 0x00000026 Code RO 2175 i.drv_vidc_set_p2r_hinitr CVWL368.lib(drv_vidc.o) + 0x00016b62 0x00016b62 0x00000002 PAD + 0x00016b64 0x00016b64 0x00000018 Code RO 2176 i.drv_vidc_set_pentile_swap CVWL368.lib(drv_vidc.o) + 0x00016b7c 0x00016b7c 0x0000000a Code RO 2177 i.drv_vidc_set_pu_ctrl CVWL368.lib(drv_vidc.o) + 0x00016b86 0x00016b86 0x00000010 Code RO 2178 i.drv_vidc_set_rotation CVWL368.lib(drv_vidc.o) + 0x00016b96 0x00016b96 0x0000000a Code RO 2179 i.drv_vidc_set_scld_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016ba0 0x00016ba0 0x0000000a Code RO 2180 i.drv_vidc_set_scld_hcoef1 CVWL368.lib(drv_vidc.o) + 0x00016baa 0x00016baa 0x00000012 Code RO 2181 i.drv_vidc_set_scld_step CVWL368.lib(drv_vidc.o) + 0x00016bbc 0x00016bbc 0x0000000a Code RO 2182 i.drv_vidc_set_scld_vcoef0 CVWL368.lib(drv_vidc.o) + 0x00016bc6 0x00016bc6 0x0000000a Code RO 2183 i.drv_vidc_set_scld_vcoef1 CVWL368.lib(drv_vidc.o) + 0x00016bd0 0x00016bd0 0x00000016 Code RO 2184 i.drv_vidc_set_src_parameter CVWL368.lib(drv_vidc.o) + 0x00016be6 0x00016be6 0x00000002 PAD + 0x00016be8 0x00016be8 0x00000010 Code RO 2560 i.drv_wdg_clear_counter CVWL368.lib(drv_wdg.o) + 0x00016bf8 0x00016bf8 0x00000010 Code RO 2561 i.drv_wdg_clear_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016c08 0x00016c08 0x00000010 Code RO 2564 i.drv_wdg_read_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016c18 0x00016c18 0x00000040 Code RO 2567 i.drv_wdg_set_int CVWL368.lib(drv_wdg.o) + 0x00016c58 0x00016c58 0x0000000a Code RO 1264 i.fls_clr_interrupt_flag CVWL368.lib(drv_fls.o) + 0x00016c62 0x00016c62 0x00000014 Code RO 978 i.fputc CVWL368.lib(tau_log.o) + 0x00016c76 0x00016c76 0x00000002 PAD + 0x00016c78 0x00016c78 0x00000034 Code RO 523 i.hal_dsi_rx_ctrl_create_handle CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016cac 0x00016cac 0x0000009c Code RO 525 i.hal_dsi_rx_ctrl_deinit CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016d48 0x00016d48 0x00000084 Code RO 527 i.hal_dsi_rx_ctrl_dsc_async_handler CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016dcc 0x00016dcc 0x00000028 Code RO 529 i.hal_dsi_rx_ctrl_gen_a_tear_signal CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016df4 0x00016df4 0x00000010 Code RO 530 i.hal_dsi_rx_ctrl_get_compressen_en CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e04 0x00016e04 0x00000028 Code RO 531 i.hal_dsi_rx_ctrl_get_max_ret_size CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e2c 0x00016e2c 0x00000060 Code RO 533 i.hal_dsi_rx_ctrl_init CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016e8c 0x00016e8c 0x000001a4 Code RO 534 i.hal_dsi_rx_ctrl_init_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017030 0x00017030 0x000000d8 Code RO 535 i.hal_dsi_rx_ctrl_init_dsi_rx CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017108 0x00017108 0x00000158 Code RO 536 i.hal_dsi_rx_ctrl_init_memc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017260 0x00017260 0x00000138 Code RO 537 i.hal_dsi_rx_ctrl_init_rxbr CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017398 0x00017398 0x00000230 Code RO 538 i.hal_dsi_rx_ctrl_init_vidc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000175c8 0x000175c8 0x000000f0 Code RO 542 i.hal_dsi_rx_ctrl_send_ack_cmd CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000176b8 0x000176b8 0x0000006c Code RO 545 i.hal_dsi_rx_ctrl_set_cus_scld_filter CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017724 0x00017724 0x00000034 Code RO 546 i.hal_dsi_rx_ctrl_set_cus_sync_line CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017758 0x00017758 0x00000038 Code RO 550 i.hal_dsi_rx_ctrl_set_ipi_cfg CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017790 0x00017790 0x00000072 Code RO 555 i.hal_dsi_rx_ctrl_set_rxbr_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017802 0x00017802 0x00000002 PAD + 0x00017804 0x00017804 0x00000034 Code RO 556 i.hal_dsi_rx_ctrl_set_sw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017838 0x00017838 0x0000000e Code RO 558 i.hal_dsi_rx_ctrl_set_tear_mode_ex CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017846 0x00017846 0x00000002 PAD + 0x00017848 0x00017848 0x0000003c Code RO 559 i.hal_dsi_rx_ctrl_start CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017884 0x00017884 0x0000003c Code RO 560 i.hal_dsi_rx_ctrl_stop CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000178c0 0x000178c0 0x00000020 Code RO 563 i.hal_dsi_rx_ctrl_toggle_resolution_ex CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000178e0 0x000178e0 0x00000190 Code RO 616 i.hal_dsi_tx_calc_video_chunks CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017a70 0x00017a70 0x00000034 Code RO 617 i.hal_dsi_tx_config_params_for_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017aa4 0x00017aa4 0x00000450 Code RO 618 i.hal_dsi_tx_count_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ef4 0x00017ef4 0x0000002c Code RO 621 i.hal_dsi_tx_ctrl_create_handle CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017f20 0x00017f20 0x00000084 Code RO 622 i.hal_dsi_tx_ctrl_deinit CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017fa4 0x00017fa4 0x0000004c Code RO 626 i.hal_dsi_tx_ctrl_enter_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017ff0 0x00017ff0 0x00000028 Code RO 628 i.hal_dsi_tx_ctrl_exit_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018018 0x00018018 0x000000a4 Code RO 630 i.hal_dsi_tx_ctrl_init CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180bc 0x000180bc 0x00000024 Code RO 631 i.hal_dsi_tx_ctrl_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180e0 0x000180e0 0x0000000c Code RO 632 i.hal_dsi_tx_ctrl_panel_reset_pin CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000180ec 0x000180ec 0x0000008c Code RO 633 i.hal_dsi_tx_ctrl_read_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018178 0x00018178 0x00000020 Code RO 635 i.hal_dsi_tx_ctrl_set_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018198 0x00018198 0x00000014 Code RO 641 i.hal_dsi_tx_ctrl_set_overwrite_rgb CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181ac 0x000181ac 0x00000010 Code RO 642 i.hal_dsi_tx_ctrl_set_partial_disp CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181bc 0x000181bc 0x00000024 Code RO 643 i.hal_dsi_tx_ctrl_set_partial_disp_area CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181e0 0x000181e0 0x0000009c Code RO 646 i.hal_dsi_tx_ctrl_start CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001827c 0x0001827c 0x00000044 Code RO 647 i.hal_dsi_tx_ctrl_stop CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000182c0 0x000182c0 0x000000d8 Code RO 648 i.hal_dsi_tx_ctrl_write_array_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018398 0x00018398 0x000000b0 Code RO 649 i.hal_dsi_tx_ctrl_write_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018448 0x00018448 0x00000044 Code RO 650 i.hal_dsi_tx_init_data_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001848c 0x0001848c 0x00000030 Code RO 651 i.hal_dsi_tx_init_dpi_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184bc 0x000184bc 0x00000020 Code RO 652 i.hal_dsi_tx_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184dc 0x000184dc 0x00000020 Code RO 653 i.hal_dsi_tx_init_phy_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000184fc 0x000184fc 0x00000094 Code RO 654 i.hal_dsi_tx_init_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018590 0x00018590 0x00000058 Code RO 655 i.hal_dsi_tx_init_video_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000185e8 0x000185e8 0x00000044 Code RO 656 i.hal_dsi_tx_send_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001862c 0x0001862c 0x00000018 Code RO 721 i.hal_gpio_ctrl_eint CVWL368.lib(hal_gpio.o) + 0x00018644 0x00018644 0x00000012 Code RO 722 i.hal_gpio_get_input_data CVWL368.lib(hal_gpio.o) + 0x00018656 0x00018656 0x00000002 PAD + 0x00018658 0x00018658 0x00000040 Code RO 725 i.hal_gpio_init_eint CVWL368.lib(hal_gpio.o) + 0x00018698 0x00018698 0x00000020 Code RO 726 i.hal_gpio_init_input CVWL368.lib(hal_gpio.o) + 0x000186b8 0x000186b8 0x00000028 Code RO 727 i.hal_gpio_init_output CVWL368.lib(hal_gpio.o) + 0x000186e0 0x000186e0 0x00000018 Code RO 728 i.hal_gpio_reg_eint_cb CVWL368.lib(hal_gpio.o) + 0x000186f8 0x000186f8 0x00000050 Code RO 729 i.hal_gpio_set_ap_reset_int CVWL368.lib(hal_gpio.o) + 0x00018748 0x00018748 0x00000060 Code RO 731 i.hal_gpio_set_mode CVWL368.lib(hal_gpio.o) + 0x000187a8 0x000187a8 0x00000008 Code RO 732 i.hal_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x000187b0 0x000187b0 0x00000020 Code RO 734 i.hal_gpio_set_pull_state CVWL368.lib(hal_gpio.o) + 0x000187d0 0x000187d0 0x0000006c Code RO 760 i.hal_i2c_m_dma_init CVWL368.lib(hal_i2c_master.o) + 0x0001883c 0x0001883c 0x00000020 Code RO 761 i.hal_i2c_m_dma_read CVWL368.lib(hal_i2c_master.o) + 0x0001885c 0x0001885c 0x0000001c Code RO 762 i.hal_i2c_m_dma_write CVWL368.lib(hal_i2c_master.o) + 0x00018878 0x00018878 0x0000000c Code RO 764 i.hal_i2c_m_transfer_complate CVWL368.lib(hal_i2c_master.o) + 0x00018884 0x00018884 0x00000020 Code RO 765 i.hal_i2c_master_irq_callback CVWL368.lib(hal_i2c_master.o) + 0x000188a4 0x000188a4 0x00000010 Code RO 779 i.hal_i2c_s_dma_user_callback CVWL368.lib(hal_i2c_slave.o) + 0x000188b4 0x000188b4 0x0000004c Code RO 780 i.hal_i2c_s_dma_write CVWL368.lib(hal_i2c_slave.o) + 0x00018900 0x00018900 0x000000c8 Code RO 782 i.hal_i2c_s_init CVWL368.lib(hal_i2c_slave.o) + 0x000189c8 0x000189c8 0x00000014 Code RO 783 i.hal_i2c_s_nonblocking_read CVWL368.lib(hal_i2c_slave.o) + 0x000189dc 0x000189dc 0x0000000c Code RO 791 i.hal_i2c_s_set_transfer CVWL368.lib(hal_i2c_slave.o) + 0x000189e8 0x000189e8 0x00000174 Code RO 794 i.hal_i2c_slave_irq_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018b5c 0x00018b5c 0x000000fc Code RO 1707 i.hal_internal_init_memc CVWL368.lib(hal_internal_vsync.o) + 0x00018c58 0x00018c58 0x00000010 Code RO 1709 i.hal_internal_sync_get_fb_setting CVWL368.lib(hal_internal_vsync.o) + 0x00018c68 0x00018c68 0x00000010 Code RO 1710 i.hal_internal_sync_get_hight_performan_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018c78 0x00018c78 0x000001d4 Code RO 1712 i.hal_internal_sync_input_resolution_change_ex CVWL368.lib(hal_internal_vsync.o) + 0x00018e4c 0x00018e4c 0x00000028 Code RO 1714 i.hal_internal_vsync_deinit CVWL368.lib(hal_internal_vsync.o) + 0x00018e74 0x00018e74 0x0000000c Code RO 1715 i.hal_internal_vsync_get_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018e80 0x00018e80 0x00000018 Code RO 1716 i.hal_internal_vsync_get_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00018e98 0x00018e98 0x0000000c Code RO 1717 i.hal_internal_vsync_get_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018ea4 0x00018ea4 0x0000000c Code RO 1718 i.hal_internal_vsync_get_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00018eb0 0x00018eb0 0x00000118 Code RO 1719 i.hal_internal_vsync_init_rx CVWL368.lib(hal_internal_vsync.o) + 0x00018fc8 0x00018fc8 0x000000b0 Code RO 1720 i.hal_internal_vsync_init_tx CVWL368.lib(hal_internal_vsync.o) + 0x00019078 0x00019078 0x0000011c Code RO 1721 i.hal_internal_vsync_set_auto_hw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00019194 0x00019194 0x00000014 Code RO 1723 i.hal_internal_vsync_set_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x000191a8 0x000191a8 0x00000024 Code RO 1724 i.hal_internal_vsync_set_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x000191cc 0x000191cc 0x00000050 Code RO 1725 i.hal_internal_vsync_set_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001921c 0x0001921c 0x00000080 Code RO 1726 i.hal_internal_vsync_set_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x0001929c 0x0001929c 0x00000024 Code RO 657 i.hal_lcdc_config_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000192c0 0x000192c0 0x00000058 Code RO 658 i.hal_lcdc_config_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019318 0x00019318 0x00000014 Code RO 659 i.hal_lcdc_config_rgb_to_pentile CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001932c 0x0001932c 0x00000164 Code RO 660 i.hal_lcdc_config_upscaler CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019490 0x00019490 0x00000054 Code RO 661 i.hal_lcdc_init_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000194e4 0x000194e4 0x00000190 Code RO 662 i.hal_lcdc_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019674 0x00019674 0x00000040 Code RO 663 i.hal_lcdc_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000196b4 0x000196b4 0x0000000e Code RO 872 i.hal_spi_m_clear_rxfifo CVWL368.lib(hal_spi_master.o) + 0x000196c2 0x000196c2 0x00000012 Code RO 896 i.hal_swire_deinit CVWL368.lib(hal_swire.o) + 0x000196d4 0x000196d4 0x00000016 Code RO 898 i.hal_swire_open CVWL368.lib(hal_swire.o) + 0x000196ea 0x000196ea 0x00000008 Code RO 913 i.hal_system_enable_systick CVWL368.lib(hal_system.o) + 0x000196f2 0x000196f2 0x00000002 PAD + 0x000196f4 0x000196f4 0x00000088 Code RO 919 i.hal_system_init CVWL368.lib(hal_system.o) + 0x0001977c 0x0001977c 0x0000001c Code RO 920 i.hal_system_init_console CVWL368.lib(hal_system.o) + 0x00019798 0x00019798 0x00000008 Code RO 923 i.hal_system_set_phy_calibration CVWL368.lib(hal_system.o) + 0x000197a0 0x000197a0 0x00000008 Code RO 924 i.hal_system_set_pvd CVWL368.lib(hal_system.o) + 0x000197a8 0x000197a8 0x00000008 Code RO 925 i.hal_system_set_vcc CVWL368.lib(hal_system.o) + 0x000197b0 0x000197b0 0x0000002e Code RO 950 i.hal_timer_deinit CVWL368.lib(hal_timer.o) + 0x000197de 0x000197de 0x0000001a Code RO 952 i.hal_timer_init CVWL368.lib(hal_timer.o) + 0x000197f8 0x000197f8 0x00000048 Code RO 954 i.hal_timer_start CVWL368.lib(hal_timer.o) + 0x00019840 0x00019840 0x00000028 Code RO 956 i.hal_timer_stop CVWL368.lib(hal_timer.o) + 0x00019868 0x00019868 0x0000008c Code RO 989 i.hal_uart_init CVWL368.lib(hal_uart.o) + 0x000198f4 0x000198f4 0x00000010 Code RO 992 i.hal_uart_transmit_blocking CVWL368.lib(hal_uart.o) + 0x00019904 0x00019904 0x000001dc Code RO 1728 i.hal_vsync_reset_lcdc_scaler CVWL368.lib(hal_internal_vsync.o) + 0x00019ae0 0x00019ae0 0x00000110 Code RO 2260 i.handle_init CVWL368.lib(irq_redirect .o) + 0x00019bf0 0x00019bf0 0x00000060 Code RO 113 i.init_mipi_tx ap_demo.o + 0x00019c50 0x00019c50 0x00000154 Code RO 114 i.init_panel ap_demo.o + 0x00019da4 0x00019da4 0x0000000a Code RO 3 i.main main.o + 0x00019dae 0x00019dae 0x00000002 PAD + 0x00019db0 0x00019db0 0x00000098 Code RO 115 i.open_mipi_rx ap_demo.o + 0x00019e48 0x00019e48 0x00000038 Code RO 116 i.pps_update_handle ap_demo.o + 0x00019e80 0x00019e80 0x000003f4 Code RO 1729 i.rx_get_dcs_packet_data CVWL368.lib(hal_internal_vsync.o) + 0x0001a274 0x0001a274 0x00000178 Code RO 1730 i.rx_partial_update CVWL368.lib(hal_internal_vsync.o) + 0x0001a3ec 0x0001a3ec 0x0000008c Code RO 1731 i.rx_receive_packet CVWL368.lib(hal_internal_vsync.o) + 0x0001a478 0x0001a478 0x00000180 Code RO 1732 i.rx_receive_pps CVWL368.lib(hal_internal_vsync.o) + 0x0001a5f8 0x0001a5f8 0x000000a4 Code RO 1733 i.rxbr_irq0_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a69c 0x0001a69c 0x000001b4 Code RO 1734 i.rxbr_irq1_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a850 0x0001a850 0x000000c4 Code RO 1735 i.soft_gen_te CVWL368.lib(hal_internal_vsync.o) + 0x0001a914 0x0001a914 0x000000c0 Code RO 1736 i.soft_gen_te_double_buffer CVWL368.lib(hal_internal_vsync.o) + 0x0001a9d4 0x0001a9d4 0x00000030 Code RO 117 i.soft_timer3_cb ap_demo.o + 0x0001aa04 0x0001aa04 0x00000048 Code RO 2587 i.sqrt m_ps.l(sqrt.o) + 0x0001aa4c 0x0001aa4c 0x00000108 Code RO 1737 i.vidc_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001ab54 0x0001ab54 0x000000d0 Code RO 1738 i.vpre_err_reset CVWL368.lib(hal_internal_vsync.o) + 0x0001ac24 0x0001ac24 0x000001cc Code RO 1739 i.vsync_set_te_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001adf0 0x0001adf0 0x00002755 Data RO 119 .constdata ap_demo.o + 0x0001d545 0x0001d545 0x00002066 Data RO 410 .constdata app_tp_for_custom_s8.o + 0x0001f5ab 0x0001f5ab 0x00000001 Data RO 423 .constdata app_tp_for_custom_s8.o + 0x0001f5ac 0x0001f5ac 0x00000024 Data RO 665 .constdata CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001f5d0 0x0001f5d0 0x000000d2 Data RO 737 .constdata CVWL368.lib(hal_gpio.o) + 0x0001f6a2 0x0001f6a2 0x00000002 PAD + 0x0001f6a4 0x0001f6a4 0x00000020 Data RO 795 .constdata CVWL368.lib(hal_i2c_slave.o) + 0x0001f6c4 0x0001f6c4 0x00000008 Data RO 1489 .constdata CVWL368.lib(drv_param_init.o) + 0x0001f6cc 0x0001f6cc 0x00000186 Data RO 2332 .constdata CVWL368.lib(drv_phy_common.o) + 0x0001f852 0x0001f852 0x00000002 PAD + 0x0001f854 0x0001f854 0x00000048 Data RO 565 .conststring CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001f89c 0x0001f89c 0x00000043 Data RO 666 .conststring CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001f8df 0x0001f8df 0x00000001 PAD + 0x0001f8e0 0x0001f8e0 0x000000e0 Data RO 1741 .conststring CVWL368.lib(hal_internal_vsync.o) + 0x0001f9c0 0x0001f9c0 0x00000030 Data RO 2949 Region$$Table anon$$obj.o + + + Execution Region RW_RAM1 (Exec base: 0x00070000, Load base: 0x0001f9f0, Size: 0x00000000, Max: 0x000000f0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM2 (Exec base: 0x00070100, Load base: 0x0001f9f0, Size: 0x000000c0, Max: 0x000000d0, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00070100 - 0x000000c0 Zero RW 2261 .ARM.__AT_0x00070100 CVWL368.lib(irq_redirect .o) + + + Execution Region RW_RAM3 (Exec base: 0x000701d0, Load base: 0x0001f9f0, Size: 0x00003900, Max: 0x00007e30, ABSOLUTE, COMPRESSED[0x0000054c]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x000701d0 COMPRESSED 0x0000022c Data RW 120 .data ap_demo.o + 0x000703fc COMPRESSED 0x0000002e Data RW 281 .data app_tp_transfer.o + 0x0007042a COMPRESSED 0x000000e4 Data RW 424 .data app_tp_for_custom_s8.o + 0x0007050e COMPRESSED 0x00000001 Data RW 427 .data app_tp_for_custom_s8.o + 0x0007050f COMPRESSED 0x00000001 Data RW 428 .data app_tp_for_custom_s8.o + 0x00070510 COMPRESSED 0x00000001 Data RW 433 .data app_tp_for_custom_s8.o + 0x00070511 COMPRESSED 0x00000003 Data RW 434 .data app_tp_for_custom_s8.o + 0x00070514 COMPRESSED 0x00000005 Data RW 435 .data app_tp_for_custom_s8.o + 0x00070519 COMPRESSED 0x00000003 PAD + 0x0007051c COMPRESSED 0x00000030 Data RW 445 .data app_tp_for_custom_s8.o + 0x0007054c COMPRESSED 0x00000008 Data RW 566 .data CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070554 COMPRESSED 0x00000003 Data RW 667 .data CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070557 COMPRESSED 0x00000001 Data RW 766 .data CVWL368.lib(hal_i2c_master.o) + 0x00070558 COMPRESSED 0x00000020 Data RW 796 .data CVWL368.lib(hal_i2c_slave.o) + 0x00070578 COMPRESSED 0x00000012 Data RW 1046 .data CVWL368.lib(norflash.o) + 0x0007058a COMPRESSED 0x00000002 PAD + 0x0007058c COMPRESSED 0x0000000c Data RW 1100 .data CVWL368.lib(drv_common.o) + 0x00070598 COMPRESSED 0x00000004 Data RW 1367 .data CVWL368.lib(drv_gpio.o) + 0x0007059c COMPRESSED 0x00000008 Data RW 1405 .data CVWL368.lib(drv_i2c_dma.o) + 0x000705a4 COMPRESSED 0x00000004 Data RW 1434 .data CVWL368.lib(drv_i2c_master.o) + 0x000705a8 COMPRESSED 0x00000004 Data RW 1465 .data CVWL368.lib(drv_i2c_slave.o) + 0x000705ac COMPRESSED 0x000004a4 Data RW 1490 .data CVWL368.lib(drv_param_init.o) + 0x00070a50 COMPRESSED 0x0000000c Data RW 1520 .data CVWL368.lib(drv_pwm.o) + 0x00070a5c COMPRESSED 0x00000004 Data RW 1596 .data CVWL368.lib(drv_spi_master.o) + 0x00070a60 COMPRESSED 0x00000008 Data RW 1622 .data CVWL368.lib(drv_swire.o) + 0x00070a68 COMPRESSED 0x00000001 Data RW 1647 .data CVWL368.lib(drv_sys_cfg.o) + 0x00070a69 COMPRESSED 0x00000003 PAD + 0x00070a6c COMPRESSED 0x00000050 Data RW 1680 .data CVWL368.lib(drv_timer.o) + 0x00070abc COMPRESSED 0x0000000c Data RW 1742 .data CVWL368.lib(hal_internal_vsync.o) + 0x00070ac8 COMPRESSED 0x00000008 Data RW 2113 .data CVWL368.lib(drv_rxbr.o) + 0x00070ad0 COMPRESSED 0x00000004 Data RW 2186 .data CVWL368.lib(drv_vidc.o) + 0x00070ad4 COMPRESSED 0x00000001 Data RW 2333 .data CVWL368.lib(drv_phy_common.o) + 0x00070ad5 COMPRESSED 0x00000003 PAD + 0x00070ad8 COMPRESSED 0x0000000c Data RW 2353 .data CVWL368.lib(drv_chip_info.o) + 0x00070ae4 COMPRESSED 0x00000008 Data RW 2502 .data CVWL368.lib(drv_uart.o) + 0x00070aec COMPRESSED 0x0000000c Data RW 2569 .data CVWL368.lib(drv_wdg.o) + 0x00070af8 COMPRESSED 0x00000004 Data RW 2918 .data mc_p.l(stdout.o) + 0x00070afc COMPRESSED 0x00000004 Data RW 2930 .data mc_p.l(errno.o) + 0x00070b00 - 0x00000190 Zero RW 280 .bss app_tp_transfer.o + 0x00070c90 - 0x000000c4 Zero RW 564 .bss CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070d54 - 0x0000004c Zero RW 664 .bss CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070da0 - 0x00000100 Zero RW 979 .bss CVWL368.lib(tau_log.o) + 0x00070ea0 - 0x000000d0 Zero RW 994 .bss CVWL368.lib(hal_uart.o) + 0x00070f70 - 0x0000001c Zero RW 1229 .bss CVWL368.lib(drv_dma.o) + 0x00070f8c - 0x00000040 Zero RW 1366 .bss CVWL368.lib(drv_gpio.o) + 0x00070fcc - 0x00000140 Zero RW 1404 .bss CVWL368.lib(drv_i2c_dma.o) + 0x0007110c - 0x00000970 Zero RW 1740 .bss CVWL368.lib(hal_internal_vsync.o) + 0x00071a7c - 0x00001030 Zero RW 1790 .bss CVWL368.lib(dcs_packet_fifo.o) + 0x00072aac - 0x00000020 Zero RW 2397 .bss CVWL368.lib(hal_spi_slave.o) + 0x00072acc COMPRESSED 0x00000004 PAD + 0x00072ad0 - 0x00001000 Zero RW 512 STACK startup_armcm0.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 4582 240 10069 556 0 32993 ap_demo.o + 1544 58 8295 287 0 13840 app_tp_for_custom_s8.o + 1128 106 0 46 400 12040 app_tp_transfer.o + 36 6 0 0 0 445 board.o + 10 0 0 0 0 9519 main.o + 120 18 192 0 4096 2032 startup_armcm0.o + + ---------------------------------------------------------------------- + 7428 428 18604 892 4496 70869 Object Totals + 0 0 48 0 0 0 (incl. Generated) + 8 0 0 3 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 216 32 0 0 4144 252 dcs_packet_fifo.o + 296 96 0 12 0 256 drv_chip_info.o + 192 82 24 12 0 264 drv_common.o + 420 90 0 0 0 1200 drv_crgu.o + 410 28 0 0 28 796 drv_dma.o + 232 28 0 0 0 340 drv_dsc_dec.o + 1644 494 0 0 0 1336 drv_dsi_rx.o + 1532 118 0 0 0 2488 drv_dsi_tx.o + 118 0 0 0 0 256 drv_efuse.o + 10 0 0 0 0 60 drv_fls.o + 796 112 0 4 64 1236 drv_gpio.o + 584 82 0 8 320 624 drv_i2c_dma.o + 360 86 0 4 0 456 drv_i2c_master.o + 292 36 0 4 0 580 drv_i2c_slave.o + 704 6 0 0 0 1504 drv_lcdc.o + 492 28 0 0 0 1112 drv_memc.o + 212 44 8 1188 0 452 drv_param_init.o + 428 30 390 1 0 664 drv_phy_common.o + 72 10 0 12 0 76 drv_pwm.o + 112 24 0 0 0 180 drv_pwr.o + 722 84 0 8 0 1456 drv_rxbr.o + 104 24 0 4 0 188 drv_spi_master.o + 172 20 0 8 0 260 drv_swire.o + 300 64 0 1 0 628 drv_sys_cfg.o + 374 34 0 80 0 932 drv_timer.o + 698 18 0 8 0 680 drv_uart.o + 510 28 0 4 0 1452 drv_vidc.o + 168 22 0 12 0 316 drv_wdg.o + 3198 318 72 8 196 1680 hal_dsi_rx_ctrl.o + 4452 308 103 3 76 2492 hal_dsi_tx_ctrl.o + 450 48 210 0 0 752 hal_gpio.o + 212 40 0 1 0 340 hal_i2c_master.o + 696 72 32 32 0 408 hal_i2c_slave.o + 7862 1614 224 12 2416 2556 hal_internal_vsync.o + 14 0 0 0 0 68 hal_spi_master.o + 580 32 0 0 32 136 hal_spi_slave.o + 40 0 0 0 0 136 hal_swire.o + 196 32 0 0 0 408 hal_system.o + 184 6 0 0 0 276 hal_timer.o + 156 18 0 0 208 144 hal_uart.o + 1076 324 0 0 192 1980 irq_redirect .o + 48 10 0 18 0 68 norflash.o + 58 0 0 0 0 128 tau_delay.o + 60 10 0 0 256 156 tau_log.o + 200 20 0 0 0 76 ceil.o + 72 6 0 0 0 76 sqrt.o + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 12 6 0 4 0 60 errno.o + 30 0 0 0 0 0 handlers.o + 40 0 0 0 0 72 idiv.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 32 0 0 0 0 68 llshl.o + 38 0 0 0 0 68 llsshr.o + 34 0 0 0 0 68 llushr.o + 36 0 0 0 0 60 memcpya.o + 36 0 0 0 0 100 memseta.o + 2298 104 0 0 0 544 printfa.o + 0 0 0 4 0 0 stdout.o + 44 0 0 0 0 72 uidiv.o + 96 0 0 0 0 84 uldiv.o + 40 2 0 0 0 68 cdcmple.o + 40 2 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfrcmple.o + 356 4 0 0 0 140 dadd.o + 240 6 0 0 0 84 ddiv.o + 236 0 0 0 0 216 depilogue.o + 72 10 0 0 0 72 dfixi.o + 60 10 0 0 0 68 dfixui.o + 64 10 0 0 0 68 dfixul.o + 28 4 0 0 0 68 dfltui.o + 208 6 0 0 0 88 dmul.o + 162 0 0 0 0 80 dsqrt.o + 40 0 0 0 0 60 f2d.o + 178 0 0 0 0 108 fadd.o + 124 0 0 0 0 72 fdiv.o + 130 0 0 0 0 144 fepilogue.o + 50 0 0 0 0 60 ffixi.o + 40 0 0 0 0 60 ffixui.o + 22 0 0 0 0 68 fflti.o + 14 0 0 0 0 68 ffltui.o + 122 0 0 0 0 72 fmul.o + 24 0 0 0 0 60 fscalb.o + + ---------------------------------------------------------------------- + 36884 4758 1068 1460 7936 35048 Library Totals + 52 0 5 8 4 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 31452 4552 1063 1444 7932 31772 CVWL368.lib + 272 26 0 0 0 152 m_ps.l + 2838 126 0 8 0 1264 mc_p.l + 2270 54 0 0 0 1860 mf_p.l + + ---------------------------------------------------------------------- + 36884 4758 1068 1460 7936 35048 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 44312 5186 19672 2352 12432 81917 Grand Totals + 44312 5186 19672 1356 12432 81917 ELF Image Totals (compressed) + 44312 5186 19672 1356 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 63984 ( 62.48kB) + Total RW Size (RW Data + ZI Data) 14784 ( 14.44kB) + Total ROM Size (Code + RO Data + RW Data) 65340 ( 63.81kB) + +============================================================================== + diff --git a/project/ISP_368/Listings/WL368_N10Lite.map b/project/ISP_368/Listings/WL368_N10Lite.map new file mode 100644 index 0000000..f89873b --- /dev/null +++ b/project/ISP_368/Listings/WL368_N10Lite.map @@ -0,0 +1,2735 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_te_timer_cb) for soft_te_timer_cb + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_53) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_get_reg_53) refers to app_tp_for_custom_s8.o(.data) for fingerprint_flag + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_reset_cb) refers to ap_demo.o(.conststring) for .conststring + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_display_off) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_set_display_off) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_display_on) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_tp_calibration_04) refers to ap_demo.o(.data) for .data + ap_demo.o(i.app_tp_calibration_exec) refers to app_tp_transfer.o(i.ap_tp_calibration) for ap_tp_calibration + ap_demo.o(i.app_tp_calibration_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) for hal_dsi_rx_ctrl_toggle_resolution + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) for hal_dsi_rx_ctrl_set_hw_tear_mode + ap_demo.o(i.soft_te_timer_cb) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + ap_demo.o(i.soft_te_timer_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_te_timer_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_tp_calibration_04) for ap_set_tp_calibration_04 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_53) for ap_get_reg_53 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) for hal_internal_vsync_toggle_input_frame_rate + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_update_dpi_param) for hal_internal_update_dpi_param + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_release_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_release_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_update_dpi_param) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fmul.o(.text) for __aeabi_fmul + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ceil.o(i.ceil) for ceil + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) for hal_internal_video_mode_auto_sync + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.app_tp_m_transfer_complate), (8 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (2 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (4 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (6 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en), (16 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter), (108 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex), (14 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (10 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic), (148 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd), (140 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (108 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_release_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_set_phy_calibration), (8 bytes). + Removing hal_system.o(i.hal_system_set_pvd), (8 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_scld_filter), (100 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex), (468 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate), (560 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr), (48 bytes). + Removing hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler), (476 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_set_prefetch), (24 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_enable_calibration), (16 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +593 unused section(s) (total 26340 bytes) removed from the image. diff --git a/project/ISP_368/Listings/WL368_S10LITE_HX667.map b/project/ISP_368/Listings/WL368_S10LITE_HX667.map new file mode 100644 index 0000000..ce47cd0 --- /dev/null +++ b/project/ISP_368/Listings/WL368_S10LITE_HX667.map @@ -0,0 +1,5377 @@ +Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed] + +============================================================================== + +Section Cross References + + main.o(i.main) refers to board.o(i.board_Init) for board_Init + main.o(i.main) refers to ap_demo.o(i.ap_demo) for ap_demo + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.Gpio_swire_output) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.Gpio_swire_output) refers to tau_delay.o(i.delayUs) for delayUs + ap_demo.o(i.PWM_OUTPUT_TEST) refers to ap_demo.o(i.test_pwm_out_adjust) for test_pwm_out_adjust + ap_demo.o(i.PWM_OUTPUT_TEST) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.PWM_Task) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.PWM_Task) refers to app_tp_for_custom_s8.o(.data) for Flag_blacklight_EN + ap_demo.o(i.PWM_Task) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) for hal_dsi_rx_ctrl_get_max_ret_size + ap_demo.o(i.ap_dcs_read) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) for hal_dsi_rx_ctrl_send_ack_cmd + ap_demo.o(i.ap_dcs_read) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.ap_dcs_read) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.open_mipi_rx) for open_mipi_rx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_I2C_init) for app_tp_I2C_init + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.init_mipi_tx) for init_mipi_tx + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_init) for app_tp_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_init) for hal_timer_init + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.tx_display_on) for tx_display_on + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_ap_reset_int) for hal_gpio_set_ap_reset_int + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_start) for app_tp_transfer_screen_start + ap_demo.o(i.ap_demo) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.app_tp_calibration_exec) for app_tp_calibration_exec + ap_demo.o(i.ap_demo) refers to app_tp_transfer.o(i.app_tp_transfer_screen_int) for app_tp_transfer_screen_int + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) for hal_dsi_tx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) for hal_dsi_tx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) for hal_dsi_rx_ctrl_stop + ap_demo.o(i.ap_demo) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) for hal_dsi_rx_ctrl_deinit + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_open) for hal_swire_open + ap_demo.o(i.ap_demo) refers to hal_swire.o(i.hal_swire_deinit) for hal_swire_deinit + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_stop) for hal_timer_stop + ap_demo.o(i.ap_demo) refers to hal_timer.o(i.hal_timer_deinit) for hal_timer_deinit + ap_demo.o(i.ap_demo) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.ap_demo) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.soft_timer3_cb) for soft_timer3_cb + ap_demo.o(i.ap_demo) refers to ap_demo.o(i.ap_reset_cb) for ap_reset_cb + ap_demo.o(i.ap_get_reg_df) refers to memcpya.o(.text) for __aeabi_memcpy4 + ap_demo.o(i.ap_get_reg_df) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) for hal_dsi_tx_ctrl_set_ccm + ap_demo.o(i.ap_get_reg_df) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_reset_cb) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_pvd) for hal_system_set_pvd + ap_demo.o(i.ap_reset_cb) refers to hal_system.o(i.hal_system_set_vcc) for hal_system_set_vcc + ap_demo.o(i.ap_set_backlight_51) refers to idiv.o(.text) for __aeabi_idivmod + ap_demo.o(i.ap_set_backlight_51) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_display_off) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) for hal_dsi_rx_ctrl_set_sw_tear_mode + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.ap_set_enter_sleep_mode) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.ap_set_enter_sleep_mode) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + ap_demo.o(i.ap_set_enter_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_set_exit_sleep_mode) refers to ap_demo.o(.data) for .data + ap_demo.o(i.ap_update_frame_rate) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) for hal_dsi_rx_ctrl_set_tear_mode_ex + ap_demo.o(i.ap_update_frame_rate) refers to ap_demo.o(.data) for .data + ap_demo.o(i.app_tp_calibration_exec) refers to app_tp_transfer.o(i.ap_tp_calibration) for ap_tp_calibration + ap_demo.o(i.app_tp_calibration_exec) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) for hal_dsi_tx_ctrl_create_handle + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + ap_demo.o(i.init_mipi_tx) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) for hal_dsi_tx_ctrl_set_overwrite_rgb + ap_demo.o(i.init_mipi_tx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.init_panel) refers to ap_demo.o(i.tx_panel_reset) for tx_panel_reset + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) for hal_dsi_tx_ctrl_enter_init_panel_mode + ap_demo.o(i.init_panel) refers to tau_log.o(i.LOG_printf) for LOG_printf + ap_demo.o(i.init_panel) refers to ap_demo.o(i.send_panel_init_code) for send_panel_init_code + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) for hal_dsi_tx_ctrl_read_cmd + ap_demo.o(i.init_panel) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.init_panel) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + ap_demo.o(i.init_panel) refers to ap_demo.o(i.Gpio_swire_output) for Gpio_swire_output + ap_demo.o(i.init_panel) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) for hal_dsi_tx_ctrl_exit_init_panel_mode + ap_demo.o(i.init_panel) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) for hal_dsi_rx_ctrl_create_handle + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) for hal_dsi_rx_ctrl_set_cus_sync_line + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) for hal_dsi_rx_ctrl_set_cus_scld_filter + ap_demo.o(i.open_mipi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.data) for .data + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(.constdata) for .constdata + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.ap_dcs_read) for ap_dcs_read + ap_demo.o(i.open_mipi_rx) refers to ap_demo.o(i.pps_update_handle) for pps_update_handle + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) for hal_dsi_rx_ctrl_get_compressen_en + ap_demo.o(i.pps_update_handle) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) for hal_dsi_rx_ctrl_toggle_resolution_ex + ap_demo.o(i.pps_update_handle) refers to ap_demo.o(.data) for .data + ap_demo.o(i.send_panel_init_code) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) for hal_dsi_tx_ctrl_write_array_cmd + ap_demo.o(i.soft_timer3_cb) refers to hal_timer.o(i.hal_timer_start) for hal_timer_start + ap_demo.o(i.soft_timer3_cb) refers to app_tp_for_custom_s8.o(.data) for tp_sleep_count + ap_demo.o(i.soft_timer3_cb) refers to ap_demo.o(.data) for .data + ap_demo.o(i.test_pwm_out_adjust) refers to uidiv.o(.text) for __aeabi_uidivmod + ap_demo.o(i.test_pwm_out_adjust) refers to hal_pwm.o(i.hal_pwm_out_init) for hal_pwm_out_init + ap_demo.o(i.test_pwm_out_adjust) refers to hal_pwm.o(i.hal_pwm_out_config_all) for hal_pwm_out_config_all + ap_demo.o(i.test_pwm_out_adjust) refers to hal_pwm.o(i.hal_pwm_out_sync_all) for hal_pwm_out_sync_all + ap_demo.o(i.tx_display_on) refers to ap_demo.o(i.init_panel) for init_panel + ap_demo.o(i.tx_display_on) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + ap_demo.o(i.tx_display_on) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(i.tx_display_on) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) for hal_dsi_tx_ctrl_write_cmd + ap_demo.o(i.tx_display_on) refers to ap_demo.o(.data) for .data + ap_demo.o(i.tx_panel_reset) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) for hal_dsi_tx_ctrl_panel_reset_pin + ap_demo.o(i.tx_panel_reset) refers to tau_delay.o(i.delayMs) for delayMs + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_on) for ap_set_display_on + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_display_off) for ap_set_display_off + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_get_reg_df) for ap_get_reg_df + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_backlight_51) for ap_set_backlight_51 + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_update_frame_rate) for ap_update_frame_rate + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_enter_sleep_mode) for ap_set_enter_sleep_mode + ap_demo.o(.constdata) refers to ap_demo.o(i.ap_set_exit_sleep_mode) for ap_set_exit_sleep_mode + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.S20_Start_init) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.S20_Start_init) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.S20_Start_init) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(i.app_tp_screen_int_init) for app_tp_screen_int_init + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.S20_Start_init) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.S20_Start_init) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(i.app_tp_m_write) for app_tp_m_write + app_tp_transfer.o(i.ap_tp_calibration) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.ap_tp_calibration) refers to tau_delay.o(i.delayMs) for delayMs + app_tp_transfer.o(i.ap_tp_calibration) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_init) for hal_i2c_s_init + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_set_transfer) for hal_i2c_s_set_transfer + app_tp_transfer.o(i.app_tp_I2C_init) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(i.app_tp_i2cs_callback) for app_tp_i2cs_callback + app_tp_transfer.o(i.app_tp_I2C_init) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_i2cs_callback) refers to app_tp_transfer.o(i.app_tp_transfer_phone) for app_tp_transfer_phone + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_init) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_init) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + app_tp_transfer.o(i.app_tp_init) refers to hal_i2c_master.o(i.hal_i2c_m_dma_init) for hal_i2c_m_dma_init + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_phone_output_int_pad + app_tp_transfer.o(i.app_tp_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_m_read) refers to hal_i2c_master.o(i.hal_i2c_m_dma_read) for hal_i2c_m_dma_read + app_tp_transfer.o(i.app_tp_m_transfer_complate) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_m_write) refers to hal_i2c_master.o(i.hal_i2c_m_dma_write) for hal_i2c_m_dma_write + app_tp_transfer.o(i.app_tp_phone_clear_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_phone_reset_on) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_s_read) refers to hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) for hal_i2c_s_nonblocking_read + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_write_complate) for hal_i2c_s_write_complate + app_tp_transfer.o(i.app_tp_s_transfer_complate) refers to hal_i2c_slave.o(i.hal_i2c_s_read_complate) for hal_i2c_s_read_complate + app_tp_transfer.o(i.app_tp_s_write) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_write) for hal_i2c_s_dma_write + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_init_output) for hal_gpio_init_output + app_tp_transfer.o(i.app_tp_screen_init) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_screen_init) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_transfer.o(i.app_tp_screen_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_rst_pad + app_tp_transfer.o(i.app_tp_screen_int_callback) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_screen_int_init) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + app_tp_transfer.o(i.app_tp_screen_int_init) refers to hal_gpio.o(i.hal_gpio_ctrl_eint) for hal_gpio_ctrl_eint + app_tp_transfer.o(i.app_tp_screen_int_init) refers to hal_gpio.o(i.hal_gpio_init_eint) for hal_gpio_init_eint + app_tp_transfer.o(i.app_tp_screen_int_init) refers to hal_gpio.o(i.hal_gpio_reg_eint_cb) for hal_gpio_reg_eint_cb + app_tp_transfer.o(i.app_tp_screen_int_init) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_screen_int_init) refers to app_tp_transfer.o(i.app_tp_screen_int_callback) for app_tp_screen_int_callback + app_tp_transfer.o(i.app_tp_screen_int_lvl_low) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_screen_int_lvl_low) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_phone) refers to app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) for app_tp_phone_analysis_data + app_tp_transfer.o(i.app_tp_transfer_phone) refers to app_tp_transfer.o(i.app_tp_s_read) for app_tp_s_read + app_tp_transfer.o(i.app_tp_transfer_phone) refers to app_tp_transfer.o(i.app_tp_s_write) for app_tp_s_write + app_tp_transfer.o(i.app_tp_transfer_phone) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.app_tp_m_transfer_complate) for app_tp_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to hal_spi_master.o(i.hal_spi_m_clear_rxfifo) for hal_spi_m_clear_rxfifo + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(i.S20_Start_init) for S20_Start_init + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to app_tp_for_custom_s8.o(.constdata) for screen_reg_start_data_size + app_tp_transfer.o(i.app_tp_transfer_screen_const) refers to ap_demo.o(.data) for phone_start_flag + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_screen_int_lvl_low) for app_tp_screen_int_lvl_low + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(i.app_tp_m_read) for app_tp_m_read + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_i2c_master.o(i.hal_i2c_m_transfer_complate) for hal_i2c_m_transfer_complate + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to tau_delay.o(i.delayUs) for delayUs + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to hal_gpio.o(i.hal_gpio_get_input_data) for hal_gpio_get_input_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) for app_tp_screen_analysis_int + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.data) for .data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for screen_reg_int_data + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_transfer.o(.bss) for .bss + app_tp_transfer.o(i.app_tp_transfer_screen_int) refers to app_tp_for_custom_s8.o(.data) for g_screen_input_int_pad + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(i.app_tp_transfer_screen_const) for app_tp_transfer_screen_const + app_tp_transfer.o(i.app_tp_transfer_screen_start) refers to app_tp_transfer.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) refers to app_tp_for_custom_s8.o(.constdata) for .constdata + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_transfer.o(i.app_tp_screen_init) for app_tp_screen_init + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to uidiv.o(.text) for __aeabi_uidivmod + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) refers to app_tp_for_custom_s8.o(.data) for .data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_1 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_2 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_3 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_4 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_5 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_6 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for screen_data_write_7 + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_point_back + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_data + app_tp_for_custom_s8.o(.data) refers to app_tp_for_custom_s8.o(.data) for phone_reg_coord_back + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init) for hal_system_init + board.o(i.board_Init) refers to hal_system.o(i.hal_system_enable_systick) for hal_system_enable_systick + board.o(i.board_Init) refers to hal_system.o(i.hal_system_init_console) for hal_system_init_console + board.o(i.board_Init) refers to hal_system.o(i.hal_system_set_phy_calibration) for hal_system_set_phy_calibration + startup_armcm0.o(RESET) refers to startup_armcm0.o(STACK) for __initial_sp + startup_armcm0.o(RESET) refers to startup_armcm0.o(.text) for Reset_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.HardFault_Handler) for HardFault_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SysTick_Handler) for SysTick_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VIDC_IRQn_Handler) for VIDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.LCDC_IRQn_Handler) for LCDC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_RX_IRQn_Handler) for MIPI_RX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MIPI_TX_IRQn_Handler) for MIPI_TX_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.MEMC_IRQn_Handler) for MEMC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.VPRE_IRQn_Handler) for VPRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.FLSCTRL_IRQn_Handler) for FLSCTRL_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.DMA_IRQn_Handler) for DMA_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER0_IRQn_Handler) for TIMER0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER1_IRQn_Handler) for TIMER1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER2_IRQn_Handler) for TIMER2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.TIMER3_IRQn_Handler) for TIMER3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.WDG_IRQn_Handler) for WDG_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.UART_IRQn_Handler) for UART_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C0_IRQn_Handler) for I2C0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.I2C1_IRQn_Handler) for I2C1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIS_IRQn_Handler) for SPIS_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SPIM_IRQn_Handler) for SPIM_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.ADC_IRQn_Handler) for ADC_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.PWMDET_IRQn_Handler) for PWMDET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.SWIRE_IRQn_Handler) for SWIRE_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.AP_NRESET_IRQn_Handler) for AP_NRESET_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT0_IRQn_Handler) for EXTI_INT0_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT1_IRQn_Handler) for EXTI_INT1_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT2_IRQn_Handler) for EXTI_INT2_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT3_IRQn_Handler) for EXTI_INT3_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT4_IRQn_Handler) for EXTI_INT4_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT5_IRQn_Handler) for EXTI_INT5_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT6_IRQn_Handler) for EXTI_INT6_IRQn_Handler + startup_armcm0.o(RESET) refers to irq_redirect .o(i.EXTI_INT7_IRQn_Handler) for EXTI_INT7_IRQn_Handler + startup_armcm0.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video) refers to drv_vidc.o(i.drv_vidc_set_module_enable) for drv_vidc_set_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) for hal_internal_vsync_get_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) for dcs_packet_get_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) for dcs_packet_free_fifo_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg) for drv_dsi_rx_set_ddi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg) for drv_dsi_rx_set_ipi_pg_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to drv_memc.o(i.drv_memc_gen_a_tear_signal) for drv_memc_gen_a_tear_signal + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) for drv_dsi_rx_get_max_ret_size + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) for hal_dsi_rx_ctrl_init_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_rx) for hal_internal_vsync_init_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) for hal_dsi_rx_ctrl_init_dsi_rx + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) for hal_dsi_rx_ctrl_init_rxbr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_dsc_dec.o(i.drv_dsc_dec_disable) for drv_dsc_dec_disable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) for hal_dsi_rx_ctrl_init_vidc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) for hal_dsi_rx_ctrl_init_memc + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to drv_chip_info.o(i.drv_chip_rx_init_done) for drv_chip_rx_init_done + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_vidc_src) for drv_crgu_set_vidc_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_src) for drv_crgu_set_fb_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_fb_div) for drv_crgu_set_fb_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) for drv_dsi_rx_set_ctrl_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) for drv_dsi_rx_set_up_phy + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) for drv_dsi_rx_set_lane_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_inten) for drv_dsi_rx_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) for drv_dsi_rx_set_resp_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) for drv_dsi_rx_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_color_format) for drv_rxbr_set_color_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) for drv_rxbr_set_ltpo_drop_th + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_cfg) for drv_rxbr_set_usr_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_col) for drv_rxbr_set_usr_col + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_usr_row) for drv_rxbr_set_usr_row + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) for drv_rxbr_hline_rcv_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to drv_rxbr.o(i.drv_rxbr_enable_irq) for drv_rxbr_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_src_parameter) for drv_vidc_set_src_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_dst_parameter) for drv_vidc_set_dst_parameter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_init_module_enable) for drv_vidc_init_module_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_rotation) for drv_vidc_set_rotation + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_step) for drv_vidc_set_scld_step + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_h) for drv_param_init_get_scld_filter_h + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_init_get_scld_filter_v) for drv_param_init_get_scld_filter_v + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitr) for drv_vidc_set_p2r_hinitr + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hinitb) for drv_vidc_set_p2r_hinitb + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_param_init.o(i.drv_param_p2r_filter_init) for drv_param_p2r_filter_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) for drv_vidc_set_p2r_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_mirror) for drv_vidc_set_mirror + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_pu_ctrl) for drv_vidc_set_pu_ctrl + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to drv_vidc.o(i.drv_vidc_enable_irq) for drv_vidc_enable_irq + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) for hal_internal_vsync_get_tx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) for drv_rxbr_set_ack_pkt_header + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) refers to hal_dsi_rx_ctrl.o(.conststring) for .conststring + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef0) for drv_vidc_set_scld_hcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_hcoef1) for drv_vidc_set_scld_hcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef0) for drv_vidc_set_scld_vcoef0 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_vidc.o(i.drv_vidc_set_scld_vcoef1) for drv_vidc_set_scld_vcoef1 + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to drv_param_init.o(i.drv_param_init_set_scld_filter) for drv_param_init_set_scld_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) for hal_internal_vsync_set_sync_line + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) for hal_internal_vsync_set_dcs_direct_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) for drv_dsi_rx_calc_ipi_tx_delay + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) for drv_dsi_rx_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_update_src_format) for drv_vidc_update_src_format + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to drv_vidc.o(i.drv_vidc_set_pentile_swap) for drv_vidc_set_pentile_swap + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) for hal_dsi_rx_ctrl_set_rxbr_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) for drv_dsi_rx_set_ddi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) for hal_dsi_rx_ctrl_set_ipi_cfg + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk) refers to hal_dsi_rx_ctrl.o(.data) for .data + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_src) for drv_crgu_set_rxbr_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_rxbr_div) for drv_crgu_set_rxbr_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) for hal_internal_vsync_set_tear_mode + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to drv_dsi_rx.o(i.drv_dsi_rx_power_up) for drv_dsi_rx_power_up + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to drv_dsi_rx.o(i.drv_dsi_rx_shut_down) for drv_dsi_rx_shut_down + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) for hal_internal_vsync_set_rx_state + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) for hal_internal_vsync_toggle_input_frame_rate + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) for hal_internal_sync_input_resolution_change + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) for hal_internal_sync_input_resolution_change_ex + hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) refers to hal_dsi_rx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fscalb.o(.text) for __ARM_scalbnf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fflti.o(.text) for __aeabi_i2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) for drv_dsi_tx_set_video_chunk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) for drv_dsi_tx_set_video_timing + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to fadd.o(.text) for __aeabi_fadd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to ffixui.o(.text) for __aeabi_f2uiz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) refers to hal_dsi_tx_ctrl.o(.conststring) for .conststring + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic) refers to hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) for hal_internal_vsync_update_lcdc_addr + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te) refers to hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) for hal_internal_sync_cmd_mode_rcv_te + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) refers to hal_dsi_tx_ctrl.o(.constdata) for .constdata + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) for hal_dsi_tx_ctrl_set_rect_pixel_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init) for hal_dsi_tx_ctrl_draw_mode_init + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) for drv_dsi_tx_phy_ulps_enter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) for drv_dsi_tx_command_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) for drv_dsi_tx_phy_ulps_exit + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) for hal_dsi_tx_ctrl_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_init_tx) for hal_internal_vsync_init_tx + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) for hal_dsi_tx_config_params_for_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) for hal_dsi_tx_count_lane_rate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) for hal_dsi_tx_init_phy_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) for drv_dsi_tx_phy_test_setup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) for hal_lcdc_init_clk + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) for hal_lcdc_init_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) for hal_dsi_tx_init_dpi_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) for hal_dsi_tx_init_data_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) for hal_dsi_tx_init_remains + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) for hal_dsi_tx_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) for drv_dsi_tx_phy_status_ready + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to drv_dsi_tx.o(i.drv_dsi_tx_powerup) for drv_dsi_tx_powerup + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) refers to hal_gpio.o(i.hal_gpio_set_output_data) for hal_gpio_set_output_data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) for drv_dsi_tx_command_get_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) refers to memcpya.o(.text) for __aeabi_memcpy + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_param_init.o(i.drv_param_init_set_ccm) for drv_param_init_set_ccm + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter) refers to drv_param_init.o(i.drv_param_init_set_sclu_filter) for drv_param_init_set_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) for drv_lcdc_config_overwrite_rgb + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) for drv_lcdc_config_partial_display_enable + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) refers to drv_lcdc.o(i.drv_lcdc_config_partial_display_area) for drv_lcdc_config_partial_display_area + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dflti.o(.text) for __aeabi_i2d + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dmul.o(.text) for __aeabi_dmul + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to ddiv.o(.text) for __aeabi_ddiv + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to dfixi.o(.text) for __aeabi_d2iz + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_vpg) for drv_dsi_tx_set_vpg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker) for hal_dsi_tx_ctrl_draw_flicker + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard) for hal_dsi_tx_ctrl_draw_chessboard + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) for drv_lcdc_set_video_hw_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) for hal_internal_vsync_set_tx_state + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) for hal_dsi_tx_send_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_mode) for drv_dsi_tx_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) for drv_dsi_tx_edpi_cmd_size + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) for hal_dsi_tx_init_video_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) refers to hal_dsi_tx_ctrl.o(.data) for .data + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) for drv_dsi_tx_dpi_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) for drv_dsi_tx_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) for drv_dsi_tx_dpi_lpcmd_time + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_int) for drv_dsi_tx_set_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_int) for drv_dsi_tx_config_int + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) for drv_dsi_tx_phy_lane_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) for drv_dsi_tx_phy_time_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_response_mode) for drv_dsi_tx_response_mode + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) for drv_dsi_tx_set_esc_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) for drv_dsi_tx_set_time_out_div + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) for drv_dsi_tx_timeout_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) for drv_dsi_tx_config_eotp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) for drv_dsi_tx_phy_clock_lane_req_hs + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) for drv_dsi_tx_phy_clock_lane_auto_lp + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) for drv_dsi_tx_video_mode_cfg + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) for drv_dsi_tx_set_bta_ack + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) for drv_dsi_tx_video_mode_set_lp_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) for drv_dsi_tx_video_mode_disable_hact_cmd + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) for hal_dsi_tx_calc_video_chunks + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) for drv_dsi_tx_get_cmd_status + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_header) for drv_dsi_tx_command_header + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) refers to hal_dsi_tx_ctrl.o(.bss) for .bss + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_disp_mode) for drv_lcdc_config_disp_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_edpi_mode) for drv_lcdc_config_edpi_mode + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_endianness) for drv_lcdc_config_endianness + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_thresh) for drv_lcdc_config_thresh + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) for drv_lcdc_config_dpi_polarity + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) refers to drv_lcdc.o(i.drv_lcdc_config_src_parameter) for drv_lcdc_config_src_parameter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dadd.o(.text) for __aeabi_dadd + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_step) for drv_lcdc_config_scale_up_step + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) for hal_lcdc_config_upscaler + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) for hal_lcdc_config_ccm + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) for hal_lcdc_config_rgb_to_pentile + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to drv_lcdc.o(i.drv_lcdc_config_bypass) for drv_lcdc_config_bypass + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) for hal_lcdc_config_remains + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) refers to hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) for hal_lcdc_init_interrupt + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memseta.o(.text) for __aeabi_memclr4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffltui.o(.text) for __aeabi_ui2f + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_div) for drv_crgu_set_dpi_pre_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_pre_src) for drv_crgu_set_dpi_pre_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_dpi_mux_src) for drv_crgu_set_dpi_mux_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fmul.o(.text) for __aeabi_fmul + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to fdiv.o(.text) for __aeabi_fdiv + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to f2d.o(.text) for __aeabi_f2d + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ceil.o(i.ceil) for ceil + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_lcdc.o(i.drv_lcdc_config_dpi_timing) for drv_lcdc_config_dpi_timing + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_update_dpi_param) for hal_internal_update_dpi_param + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to ffixi.o(.text) for __aeabi_f2iz + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to idiv.o(.text) for __aeabi_idivmod + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_div) for drv_crgu_set_lcdc_div + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) refers to drv_crgu.o(i.drv_crgu_set_lcdc_src) for drv_crgu_set_lcdc_src + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) for hal_internal_vsync_get_sync_line + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_set_int) for drv_lcdc_set_int + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) refers to drv_lcdc.o(i.drv_lcdc_config_int) for drv_lcdc_config_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to drv_gpio.o(i.drv_gpio_set_int) for drv_gpio_set_int + hal_gpio.o(i.hal_gpio_ctrl_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_input_data) refers to drv_gpio.o(i.drv_gpio_get_input_data) for drv_gpio_get_input_data + hal_gpio.o(i.hal_gpio_get_int_type) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_get_pull_state) refers to drv_gpio.o(i.drv_gpio_get_pull_state) for drv_gpio_get_pull_state + hal_gpio.o(i.hal_gpio_get_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) for drv_sys_cfg_sel_gpio_group + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) for drv_sys_cfg_sel_int_trig + hal_gpio.o(i.hal_gpio_init_eint) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_init_eint) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_input) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_input) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_init_output) refers to drv_gpio.o(i.drv_gpio_set_ioe) for drv_gpio_set_ioe + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_gpio.o(i.hal_gpio_init_output) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to drv_gpio.o(i.drv_gpio_register_callback) for drv_gpio_register_callback + hal_gpio.o(i.hal_gpio_reg_eint_cb) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_gpio.o(i.drv_gpio_register_ap_reset_callback) for drv_gpio_register_ap_reset_callback + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) for drv_sys_cfg_sel_ap_rst_trig + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_gpio.o(i.hal_gpio_set_ap_reset_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to drv_gpio.o(i.drv_gpio_set_driving_strength) for drv_gpio_set_driving_strength + hal_gpio.o(i.hal_gpio_set_driving_strength) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode3) for drv_gpio_set_mode3 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode2) for drv_gpio_set_mode2 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode1) for drv_gpio_set_mode1 + hal_gpio.o(i.hal_gpio_set_mode) refers to drv_gpio.o(i.drv_gpio_set_mode0) for drv_gpio_set_mode0 + hal_gpio.o(i.hal_gpio_set_mode) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_output_data) refers to hal_gpio.o(i.drv_gpio_set_output_data) for drv_gpio_set_output_data + hal_gpio.o(i.hal_gpio_set_pull_state) refers to drv_gpio.o(i.drv_gpio_set_pull_state) for drv_gpio_set_pull_state + hal_gpio.o(i.hal_gpio_set_pull_state) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to drv_gpio.o(i.drv_gpio_set_schmitt_trigger) for drv_gpio_set_schmitt_trigger + hal_gpio.o(i.hal_gpio_set_schmitt_trigger) refers to hal_gpio.o(.constdata) for .constdata + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to drv_gpio.o(i.drv_gpio_set_slew_rate) for drv_gpio_set_slew_rate + hal_gpio.o(i.hal_gpio_set_slew_rate) refers to hal_gpio.o(.constdata) for .constdata + hal_i2c_master.o(i.hal_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_deinit) for drv_i2c_m_deinit + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_master_init) for drv_i2c_master_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_master.o(i.drv_i2c_m_enable_intr) for drv_i2c_m_enable_intr + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) for drv_i2c_enable_rx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_master.o(i.hal_i2c_m_dma_init) refers to hal_i2c_master.o(i.hal_i2c_master_irq_callback) for hal_i2c_master_irq_callback + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to drv_i2c_dma.o(i.drv_i2c_master_read_dma) for drv_i2c_master_read_dma + hal_i2c_master.o(i.hal_i2c_m_dma_read) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_master_write_dma) for drv_i2c_master_write_dma + hal_i2c_master.o(i.hal_i2c_m_dma_write) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_master.o(i.hal_i2c_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_master.o(i.hal_i2c_m_transfer_complate) refers to hal_i2c_master.o(.data) for .data + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) for drv_i2c_m_clear_it_pending_bit + hal_i2c_master.o(i.hal_i2c_master_irq_callback) refers to hal_i2c_master.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_deinit) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to drv_i2c_dma.o(i.drv_i2c_slave_write_dma) for drv_i2c_slave_write_dma + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_dma_write) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_slave_init) for drv_i2c_slave_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_master.o(i.drv_i2c1_set_callback) for drv_i2c1_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_config_intr) for drv_i2c_s_config_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c_s_set_intr) for drv_i2c_s_set_intr + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_dma_init) for drv_i2c_dma_init + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) for drv_i2c_set_dma_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) for drv_i2c_enable_tx_dma + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + hal_i2c_slave.o(i.hal_i2c_s_init) refers to drv_i2c_slave.o(i.drv_i2c0_set_callback) for drv_i2c0_set_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) for hal_i2c_slave_irq_callback + hal_i2c_slave.o(i.hal_i2c_s_init) refers to hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) for hal_i2c_s_dma_user_callback + hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_read_data) for drv_i2c_s_read_data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_read_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_sel) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_s_set_transfer) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_complate) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_s_write_data) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) for drv_i2c_s_clear_it_pending_bit + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to drv_i2c_slave.o(i.drv_i2c_s_write_data) for drv_i2c_s_write_data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.data) for .data + hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) refers to hal_i2c_slave.o(.constdata) for .constdata + hal_pwm.o(i.hal_pwm_in_clear_int) refers to drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all) for drv_pwm_in_clear_pwm_int_all + hal_pwm.o(i.hal_pwm_in_config_int) refers to drv_pwm.o(i.drv_pwm_in_set_pwm_int) for drv_pwm_in_set_pwm_int + hal_pwm.o(i.hal_pwm_in_ctrl_int) refers to drv_pwm.o(i.drv_pwm_in_set_sys_int) for drv_pwm_in_set_sys_int + hal_pwm.o(i.hal_pwm_in_deinit) refers to drv_pwm.o(i.drv_pwm_in_enable) for drv_pwm_in_enable + hal_pwm.o(i.hal_pwm_in_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_in_get_current_count) refers to drv_pwm.o(i.drv_pwm_in_get_current_count) for drv_pwm_in_get_current_count + hal_pwm.o(i.hal_pwm_in_get_high_period) refers to drv_pwm.o(i.drv_pwm_in_get_high_period) for drv_pwm_in_get_high_period + hal_pwm.o(i.hal_pwm_in_get_high_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_in_get_high_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_in_get_low_period) refers to drv_pwm.o(i.drv_pwm_in_get_low_period) for drv_pwm_in_get_low_period + hal_pwm.o(i.hal_pwm_in_get_low_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_in_get_low_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_in_get_total_period) refers to drv_pwm.o(i.drv_pwm_in_get_counter_period) for drv_pwm_in_get_counter_period + hal_pwm.o(i.hal_pwm_in_get_total_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_in_get_total_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_in_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_in_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_pwm.o(i.hal_pwm_in_init) refers to drv_pwm.o(i.drv_pwm_in_enable) for drv_pwm_in_enable + hal_pwm.o(i.hal_pwm_in_register_callback) refers to drv_pwm.o(i.drv_pwm_in_register_callback) for drv_pwm_in_register_callback + hal_pwm.o(i.hal_pwm_in_set_int) refers to drv_pwm.o(i.drv_pwm_in_set_pwm_int) for drv_pwm_in_set_pwm_int + hal_pwm.o(i.hal_pwm_out_common_config) refers to drv_pwm.o(i.drv_pwm_out_set_control) for drv_pwm_out_set_control + hal_pwm.o(i.hal_pwm_out_common_config) refers to drv_pwm.o(i.drv_pwm_out_set_threshold) for drv_pwm_out_set_threshold + hal_pwm.o(i.hal_pwm_out_common_config) refers to drv_pwm.o(i.drv_pwm_out_set_period) for drv_pwm_out_set_period + hal_pwm.o(i.hal_pwm_out_config_all) refers to hal_pwm.o(i.hal_pwm_out_convert_time) for hal_pwm_out_convert_time + hal_pwm.o(i.hal_pwm_out_config_duty_ratio) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_config_duty_ratio) refers to hal_pwm.o(i.hal_pwm_out_convert_time) for hal_pwm_out_convert_time + hal_pwm.o(i.hal_pwm_out_config_duty_ratio) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_out_convert_time) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_convert_time) refers to hal_pwm.o(i.hal_pwm_out_common_config) for hal_pwm_out_common_config + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_pwm.o(i.drv_pwm_out_enable) for drv_pwm_out_enable + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_pwm.o(i.drv_pwm_out_set_sync_mode) for drv_pwm_out_set_sync_mode + hal_pwm.o(i.hal_pwm_out_convert_time) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_out_convert_time) refers to hal_pwm.o(.data) for .data + hal_pwm.o(i.hal_pwm_out_deinit) refers to drv_pwm.o(i.drv_pwm_out_enable) for drv_pwm_out_enable + hal_pwm.o(i.hal_pwm_out_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_pwm.o(i.hal_pwm_out_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_out_deinit) refers to hal_pwm.o(.data) for .data + hal_pwm.o(i.hal_pwm_out_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_pwm.o(i.hal_pwm_out_pause) refers to drv_pwm.o(i.drv_pwm_out_pause) for drv_pwm_out_pause + hal_pwm.o(i.hal_pwm_out_sel_io) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_pwm.o(i.hal_pwm_out_sync_all) refers to hal_pwm.o(i.hal_pwm_out_convert_time) for hal_pwm_out_convert_time + hal_pwm.o(i.hal_pwm_out_sync_ctl) refers to drv_pwm.o(i.drv_pwm_out_set_control) for drv_pwm_out_set_control + hal_pwm.o(i.hal_pwm_out_sync_pause) refers to drv_pwm.o(i.drv_pwm_out_pause) for drv_pwm_out_pause + hal_pwm.o(i.hal_pwm_out_sync_period) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_sync_period) refers to drv_pwm.o(i.drv_pwm_out_set_period) for drv_pwm_out_set_period + hal_pwm.o(i.hal_pwm_out_sync_period) refers to drv_common.o(.data) for g_system_clock + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to drv_pwm.o(i.drv_pwm_out_set_threshold) for drv_pwm_out_set_threshold + hal_pwm.o(i.hal_pwm_out_sync_thr) refers to drv_common.o(.data) for g_system_clock + hal_spi_master.o(i.hal_spi_m_callback) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_master.o(i.hal_spi_m_callback) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_clear_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_deinit) for drv_spi_m_deinit + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_gpio_init) for hal_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_master_init) for drv_spi_master_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_dma_ch6_init) for drv_spi_dma_ch6_init + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) for drv_spi_set_dma_ch6_irq_callback + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + hal_spi_master.o(i.hal_spi_m_dma_init) refers to hal_spi_master.o(i.hal_spi_m_callback) for hal_spi_m_callback + hal_spi_master.o(i.hal_spi_m_dma_read) refers to drv_spi_dma.o(i.drv_spim_dma_read) for drv_spim_dma_read + hal_spi_master.o(i.hal_spi_m_dma_read) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_dma_write) refers to drv_spi_dma.o(i.drv_spim_dma_write) for drv_spim_dma_write + hal_spi_master.o(i.hal_spi_m_dma_write) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_get_transfer_complate) refers to hal_spi_master.o(.data) for .data + hal_spi_master.o(i.hal_spi_m_gpio_init) refers to drv_spi_master.o(i.drv_spi_m_gpio_init) for drv_spi_m_gpio_init + hal_spi_master.o(i.hal_spi_m_read_rxfifo) refers to drv_spi_master.o(i.drv_spi_m_read_data) for drv_spi_m_read_data + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_master.o(i.hal_spi_m_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_swire.o(i.hal_swire_deinit) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_swire_div) for drv_crgu_set_swire_div + hal_swire.o(i.hal_swire_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_swire.o(i.hal_swire_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_swire.o(i.hal_swire_init) refers to drv_swire.o(i.drv_swire_enable) for drv_swire_enable + hal_swire.o(i.hal_swire_open) refers to drv_swire.o(i.drv_swire_set_power_down) for drv_swire_set_power_down + hal_swire.o(i.hal_swire_register_callback) refers to drv_swire.o(i.drv_swire_register_callback) for drv_swire_register_callback + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + hal_swire.o(i.hal_swire_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_bit_time) for drv_swire_set_bit_time + hal_swire.o(i.hal_swire_start) refers to drv_swire.o(i.drv_swire_set_pulse_count) for drv_swire_set_pulse_count + hal_swire.o(i.hal_swire_start) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_deep_sleep_mode) refers to drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode) for drv_pwr_enter_deep_sleep_mode + hal_system.o(i.hal_system_disable_systick) refers to drv_common.o(i.drv_common_disable_systick) for drv_common_disable_systick + hal_system.o(i.hal_system_enable_systick) refers to drv_common.o(i.drv_common_enable_systick) for drv_common_enable_systick + hal_system.o(i.hal_system_flash_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + hal_system.o(i.hal_system_flash_read) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_read) refers to norflash.o(i.norflash_dual_read) for norflash_dual_read + hal_system.o(i.hal_system_flash_release_power_down) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_release_power_down) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_init) for norflash_init + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_erase_block) for norflash_erase_block + hal_system.o(i.hal_system_flash_write) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_flash_write) refers to norflash.o(i.norflash_write) for norflash_write + hal_system.o(i.hal_system_get_tick) refers to drv_common.o(i.drv_common_get_tick) for drv_common_get_tick + hal_system.o(i.hal_system_idle_mode) refers to drv_common.o(i.drv_common_idle_mode) for drv_common_idle_mode + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_system_clk_src) for drv_pwr_set_system_clk_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_src) for drv_crgu_set_ahb_src + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_ahb_pre_div) for drv_crgu_set_ahb_pre_div + hal_system.o(i.hal_system_init) refers to irq_redirect .o(i.handle_init) for handle_init + hal_system.o(i.hal_system_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) for drv_sys_cfg_clear_all_int + hal_system.o(i.hal_system_init) refers to drv_common.o(i.drv_common_system_init) for drv_common_system_init + hal_system.o(i.hal_system_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_system.o(i.hal_system_init) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_init) refers to drv_common.o(.data) for g_system_clock + hal_system.o(i.hal_system_init_console) refers to hal_uart.o(i.hal_uart_init) for hal_uart_init + hal_system.o(i.hal_system_register_systick_cb) refers to drv_common.o(i.drv_common_systick_register_cb) for drv_common_systick_register_cb + hal_system.o(i.hal_system_set_phy_calibration) refers to drv_phy_common.o(i.drv_phy_enable_calibration) for drv_phy_enable_calibration + hal_system.o(i.hal_system_set_pvd) refers to drv_pwr.o(i.drv_pwr_set_pvd_mode) for drv_pwr_set_pvd_mode + hal_system.o(i.hal_system_set_vcc) refers to drv_pwr.o(i.drv_pwr_set_cp_mode) for drv_pwr_set_cp_mode + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_connect) for drv_fls_gpio_connect + hal_system.o(i.hal_system_share_flash_mode) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + hal_system.o(i.hal_system_sleep_mode) refers to drv_crgu.o(i.drv_crgu_config_clocks) for drv_crgu_config_clocks + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_deinit) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_timer.o(i.hal_timer_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_get_status) refers to drv_timer.o(i.drv_timer_get_status) for drv_timer_get_status + hal_timer.o(i.hal_timer_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + hal_timer.o(i.hal_timer_init) refers to drv_timer.o(i.drv_timer_set_prescaler) for drv_timer_set_prescaler + hal_timer.o(i.hal_timer_set_repeat) refers to drv_timer.o(i.drv_timer_set_repeat) for drv_timer_set_repeat + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_get_prescaler) for drv_timer_get_prescaler + hal_timer.o(i.hal_timer_start_ex) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_start_ex) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_start_ex) refers to drv_common.o(.data) for g_system_clock + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_register_callback) for drv_timer_register_callback + hal_timer.o(i.hal_timer_stop) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + tau_delay.o(i.delayMs) refers to tau_delay.o(i.delayUs) for delayUs + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0vsprintf) for vsprintf + tau_log.o(i.LOG_printf) refers to printfa.o(i.__0printf) for __2printf + tau_log.o(i.LOG_printf) refers to tau_log.o(.bss) for .bss + tau_log.o(i.fgetc) refers to hal_uart.o(i.hal_uart_receive_blocking) for hal_uart_receive_blocking + tau_log.o(i.fputc) refers to hal_uart.o(i.hal_uart_transmit_blocking) for hal_uart_transmit_blocking + hal_uart.o(i.hal_uart_deinit) refers to drv_dma.o(i.drv_dma_deinit) for drv_dma_deinit + hal_uart.o(i.hal_uart_deinit) refers to drv_uart.o(i.UART_Deinit) for UART_Deinit + hal_uart.o(i.hal_uart_dmacallback) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_init) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_uart.o(i.hal_uart_init) refers to memseta.o(.text) for __aeabi_memclr4 + hal_uart.o(i.hal_uart_init) refers to drv_uart.o(i.UART_init) for UART_init + hal_uart.o(i.hal_uart_init) refers to drv_common.o(.data) for g_system_clock + hal_uart.o(i.hal_uart_init) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_blocking) refers to drv_uart.o(i.UART_ReadBlocking) for UART_ReadBlocking + hal_uart.o(i.hal_uart_receive_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_receive_dma) refers to drv_uart_dma.o(i.UART_TransferReceiveDMA) for UART_TransferReceiveDMA + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_receive_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + hal_uart.o(i.hal_uart_transmit_blocking) refers to drv_uart.o(i.UART_WriteBlocking) for UART_WriteBlocking + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferCreateHandleDMA) for UART_TransferCreateHandleDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to drv_uart_dma.o(i.UART_TransferSendDMA) for UART_TransferSendDMA + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(.bss) for .bss + hal_uart.o(i.hal_uart_transmit_dma) refers to hal_uart.o(i.hal_uart_dmacallback) for hal_uart_dmacallback + norflash.o(i.app_fls_ctrl_Handler) refers to drv_fls.o(i.fls_clr_interrupt_flag) for fls_clr_interrupt_flag + norflash.o(i.app_fls_ctrl_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + norflash.o(i.app_fls_ctrl_Handler) refers to norflash.o(.data) for .data + norflash.o(i.norflash_best_cfg_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + norflash.o(i.norflash_best_cfg_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_check_id) refers to norflash.o(i.norflash_read_id) for norflash_read_id + norflash.o(i.norflash_check_id) refers to tau_delay.o(i.delayUs) for delayUs + norflash.o(i.norflash_check_id) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_callback) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_read_prepare) for fls_dma_read_prepare + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_read) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_read) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dma_read) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_read) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_create_handle_dma) for fls_transfer_create_handle_dma + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_write_prepare) for fls_dma_write_prepare + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_transfer_dma) for fls_transfer_dma + norflash.o(i.norflash_dma_write) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + norflash.o(i.norflash_dma_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_dma_write) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_dma_write) refers to norflash.o(i.norflash_dma_callback) for norflash_dma_callback + norflash.o(i.norflash_dma_write) refers to norflash.o(.data) for .data + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_dual_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_dual_write) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_dual_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_en4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_en_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_en_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_en_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_dual_hstatus) for norflash_get_dual_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_hstatus) for norflash_get_hstatus + norflash.o(i.norflash_en_quad_check) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_en_quad_check) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_block) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_block) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_chip) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_erase_chip) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_erase_sector) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_erase_sector) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_ex4b) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_read_config_reg) for norflash_read_config_reg + norflash.o(i.norflash_ex4b) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_exit_quad) refers to norflash.o(i.norflash_en_quad_check) for norflash_en_quad_check + norflash.o(i.norflash_exit_quad) refers to drv_fls.o(i.fls_busy_pending) for fls_busy_pending + norflash.o(i.norflash_exit_quad) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_dual_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_hstatus) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_get_status) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_spi_config) for fls_get_default_spi_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_fls_config) for fls_get_default_fls_config + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_get_default_tuning) for fls_get_default_tuning + norflash.o(i.norflash_init) refers to drv_fls.o(i.fls_init) for fls_init + norflash.o(i.norflash_init) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_init) refers to drv_fls.o(.data) for g_fls_tuning + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_qcmd_enable) for fls_qcmd_enable + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_quad_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_switch_fls_spi) for norflash_switch_fls_spi + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_quad_write) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_quad_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_read) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_config_reg) refers to drv_fls.o(i.fls_read_byte_data) for fls_read_byte_data + norflash.o(i.norflash_read_id) refers to drv_fls.o(i.fls_read_cmd) for fls_read_cmd + norflash.o(i.norflash_set_best_cfg) refers to memseta.o(.text) for __aeabi_memclr4 + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_read_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(i.norflash_en_quad) for norflash_en_quad + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.data) for .data + norflash.o(i.norflash_set_best_write_cfg) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_single_mode) for fls_single_mode + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_set_addr_dummy) for fls_set_addr_dummy + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_ddat_enable) for fls_ddat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qdat_enable) for fls_qdat_enable + norflash.o(i.norflash_switch_fls_spi) refers to drv_fls.o(i.fls_qadr_enable) for fls_qadr_enable + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + norflash.o(i.norflash_write_disable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_disable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_disable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_disable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to drv_fls.o(i.fls_write_cmd) for fls_write_cmd + norflash.o(i.norflash_write_enable) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_enable) refers to norflash.o(.bss) for .bss + norflash.o(i.norflash_write_enable) refers to norflash.o(.data) for .data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_enable) for norflash_write_enable + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_enable) for norflash_big_end_enable + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_en_scr) for fls_en_scr + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_write_byte_data) for fls_write_byte_data + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_big_end_clear) for norflash_big_end_clear + norflash.o(i.norflash_write_endian_scr) refers to drv_fls.o(i.fls_scr_clear) for fls_scr_clear + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_get_status) for norflash_get_status + norflash.o(i.norflash_write_endian_scr) refers to norflash.o(i.norflash_write_disable) for norflash_write_disable + drv_common.o(i.app_HardFault_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_common.o(i.app_SysTick_Handler) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_enable_systick) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_common.o(i.drv_common_enable_systick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_get_tick) refers to drv_common.o(.data) for .data + drv_common.o(i.drv_common_system_init) refers to drv_chip_info.o(i.drv_chip_info_init) for drv_chip_info_init + drv_common.o(i.drv_common_systick_register_cb) refers to drv_common.o(.data) for .data + drv_dma.o(i.app_dma_irq_handler) refers to drv_dma.o(i.drv_dma_irq_handler) for drv_dma_irq_handler + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_abort_transfer) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_set_ccr) for drv_dma_set_ccr + drv_dma.o(i.drv_dma_ahb_init) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_dma.o(i.drv_dma_clear_flag) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_create_handle) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_disenable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dma.o(i.drv_dma_enable_channel_interrupts) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dma.o(i.drv_dma_enable_cycle) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_get_remaining_bytes) refers to drv_dma.o(i.drv_dma_channel_is_active) for drv_dma_channel_is_active + drv_dma.o(i.drv_dma_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dma.o(i.drv_dma_init) refers to drv_dma.o(i.drv_dma_ahb_init) for drv_dma_ahb_init + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_get_channel_flag) for drv_dma_get_channel_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_dma.o(i.drv_dma_irq_handler) refers to drv_dma.o(.bss) for .bss + drv_dma.o(i.drv_dma_m2m_init) refers to memseta.o(.text) for __aeabi_memclr4 + drv_dma.o(i.drv_dma_m2m_init) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_dma.o(i.drv_dma_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_dma.o(i.drv_dma_set_burst) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_dma.o(i.drv_dma_set_transfer) refers to drv_dma.o(i.drv_dma_set_burst) for drv_dma_set_burst + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_dma.o(i.drv_dma_start_transfer) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_fls.o(i.drv_fls_gpio_connect) refers to drv_fls.o(i.drv_fls_gpio_disconnect) for drv_fls_gpio_disconnect + drv_fls.o(i.drv_fls_gpio_disconnect) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_EnableClk) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_busy_pending) refers to norflash.o(i.norflash_get_status) for norflash_get_status + drv_fls.o(i.fls_de_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_de_init) refers to drv_dma.o(i.drv_dma_clear_flag) for drv_dma_clear_flag + drv_fls.o(i.fls_de_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_disable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_fls.o(i.fls_enable_it) refers to drv_fls.o(i.fls_set_mc_irq_mask) for fls_set_mc_irq_mask + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_fls.o(i.fls_init) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_spi_init) for fls_spi_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_ctrl_cfg_init) for fls_ctrl_cfg_init + drv_fls.o(i.fls_init) refers to drv_fls.o(i.fls_set_tuning) for fls_set_tuning + drv_fls.o(i.fls_init) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_enable_it) for fls_enable_it + drv_fls.o(i.fls_read_cmd_it) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_fls.o(i.fls_set_mc_irq_mask) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_byte_data) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls.o(i.fls_write_cmd) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) for drv_ap_rst_trig_edge_detect + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_get_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_register_ap_reset_callback) refers to drv_gpio.o(.data) for .data + drv_gpio.o(i.drv_gpio_register_callback) refers to drv_gpio.o(.bss) for .bss + drv_gpio.o(i.drv_gpio_set_driving_strength) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_gpio.o(i.drv_gpio_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_gpio.o(i.drv_gpio_set_pull_state) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_schmitt_trigger) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_gpio.o(i.drv_gpio_set_slew_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_dma.o(i.drv_i2c_dma_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_master.o(i.drv_i2c_m_enable) for drv_i2c_m_enable + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_master_read_dma) refers to drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) for drv_i2c_master_write_read_cmd + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_set_transfer) for drv_dma_set_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_dma.o(i.drv_i2c_master_write_dma) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.data) for .data + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(.bss) for .bss + drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) refers to drv_i2c_dma.o(i.drv_i2c_dma_callback) for drv_i2c_dma_callback + drv_i2c_dma.o(i.drv_i2c_slave_write_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_i2c_master.o(i.app_I2C1_IRQn_Handler) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c1_set_callback) refers to drv_i2c_master.o(.data) for .data + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_i2c_master.o(i.drv_i2c_m_disable_intr) for drv_i2c_m_disable_intr + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_i2c_master.o(i.drv_i2c_m_deinit) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_i2c_master.o(i.drv_i2c_m_enable_intr) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_read_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_m_set_sys_mask) refers to drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_i2c_master.o(i.drv_i2c_m_write_data) refers to drv_i2c_master.o(i.drv_i2c_m_get_fifo_status) for drv_i2c_m_get_fifo_status + drv_i2c_master.o(i.drv_i2c_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_i2c_master.o(i.drv_i2c_master_init) refers to drv_common.o(.data) for g_system_clock + drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c0_set_callback) refers to drv_i2c_slave.o(.data) for .data + drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_i2c_slave.o(i.drv_i2c_s_read_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_i2c_slave.o(i.drv_i2c_s_set_intr) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_i2c_slave.o(i.drv_i2c_s_write_data) refers to drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) for drv_i2c_s_get_fifo_status + drv_i2c_slave.o(i.drv_i2c_slave_init) refers to drv_i2c_slave.o(i.drv_i2c_s_enable) for drv_i2c_s_enable + drv_param_init.o(i.drv_param_init_get_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_h) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_scld_filter_v) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_get_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_ccm) refers to memcpya.o(.text) for __aeabi_memcpy4 + drv_param_init.o(i.drv_param_init_set_ccm) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_scld_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_init_set_sclu_filter) refers to drv_param_init.o(.data) for .data + drv_param_init.o(i.drv_param_p2r_filter_init) refers to drv_param_init.o(.constdata) for .constdata + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.app_PWMDET_IRQn_Handler) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_register_callback) refers to drv_pwm.o(.data) for .data + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_pwm.o(i.drv_pwm_in_set_sys_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel) for drv_dma_disenable_channel + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_dma.o(i.drv_dma_disenable_channel_interrupts) for drv_dma_disenable_channel_interrupts + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_slave.o(i.drv_spi_s_enable_rx_dma) for drv_spi_s_enable_rx_dma + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_abort_dma) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_dma_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_ch6_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_dma.o(i.drv_spi_dma_init) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_create_handle) for drv_dma_create_handle + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) refers to drv_spi_dma.o(i.drv_spi_dma_callback) for drv_spi_dma_callback + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_rx_dma) for drv_spi_m_enable_rx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_read) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_master.o(i.drv_spi_m_enable_tx_dma) for drv_spi_m_enable_tx_dma + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel_interrupts) for drv_dma_enable_channel_interrupts + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spim_dma_write) refers to drv_spi_dma.o(.data) for .data + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_dma.o(i.drv_dma_enable_channel) for drv_dma_enable_channel + drv_spi_dma.o(i.drv_spis_dma_write) refers to drv_spi_dma.o(.bss) for .bss + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.app_SPIM_IRQn_Handler) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_m_deinit) refers to drv_spi_master.o(i.drv_spi_m_switch_sclk) for drv_spi_m_switch_sclk + drv_spi_master.o(i.drv_spi_m_disable_int) refers to drv_spi_master.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ + drv_spi_master.o(i.drv_spi_m_set_intr_callback) refers to drv_spi_master.o(.data) for .data + drv_spi_master.o(i.drv_spi_master_init) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_spi_master.o(i.drv_spi_master_init) refers to drv_common.o(.data) for g_system_clock + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(i.drv_swire_set_int) for drv_swire_set_int + drv_swire.o(i.app_SWIRE_IRQn_Handler) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_register_callback) refers to drv_swire.o(.data) for .data + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_swire.o(i.drv_swire_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) refers to drv_sys_cfg.o(.data) for .data + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) for drv_sys_cfg_sel_ap_rst_lvl_trig + drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) refers to drv_sys_cfg.o(.data) for .data + drv_timer.o(i.app_TIMER0_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER1_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER2_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.app_TIMER3_IRQn_Handler) refers to drv_timer.o(i.drv_timer_handle_interrupt) for drv_timer_handle_interrupt + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_clear_status_flags) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_enable) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_get_instance) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_get_status) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_clear_status_flags) for drv_timer_clear_status_flags + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_enable) for drv_timer_enable + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_int) for drv_timer_set_int + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(i.drv_timer_set_compare_val) for drv_timer_set_compare_val + drv_timer.o(i.drv_timer_handle_interrupt) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_register_callback) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_compare_val) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_timer.o(i.drv_timer_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(i.drv_timer_get_instance) for drv_timer_get_instance + drv_timer.o(i.drv_timer_set_prescaler) refers to drv_timer.o(.data) for .data + drv_timer.o(i.drv_timer_set_repeat) refers to drv_timer.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_param_init.o(i.drv_param_init_get_ccm) for drv_param_init_get_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_ccm) for drv_lcdc_config_ccm + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) for hal_internal_sync_get_hight_performan_mode + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to ddiv.o(.text) for __aeabi_ddiv + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to sqrt.o(i.sqrt) for sqrt + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dmul.o(.text) for __aeabi_dmul + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to cdcmple.o(.text) for __aeabi_cdcmple + hal_internal_vsync.o(i.calc_framebuffer_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.check_pkt_buf_rev) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.dcs_sw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_data_mode) for drv_memc_set_data_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_waveform) for drv_memc_set_tear_waveform + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) for hal_internal_vsync_get_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_ltpo_mode) for drv_memc_set_ltpo_mode + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_double_buffer) for drv_memc_set_double_buffer + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_active_height) for drv_memc_set_active_height + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_set_inten) for drv_memc_set_inten + hal_internal_vsync.o(i.hal_internal_init_memc) refers to drv_memc.o(i.drv_memc_enable_irq) for drv_memc_enable_irq + hal_internal_vsync.o(i.hal_internal_init_memc) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to drv_lcdc.o(i.drv_lcdc_start) for drv_lcdc_start + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_dsi_tx.o(i.drv_dsi_tx_shutdown) for drv_dsi_tx_shutdown + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) for hal_dsi_rx_ctrl_init + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) for hal_dsi_rx_ctrl_start + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) for drv_lcdc_enable_shadow_reg + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) for hal_dsi_rx_ctrl_gen_a_tear_signal + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to tau_delay.o(i.delayUs) for delayUs + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) for hal_vsync_reset_lcdc_scaler + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.hal_internal_update_dpi_param) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to fmul.o(.text) for __aeabi_fmul + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to f2d.o(.text) for __aeabi_f2d + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to ceil.o(i.ceil) for ceil + hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_deinit) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_chip_info.o(i.drv_chip_rx_info_check) for drv_chip_rx_info_check + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq0_callback) for drv_rxbr_register_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_rxbr.o(i.drv_rxbr_register_irq1_callback) for drv_rxbr_register_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to drv_vidc.o(i.drv_vidc_register_callback) for drv_vidc_register_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_init) for dcs_packet_fifo_init + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te) for soft_gen_te + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.soft_gen_te_double_buffer) for soft_gen_te_double_buffer + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq0_callback) for rxbr_irq0_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.rxbr_irq1_callback) for rxbr_irq1_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_rx) refers to hal_internal_vsync.o(i.vidc_callback) for vidc_callback + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to memcpya.o(.text) for __aeabi_memcpy4 + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) for check_mipi_rx_tx_video_info + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(i.calc_framebuffer_setting) for calc_framebuffer_setting + hal_internal_vsync.o(i.hal_internal_vsync_init_tx) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to drv_rxbr.o(i.drv_rxbr_set_cmd_filter) for drv_rxbr_set_cmd_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) for hal_internal_vsync_set_auto_hw_filter + hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to drv_vidc.o(i.drv_vidc_enable) for drv_vidc_enable + hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.hal_internal_vsync_deinit) for hal_internal_vsync_deinit + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(i.vsync_set_te_mode) for vsync_set_te_mode + hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) for drv_rxbr_frame_drop_cfg + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_get_clk) for drv_rxbr_get_clk + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to ffltui.o(.text) for __aeabi_ui2f + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to fdiv.o(.text) for __aeabi_fdiv + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to tau_delay.o(i.delayMs) for delayMs + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) for hal_internal_sync_get_fb_setting + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_fs_en_conditions) for drv_memc_set_fs_en_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_lcdc_st_conditions) for drv_memc_set_lcdc_st_conditions + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_sel_vsync) for drv_memc_sel_vsync + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_set_vidc_sync_cnt) for drv_memc_set_vidc_sync_cnt + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_memc.o(i.drv_memc_rate_transfer_sel) for drv_memc_rate_transfer_sel + hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate) refers to drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) for drv_rxbr_hline_rcv0_cfg + hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfltui.o(.text) for __aeabi_ui2d + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dadd.o(.text) for __aeabi_dadd + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to dfixui.o(.text) for __aeabi_d2uiz + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) for hal_dsi_tx_ctrl_set_partial_disp_area + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) for hal_dsi_tx_ctrl_set_partial_disp + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_param_init.o(i.drv_param_init_get_sclu_filter) for drv_param_init_get_sclu_filter + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) for drv_lcdc_config_scale_up_coef + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to drv_crgu.o(i.drv_crgu_config_reset_modules) for drv_crgu_config_reset_modules + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) for hal_dsi_tx_ctrl_init + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(i.hal_internal_init_memc) for hal_internal_init_memc + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) for hal_dsi_tx_ctrl_start + hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.dcs_sw_filter) for dcs_sw_filter + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) for dcs_packet_fifo_alloc + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) for hal_dsi_rx_ctrl_dsc_async_handler + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) for drv_dsi_tx_command_put_payload + hal_internal_vsync.o(i.rx_get_dcs_packet_data) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_col_addr) for drv_rxbr_get_col_addr + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_get_page_addr) for drv_rxbr_get_page_addr + hal_internal_vsync.o(i.rx_partial_update) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_partial_update) refers to drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) for drv_dsc_dec_get_nslc + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src) for drv_crgu_set_dsco_src + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsco_src_div) for drv_crgu_set_dsco_src_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_crgu.o(i.drv_crgu_set_dsc_core_div) for drv_crgu_set_dsc_core_div + hal_internal_vsync.o(i.rx_partial_update) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_partial_update) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_get_dcs_packet_data) for rx_get_dcs_packet_data + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(i.rx_receive_pps) for rx_receive_pps + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_packet) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rx_receive_packet) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rx_receive_pps) refers to memseta.o(.text) for __aeabi_memclr4 + hal_internal_vsync.o(i.rx_receive_pps) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(i.check_pkt_buf_rev) for check_pkt_buf_rev + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) for drv_dsc_dec_convert_pps_rc_parameter + hal_internal_vsync.o(i.rx_receive_pps) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) for drv_dsi_rx_get_compression_en + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_enable) for drv_dsc_dec_enable + hal_internal_vsync.o(i.rx_receive_pps) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.rx_receive_pps) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_status0) for drv_rxbr_get_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_receive_packet) for rx_receive_packet + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to drv_rxbr.o(i.drv_rxbr_set_inten) for drv_rxbr_set_inten + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq0_callback) refers to hal_internal_vsync.o(i.rx_partial_update) for rx_partial_update + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.drv_rxbr_get_int_source) for drv_rxbr_get_int_source + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) for hal_internal_video_mode_auto_sync + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_status0) for drv_rxbr_clear_status0 + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(i.vpre_err_reset) for vpre_err_reset + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_memc.o(i.drv_memc_set_double_buffer_reverse) for drv_memc_set_double_buffer_reverse + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) for drv_rxbr_clear_pkt_buffer + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.rxbr_irq1_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.soft_gen_te_double_buffer) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_get_irq_status) for drv_vidc_get_irq_status + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_overwrite) for drv_lcdc_config_overwrite + hal_internal_vsync.o(i.vidc_callback) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_clear_irq) for drv_vidc_clear_irq + hal_internal_vsync.o(i.vidc_callback) refers to drv_vidc.o(i.drv_vidc_set_irqen) for drv_vidc_set_irqen + hal_internal_vsync.o(i.vidc_callback) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vidc_callback) refers to hal_internal_vsync.o(.conststring) for .conststring + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_vidc.o(i.drv_vidc_reset) for drv_vidc_reset + hal_internal_vsync.o(i.vpre_err_reset) refers to drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) for drv_dsc_dec_set_u8_pps + hal_internal_vsync.o(i.vpre_err_reset) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_memc.o(i.drv_memc_set_tear_mode) for drv_memc_set_tear_mode + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_config_int_single) for drv_lcdc_config_int_single + hal_internal_vsync.o(i.vsync_set_te_mode) refers to drv_lcdc.o(i.drv_lcdc_ctrl_flow) for drv_lcdc_ctrl_flow + hal_internal_vsync.o(i.vsync_set_te_mode) refers to uidiv.o(.text) for __aeabi_uidivmod + hal_internal_vsync.o(i.vsync_set_te_mode) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.bss) for .bss + hal_internal_vsync.o(i.vsync_set_te_mode) refers to hal_internal_vsync.o(.data) for .data + hal_internal_vsync.o(.data) refers to hal_internal_vsync.o(.bss) for sg_te_info + dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_fifo_init) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) refers to dcs_packet_fifo.o(.bss) for .bss + dcs_packet_fifo.o(i.dcs_packet_get_fifo_size) refers to dcs_packet_fifo.o(.bss) for .bss + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to ffltui.o(.text) for __aeabi_ui2f + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fdiv.o(.text) for __aeabi_fdiv + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fmul.o(.text) for __aeabi_fmul + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) for drv_dsi_rx_get_color_bpp + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) for drv_dsi_rx_get_color_pcc + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to fadd.o(.text) for __aeabi_fadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to f2d.o(.text) for __aeabi_f2d + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dadd.o(.text) for __aeabi_dadd + drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) refers to dfixui.o(.text) for __aeabi_d2uiz + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to drv_dsi_rx.o(i.drv_rx_phy_test_read) for drv_rx_phy_test_read + drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_clear) for drv_rx_phy_test_clear + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) for drv_rx_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) for drv_rx_phy_test_write_2_byte + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) refers to drv_dsi_rx.o(i.drv_rx_phy_test_lock) for drv_rx_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_rx.o(i.drv_rx_phy_test_lock) refers to drv_phy_common.o(i.drv_phy_test_lock) for drv_phy_test_lock + drv_dsi_rx.o(i.drv_rx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to drv_dsi_tx.o(i.drv_tx_phy_test_read) for drv_tx_phy_test_read + drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_rate_para) for drv_phy_get_rate_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_pll_para) for drv_phy_get_pll_para + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_phy_common.o(i.drv_phy_get_calibration) for drv_phy_get_calibration + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_enter) for drv_tx_phy_test_enter + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_ref_src) for drv_crgu_set_mipi_ref_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) for drv_crgu_set_mipi_cfg_src + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_clear) for drv_tx_phy_test_clear + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) for drv_tx_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_code) for drv_tx_phy_test_write_code + drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) refers to drv_dsi_tx.o(i.drv_tx_phy_test_exit) for drv_tx_phy_test_exit + drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) for drv_dsi_tx_phy_status_stopstate + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot) for drv_dsi_tx_phy_status_ulpsactivenot + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) for drv_tx_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock) for drv_dsi_tx_phy_status_pll_lock + drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit) refers to drv_dsi_tx.o(i.drv_dsi_tx_version) for drv_dsi_tx_version + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_dsi_tx.o(i.drv_dsi_tx_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_dsi_tx.o(i.drv_tx_phy_test_clear) refers to drv_phy_common.o(i.drv_phy_test_clear) for drv_phy_test_clear + drv_dsi_tx.o(i.drv_tx_phy_test_read) refers to drv_phy_common.o(i.drv_phy_test_read) for drv_phy_test_read + drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_1_byte) for drv_phy_test_write_1_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_2_byte) for drv_phy_test_write_2_byte + drv_dsi_tx.o(i.drv_tx_phy_test_write_code) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_lcdc.o(i.drv_lcdc_config_src_parameter) refers to drv_lcdc.o(i.drv_lcdc_config_input_size) for drv_lcdc_config_input_size + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_lcdc.o(i.drv_lcdc_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_get_status) for drv_memc_get_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_memc.o(i.drv_memc_clear_status) for drv_memc_clear_status + drv_memc.o(i.app_MEMC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_memc.o(i.drv_memc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_ADC_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.app_VPRE_IRQn_Handler) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + drv_rxbr.o(i.drv_rxbr_enable_irq) refers to drv_rxbr.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ + drv_rxbr.o(i.drv_rxbr_register_irq0_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_register_irq1_callback) refers to drv_rxbr.o(.data) for .data + drv_rxbr.o(i.drv_rxbr_set_cmd_filter) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + drv_rxbr.o(i.drv_rxbr_soft_reset) refers to drv_crgu.o(i.drv_crgu_set_reset) for drv_crgu_set_reset + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.app_VIDC_IRQn_Handler) refers to drv_vidc.o(.data) for .data + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_vidc.o(i.drv_vidc_enable_irq) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_vidc.o(i.drv_vidc_register_callback) refers to drv_vidc.o(.data) for .data + irq_redirect .o(i.ADC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.AP_NRESET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.DMA_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT4_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT5_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT6_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.EXTI_INT7_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.FLSCTRL_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.HardFault_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.I2C1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.LCDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MEMC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_RX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.MIPI_TX_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.PWMDET_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIM_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SPIS_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SWIRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.SysTick_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER0_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER1_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER2_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.TIMER3_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.UART_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VIDC_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.VPRE_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.WDG_IRQn_Handler) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to irq_redirect .o(.ARM.__AT_0x00070100) for .ARM.__AT_0x00070100 + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_SysTick_Handler) for app_SysTick_Handler + irq_redirect .o(i.handle_init) refers to hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) for app_LCDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) for app_MIPI_RX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) for app_MIPI_TX_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_dma.o(i.app_dma_irq_handler) for app_dma_irq_handler + irq_redirect .o(i.handle_init) refers to norflash.o(i.app_fls_ctrl_Handler) for app_fls_ctrl_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) for app_I2C0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_i2c_master.o(i.app_I2C1_IRQn_Handler) for app_I2C1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to hal_spi_slave.o(i.app_SPIS_IRQn_Handler) for app_SPIS_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_spi_master.o(i.app_SPIM_IRQn_Handler) for app_SPIM_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_VPRE_IRQn_Handler) for app_VPRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_rxbr.o(i.app_ADC_IRQn_Handler) for app_ADC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_vidc.o(i.app_VIDC_IRQn_Handler) for app_VIDC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_memc.o(i.app_MEMC_IRQn_Handler) for app_MEMC_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER0_IRQn_Handler) for app_TIMER0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER1_IRQn_Handler) for app_TIMER1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER2_IRQn_Handler) for app_TIMER2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_timer.o(i.app_TIMER3_IRQn_Handler) for app_TIMER3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_wdg.o(i.app_WDG_IRQn_Handler) for app_WDG_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_uart.o(i.app_UART_IRQn_Handler) for app_UART_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_pwm.o(i.app_PWMDET_IRQn_Handler) for app_PWMDET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_swire.o(i.app_SWIRE_IRQn_Handler) for app_SWIRE_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) for app_AP_NRESET_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) for app_EXTI_INT0_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) for app_EXTI_INT1_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) for app_EXTI_INT2_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) for app_EXTI_INT3_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) for app_EXTI_INT4_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) for app_EXTI_INT5_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) for app_EXTI_INT6_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) for app_EXTI_INT7_IRQn_Handler + irq_redirect .o(i.handle_init) refers to drv_common.o(i.app_HardFault_Handler) for app_HardFault_Handler + drv_efuse.o(i.drv_efuse_enter_inactive) refers to drv_efuse.o(i.drv_efuse_int_enable) for drv_efuse_int_enable + drv_efuse.o(i.drv_efuse_read) refers to drv_efuse.o(i.drv_efuse_read_req) for drv_efuse_read_req + drv_efuse.o(i.drv_efuse_write) refers to drv_efuse.o(i.drv_efuse_write_req) for drv_efuse_write_req + drv_phy_common.o(i.drv_phy_enable_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_chip_info.o(i.drv_chip_info_get_info) for drv_chip_info_get_info + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_phy_common.o(i.drv_phy_get_calibration) refers to drv_phy_common.o(.data) for .data + drv_phy_common.o(i.drv_phy_get_pll_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_get_rate_para) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_phy_common.o(i.drv_phy_get_rate_para) refers to drv_phy_common.o(.constdata) for .constdata + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_1_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_code) for drv_phy_test_write_code + drv_phy_common.o(i.drv_phy_test_write_2_byte) refers to drv_phy_common.o(i.drv_phy_test_write_data) for drv_phy_test_write_data + drv_chip_info.o(i.drv_chip_info_get_info) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_chip_info.o(i.drv_chip_info_init) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_chip_info.o(i.drv_chip_info_init) refers to drv_chip_info.o(.data) for .data + drv_chip_info.o(i.drv_chip_rx_info_check) refers to printfa.o(i.__0printf) for __2printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to tau_log.o(i.LOG_printf) for LOG_printf + drv_chip_info.o(i.drv_chip_rx_info_check) refers to drv_chip_info.o(.data) for .data + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_enter_inactive) for drv_efuse_enter_inactive + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to drv_efuse.o(i.drv_efuse_read) for drv_efuse_read + drv_dsc_dec.o(i.drv_dsc_dec_enable) refers to printfa.o(i.__0printf) for __2printf + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) for __ARM_common_switch8 + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + hal_spi_slave.o(i.app_SPIS_IRQn_Handler) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_mode) for hal_gpio_set_mode + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_init_input) for hal_gpio_init_input + hal_spi_slave.o(i.hal_spi_s_set_high_impedance) refers to hal_gpio.o(i.hal_gpio_set_pull_state) for hal_gpio_set_pull_state + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort) refers to drv_spi_dma.o(i.drv_spi_abort_dma) for drv_spi_abort_dma + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_dma.o(i.drv_dma_enable_cycle) for drv_dma_enable_cycle + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to drv_spi_dma.o(i.drv_spis_dma_write) for drv_spis_dma_write + hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_deinit) refers to drv_spi_slave.o(i.drv_spi_s_deinit) for drv_spi_s_deinit + hal_spi_slave.o(i.hal_spi_slave_enable) refers to drv_spi_slave.o(i.drv_spi_s_enable_int) for drv_spi_s_enable_int + hal_spi_slave.o(i.hal_spi_slave_enable) refers to tau_log.o(i.LOG_printf) for LOG_printf + hal_spi_slave.o(i.hal_spi_slave_enable) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_gpio_init) refers to drv_spi_slave.o(i.drv_spi_s_gpio_init) for drv_spi_s_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(i.hal_spi_slave_gpio_init) for hal_spi_slave_gpio_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_slave_init) for drv_spi_slave_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_dma_init) for drv_spi_dma_init + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_dma.o(i.drv_spi_set_dma_irq_callback) for drv_spi_set_dma_irq_callback + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_spi_slave.o(i.drv_spi_s_enable_tx_dma) for drv_spi_s_enable_tx_dma + hal_spi_slave.o(i.hal_spi_slave_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + hal_spi_slave.o(i.hal_spi_slave_init) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_read_data) refers to drv_spi_slave.o(i.drv_spi_s_read_data) for drv_spi_s_read_data + hal_spi_slave.o(i.hal_spi_slave_register_callback) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_reset_tx) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer) refers to hal_spi_slave.o(.bss) for .bss + hal_spi_slave.o(i.hal_spi_slave_write_data) refers to drv_spi_slave.o(i.drv_spi_s_write_data) for drv_spi_s_write_data + drv_fls_dma.o(i.fls_abort_dma) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_abort_dma) refers to drv_fls_dma.o(i.fls_dma_disable) for fls_dma_disable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_set_read) for fls_set_read + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_read_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_clear_irq_status) for fls_clear_irq_status + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_swrst) for fls_swrst + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_set_write) for fls_set_write + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls_dma.o(i.fls_dma_enable) for fls_dma_enable + drv_fls_dma.o(i.fls_dma_write_prepare) refers to drv_fls.o(i.fls_spi_start) for fls_spi_start + drv_fls_dma.o(i.fls_read_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to memseta.o(.text) for __aeabi_memclr4 + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(.data) for .data + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_read_dmacallback) for fls_read_dmacallback + drv_fls_dma.o(i.fls_transfer_create_handle_dma) refers to drv_fls_dma.o(i.fls_write_dmacallback) for fls_write_dmacallback + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_fls_dma.o(i.fls_transfer_dma) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_fls_dma.o(i.fls_transfer_get_receive_count_dma) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_fls_dma.o(i.fls_write_dmacallback) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_spi_slave.o(i.drv_spi_s_deinit) refers to drv_spi_slave.o(i.drv_spi_s_switch_sclk) for drv_spi_s_switch_sclk + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(i.UART_TransferHandleIRQ) for UART_TransferHandleIRQ + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_uart.o(i.UART0_IRQ_Handle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortReceive) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_Disable_IT) for UART_Disable_IT + drv_uart.o(i.UART_AbortSend) refers to drv_uart.o(i.UART_ResetTxFIFO) for UART_ResetTxFIFO + drv_uart.o(i.UART_Deinit) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Disable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_Disable_IT) refers to drv_uart.o(.constdata) for .constdata + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) for drv_sys_cfg_set_dma_rx_req + drv_uart.o(i.UART_EnableDma) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) for drv_sys_cfg_set_dma_tx_req + drv_uart.o(i.UART_Enable_IT) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_Enable_IT) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_GetDefaultConfig) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_GetDefaultConfig) refers to drv_common.o(.data) for g_system_clock + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_GetFIFO_Ctrl) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetRxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_ResetTxFIFO) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_SetBaudRate) refers to uidiv.o(.text) for __aeabi_uidivmod + drv_uart.o(i.UART_SwitchSCLK) refers to drv_crgu.o(i.drv_crgu_set_clock) for drv_crgu_set_clock + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_TransferCreateHandle) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(i.UART_Enable_IT) for UART_Enable_IT + drv_uart.o(i.UART_TransferCreateHandle) refers to drv_uart.o(.data) for .data + drv_uart.o(i.UART_TransferHandleIRQ) refers to drv_uart.o(i.UART_ResetRxFIFO) for UART_ResetRxFIFO + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_DisableDma) for UART_DisableDma + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SwitchSCLK) for UART_SwitchSCLK + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart.o(i.UART_init) refers to drv_uart.o(i.UART_SetBaudRate) for UART_SetBaudRate + drv_uart.o(i.UART_init) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_uart.o(i.UART_init) refers to drv_uart.o(.data) for .data + drv_uart.o(i.app_UART_IRQn_Handler) refers to drv_uart.o(i.UART0_IRQ_Handle) for UART0_IRQ_Handle + drv_uart_dma.o(i.UART_DMAInit) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_DMAInit) refers to drv_dma.o(i.drv_dma_init) for drv_dma_init + drv_uart_dma.o(i.UART_TransferAbortReceiveDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferAbortSendDMA) refers to drv_dma.o(i.drv_dma_abort_transfer) for drv_dma_abort_transfer + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_GetInstance) for UART_GetInstance + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to memseta.o(.text) for __aeabi_memclr4 + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_DMAInit) for UART_DMAInit + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_dma.o(i.drv_dma_set_callback) for drv_dma_set_callback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(.data) for .data + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferReceiveDMACallback) for UART_TransferReceiveDMACallback + drv_uart_dma.o(i.UART_TransferCreateHandleDMA) refers to drv_uart_dma.o(i.UART_TransferSendDMACallback) for UART_TransferSendDMACallback + drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA) refers to drv_dma.o(i.drv_dma_get_remaining_bytes) for drv_dma_get_remaining_bytes + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferReceiveDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_prepar_transfer) for drv_dma_prepar_transfer + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_uart.o(i.UART_EnableDma) for UART_EnableDma + drv_uart_dma.o(i.UART_TransferSendDMA) refers to drv_dma.o(i.drv_dma_start_transfer) for drv_dma_start_transfer + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_set_int) for drv_wdg_set_int + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_counter) for drv_wdg_clear_counter + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_read_edge_flag) for drv_wdg_read_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(i.drv_wdg_clear_edge_flag) for drv_wdg_clear_edge_flag + drv_wdg.o(i.app_WDG_IRQn_Handler) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_register_callback) refers to drv_wdg.o(.data) for .data + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) for drv_sys_cfg_clear_pending + drv_wdg.o(i.drv_wdg_set_int) refers to drv_sys_cfg.o(i.drv_sys_cfg_set_int) for drv_sys_cfg_set_int + drv_wdg.o(i.drv_wdg_set_repeat) refers to drv_wdg.o(.data) for .data + ceil.o(i.__softfp_ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.__softfp_ceil) refers to ceil.o(i.ceil) for ceil + ceil.o(i.ceil) refers (Special) to iusefp.o(.text) for __I$use$fp + ceil.o(i.ceil) refers to dadd.o(.text) for __aeabi_dadd + ceil.o(i.ceil) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt + sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp + sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple + sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno + sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + idiv.o(.text) refers to uidiv.o(.text) for __aeabi_uidivmod + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to tau_log.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to tau_log.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to tau_log.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to tau_log.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to tau_log.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to tau_log.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to tau_log.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to tau_log.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to tau_log.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to tau_log.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to tau_log.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_armcm0.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data + errno.o(i.__read_errno) refers to errno.o(.data) for .data + errno.o(i.__set_errno) refers to errno.o(.data) for .data + depilogue.o(.text) refers to depilogue.o(i.__ARM_clz) for __ARM_clz + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dsqrt.o(.text) refers to depilogue.o(.text) for _double_round + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing ap_demo.o(.rev16_text), (4 bytes). + Removing ap_demo.o(.revsh_text), (4 bytes). + Removing ap_demo.o(i.PWM_OUTPUT_TEST), (44 bytes). + Removing ap_demo.o(i.PWM_Task), (108 bytes). + Removing ap_demo.o(i.test_pwm_out_adjust), (104 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing ap_demo.o(.data), (2 bytes). + Removing app_tp_transfer.o(.rev16_text), (4 bytes). + Removing app_tp_transfer.o(.revsh_text), (4 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_clear_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_phone_reset_on), (12 bytes). + Removing app_tp_transfer.o(i.app_tp_s_transfer_complate), (26 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (5 bytes). + Removing app_tp_transfer.o(.data), (6 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (3 bytes). + Removing app_tp_transfer.o(.data), (1 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_transfer.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.rev16_text), (4 bytes). + Removing app_tp_for_custom_s8.o(.revsh_text), (4 bytes). + Removing app_tp_for_custom_s8.o(i.app_tp_screen_analysis_const), (56 bytes). + Removing app_tp_for_custom_s8.o(.bss), (200 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (16 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1440 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1440 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1440 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (728 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (728 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (728 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (728 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (728 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (728 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (288 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (288 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (288 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (3 bytes). + Removing app_tp_for_custom_s8.o(.constdata), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (11 bytes). + Removing app_tp_for_custom_s8.o(.data), (10 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (64 bytes). + Removing app_tp_for_custom_s8.o(.data), (3 bytes). + Removing app_tp_for_custom_s8.o(.data), (2 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing app_tp_for_custom_s8.o(.data), (32 bytes). + Removing app_tp_for_custom_s8.o(.data), (1 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing startup_armcm0.o(HEAP), (3072 bytes). + Removing hal_dsi_rx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_long_cmd), (88 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_ack_short_cmd), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_crop_video), (228 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_draw_mode_init), (48 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_enable_test_pattern), (216 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_hight_performan_mode), (100 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_pre_init_pps), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_release_handle), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_restart), (80 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_auto_hw_filter), (28 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_esc_clk), (44 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_dcs_direct_mode), (8 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_cmd_filter), (40 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_hw_tear_mode), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pentile_format), (56 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_pixel_data), (148 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rect_pixel_data), (268 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rx_clk), (68 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_te_waveform), (52 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_input_frame_rate), (10 bytes). + Removing hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution), (32 bytes). + Removing hal_dsi_tx_ctrl.o(.rev16_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(.revsh_text), (4 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_crop_pic), (148 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_cmd_mode_rcv_te), (10 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_chessboard), (280 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_flicker), (172 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_draw_mode_init), (30 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_ulps_mode), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_release_handle), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_cus_pq_filter), (28 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_endianness), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_escape_clock_div), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_lp_cmd), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite), (16 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_rect_pixel_data), (272 bytes). + Removing hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_vpg), (80 bytes). + Removing hal_gpio.o(.rev16_text), (4 bytes). + Removing hal_gpio.o(.revsh_text), (4 bytes). + Removing hal_gpio.o(i.hal_gpio_get_int_type), (20 bytes). + Removing hal_gpio.o(i.hal_gpio_get_pull_state), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_driving_strength), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_output_data_ex), (36 bytes). + Removing hal_gpio.o(i.hal_gpio_set_schmitt_trigger), (32 bytes). + Removing hal_gpio.o(i.hal_gpio_set_slew_rate), (32 bytes). + Removing hal_i2c_master.o(.rev16_text), (4 bytes). + Removing hal_i2c_master.o(.revsh_text), (4 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_deinit), (8 bytes). + Removing hal_i2c_master.o(i.hal_i2c_m_set_high_impedance), (46 bytes). + Removing hal_i2c_slave.o(.rev16_text), (4 bytes). + Removing hal_i2c_slave.o(.revsh_text), (4 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_deinit), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_get_tx_byte_num), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_complate_clear), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_read_data), (32 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_rxfifo_notempty), (40 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_sel), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_dma_tx_cycle), (36 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_set_high_impedance), (88 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_complate), (12 bytes). + Removing hal_i2c_slave.o(i.hal_i2c_s_write_data), (32 bytes). + Removing hal_pwm.o(.rev16_text), (4 bytes). + Removing hal_pwm.o(.revsh_text), (4 bytes). + Removing hal_pwm.o(i.hal_pwm_in_clear_int), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_in_config_int), (60 bytes). + Removing hal_pwm.o(i.hal_pwm_in_ctrl_int), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_in_deinit), (18 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_current_count), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_high_period), (36 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_low_period), (36 bytes). + Removing hal_pwm.o(i.hal_pwm_in_get_total_period), (36 bytes). + Removing hal_pwm.o(i.hal_pwm_in_init), (26 bytes). + Removing hal_pwm.o(i.hal_pwm_in_register_callback), (10 bytes). + Removing hal_pwm.o(i.hal_pwm_in_set_int), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_out_common_config), (32 bytes). + Removing hal_pwm.o(i.hal_pwm_out_config_all), (16 bytes). + Removing hal_pwm.o(i.hal_pwm_out_config_duty_ratio), (76 bytes). + Removing hal_pwm.o(i.hal_pwm_out_convert_time), (136 bytes). + Removing hal_pwm.o(i.hal_pwm_out_deinit), (32 bytes). + Removing hal_pwm.o(i.hal_pwm_out_init), (12 bytes). + Removing hal_pwm.o(i.hal_pwm_out_pause), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sel_io), (38 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_all), (16 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_ctl), (12 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_pause), (8 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_period), (32 bytes). + Removing hal_pwm.o(i.hal_pwm_out_sync_thr), (48 bytes). + Removing hal_pwm.o(.data), (1 bytes). + Removing hal_spi_master.o(.rev16_text), (4 bytes). + Removing hal_spi_master.o(.revsh_text), (4 bytes). + Removing hal_spi_master.o(i.hal_spi_m_callback), (24 bytes). + Removing hal_spi_master.o(i.hal_spi_m_deinit), (10 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_init), (104 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_read), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_dma_write), (40 bytes). + Removing hal_spi_master.o(i.hal_spi_m_get_transfer_complate), (36 bytes). + Removing hal_spi_master.o(i.hal_spi_m_gpio_init), (8 bytes). + Removing hal_spi_master.o(i.hal_spi_m_read_rxfifo), (28 bytes). + Removing hal_spi_master.o(i.hal_spi_m_set_high_impedance), (100 bytes). + Removing hal_spi_master.o(.data), (1 bytes). + Removing hal_swire.o(.rev16_text), (4 bytes). + Removing hal_swire.o(.revsh_text), (4 bytes). + Removing hal_swire.o(i.hal_swire_init), (32 bytes). + Removing hal_swire.o(i.hal_swire_register_callback), (10 bytes). + Removing hal_swire.o(i.hal_swire_start), (108 bytes). + Removing hal_system.o(.rev16_text), (4 bytes). + Removing hal_system.o(.revsh_text), (4 bytes). + Removing hal_system.o(i.hal_system_clear_debug_state), (10 bytes). + Removing hal_system.o(i.hal_system_deep_sleep_mode), (8 bytes). + Removing hal_system.o(i.hal_system_disable_systick), (8 bytes). + Removing hal_system.o(i.hal_system_flash_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_read), (52 bytes). + Removing hal_system.o(i.hal_system_flash_release_power_down), (20 bytes). + Removing hal_system.o(i.hal_system_flash_write), (60 bytes). + Removing hal_system.o(i.hal_system_get_debug_state), (8 bytes). + Removing hal_system.o(i.hal_system_get_tick), (8 bytes). + Removing hal_system.o(i.hal_system_idle_mode), (8 bytes). + Removing hal_system.o(i.hal_system_register_systick_cb), (8 bytes). + Removing hal_system.o(i.hal_system_reset_chip), (32 bytes). + Removing hal_system.o(i.hal_system_share_flash_mode), (20 bytes). + Removing hal_system.o(i.hal_system_sleep_mode), (48 bytes). + Removing hal_timer.o(.rev16_text), (4 bytes). + Removing hal_timer.o(.revsh_text), (4 bytes). + Removing hal_timer.o(i.hal_timer_get_status), (8 bytes). + Removing hal_timer.o(i.hal_timer_set_repeat), (8 bytes). + Removing hal_timer.o(i.hal_timer_start_ex), (72 bytes). + Removing tau_delay.o(.rev16_text), (4 bytes). + Removing tau_delay.o(.revsh_text), (4 bytes). + Removing tau_log.o(.rev16_text), (4 bytes). + Removing tau_log.o(.revsh_text), (4 bytes). + Removing tau_log.o(i.fgetc), (22 bytes). + Removing hal_uart.o(.rev16_text), (4 bytes). + Removing hal_uart.o(.revsh_text), (4 bytes). + Removing hal_uart.o(i.hal_uart_deinit), (28 bytes). + Removing hal_uart.o(i.hal_uart_dmacallback), (36 bytes). + Removing hal_uart.o(i.hal_uart_receive_blocking), (16 bytes). + Removing hal_uart.o(i.hal_uart_receive_dma), (76 bytes). + Removing hal_uart.o(i.hal_uart_transmit_dma), (76 bytes). + Removing norflash.o(.rev16_text), (4 bytes). + Removing norflash.o(.revsh_text), (4 bytes). + Removing norflash.o(i.norflash_best_cfg_init), (44 bytes). + Removing norflash.o(i.norflash_big_end_clear), (14 bytes). + Removing norflash.o(i.norflash_big_end_enable), (20 bytes). + Removing norflash.o(i.norflash_check_crc32), (14 bytes). + Removing norflash.o(i.norflash_check_id), (72 bytes). + Removing norflash.o(i.norflash_dma_callback), (24 bytes). + Removing norflash.o(i.norflash_dma_read), (156 bytes). + Removing norflash.o(i.norflash_dma_write), (252 bytes). + Removing norflash.o(i.norflash_dual_read), (60 bytes). + Removing norflash.o(i.norflash_dual_write), (112 bytes). + Removing norflash.o(i.norflash_en4b), (40 bytes). + Removing norflash.o(i.norflash_en_quad), (116 bytes). + Removing norflash.o(i.norflash_en_quad_check), (64 bytes). + Removing norflash.o(i.norflash_erase_block), (44 bytes). + Removing norflash.o(i.norflash_erase_chip), (28 bytes). + Removing norflash.o(i.norflash_erase_sector), (44 bytes). + Removing norflash.o(i.norflash_ex4b), (40 bytes). + Removing norflash.o(i.norflash_exit_quad), (76 bytes). + Removing norflash.o(i.norflash_get_dual_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_hstatus), (52 bytes). + Removing norflash.o(i.norflash_get_status), (52 bytes). + Removing norflash.o(i.norflash_init), (48 bytes). + Removing norflash.o(i.norflash_quad_read), (76 bytes). + Removing norflash.o(i.norflash_quad_write), (108 bytes). + Removing norflash.o(i.norflash_read), (28 bytes). + Removing norflash.o(i.norflash_read_config_reg), (36 bytes). + Removing norflash.o(i.norflash_read_id), (20 bytes). + Removing norflash.o(i.norflash_reset), (2 bytes). + Removing norflash.o(i.norflash_reset_crc32), (32 bytes). + Removing norflash.o(i.norflash_set_best_cfg), (50 bytes). + Removing norflash.o(i.norflash_set_best_read_cfg), (84 bytes). + Removing norflash.o(i.norflash_set_best_write_cfg), (84 bytes). + Removing norflash.o(i.norflash_switch_fls_spi), (112 bytes). + Removing norflash.o(i.norflash_write), (96 bytes). + Removing norflash.o(i.norflash_write_disable), (64 bytes). + Removing norflash.o(i.norflash_write_enable), (56 bytes). + Removing norflash.o(i.norflash_write_endian_scr), (132 bytes). + Removing norflash.o(.bss), (412 bytes). + Removing norflash.o(.bss), (32 bytes). + Removing norflash.o(.data), (2 bytes). + Removing drv_common.o(.rev16_text), (4 bytes). + Removing drv_common.o(.revsh_text), (4 bytes). + Removing drv_common.o(i.drv_common_disable_systick), (20 bytes). + Removing drv_common.o(i.drv_common_get_tick), (12 bytes). + Removing drv_common.o(i.drv_common_idle_mode), (40 bytes). + Removing drv_common.o(i.drv_common_systick_register_cb), (12 bytes). + Removing drv_crgu.o(.rev16_text), (4 bytes). + Removing drv_crgu.o(.revsh_text), (4 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_all_reset_flags), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_clear_reset_flag), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_div), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_config_clocks_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_ana_clk_status), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_clocks), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_fpga_id), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_get_mipi_ref_src), (16 bytes). + Removing drv_crgu.o(i.drv_crgu_get_reset_flag), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_get_system_clk), (28 bytes). + Removing drv_crgu.o(i.drv_crgu_reset_chip), (12 bytes). + Removing drv_crgu.o(i.drv_crgu_set_200m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_300m_scan_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_abp0_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_adc_src), (24 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb1_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_apb2_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_fls_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_div), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_monitor_src), (20 bytes). + Removing drv_crgu.o(i.drv_crgu_set_swire_div), (20 bytes). + Removing drv_dma.o(.rev16_text), (4 bytes). + Removing drv_dma.o(.revsh_text), (4 bytes). + Removing drv_dma.o(i.drv_dma_abort_transfer), (32 bytes). + Removing drv_dma.o(i.drv_dma_ahb_init), (74 bytes). + Removing drv_dma.o(i.drv_dma_channel_is_active), (20 bytes). + Removing drv_dma.o(i.drv_dma_deinit), (32 bytes). + Removing drv_dma.o(i.drv_dma_disenable_channel_interrupts), (24 bytes). + Removing drv_dma.o(i.drv_dma_enable_cycle), (44 bytes). + Removing drv_dma.o(i.drv_dma_get_remaining_bytes), (32 bytes). + Removing drv_dma.o(i.drv_dma_init), (24 bytes). + Removing drv_dma.o(i.drv_dma_m2m_init), (72 bytes). + Removing drv_dma.o(i.drv_dma_reset), (10 bytes). + Removing drv_dma.o(i.drv_dma_set_ccr), (114 bytes). + Removing drv_dma.o(i.drv_dma_start_transfer), (32 bytes). + Removing drv_fls.o(.rev16_text), (4 bytes). + Removing drv_fls.o(.revsh_text), (4 bytes). + Removing drv_fls.o(i.__NVIC_DisableIRQ), (32 bytes). + Removing drv_fls.o(i.drv_fls_gpio_connect), (28 bytes). + Removing drv_fls.o(i.drv_fls_gpio_disconnect), (32 bytes). + Removing drv_fls.o(i.fls_EnableClk), (12 bytes). + Removing drv_fls.o(i.fls_busy_pending), (12 bytes). + Removing drv_fls.o(i.fls_clear_irq_status), (6 bytes). + Removing drv_fls.o(i.fls_ctrl_cfg_init), (72 bytes). + Removing drv_fls.o(i.fls_ddat_enable), (24 bytes). + Removing drv_fls.o(i.fls_de_init), (52 bytes). + Removing drv_fls.o(i.fls_descr), (10 bytes). + Removing drv_fls.o(i.fls_disable_it), (36 bytes). + Removing drv_fls.o(i.fls_en_scr), (10 bytes). + Removing drv_fls.o(i.fls_enable_it), (48 bytes). + Removing drv_fls.o(i.fls_get_crcout), (4 bytes). + Removing drv_fls.o(i.fls_get_default_fls_config), (20 bytes). + Removing drv_fls.o(i.fls_get_default_spi_config), (44 bytes). + Removing drv_fls.o(i.fls_get_default_tuning), (12 bytes). + Removing drv_fls.o(i.fls_get_tuning), (18 bytes). + Removing drv_fls.o(i.fls_init), (62 bytes). + Removing drv_fls.o(i.fls_qadr_enable), (22 bytes). + Removing drv_fls.o(i.fls_qcmd_enable), (22 bytes). + Removing drv_fls.o(i.fls_qdat_enable), (22 bytes). + Removing drv_fls.o(i.fls_read_byte_data), (130 bytes). + Removing drv_fls.o(i.fls_read_cmd), (104 bytes). + Removing drv_fls.o(i.fls_read_cmd_it), (110 bytes). + Removing drv_fls.o(i.fls_reset_crc), (18 bytes). + Removing drv_fls.o(i.fls_scr_clear), (10 bytes). + Removing drv_fls.o(i.fls_set_addr_dummy), (32 bytes). + Removing drv_fls.o(i.fls_set_addr_len), (32 bytes). + Removing drv_fls.o(i.fls_set_mc_irq_mask), (26 bytes). + Removing drv_fls.o(i.fls_set_read), (10 bytes). + Removing drv_fls.o(i.fls_set_tuning), (24 bytes). + Removing drv_fls.o(i.fls_set_write), (10 bytes). + Removing drv_fls.o(i.fls_single_mode), (16 bytes). + Removing drv_fls.o(i.fls_spi_init), (180 bytes). + Removing drv_fls.o(i.fls_spi_start), (10 bytes). + Removing drv_fls.o(i.fls_swrst), (18 bytes). + Removing drv_fls.o(i.fls_write_byte_data), (164 bytes). + Removing drv_fls.o(i.fls_write_cmd), (58 bytes). + Removing drv_fls.o(.data), (4 bytes). + Removing drv_gpio.o(.rev16_text), (4 bytes). + Removing drv_gpio.o(.revsh_text), (4 bytes). + Removing drv_gpio.o(i.drv_gpio_get_pull_state), (224 bytes). + Removing drv_gpio.o(i.drv_gpio_set_driving_strength), (312 bytes). + Removing drv_gpio.o(i.drv_gpio_set_schmitt_trigger), (168 bytes). + Removing drv_gpio.o(i.drv_gpio_set_slew_rate), (168 bytes). + Removing drv_i2c_dma.o(.rev16_text), (4 bytes). + Removing drv_i2c_dma.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(.rev16_text), (4 bytes). + Removing drv_i2c_master.o(.revsh_text), (4 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_bus_init), (36 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_deinit), (44 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_disable_intr), (16 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_get_fifo_status), (28 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_read_data), (32 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_fifo_threshold), (24 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_set_sys_mask), (48 bytes). + Removing drv_i2c_master.o(i.drv_i2c_m_write_data), (32 bytes). + Removing drv_i2c_slave.o(.rev16_text), (4 bytes). + Removing drv_i2c_slave.o(.revsh_text), (4 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_read_data), (30 bytes). + Removing drv_i2c_slave.o(i.drv_i2c_s_set_fifo_threshold), (16 bytes). + Removing drv_param_init.o(.rev16_text), (4 bytes). + Removing drv_param_init.o(.revsh_text), (4 bytes). + Removing drv_param_init.o(i.drv_param_init_set_sclu_filter), (28 bytes). + Removing drv_pwm.o(.rev16_text), (4 bytes). + Removing drv_pwm.o(.revsh_text), (4 bytes). + Removing drv_pwm.o(i.drv_pwm_in_clear_pwm_int_all), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_counter_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_current_count), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_high_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_get_low_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_in_register_callback), (24 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_pwm_int), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_in_set_sys_int), (64 bytes). + Removing drv_pwm.o(i.drv_pwm_out_enable), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_get_sync_flag), (16 bytes). + Removing drv_pwm.o(i.drv_pwm_out_pause), (28 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_control), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_period), (12 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_sync_mode), (32 bytes). + Removing drv_pwm.o(i.drv_pwm_out_set_threshold), (12 bytes). + Removing drv_pwr.o(.rev16_text), (4 bytes). + Removing drv_pwr.o(.revsh_text), (4 bytes). + Removing drv_pwr.o(i.drv_pwr_enter_deep_sleep_mode), (44 bytes). + Removing drv_pwr.o(i.drv_pwr_set_frame_buff_pd), (28 bytes). + Removing drv_spi_dma.o(.rev16_text), (4 bytes). + Removing drv_spi_dma.o(.revsh_text), (4 bytes). + Removing drv_spi_dma.o(i.__NVIC_ClearPendingIRQ), (24 bytes). + Removing drv_spi_dma.o(i.drv_spi_abort_dma), (108 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_callback), (60 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_ch6_init), (208 bytes). + Removing drv_spi_dma.o(i.drv_spi_dma_init), (220 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_ch6_irq_callback), (48 bytes). + Removing drv_spi_dma.o(i.drv_spi_set_dma_irq_callback), (88 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_read), (96 bytes). + Removing drv_spi_dma.o(i.drv_spim_dma_write), (60 bytes). + Removing drv_spi_dma.o(i.drv_spis_dma_write), (72 bytes). + Removing drv_spi_dma.o(.bss), (480 bytes). + Removing drv_spi_dma.o(.data), (16 bytes). + Removing drv_spi_master.o(.rev16_text), (4 bytes). + Removing drv_spi_master.o(.revsh_text), (4 bytes). + Removing drv_spi_master.o(i.drv_spi_m_deinit), (40 bytes). + Removing drv_spi_master.o(i.drv_spi_m_disable_int), (68 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_int), (72 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_rx_dma), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_enable_tx_dma), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_get_dma_address), (8 bytes). + Removing drv_spi_master.o(i.drv_spi_m_gpio_init), (32 bytes). + Removing drv_spi_master.o(i.drv_spi_m_set_intr_callback), (12 bytes). + Removing drv_spi_master.o(i.drv_spi_m_switch_sclk), (28 bytes). + Removing drv_spi_master.o(i.drv_spi_m_write_data), (44 bytes). + Removing drv_spi_master.o(i.drv_spi_master_init), (164 bytes). + Removing drv_swire.o(.rev16_text), (4 bytes). + Removing drv_swire.o(.revsh_text), (4 bytes). + Removing drv_swire.o(i.drv_swire_register_callback), (12 bytes). + Removing drv_swire.o(i.drv_swire_set_bit_time), (24 bytes). + Removing drv_swire.o(i.drv_swire_set_pulse_count), (12 bytes). + Removing drv_sys_cfg.o(.rev16_text), (4 bytes). + Removing drv_sys_cfg.o(.revsh_text), (4 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_dma_req_mask), (32 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_read_version0_id), (12 bytes). + Removing drv_sys_cfg.o(i.drv_sys_cfg_set_ap_reset), (28 bytes). + Removing drv_timer.o(.rev16_text), (4 bytes). + Removing drv_timer.o(.revsh_text), (4 bytes). + Removing drv_timer.o(i.drv_timer_get_status), (38 bytes). + Removing hal_internal_vsync.o(.rev16_text), (4 bytes). + Removing hal_internal_vsync.o(.revsh_text), (4 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_cmd_mode_rcv_te), (168 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change), (556 bytes). + Removing hal_internal_vsync.o(i.hal_internal_sync_set_fb_setting_manual), (528 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_set_dcs_direct_mode), (48 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_toggle_input_frame_rate), (560 bytes). + Removing hal_internal_vsync.o(i.hal_internal_vsync_update_lcdc_addr), (48 bytes). + Removing dcs_packet_fifo.o(i.dcs_packet_get_fifo_size), (16 bytes). + Removing drv_dsi_rx.o(.rev16_text), (4 bytes). + Removing drv_dsi_rx.o(.revsh_text), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_phy_stopstate), (66 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_get_version), (4 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_phy_resistor_calibration), (236 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_pg_cfg), (32 bytes). + Removing drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_pg_cfg), (48 bytes). + Removing drv_dsi_rx.o(i.drv_rx_phy_test_read), (12 bytes). + Removing drv_dsi_tx.o(.rev16_text), (4 bytes). + Removing drv_dsi_tx.o(.revsh_text), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_force_interrupt), (8 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_get_phy_status), (6 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_forcepll), (12 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_resistor_calibration), (232 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_start), (18 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_pll_lock), (10 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ulpsactivenot), (62 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_trigger), (92 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_enter), (344 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_phy_ulps_exit), (276 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_sdf_3d), (28 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_bta), (22 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_set_vpg), (70 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_version), (4 bytes). + Removing drv_dsi_tx.o(i.drv_dsi_tx_vid_shadow), (16 bytes). + Removing drv_dsi_tx.o(i.drv_tx_phy_test_read), (10 bytes). + Removing drv_lcdc.o(.rev16_text), (4 bytes). + Removing drv_lcdc.o(.revsh_text), (4 bytes). + Removing drv_lcdc.o(i.drv_lcdc_config_rgb_to_pentile), (6 bytes). + Removing drv_lcdc.o(i.drv_lcdc_enable), (42 bytes). + Removing drv_lcdc.o(i.drv_lcdc_set_prefetch), (24 bytes). + Removing drv_lcdc.o(i.drv_lcdc_update_shadow_reg), (12 bytes). + Removing drv_memc.o(.rev16_text), (4 bytes). + Removing drv_memc.o(.revsh_text), (4 bytes). + Removing drv_memc.o(i.drv_memc_set_db_frm_time), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_db_int_frame), (28 bytes). + Removing drv_memc.o(i.drv_memc_set_fb_remaining_line_trigger), (12 bytes). + Removing drv_memc.o(i.drv_memc_set_read_trigger_line), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_te_ind), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_tear_hwclr), (16 bytes). + Removing drv_memc.o(i.drv_memc_set_vidc_fb_arb), (14 bytes). + Removing drv_memc.o(i.drv_memc_set_write_trigger_line), (16 bytes). + Removing drv_rxbr.o(.rev16_text), (4 bytes). + Removing drv_rxbr.o(.revsh_text), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_dsc_flush), (16 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_cur_hline_rcv_cnt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_ipi_vsync_interval), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_get_pix_fmt), (8 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_col_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_compress), (24 bytes). + Removing drv_rxbr.o(i.drv_rxbr_set_page_addr), (4 bytes). + Removing drv_rxbr.o(i.drv_rxbr_soft_reset), (98 bytes). + Removing drv_vidc.o(.rev16_text), (4 bytes). + Removing drv_vidc.o(.revsh_text), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_clear_status0), (14 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_cap_pixel), (24 bytes). + Removing drv_vidc.o(i.drv_vidc_debug_signal_frame), (30 bytes). + Removing drv_vidc.o(i.drv_vidc_get_int_source), (38 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status0), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status1), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_get_status2), (6 bytes). + Removing drv_vidc.o(i.drv_vidc_set_dsc_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_frmst_latency), (12 bytes). + Removing drv_vidc.o(i.drv_vidc_set_inff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_set_irq_line), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_module_enable), (20 bytes). + Removing drv_vidc.o(i.drv_vidc_set_outff_thresh), (4 bytes). + Removing drv_vidc.o(i.drv_vidc_update_src_format), (14 bytes). + Removing irq_redirect .o(.rev16_text), (4 bytes). + Removing irq_redirect .o(.revsh_text), (4 bytes). + Removing drv_efuse.o(.rev16_text), (4 bytes). + Removing drv_efuse.o(.revsh_text), (4 bytes). + Removing drv_efuse.o(i.drv_efuse_crc_cal), (128 bytes). + Removing drv_efuse.o(i.drv_efuse_get_default_config), (26 bytes). + Removing drv_efuse.o(i.drv_efuse_int_disable), (12 bytes). + Removing drv_efuse.o(i.drv_efuse_write), (46 bytes). + Removing drv_efuse.o(i.drv_efuse_write_req), (22 bytes). + Removing drv_phy_common.o(.rev16_text), (4 bytes). + Removing drv_phy_common.o(.revsh_text), (4 bytes). + Removing drv_phy_common.o(i.drv_phy_test_read), (8 bytes). + Removing drv_chip_info.o(.rev16_text), (4 bytes). + Removing drv_chip_info.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(.rev16_text), (4 bytes). + Removing drv_dsc_dec.o(.revsh_text), (4 bytes). + Removing drv_dsc_dec.o(i.drv_dsc_dec_set_u32_pps), (120 bytes). + Removing hal_spi_slave.o(.rev16_text), (4 bytes). + Removing hal_spi_slave.o(.revsh_text), (4 bytes). + Removing hal_spi_slave.o(i.hal_spi_s_set_high_impedance), (100 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_abort), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_auto_transfer_start), (56 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_busy), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_deinit), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_disable), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_enable), (96 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_flush_fifo), (20 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_get_rxfifo_notempty), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_gpio_init), (8 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_init), (76 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_read_data), (10 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_register_callback), (12 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_reset_tx), (68 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_rx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_set_auto_tx_buffer), (16 bytes). + Removing hal_spi_slave.o(i.hal_spi_slave_write_data), (14 bytes). + Removing drv_fls_dma.o(.rev16_text), (4 bytes). + Removing drv_fls_dma.o(.revsh_text), (4 bytes). + Removing drv_fls_dma.o(i.fls_abort_dma), (42 bytes). + Removing drv_fls_dma.o(i.fls_dma_disable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_enable), (10 bytes). + Removing drv_fls_dma.o(i.fls_dma_read_prepare), (86 bytes). + Removing drv_fls_dma.o(i.fls_dma_write_prepare), (82 bytes). + Removing drv_fls_dma.o(i.fls_read_dmacallback), (32 bytes). + Removing drv_fls_dma.o(i.fls_transfer_create_handle_dma), (208 bytes). + Removing drv_fls_dma.o(i.fls_transfer_dma), (112 bytes). + Removing drv_fls_dma.o(i.fls_transfer_get_receive_count_dma), (44 bytes). + Removing drv_fls_dma.o(i.fls_write_dmacallback), (32 bytes). + Removing drv_fls_dma.o(.data), (8 bytes). + Removing drv_spi_slave.o(.rev16_text), (4 bytes). + Removing drv_spi_slave.o(.revsh_text), (4 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_deinit), (40 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_disable_int), (68 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_int), (72 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_rx_dma), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_enable_tx_dma), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_get_dma_address), (8 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_gpio_init), (24 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_read_data), (32 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_switch_sclk), (28 bytes). + Removing drv_spi_slave.o(i.drv_spi_s_write_data), (44 bytes). + Removing drv_spi_slave.o(i.drv_spi_slave_init), (76 bytes). + Removing drv_uart.o(.rev16_text), (4 bytes). + Removing drv_uart.o(.revsh_text), (4 bytes). + Removing drv_uart.o(i.UART_AbortReceive), (30 bytes). + Removing drv_uart.o(i.UART_AbortSend), (30 bytes). + Removing drv_uart.o(i.UART_Deinit), (28 bytes). + Removing drv_uart.o(i.UART_Disable_IT), (68 bytes). + Removing drv_uart.o(i.UART_EnableDma), (32 bytes). + Removing drv_uart.o(i.UART_Enable_IT), (44 bytes). + Removing drv_uart.o(i.UART_GetDefaultConfig), (72 bytes). + Removing drv_uart.o(i.UART_GetFIFO_Ctrl), (20 bytes). + Removing drv_uart.o(i.UART_GetReceiveCount), (22 bytes). + Removing drv_uart.o(i.UART_GetReceiveStatus), (20 bytes). + Removing drv_uart.o(i.UART_GetRxRingBufferLength), (28 bytes). + Removing drv_uart.o(i.UART_GetSendCount), (22 bytes). + Removing drv_uart.o(i.UART_GetSendStatus), (20 bytes). + Removing drv_uart.o(i.UART_ReadBlocking), (32 bytes). + Removing drv_uart.o(i.UART_ReceiveNonBlocking), (50 bytes). + Removing drv_uart.o(i.UART_ResetTxFIFO), (36 bytes). + Removing drv_uart.o(i.UART_SendNonBlocking), (38 bytes). + Removing drv_uart.o(i.UART_TransferCreateHandle), (96 bytes). + Removing drv_uart.o(i.UART_TransferStartRingBuffer), (30 bytes). + Removing drv_uart.o(.constdata), (1 bytes). + Removing drv_uart_dma.o(.rev16_text), (4 bytes). + Removing drv_uart_dma.o(.revsh_text), (4 bytes). + Removing drv_uart_dma.o(i.UART_DMAInit), (76 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortReceiveDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferAbortSendDMA), (16 bytes). + Removing drv_uart_dma.o(i.UART_TransferCreateHandleDMA), (176 bytes). + Removing drv_uart_dma.o(i.UART_TransferGetReceiveCountDMA), (44 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferReceiveDMACallback), (34 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMA), (68 bytes). + Removing drv_uart_dma.o(i.UART_TransferSendDMACallback), (34 bytes). + Removing drv_uart_dma.o(.data), (8 bytes). + Removing drv_wdg.o(.rev16_text), (4 bytes). + Removing drv_wdg.o(.revsh_text), (4 bytes). + Removing drv_wdg.o(i.drv_wdg_enable), (32 bytes). + Removing drv_wdg.o(i.drv_wdg_load_match), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_register_callback), (12 bytes). + Removing drv_wdg.o(i.drv_wdg_sel_mode), (28 bytes). + Removing drv_wdg.o(i.drv_wdg_set_repeat), (12 bytes). + Removing dflti.o(.text), (40 bytes). + +616 unused section(s) (total 36083 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 idiv.o ABSOLUTE + ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE + ../mathlib/ceil.c 0x00000000 Number 0 ceil.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE + ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE + ..\..\..\src\common\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\..\..\src\common\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\..\..\src\driver\robin\src\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\..\..\src\driver\source\robin\drv\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\dcs_packet_fifo.c 0x00000000 Number 0 dcs_packet_fifo.o ABSOLUTE + ..\..\..\src\driver\source\robin\hal\internal\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\..\..\src\sdk\robin\src\drv\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_pwm.c 0x00000000 Number 0 hal_pwm.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\..\..\src\sdk\robin\src\hal\internal\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\..\src\app\demo\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\..\src\app\demo\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\..\src\app\demo\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\..\src\app\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\..\src\board\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\..\src\board\startup\startup_ARMCM0.s 0x00000000 Number 0 startup_armcm0.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_delay.c 0x00000000 Number 0 tau_delay.o ABSOLUTE + ..\\..\\..\\src\\common\\tau_log.c 0x00000000 Number 0 tau_log.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_chip_info.c 0x00000000 Number 0 drv_chip_info.o ABSOLUTE + ..\\..\\..\\src\\driver\\robin\\src\\drv_dsc_dec.c 0x00000000 Number 0 drv_dsc_dec.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_rx.c 0x00000000 Number 0 drv_dsi_rx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_dsi_tx.c 0x00000000 Number 0 drv_dsi_tx.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_efuse.c 0x00000000 Number 0 drv_efuse.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_lcdc.c 0x00000000 Number 0 drv_lcdc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_memc.c 0x00000000 Number 0 drv_memc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_phy_common.c 0x00000000 Number 0 drv_phy_common.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_rxbr.c 0x00000000 Number 0 drv_rxbr.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\drv_vidc.c 0x00000000 Number 0 drv_vidc.o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\drv\\irq_redirect .c 0x00000000 Number 0 irq_redirect .o ABSOLUTE + ..\\..\\..\\src\\driver\\source\\robin\\hal\\internal\\hal_internal_vsync.c 0x00000000 Number 0 hal_internal_vsync.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_common.c 0x00000000 Number 0 drv_common.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_crgu.c 0x00000000 Number 0 drv_crgu.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_dma.c 0x00000000 Number 0 drv_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls.c 0x00000000 Number 0 drv_fls.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_fls_dma.c 0x00000000 Number 0 drv_fls_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_gpio.c 0x00000000 Number 0 drv_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_dma.c 0x00000000 Number 0 drv_i2c_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_master.c 0x00000000 Number 0 drv_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_i2c_slave.c 0x00000000 Number 0 drv_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_param_init.c 0x00000000 Number 0 drv_param_init.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwm.c 0x00000000 Number 0 drv_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_pwr.c 0x00000000 Number 0 drv_pwr.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_dma.c 0x00000000 Number 0 drv_spi_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_master.c 0x00000000 Number 0 drv_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_spi_slave.c 0x00000000 Number 0 drv_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_swire.c 0x00000000 Number 0 drv_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_sys_cfg.c 0x00000000 Number 0 drv_sys_cfg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_timer.c 0x00000000 Number 0 drv_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart.c 0x00000000 Number 0 drv_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_uart_dma.c 0x00000000 Number 0 drv_uart_dma.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\drv\\drv_wdg.c 0x00000000 Number 0 drv_wdg.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_rx_ctrl.c 0x00000000 Number 0 hal_dsi_rx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_dsi_tx_ctrl.c 0x00000000 Number 0 hal_dsi_tx_ctrl.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_gpio.c 0x00000000 Number 0 hal_gpio.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_master.c 0x00000000 Number 0 hal_i2c_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_i2c_slave.c 0x00000000 Number 0 hal_i2c_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_pwm.c 0x00000000 Number 0 hal_pwm.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_master.c 0x00000000 Number 0 hal_spi_master.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_spi_slave.c 0x00000000 Number 0 hal_spi_slave.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_swire.c 0x00000000 Number 0 hal_swire.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_system.c 0x00000000 Number 0 hal_system.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_timer.c 0x00000000 Number 0 hal_timer.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\hal_uart.c 0x00000000 Number 0 hal_uart.o ABSOLUTE + ..\\..\\..\\src\\sdk\\robin\\src\\hal\\internal\\norflash.c 0x00000000 Number 0 norflash.o ABSOLUTE + ..\\..\\src\\app\\demo\\ap_demo.c 0x00000000 Number 0 ap_demo.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_for_custom_s8.c 0x00000000 Number 0 app_tp_for_custom_s8.o ABSOLUTE + ..\\..\\src\\app\\demo\\app_tp_transfer.c 0x00000000 Number 0 app_tp_transfer.o ABSOLUTE + ..\\..\\src\\app\\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\\..\\src\\board\\board.c 0x00000000 Number 0 board.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + RESET 0x00010000 Section 192 startup_armcm0.o(RESET) + .ARM.Collect$$$$00000000 0x000100c0 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x000100c0 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x000100c4 Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x000100c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x000100c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x000100c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x000100d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x000100d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x000100d0 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x000100d0 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x000100d4 Section 120 startup_armcm0.o(.text) + .text 0x0001014c Section 0 uidiv.o(.text) + .text 0x00010178 Section 0 idiv.o(.text) + .text 0x000101a0 Section 0 memcpya.o(.text) + .text 0x000101c4 Section 0 memseta.o(.text) + .text 0x000101e8 Section 0 fadd.o(.text) + .text 0x0001029a Section 0 fmul.o(.text) + .text 0x00010314 Section 0 fdiv.o(.text) + .text 0x00010390 Section 0 fscalb.o(.text) + .text 0x000103a8 Section 0 dadd.o(.text) + .text 0x0001050c Section 0 dmul.o(.text) + .text 0x000105dc Section 0 ddiv.o(.text) + .text 0x000106cc Section 0 fflti.o(.text) + .text 0x000106e2 Section 0 ffltui.o(.text) + .text 0x000106f0 Section 0 dfltui.o(.text) + .text 0x0001070c Section 0 ffixi.o(.text) + .text 0x0001073e Section 0 ffixui.o(.text) + .text 0x00010768 Section 0 dfixi.o(.text) + .text 0x000107b0 Section 0 dfixui.o(.text) + .text 0x000107ec Section 0 f2d.o(.text) + .text 0x00010814 Section 40 cdcmple.o(.text) + .text 0x0001083c Section 20 cfrcmple.o(.text) + .text 0x00010850 Section 0 uldiv.o(.text) + .text 0x000108b0 Section 0 llshl.o(.text) + .text 0x000108d0 Section 0 llushr.o(.text) + .text 0x000108f2 Section 0 llsshr.o(.text) + .text 0x00010918 Section 0 fepilogue.o(.text) + .text 0x00010918 Section 0 iusefp.o(.text) + .text 0x0001099a Section 0 depilogue.o(.text) + .text 0x00010a58 Section 0 dsqrt.o(.text) + .text 0x00010afc Section 0 dfixul.o(.text) + .text 0x00010b3c Section 40 cdrcmple.o(.text) + .text 0x00010b64 Section 36 init.o(.text) + .text 0x00010b88 Section 0 __dczerorl2.o(.text) + i.ADC_IRQn_Handler 0x00010be0 Section 0 irq_redirect .o(i.ADC_IRQn_Handler) + i.AP_NRESET_IRQn_Handler 0x00010bf8 Section 0 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + i.DMA_IRQn_Handler 0x00010c10 Section 0 irq_redirect .o(i.DMA_IRQn_Handler) + i.EXTI_INT0_IRQn_Handler 0x00010c24 Section 0 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + i.EXTI_INT1_IRQn_Handler 0x00010c40 Section 0 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + i.EXTI_INT2_IRQn_Handler 0x00010c5c Section 0 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + i.EXTI_INT3_IRQn_Handler 0x00010c78 Section 0 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + i.EXTI_INT4_IRQn_Handler 0x00010c94 Section 0 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + i.EXTI_INT5_IRQn_Handler 0x00010cb0 Section 0 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + i.EXTI_INT6_IRQn_Handler 0x00010ccc Section 0 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + i.EXTI_INT7_IRQn_Handler 0x00010ce8 Section 0 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + i.FLSCTRL_IRQn_Handler 0x00010d04 Section 0 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + i.Gpio_swire_output 0x00010d18 Section 0 ap_demo.o(i.Gpio_swire_output) + i.HardFault_Handler 0x00010d68 Section 0 irq_redirect .o(i.HardFault_Handler) + i.I2C0_IRQn_Handler 0x00010d7c Section 0 irq_redirect .o(i.I2C0_IRQn_Handler) + i.I2C1_IRQn_Handler 0x00010d94 Section 0 irq_redirect .o(i.I2C1_IRQn_Handler) + i.LCDC_IRQn_Handler 0x00010dac Section 0 irq_redirect .o(i.LCDC_IRQn_Handler) + i.LOG_printf 0x00010dc4 Section 0 tau_log.o(i.LOG_printf) + i.MEMC_IRQn_Handler 0x00010dec Section 0 irq_redirect .o(i.MEMC_IRQn_Handler) + i.MIPI_RX_IRQn_Handler 0x00010e04 Section 0 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + i.MIPI_TX_IRQn_Handler 0x00010e1c Section 0 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + i.PWMDET_IRQn_Handler 0x00010e34 Section 0 irq_redirect .o(i.PWMDET_IRQn_Handler) + i.S20_Start_init 0x00010e50 Section 0 app_tp_transfer.o(i.S20_Start_init) + i.SPIM_IRQn_Handler 0x00010f74 Section 0 irq_redirect .o(i.SPIM_IRQn_Handler) + i.SPIS_IRQn_Handler 0x00010f90 Section 0 irq_redirect .o(i.SPIS_IRQn_Handler) + i.SWIRE_IRQn_Handler 0x00010fac Section 0 irq_redirect .o(i.SWIRE_IRQn_Handler) + i.SysTick_Handler 0x00010fc8 Section 0 irq_redirect .o(i.SysTick_Handler) + i.TIMER0_IRQn_Handler 0x00010fe0 Section 0 irq_redirect .o(i.TIMER0_IRQn_Handler) + i.UART_DisableDma 0x00010ff8 Section 0 drv_uart.o(i.UART_DisableDma) + i.UART_GetInstance 0x00010ffa Section 0 drv_uart.o(i.UART_GetInstance) + i.__scatterload_null 0x00010ffe Section 2 handlers.o(i.__scatterload_null) + .ARM.__at_0x11000 0x00011000 Section 20 drv_common.o(.ARM.__at_0x11000) + i.ap_set_display_on 0x00011014 Section 0 ap_demo.o(i.ap_set_display_on) + ap_set_display_on 0x00011015 Thumb Code 4 ap_demo.o(i.ap_set_display_on) + .ARM.__at_0x11018 0x00011018 Section 4 drv_common.o(.ARM.__at_0x11018) + i.TIMER1_IRQn_Handler 0x0001101c Section 0 irq_redirect .o(i.TIMER1_IRQn_Handler) + i.TIMER2_IRQn_Handler 0x00011034 Section 0 irq_redirect .o(i.TIMER2_IRQn_Handler) + i.TIMER3_IRQn_Handler 0x0001104c Section 0 irq_redirect .o(i.TIMER3_IRQn_Handler) + i.UART0_IRQ_Handle 0x00011064 Section 0 drv_uart.o(i.UART0_IRQ_Handle) + i.UART_IRQn_Handler 0x00011080 Section 0 irq_redirect .o(i.UART_IRQn_Handler) + i.UART_ResetRxFIFO 0x00011098 Section 0 drv_uart.o(i.UART_ResetRxFIFO) + i.UART_SetBaudRate 0x000110bc Section 0 drv_uart.o(i.UART_SetBaudRate) + i.UART_SwitchSCLK 0x00011104 Section 0 drv_uart.o(i.UART_SwitchSCLK) + i.UART_TransferHandleIRQ 0x0001111e Section 0 drv_uart.o(i.UART_TransferHandleIRQ) + i.UART_WriteBlocking 0x00011252 Section 0 drv_uart.o(i.UART_WriteBlocking) + i.UART_init 0x0001126c Section 0 drv_uart.o(i.UART_init) + i.VIDC_IRQn_Handler 0x00011328 Section 0 irq_redirect .o(i.VIDC_IRQn_Handler) + i.VPRE_IRQn_Handler 0x00011340 Section 0 irq_redirect .o(i.VPRE_IRQn_Handler) + i.WDG_IRQn_Handler 0x00011358 Section 0 irq_redirect .o(i.WDG_IRQn_Handler) + i.__0printf 0x00011370 Section 0 printfa.o(i.__0printf) + i.__0vsprintf 0x00011390 Section 0 printfa.o(i.__0vsprintf) + i.__ARM_clz 0x000113b4 Section 0 depilogue.o(i.__ARM_clz) + i.__ARM_common_switch8 0x000113e2 Section 0 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + i.__NVIC_ClearPendingIRQ 0x000113fc Section 0 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x000113fd Thumb Code 18 drv_i2c_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_ClearPendingIRQ 0x00011414 Section 0 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + __NVIC_ClearPendingIRQ 0x00011415 Thumb Code 18 drv_spi_master.o(i.__NVIC_ClearPendingIRQ) + i.__NVIC_DisableIRQ 0x0001142c Section 0 drv_rxbr.o(i.__NVIC_DisableIRQ) + __NVIC_DisableIRQ 0x0001142d Thumb Code 26 drv_rxbr.o(i.__NVIC_DisableIRQ) + i.__NVIC_EnableIRQ 0x0001144c Section 0 drv_rxbr.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x0001144d Thumb Code 18 drv_rxbr.o(i.__NVIC_EnableIRQ) + i.__NVIC_SetPriority 0x00011464 Section 0 hal_spi_slave.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x00011465 Thumb Code 60 hal_spi_slave.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x000114a8 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_zeroinit 0x000114b6 Section 14 handlers.o(i.__scatterload_zeroinit) + i.__set_errno 0x000114c4 Section 0 errno.o(i.__set_errno) + i._fp_digits 0x000114d0 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x000114d1 Thumb Code 344 printfa.o(i._fp_digits) + i._printf_core 0x00011644 Section 0 printfa.o(i._printf_core) + _printf_core 0x00011645 Thumb Code 1754 printfa.o(i._printf_core) + i._printf_post_padding 0x00011d30 Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x00011d31 Thumb Code 32 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x00011d50 Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x00011d51 Thumb Code 44 printfa.o(i._printf_pre_padding) + i._sputc 0x00011d7c Section 0 printfa.o(i._sputc) + _sputc 0x00011d7d Thumb Code 10 printfa.o(i._sputc) + i.ap_dcs_read 0x00011d88 Section 0 ap_demo.o(i.ap_dcs_read) + ap_dcs_read 0x00011d89 Thumb Code 3460 ap_demo.o(i.ap_dcs_read) + i.ap_demo 0x00012b0c Section 0 ap_demo.o(i.ap_demo) + i.ap_get_reg_df 0x00012c08 Section 0 ap_demo.o(i.ap_get_reg_df) + ap_get_reg_df 0x00012c09 Thumb Code 150 ap_demo.o(i.ap_get_reg_df) + i.ap_reset_cb 0x00012ca4 Section 0 ap_demo.o(i.ap_reset_cb) + ap_reset_cb 0x00012ca5 Thumb Code 38 ap_demo.o(i.ap_reset_cb) + i.ap_set_backlight_51 0x00012cd4 Section 0 ap_demo.o(i.ap_set_backlight_51) + ap_set_backlight_51 0x00012cd5 Thumb Code 68 ap_demo.o(i.ap_set_backlight_51) + i.ap_set_display_off 0x00012d1c Section 0 ap_demo.o(i.ap_set_display_off) + ap_set_display_off 0x00012d1d Thumb Code 18 ap_demo.o(i.ap_set_display_off) + i.ap_set_enter_sleep_mode 0x00012d30 Section 0 ap_demo.o(i.ap_set_enter_sleep_mode) + ap_set_enter_sleep_mode 0x00012d31 Thumb Code 62 ap_demo.o(i.ap_set_enter_sleep_mode) + i.ap_set_exit_sleep_mode 0x00012d74 Section 0 ap_demo.o(i.ap_set_exit_sleep_mode) + ap_set_exit_sleep_mode 0x00012d75 Thumb Code 8 ap_demo.o(i.ap_set_exit_sleep_mode) + i.ap_tp_calibration 0x00012d80 Section 0 app_tp_transfer.o(i.ap_tp_calibration) + i.ap_update_frame_rate 0x00012e30 Section 0 ap_demo.o(i.ap_update_frame_rate) + ap_update_frame_rate 0x00012e31 Thumb Code 44 ap_demo.o(i.ap_update_frame_rate) + i.app_ADC_IRQn_Handler 0x00012e60 Section 0 drv_rxbr.o(i.app_ADC_IRQn_Handler) + i.app_AP_NRESET_IRQn_Handler 0x00012e7c Section 0 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + i.app_EXTI_INT0_IRQn_Handler 0x00012ea0 Section 0 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + i.app_EXTI_INT1_IRQn_Handler 0x00012ebc Section 0 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + i.app_EXTI_INT2_IRQn_Handler 0x00012ed8 Section 0 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + i.app_EXTI_INT3_IRQn_Handler 0x00012ef4 Section 0 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + i.app_EXTI_INT4_IRQn_Handler 0x00012f10 Section 0 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + i.app_EXTI_INT5_IRQn_Handler 0x00012f2c Section 0 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + i.app_EXTI_INT6_IRQn_Handler 0x00012f48 Section 0 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + i.app_EXTI_INT7_IRQn_Handler 0x00012f64 Section 0 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + i.app_HardFault_Handler 0x00012f80 Section 0 drv_common.o(i.app_HardFault_Handler) + i.app_I2C0_IRQn_Handler 0x00012fc8 Section 0 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + i.app_I2C1_IRQn_Handler 0x00012fe0 Section 0 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + i.app_LCDC_IRQn_Handler 0x00012ff0 Section 0 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + i.app_MEMC_IRQn_Handler 0x00013194 Section 0 drv_memc.o(i.app_MEMC_IRQn_Handler) + i.app_MIPI_RX_IRQn_Handler 0x0001321c Section 0 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + i.app_MIPI_TX_IRQn_Handler 0x000134b4 Section 0 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + i.app_PWMDET_IRQn_Handler 0x00013554 Section 0 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + i.app_SPIM_IRQn_Handler 0x0001359c Section 0 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + i.app_SPIS_IRQn_Handler 0x000135cc Section 0 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + i.app_SWIRE_IRQn_Handler 0x000137cc Section 0 drv_swire.o(i.app_SWIRE_IRQn_Handler) + i.app_SysTick_Handler 0x000137ec Section 0 drv_common.o(i.app_SysTick_Handler) + i.app_TIMER0_IRQn_Handler 0x00013804 Section 0 drv_timer.o(i.app_TIMER0_IRQn_Handler) + i.app_TIMER1_IRQn_Handler 0x0001380e Section 0 drv_timer.o(i.app_TIMER1_IRQn_Handler) + i.app_TIMER2_IRQn_Handler 0x00013818 Section 0 drv_timer.o(i.app_TIMER2_IRQn_Handler) + i.app_TIMER3_IRQn_Handler 0x00013822 Section 0 drv_timer.o(i.app_TIMER3_IRQn_Handler) + i.app_UART_IRQn_Handler 0x0001382c Section 0 drv_uart.o(i.app_UART_IRQn_Handler) + i.app_VIDC_IRQn_Handler 0x00013834 Section 0 drv_vidc.o(i.app_VIDC_IRQn_Handler) + i.app_VPRE_IRQn_Handler 0x00013850 Section 0 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + i.app_WDG_IRQn_Handler 0x0001386c Section 0 drv_wdg.o(i.app_WDG_IRQn_Handler) + i.app_dma_irq_handler 0x000138a4 Section 0 drv_dma.o(i.app_dma_irq_handler) + i.app_fls_ctrl_Handler 0x000138b4 Section 0 norflash.o(i.app_fls_ctrl_Handler) + i.app_tp_I2C_init 0x000138e4 Section 0 app_tp_transfer.o(i.app_tp_I2C_init) + i.app_tp_calibration_exec 0x00013908 Section 0 ap_demo.o(i.app_tp_calibration_exec) + i.app_tp_i2cs_callback 0x00013920 Section 0 app_tp_transfer.o(i.app_tp_i2cs_callback) + app_tp_i2cs_callback 0x00013921 Thumb Code 10 app_tp_transfer.o(i.app_tp_i2cs_callback) + i.app_tp_init 0x0001392c Section 0 app_tp_transfer.o(i.app_tp_init) + i.app_tp_m_read 0x00013970 Section 0 app_tp_transfer.o(i.app_tp_m_read) + app_tp_m_read 0x00013971 Thumb Code 32 app_tp_transfer.o(i.app_tp_m_read) + i.app_tp_m_transfer_complate 0x00013990 Section 0 app_tp_transfer.o(i.app_tp_m_transfer_complate) + i.app_tp_m_write 0x00013998 Section 0 app_tp_transfer.o(i.app_tp_m_write) + app_tp_m_write 0x00013999 Thumb Code 8 app_tp_transfer.o(i.app_tp_m_write) + i.app_tp_phone_analysis_data 0x000139a0 Section 0 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + i.app_tp_s_read 0x00013ce0 Section 0 app_tp_transfer.o(i.app_tp_s_read) + i.app_tp_s_write 0x00013ce8 Section 0 app_tp_transfer.o(i.app_tp_s_write) + i.app_tp_screen_analysis_int 0x00013cf0 Section 0 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + i.app_tp_screen_init 0x00013fc4 Section 0 app_tp_transfer.o(i.app_tp_screen_init) + i.app_tp_screen_int_callback 0x00013ff4 Section 0 app_tp_transfer.o(i.app_tp_screen_int_callback) + app_tp_screen_int_callback 0x00013ff5 Thumb Code 8 app_tp_transfer.o(i.app_tp_screen_int_callback) + i.app_tp_screen_int_init 0x00014000 Section 0 app_tp_transfer.o(i.app_tp_screen_int_init) + app_tp_screen_int_init 0x00014001 Thumb Code 48 app_tp_transfer.o(i.app_tp_screen_int_init) + i.app_tp_screen_int_lvl_low 0x00014038 Section 0 app_tp_transfer.o(i.app_tp_screen_int_lvl_low) + app_tp_screen_int_lvl_low 0x00014039 Thumb Code 22 app_tp_transfer.o(i.app_tp_screen_int_lvl_low) + i.app_tp_transfer_phone 0x00014054 Section 0 app_tp_transfer.o(i.app_tp_transfer_phone) + app_tp_transfer_phone 0x00014055 Thumb Code 44 app_tp_transfer.o(i.app_tp_transfer_phone) + i.app_tp_transfer_screen_const 0x00014084 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_const) + app_tp_transfer_screen_const 0x00014085 Thumb Code 50 app_tp_transfer.o(i.app_tp_transfer_screen_const) + i.app_tp_transfer_screen_int 0x000140c4 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_int) + i.app_tp_transfer_screen_start 0x000141c8 Section 0 app_tp_transfer.o(i.app_tp_transfer_screen_start) + i.board_Init 0x000141dc Section 0 board.o(i.board_Init) + i.calc_framebuffer_setting 0x00014200 Section 0 hal_internal_vsync.o(i.calc_framebuffer_setting) + i.ceil 0x000146f0 Section 0 ceil.o(i.ceil) + i.check_mipi_rx_tx_video_info 0x000147b8 Section 0 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + check_mipi_rx_tx_video_info 0x000147b9 Thumb Code 44 hal_internal_vsync.o(i.check_mipi_rx_tx_video_info) + i.check_pkt_buf_rev 0x000147e4 Section 0 hal_internal_vsync.o(i.check_pkt_buf_rev) + check_pkt_buf_rev 0x000147e5 Thumb Code 90 hal_internal_vsync.o(i.check_pkt_buf_rev) + i.dcs_packet_fifo_alloc 0x00014878 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + i.dcs_packet_fifo_init 0x000148d0 Section 0 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + i.dcs_packet_free_fifo_header 0x000148e8 Section 0 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + i.dcs_packet_get_fifo_header 0x0001492c Section 0 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + i.dcs_sw_filter 0x00014950 Section 0 hal_internal_vsync.o(i.dcs_sw_filter) + dcs_sw_filter 0x00014951 Thumb Code 24 hal_internal_vsync.o(i.dcs_sw_filter) + i.delayMs 0x0001496c Section 0 tau_delay.o(i.delayMs) + i.delayUs 0x00014984 Section 0 tau_delay.o(i.delayUs) + i.drv_ap_rst_trig_edge_detect 0x000149a8 Section 0 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + i.drv_chip_info_get_info 0x000149e0 Section 0 drv_chip_info.o(i.drv_chip_info_get_info) + i.drv_chip_info_init 0x000149ec Section 0 drv_chip_info.o(i.drv_chip_info_init) + i.drv_chip_rx_info_check 0x00014a2c Section 0 drv_chip_info.o(i.drv_chip_rx_info_check) + i.drv_chip_rx_init_done 0x00014adc Section 0 drv_chip_info.o(i.drv_chip_rx_init_done) + i.drv_common_enable_systick 0x00014af0 Section 0 drv_common.o(i.drv_common_enable_systick) + i.drv_common_system_init 0x00014b48 Section 0 drv_common.o(i.drv_common_system_init) + i.drv_crgu_config_reset_modules 0x00014b50 Section 0 drv_crgu.o(i.drv_crgu_config_reset_modules) + i.drv_crgu_set_ahb_pre_div 0x00014b60 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + i.drv_crgu_set_ahb_src 0x00014b74 Section 0 drv_crgu.o(i.drv_crgu_set_ahb_src) + i.drv_crgu_set_clock 0x00014b88 Section 0 drv_crgu.o(i.drv_crgu_set_clock) + i.drv_crgu_set_dpi_mux_src 0x00014ba8 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + i.drv_crgu_set_dpi_pre_div 0x00014bbc Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + i.drv_crgu_set_dpi_pre_src 0x00014bd4 Section 0 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + i.drv_crgu_set_dsc_core_div 0x00014be8 Section 0 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + i.drv_crgu_set_dsco_src 0x00014bfc Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src) + i.drv_crgu_set_dsco_src_div 0x00014c10 Section 0 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + i.drv_crgu_set_fb_div 0x00014c24 Section 0 drv_crgu.o(i.drv_crgu_set_fb_div) + i.drv_crgu_set_fb_src 0x00014c38 Section 0 drv_crgu.o(i.drv_crgu_set_fb_src) + i.drv_crgu_set_lcdc_div 0x00014c4c Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_div) + i.drv_crgu_set_lcdc_src 0x00014c60 Section 0 drv_crgu.o(i.drv_crgu_set_lcdc_src) + i.drv_crgu_set_mipi_cfg_src 0x00014c74 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + i.drv_crgu_set_mipi_ref_src 0x00014c88 Section 0 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + i.drv_crgu_set_reset 0x00014ca0 Section 0 drv_crgu.o(i.drv_crgu_set_reset) + i.drv_crgu_set_rxbr_div 0x00014cb8 Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_div) + i.drv_crgu_set_rxbr_src 0x00014ccc Section 0 drv_crgu.o(i.drv_crgu_set_rxbr_src) + i.drv_crgu_set_vidc_src 0x00014ce0 Section 0 drv_crgu.o(i.drv_crgu_set_vidc_src) + i.drv_dma_clear_flag 0x00014cf4 Section 0 drv_dma.o(i.drv_dma_clear_flag) + i.drv_dma_create_handle 0x00014d0c Section 0 drv_dma.o(i.drv_dma_create_handle) + i.drv_dma_disenable_channel 0x00014d28 Section 0 drv_dma.o(i.drv_dma_disenable_channel) + i.drv_dma_enable_channel 0x00014d38 Section 0 drv_dma.o(i.drv_dma_enable_channel) + i.drv_dma_enable_channel_interrupts 0x00014d48 Section 0 drv_dma.o(i.drv_dma_enable_channel_interrupts) + i.drv_dma_get_channel_flag 0x00014d6c Section 0 drv_dma.o(i.drv_dma_get_channel_flag) + i.drv_dma_irq_handler 0x00014d78 Section 0 drv_dma.o(i.drv_dma_irq_handler) + i.drv_dma_prepar_transfer 0x00014e08 Section 0 drv_dma.o(i.drv_dma_prepar_transfer) + i.drv_dma_set_burst 0x00014e1a Section 0 drv_dma.o(i.drv_dma_set_burst) + i.drv_dma_set_callback 0x00014e34 Section 0 drv_dma.o(i.drv_dma_set_callback) + i.drv_dma_set_transfer 0x00014e3c Section 0 drv_dma.o(i.drv_dma_set_transfer) + i.drv_dsc_dec_convert_pps_rc_parameter 0x00014e80 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + i.drv_dsc_dec_disable 0x00014eb6 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_disable) + i.drv_dsc_dec_enable 0x00014ec4 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_enable) + i.drv_dsc_dec_get_nslc 0x00014f38 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + i.drv_dsc_dec_set_u8_pps 0x00014f42 Section 0 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + i.drv_dsi_rx_calc_ipi_tx_delay 0x00014f6c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + i.drv_dsi_rx_enable_irq 0x00015070 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + i.drv_dsi_rx_get_color_bpp 0x000150b0 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + drv_dsi_rx_get_color_bpp 0x000150b1 Thumb Code 62 drv_dsi_rx.o(i.drv_dsi_rx_get_color_bpp) + i.drv_dsi_rx_get_color_pcc 0x00015100 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + drv_dsi_rx_get_color_pcc 0x00015101 Thumb Code 24 drv_dsi_rx.o(i.drv_dsi_rx_get_color_pcc) + i.drv_dsi_rx_get_compression_en 0x0001511c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + i.drv_dsi_rx_get_max_ret_size 0x00015124 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + i.drv_dsi_rx_power_up 0x0001512a Section 0 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + i.drv_dsi_rx_set_ctrl_cfg 0x00015138 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + i.drv_dsi_rx_set_ddi_cfg 0x00015158 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + i.drv_dsi_rx_set_inten 0x00015168 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + i.drv_dsi_rx_set_ipi_cfg 0x0001516c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + i.drv_dsi_rx_set_lane_swap 0x0001517c Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + i.drv_dsi_rx_set_resp_cnt 0x000151c2 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + i.drv_dsi_rx_set_up_phy 0x000151e8 Section 0 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + i.drv_dsi_rx_shut_down 0x000152ec Section 0 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + i.drv_dsi_tx_command_get_payload 0x000152fa Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) + i.drv_dsi_tx_command_header 0x000152fe Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + i.drv_dsi_tx_command_mode_cfg 0x00015312 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + i.drv_dsi_tx_command_put_payload 0x0001537e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + i.drv_dsi_tx_config_eotp 0x00015382 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + i.drv_dsi_tx_config_int 0x0001539a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + i.drv_dsi_tx_dpi_lpcmd_time 0x000153a2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + i.drv_dsi_tx_dpi_mode 0x000153aa Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + i.drv_dsi_tx_dpi_polarity 0x000153b4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + i.drv_dsi_tx_edpi_cmd_size 0x000153d8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + i.drv_dsi_tx_get_cmd_status 0x000153dc Section 0 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + i.drv_dsi_tx_mode 0x000153e0 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_mode) + i.drv_dsi_tx_phy_clock_lane_auto_lp 0x000153e4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + i.drv_dsi_tx_phy_clock_lane_req_hs 0x000153fc Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + i.drv_dsi_tx_phy_lane_mode 0x00015416 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + i.drv_dsi_tx_phy_status_ready 0x00015422 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + i.drv_dsi_tx_phy_status_stopstate 0x00015486 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + i.drv_dsi_tx_phy_test_setup 0x000154c4 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + i.drv_dsi_tx_phy_time_cfg 0x000155f8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + i.drv_dsi_tx_powerup 0x00015616 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + i.drv_dsi_tx_response_mode 0x0001561e Section 0 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + i.drv_dsi_tx_set_bta_ack 0x0001563a Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + i.drv_dsi_tx_set_esc_div 0x00015652 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + i.drv_dsi_tx_set_int 0x00015660 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + i.drv_dsi_tx_set_time_out_div 0x000156a0 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + i.drv_dsi_tx_set_video_chunk 0x000156b0 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + i.drv_dsi_tx_set_video_timing 0x000156b8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + i.drv_dsi_tx_shutdown 0x000156da Section 0 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + i.drv_dsi_tx_timeout_cfg 0x000156e2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + i.drv_dsi_tx_video_mode_cfg 0x00015708 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + i.drv_dsi_tx_video_mode_disable_hact_cmd 0x000157b2 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + i.drv_dsi_tx_video_mode_set_lp_cmd 0x000157c8 Section 0 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + i.drv_efuse_enter_inactive 0x000157e0 Section 0 drv_efuse.o(i.drv_efuse_enter_inactive) + i.drv_efuse_int_enable 0x0001580e Section 0 drv_efuse.o(i.drv_efuse_int_enable) + i.drv_efuse_read 0x0001581a Section 0 drv_efuse.o(i.drv_efuse_read) + i.drv_efuse_read_req 0x0001584c Section 0 drv_efuse.o(i.drv_efuse_read_req) + i.drv_gpio_get_input_data 0x00015864 Section 0 drv_gpio.o(i.drv_gpio_get_input_data) + i.drv_gpio_register_ap_reset_callback 0x0001587c Section 0 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + i.drv_gpio_register_callback 0x00015888 Section 0 drv_gpio.o(i.drv_gpio_register_callback) + i.drv_gpio_set_int 0x0001589c Section 0 drv_gpio.o(i.drv_gpio_set_int) + i.drv_gpio_set_ioe 0x000158ec Section 0 drv_gpio.o(i.drv_gpio_set_ioe) + i.drv_gpio_set_mode0 0x0001590c Section 0 drv_gpio.o(i.drv_gpio_set_mode0) + i.drv_gpio_set_mode1 0x0001591c Section 0 drv_gpio.o(i.drv_gpio_set_mode1) + i.drv_gpio_set_mode2 0x0001592c Section 0 drv_gpio.o(i.drv_gpio_set_mode2) + i.drv_gpio_set_mode3 0x0001593c Section 0 drv_gpio.o(i.drv_gpio_set_mode3) + i.drv_gpio_set_output_data 0x0001594c Section 0 hal_gpio.o(i.drv_gpio_set_output_data) + drv_gpio_set_output_data 0x0001594d Thumb Code 26 hal_gpio.o(i.drv_gpio_set_output_data) + i.drv_gpio_set_pull_state 0x0001596c Section 0 drv_gpio.o(i.drv_gpio_set_pull_state) + i.drv_i2c0_set_callback 0x00015a9c Section 0 drv_i2c_slave.o(i.drv_i2c0_set_callback) + i.drv_i2c1_set_callback 0x00015aa8 Section 0 drv_i2c_master.o(i.drv_i2c1_set_callback) + i.drv_i2c_dma_callback 0x00015ab4 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_callback) + drv_i2c_dma_callback 0x00015ab5 Thumb Code 40 drv_i2c_dma.o(i.drv_i2c_dma_callback) + i.drv_i2c_dma_init 0x00015ae8 Section 0 drv_i2c_dma.o(i.drv_i2c_dma_init) + i.drv_i2c_enable_rx_dma 0x00015b94 Section 0 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + i.drv_i2c_enable_tx_dma 0x00015bae Section 0 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + i.drv_i2c_m_clear_it_pending_bit 0x00015bc8 Section 0 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + i.drv_i2c_m_enable 0x00015c28 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable) + i.drv_i2c_m_enable_intr 0x00015c38 Section 0 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + i.drv_i2c_master_init 0x00015c70 Section 0 drv_i2c_master.o(i.drv_i2c_master_init) + i.drv_i2c_master_read_dma 0x00015cfc Section 0 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + i.drv_i2c_master_write_dma 0x00015d58 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + i.drv_i2c_master_write_read_cmd 0x00015d94 Section 0 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + drv_i2c_master_write_read_cmd 0x00015d95 Thumb Code 62 drv_i2c_dma.o(i.drv_i2c_master_write_read_cmd) + i.drv_i2c_s_clear_it_pending_bit 0x00015dd2 Section 0 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + i.drv_i2c_s_config_intr 0x00015e14 Section 0 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + i.drv_i2c_s_enable 0x00015e18 Section 0 drv_i2c_slave.o(i.drv_i2c_s_enable) + i.drv_i2c_s_get_fifo_status 0x00015e20 Section 0 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + i.drv_i2c_s_set_intr 0x00015e34 Section 0 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + i.drv_i2c_s_write_data 0x00015e84 Section 0 drv_i2c_slave.o(i.drv_i2c_s_write_data) + i.drv_i2c_set_dma_irq_callback 0x00015ea0 Section 0 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + i.drv_i2c_slave_init 0x00015ef8 Section 0 drv_i2c_slave.o(i.drv_i2c_slave_init) + i.drv_i2c_slave_write_dma 0x00015f2c Section 0 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + i.drv_lcdc_config_bypass 0x00015f44 Section 0 drv_lcdc.o(i.drv_lcdc_config_bypass) + i.drv_lcdc_config_ccm 0x00015f5c Section 0 drv_lcdc.o(i.drv_lcdc_config_ccm) + i.drv_lcdc_config_disp_mode 0x00015f8c Section 0 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + i.drv_lcdc_config_dpi_polarity 0x00015fa2 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + i.drv_lcdc_config_dpi_timing 0x00015fc6 Section 0 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + i.drv_lcdc_config_edpi_mode 0x00015fec Section 0 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + i.drv_lcdc_config_endianness 0x00016002 Section 0 drv_lcdc.o(i.drv_lcdc_config_endianness) + i.drv_lcdc_config_input_size 0x00016018 Section 0 drv_lcdc.o(i.drv_lcdc_config_input_size) + i.drv_lcdc_config_int 0x00016024 Section 0 drv_lcdc.o(i.drv_lcdc_config_int) + i.drv_lcdc_config_int_single 0x00016042 Section 0 drv_lcdc.o(i.drv_lcdc_config_int_single) + i.drv_lcdc_config_overwrite 0x00016064 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite) + i.drv_lcdc_config_overwrite_rgb 0x00016086 Section 0 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + i.drv_lcdc_config_partial_display_area 0x00016092 Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + i.drv_lcdc_config_partial_display_enable 0x000160ac Section 0 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + i.drv_lcdc_config_scale_up_coef 0x000160ce Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + i.drv_lcdc_config_scale_up_step 0x000160e8 Section 0 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + i.drv_lcdc_config_src_parameter 0x000160f4 Section 0 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + i.drv_lcdc_config_thresh 0x00016140 Section 0 drv_lcdc.o(i.drv_lcdc_config_thresh) + i.drv_lcdc_ctrl_flow 0x00016146 Section 0 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + i.drv_lcdc_enable_shadow_reg 0x00016158 Section 0 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + i.drv_lcdc_set_int 0x00016178 Section 0 drv_lcdc.o(i.drv_lcdc_set_int) + i.drv_lcdc_set_video_hw_mode 0x000161b8 Section 0 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + i.drv_lcdc_start 0x000161cc Section 0 drv_lcdc.o(i.drv_lcdc_start) + i.drv_memc_clear_status 0x000161ec Section 0 drv_memc.o(i.drv_memc_clear_status) + i.drv_memc_enable_irq 0x000161f8 Section 0 drv_memc.o(i.drv_memc_enable_irq) + i.drv_memc_gen_a_tear_signal 0x00016238 Section 0 drv_memc.o(i.drv_memc_gen_a_tear_signal) + i.drv_memc_get_status 0x00016244 Section 0 drv_memc.o(i.drv_memc_get_status) + i.drv_memc_rate_transfer_sel 0x00016256 Section 0 drv_memc.o(i.drv_memc_rate_transfer_sel) + i.drv_memc_sel_vsync 0x00016266 Section 0 drv_memc.o(i.drv_memc_sel_vsync) + i.drv_memc_set_active_height 0x00016274 Section 0 drv_memc.o(i.drv_memc_set_active_height) + i.drv_memc_set_data_mode 0x00016288 Section 0 drv_memc.o(i.drv_memc_set_data_mode) + i.drv_memc_set_double_buffer 0x00016294 Section 0 drv_memc.o(i.drv_memc_set_double_buffer) + i.drv_memc_set_double_buffer_reverse 0x000162a4 Section 0 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + i.drv_memc_set_fs_en_conditions 0x000162b6 Section 0 drv_memc.o(i.drv_memc_set_fs_en_conditions) + i.drv_memc_set_inten 0x000162c6 Section 0 drv_memc.o(i.drv_memc_set_inten) + i.drv_memc_set_lcdc_st_conditions 0x000162dc Section 0 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + i.drv_memc_set_ltpo_mode 0x000162f4 Section 0 drv_memc.o(i.drv_memc_set_ltpo_mode) + i.drv_memc_set_tear_mode 0x0001630e Section 0 drv_memc.o(i.drv_memc_set_tear_mode) + i.drv_memc_set_tear_waveform 0x0001631c Section 0 drv_memc.o(i.drv_memc_set_tear_waveform) + i.drv_memc_set_vidc_sync_cnt 0x00016344 Section 0 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + i.drv_param_init_get_ccm 0x00016354 Section 0 drv_param_init.o(i.drv_param_init_get_ccm) + i.drv_param_init_get_scld_filter_h 0x0001635c Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + i.drv_param_init_get_scld_filter_v 0x00016370 Section 0 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + i.drv_param_init_get_sclu_filter 0x00016384 Section 0 drv_param_init.o(i.drv_param_init_get_sclu_filter) + i.drv_param_init_set_ccm 0x0001638c Section 0 drv_param_init.o(i.drv_param_init_set_ccm) + i.drv_param_init_set_scld_filter 0x000163a0 Section 0 drv_param_init.o(i.drv_param_init_set_scld_filter) + i.drv_param_p2r_filter_init 0x00016404 Section 0 drv_param_init.o(i.drv_param_p2r_filter_init) + i.drv_phy_enable_calibration 0x00016428 Section 0 drv_phy_common.o(i.drv_phy_enable_calibration) + i.drv_phy_get_calibration 0x00016438 Section 0 drv_phy_common.o(i.drv_phy_get_calibration) + i.drv_phy_get_pll_para 0x00016474 Section 0 drv_phy_common.o(i.drv_phy_get_pll_para) + i.drv_phy_get_rate_para 0x000164d4 Section 0 drv_phy_common.o(i.drv_phy_get_rate_para) + i.drv_phy_test_clear 0x00016528 Section 0 drv_phy_common.o(i.drv_phy_test_clear) + i.drv_phy_test_lock 0x00016538 Section 0 drv_phy_common.o(i.drv_phy_test_lock) + i.drv_phy_test_write_1_byte 0x00016550 Section 0 drv_phy_common.o(i.drv_phy_test_write_1_byte) + i.drv_phy_test_write_2_byte 0x00016570 Section 0 drv_phy_common.o(i.drv_phy_test_write_2_byte) + i.drv_phy_test_write_code 0x00016596 Section 0 drv_phy_common.o(i.drv_phy_test_write_code) + i.drv_phy_test_write_data 0x000165b4 Section 0 drv_phy_common.o(i.drv_phy_test_write_data) + drv_phy_test_write_data 0x000165b5 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_data) + i.drv_pwr_set_cp_mode 0x000165d4 Section 0 drv_pwr.o(i.drv_pwr_set_cp_mode) + i.drv_pwr_set_pvd_mode 0x000165f4 Section 0 drv_pwr.o(i.drv_pwr_set_pvd_mode) + i.drv_pwr_set_system_clk_src 0x0001660c Section 0 drv_pwr.o(i.drv_pwr_set_system_clk_src) + i.drv_rx_phy_test_clear 0x00016644 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + drv_rx_phy_test_clear 0x00016645 Thumb Code 12 drv_dsi_rx.o(i.drv_rx_phy_test_clear) + i.drv_rx_phy_test_lock 0x00016650 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + drv_rx_phy_test_lock 0x00016651 Thumb Code 16 drv_dsi_rx.o(i.drv_rx_phy_test_lock) + i.drv_rx_phy_test_write_1_byte 0x00016660 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + drv_rx_phy_test_write_1_byte 0x00016661 Thumb Code 20 drv_dsi_rx.o(i.drv_rx_phy_test_write_1_byte) + i.drv_rx_phy_test_write_2_byte 0x00016674 Section 0 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + drv_rx_phy_test_write_2_byte 0x00016675 Thumb Code 22 drv_dsi_rx.o(i.drv_rx_phy_test_write_2_byte) + i.drv_rxbr_clear_pkt_buffer 0x0001668a Section 0 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + i.drv_rxbr_clear_status0 0x00016694 Section 0 drv_rxbr.o(i.drv_rxbr_clear_status0) + i.drv_rxbr_enable_irq 0x00016698 Section 0 drv_rxbr.o(i.drv_rxbr_enable_irq) + i.drv_rxbr_frame_drop_cfg 0x000166f4 Section 0 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + i.drv_rxbr_get_clk 0x00016708 Section 0 drv_rxbr.o(i.drv_rxbr_get_clk) + i.drv_rxbr_get_col_addr 0x0001676c Section 0 drv_rxbr.o(i.drv_rxbr_get_col_addr) + i.drv_rxbr_get_int_source 0x00016770 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + drv_rxbr_get_int_source 0x00016771 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_int_source) + i.drv_rxbr_get_page_addr 0x00016782 Section 0 drv_rxbr.o(i.drv_rxbr_get_page_addr) + i.drv_rxbr_get_status0 0x00016786 Section 0 hal_internal_vsync.o(i.drv_rxbr_get_status0) + drv_rxbr_get_status0 0x00016787 Thumb Code 18 hal_internal_vsync.o(i.drv_rxbr_get_status0) + i.drv_rxbr_hline_rcv0_cfg 0x00016798 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + i.drv_rxbr_hline_rcv_cfg 0x000167a4 Section 0 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + i.drv_rxbr_register_irq0_callback 0x000167ac Section 0 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + i.drv_rxbr_register_irq1_callback 0x000167b8 Section 0 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + i.drv_rxbr_set_ack_pkt_header 0x000167c4 Section 0 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + i.drv_rxbr_set_cmd_filter 0x000167d8 Section 0 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + i.drv_rxbr_set_color_format 0x000168a4 Section 0 drv_rxbr.o(i.drv_rxbr_set_color_format) + i.drv_rxbr_set_inten 0x000168b8 Section 0 drv_rxbr.o(i.drv_rxbr_set_inten) + i.drv_rxbr_set_ltpo_drop_th 0x000168cc Section 0 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + i.drv_rxbr_set_usr_cfg 0x000168dc Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + i.drv_rxbr_set_usr_col 0x00016902 Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_col) + i.drv_rxbr_set_usr_row 0x0001690a Section 0 drv_rxbr.o(i.drv_rxbr_set_usr_row) + i.drv_spi_m_read_data 0x00016914 Section 0 drv_spi_master.o(i.drv_spi_m_read_data) + i.drv_swire_enable 0x00016934 Section 0 drv_swire.o(i.drv_swire_enable) + i.drv_swire_set_int 0x00016950 Section 0 drv_swire.o(i.drv_swire_set_int) + i.drv_swire_set_power_down 0x000169a4 Section 0 drv_swire.o(i.drv_swire_set_power_down) + i.drv_sys_cfg_clear_all_int 0x000169c0 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + i.drv_sys_cfg_clear_pending 0x000169cc Section 0 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + i.drv_sys_cfg_sel_ap_rst_lvl_trig 0x000169f4 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + i.drv_sys_cfg_sel_ap_rst_trig 0x00016a0c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + i.drv_sys_cfg_sel_gpio_group 0x00016a28 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + i.drv_sys_cfg_sel_int_trig 0x00016a4c Section 0 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + i.drv_sys_cfg_set_dma_rx_req 0x00016a70 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + i.drv_sys_cfg_set_dma_tx_req 0x00016a80 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + i.drv_sys_cfg_set_int 0x00016a90 Section 0 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + i.drv_timer_clear_status_flags 0x00016ab4 Section 0 drv_timer.o(i.drv_timer_clear_status_flags) + drv_timer_clear_status_flags 0x00016ab5 Thumb Code 26 drv_timer.o(i.drv_timer_clear_status_flags) + i.drv_timer_enable 0x00016ace Section 0 drv_timer.o(i.drv_timer_enable) + i.drv_timer_get_instance 0x00016af0 Section 0 drv_timer.o(i.drv_timer_get_instance) + i.drv_timer_get_prescaler 0x00016b00 Section 0 drv_timer.o(i.drv_timer_get_prescaler) + i.drv_timer_handle_interrupt 0x00016b10 Section 0 drv_timer.o(i.drv_timer_handle_interrupt) + drv_timer_handle_interrupt 0x00016b11 Thumb Code 62 drv_timer.o(i.drv_timer_handle_interrupt) + i.drv_timer_register_callback 0x00016b54 Section 0 drv_timer.o(i.drv_timer_register_callback) + i.drv_timer_set_compare_val 0x00016b68 Section 0 drv_timer.o(i.drv_timer_set_compare_val) + i.drv_timer_set_int 0x00016b78 Section 0 drv_timer.o(i.drv_timer_set_int) + i.drv_timer_set_prescaler 0x00016bcc Section 0 drv_timer.o(i.drv_timer_set_prescaler) + i.drv_timer_set_repeat 0x00016bf4 Section 0 drv_timer.o(i.drv_timer_set_repeat) + i.drv_tx_phy_test_clear 0x00016c04 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + drv_tx_phy_test_clear 0x00016c05 Thumb Code 10 drv_dsi_tx.o(i.drv_tx_phy_test_clear) + i.drv_tx_phy_test_enter 0x00016c0e Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + i.drv_tx_phy_test_exit 0x00016c2a Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + i.drv_tx_phy_test_write_1_byte 0x00016c46 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + drv_tx_phy_test_write_1_byte 0x00016c47 Thumb Code 18 drv_dsi_tx.o(i.drv_tx_phy_test_write_1_byte) + i.drv_tx_phy_test_write_2_byte 0x00016c58 Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + drv_tx_phy_test_write_2_byte 0x00016c59 Thumb Code 20 drv_dsi_tx.o(i.drv_tx_phy_test_write_2_byte) + i.drv_tx_phy_test_write_code 0x00016c6c Section 0 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + drv_tx_phy_test_write_code 0x00016c6d Thumb Code 16 drv_dsi_tx.o(i.drv_tx_phy_test_write_code) + i.drv_vidc_clear_irq 0x00016c7c Section 0 drv_vidc.o(i.drv_vidc_clear_irq) + i.drv_vidc_enable 0x00016c84 Section 0 drv_vidc.o(i.drv_vidc_enable) + i.drv_vidc_enable_irq 0x00016c9c Section 0 drv_vidc.o(i.drv_vidc_enable_irq) + i.drv_vidc_get_irq_status 0x00016cdc Section 0 drv_vidc.o(i.drv_vidc_get_irq_status) + i.drv_vidc_init_module_enable 0x00016cf0 Section 0 drv_vidc.o(i.drv_vidc_init_module_enable) + i.drv_vidc_register_callback 0x00016d18 Section 0 drv_vidc.o(i.drv_vidc_register_callback) + i.drv_vidc_reset 0x00016d24 Section 0 drv_vidc.o(i.drv_vidc_reset) + i.drv_vidc_set_dst_parameter 0x00016d2a Section 0 drv_vidc.o(i.drv_vidc_set_dst_parameter) + i.drv_vidc_set_irqen 0x00016d66 Section 0 drv_vidc.o(i.drv_vidc_set_irqen) + i.drv_vidc_set_mirror 0x00016d7a Section 0 drv_vidc.o(i.drv_vidc_set_mirror) + i.drv_vidc_set_p2r_hcoef0 0x00016d8a Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + i.drv_vidc_set_p2r_hinitb 0x00016d92 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + i.drv_vidc_set_p2r_hinitr 0x00016db8 Section 0 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + i.drv_vidc_set_pentile_swap 0x00016de0 Section 0 drv_vidc.o(i.drv_vidc_set_pentile_swap) + i.drv_vidc_set_pu_ctrl 0x00016df8 Section 0 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + i.drv_vidc_set_rotation 0x00016e02 Section 0 drv_vidc.o(i.drv_vidc_set_rotation) + i.drv_vidc_set_scld_hcoef0 0x00016e12 Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + i.drv_vidc_set_scld_hcoef1 0x00016e1c Section 0 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + i.drv_vidc_set_scld_step 0x00016e26 Section 0 drv_vidc.o(i.drv_vidc_set_scld_step) + i.drv_vidc_set_scld_vcoef0 0x00016e38 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + i.drv_vidc_set_scld_vcoef1 0x00016e42 Section 0 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + i.drv_vidc_set_src_parameter 0x00016e4c Section 0 drv_vidc.o(i.drv_vidc_set_src_parameter) + i.drv_wdg_clear_counter 0x00016e64 Section 0 drv_wdg.o(i.drv_wdg_clear_counter) + i.drv_wdg_clear_edge_flag 0x00016e74 Section 0 drv_wdg.o(i.drv_wdg_clear_edge_flag) + drv_wdg_clear_edge_flag 0x00016e75 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_edge_flag) + i.drv_wdg_read_edge_flag 0x00016e84 Section 0 drv_wdg.o(i.drv_wdg_read_edge_flag) + drv_wdg_read_edge_flag 0x00016e85 Thumb Code 10 drv_wdg.o(i.drv_wdg_read_edge_flag) + i.drv_wdg_set_int 0x00016e94 Section 0 drv_wdg.o(i.drv_wdg_set_int) + i.fls_clr_interrupt_flag 0x00016ed4 Section 0 drv_fls.o(i.fls_clr_interrupt_flag) + i.fputc 0x00016ede Section 0 tau_log.o(i.fputc) + i.hal_dsi_rx_ctrl_create_handle 0x00016ef4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + i.hal_dsi_rx_ctrl_deinit 0x00016f28 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + i.hal_dsi_rx_ctrl_dsc_async_handler 0x00016fc4 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + i.hal_dsi_rx_ctrl_gen_a_tear_signal 0x00017048 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + i.hal_dsi_rx_ctrl_get_compressen_en 0x00017070 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) + i.hal_dsi_rx_ctrl_get_max_ret_size 0x00017080 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + i.hal_dsi_rx_ctrl_init 0x000170a8 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + i.hal_dsi_rx_ctrl_init_clk 0x00017108 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + hal_dsi_rx_ctrl_init_clk 0x00017109 Thumb Code 332 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_clk) + i.hal_dsi_rx_ctrl_init_dsi_rx 0x000172ac Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + hal_dsi_rx_ctrl_init_dsi_rx 0x000172ad Thumb Code 184 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_dsi_rx) + i.hal_dsi_rx_ctrl_init_memc 0x00017384 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + hal_dsi_rx_ctrl_init_memc 0x00017385 Thumb Code 334 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_memc) + i.hal_dsi_rx_ctrl_init_rxbr 0x000174dc Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + hal_dsi_rx_ctrl_init_rxbr 0x000174dd Thumb Code 312 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_rxbr) + i.hal_dsi_rx_ctrl_init_vidc 0x00017624 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + hal_dsi_rx_ctrl_init_vidc 0x00017625 Thumb Code 544 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init_vidc) + i.hal_dsi_rx_ctrl_send_ack_cmd 0x00017850 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + i.hal_dsi_rx_ctrl_set_cus_scld_filter 0x00017940 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) + i.hal_dsi_rx_ctrl_set_cus_sync_line 0x000179ac Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + i.hal_dsi_rx_ctrl_set_ipi_cfg 0x000179e0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + hal_dsi_rx_ctrl_set_ipi_cfg 0x000179e1 Thumb Code 50 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_ipi_cfg) + i.hal_dsi_rx_ctrl_set_rxbr_clk 0x00017a18 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + hal_dsi_rx_ctrl_set_rxbr_clk 0x00017a19 Thumb Code 114 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_rxbr_clk) + i.hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017a8c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + i.hal_dsi_rx_ctrl_set_tear_mode_ex 0x00017ac0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) + i.hal_dsi_rx_ctrl_start 0x00017ad0 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + i.hal_dsi_rx_ctrl_stop 0x00017b0c Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + i.hal_dsi_rx_ctrl_toggle_resolution_ex 0x00017b48 Section 0 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) + i.hal_dsi_tx_calc_video_chunks 0x00017b68 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + hal_dsi_tx_calc_video_chunks 0x00017b69 Thumb Code 384 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_calc_video_chunks) + i.hal_dsi_tx_config_params_for_lane_rate 0x00017cf8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + hal_dsi_tx_config_params_for_lane_rate 0x00017cf9 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_config_params_for_lane_rate) + i.hal_dsi_tx_count_lane_rate 0x00017d2c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + hal_dsi_tx_count_lane_rate 0x00017d2d Thumb Code 1022 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_count_lane_rate) + i.hal_dsi_tx_ctrl_create_handle 0x0001817c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + i.hal_dsi_tx_ctrl_deinit 0x000181a8 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + i.hal_dsi_tx_ctrl_enter_init_panel_mode 0x0001822c Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + i.hal_dsi_tx_ctrl_exit_init_panel_mode 0x00018278 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + i.hal_dsi_tx_ctrl_init 0x000182a0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + i.hal_dsi_tx_ctrl_init_clk 0x00018344 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + hal_dsi_tx_ctrl_init_clk 0x00018345 Thumb Code 36 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init_clk) + i.hal_dsi_tx_ctrl_panel_reset_pin 0x00018368 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + i.hal_dsi_tx_ctrl_read_cmd 0x00018374 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) + i.hal_dsi_tx_ctrl_set_ccm 0x00018400 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + i.hal_dsi_tx_ctrl_set_overwrite_rgb 0x00018420 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + i.hal_dsi_tx_ctrl_set_partial_disp 0x00018434 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + i.hal_dsi_tx_ctrl_set_partial_disp_area 0x00018444 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + i.hal_dsi_tx_ctrl_start 0x00018468 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + i.hal_dsi_tx_ctrl_stop 0x00018504 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + i.hal_dsi_tx_ctrl_write_array_cmd 0x00018548 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + i.hal_dsi_tx_ctrl_write_cmd 0x00018620 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + i.hal_dsi_tx_init_data_mode 0x000186d0 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + hal_dsi_tx_init_data_mode 0x000186d1 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_data_mode) + i.hal_dsi_tx_init_dpi_cfg 0x00018714 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + hal_dsi_tx_init_dpi_cfg 0x00018715 Thumb Code 42 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_dpi_cfg) + i.hal_dsi_tx_init_interrupt 0x00018744 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + hal_dsi_tx_init_interrupt 0x00018745 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_interrupt) + i.hal_dsi_tx_init_phy_cfg 0x00018764 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + hal_dsi_tx_init_phy_cfg 0x00018765 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_phy_cfg) + i.hal_dsi_tx_init_remains 0x00018784 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + hal_dsi_tx_init_remains 0x00018785 Thumb Code 142 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_remains) + i.hal_dsi_tx_init_video_mode 0x00018818 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + hal_dsi_tx_init_video_mode 0x00018819 Thumb Code 82 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_init_video_mode) + i.hal_dsi_tx_send_cmd 0x00018870 Section 0 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + hal_dsi_tx_send_cmd 0x00018871 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_send_cmd) + i.hal_gpio_ctrl_eint 0x000188b4 Section 0 hal_gpio.o(i.hal_gpio_ctrl_eint) + i.hal_gpio_get_input_data 0x000188cc Section 0 hal_gpio.o(i.hal_gpio_get_input_data) + i.hal_gpio_init_eint 0x000188e0 Section 0 hal_gpio.o(i.hal_gpio_init_eint) + i.hal_gpio_init_input 0x00018920 Section 0 hal_gpio.o(i.hal_gpio_init_input) + i.hal_gpio_init_output 0x00018940 Section 0 hal_gpio.o(i.hal_gpio_init_output) + i.hal_gpio_reg_eint_cb 0x00018968 Section 0 hal_gpio.o(i.hal_gpio_reg_eint_cb) + i.hal_gpio_set_ap_reset_int 0x00018980 Section 0 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + i.hal_gpio_set_mode 0x000189d0 Section 0 hal_gpio.o(i.hal_gpio_set_mode) + i.hal_gpio_set_output_data 0x00018a30 Section 0 hal_gpio.o(i.hal_gpio_set_output_data) + i.hal_gpio_set_pull_state 0x00018a38 Section 0 hal_gpio.o(i.hal_gpio_set_pull_state) + i.hal_i2c_m_dma_init 0x00018a58 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_init) + i.hal_i2c_m_dma_read 0x00018ac4 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_read) + i.hal_i2c_m_dma_write 0x00018ae4 Section 0 hal_i2c_master.o(i.hal_i2c_m_dma_write) + i.hal_i2c_m_transfer_complate 0x00018b00 Section 0 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + i.hal_i2c_master_irq_callback 0x00018b0c Section 0 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + hal_i2c_master_irq_callback 0x00018b0d Thumb Code 24 hal_i2c_master.o(i.hal_i2c_master_irq_callback) + i.hal_i2c_s_dma_user_callback 0x00018b2c Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + hal_i2c_s_dma_user_callback 0x00018b2d Thumb Code 12 hal_i2c_slave.o(i.hal_i2c_s_dma_user_callback) + i.hal_i2c_s_dma_write 0x00018b3c Section 0 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + i.hal_i2c_s_init 0x00018b88 Section 0 hal_i2c_slave.o(i.hal_i2c_s_init) + i.hal_i2c_s_nonblocking_read 0x00018c50 Section 0 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + i.hal_i2c_s_set_transfer 0x00018c64 Section 0 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + i.hal_i2c_slave_irq_callback 0x00018c70 Section 0 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + hal_i2c_slave_irq_callback 0x00018c71 Thumb Code 354 hal_i2c_slave.o(i.hal_i2c_slave_irq_callback) + i.hal_internal_init_memc 0x00018de4 Section 0 hal_internal_vsync.o(i.hal_internal_init_memc) + i.hal_internal_sync_get_fb_setting 0x00018ee0 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + i.hal_internal_sync_get_hight_performan_mode 0x00018ef0 Section 0 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + i.hal_internal_sync_input_resolution_change_ex 0x00018f00 Section 0 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) + i.hal_internal_update_dpi_param 0x000190d4 Section 0 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + i.hal_internal_video_mode_auto_sync 0x000190e4 Section 0 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + i.hal_internal_vsync_deinit 0x000191f0 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + i.hal_internal_vsync_get_rx_state 0x00019218 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + i.hal_internal_vsync_get_sync_line 0x00019224 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + i.hal_internal_vsync_get_tear_mode 0x0001923c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + i.hal_internal_vsync_get_tx_state 0x00019248 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + i.hal_internal_vsync_init_rx 0x00019254 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + i.hal_internal_vsync_init_tx 0x0001936c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + i.hal_internal_vsync_set_auto_hw_filter 0x0001941c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + i.hal_internal_vsync_set_rx_state 0x00019538 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + i.hal_internal_vsync_set_sync_line 0x0001954c Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + i.hal_internal_vsync_set_tear_mode 0x00019570 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + i.hal_internal_vsync_set_tx_state 0x000195c0 Section 0 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + i.hal_lcdc_config_ccm 0x00019640 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + hal_lcdc_config_ccm 0x00019641 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_ccm) + i.hal_lcdc_config_remains 0x00019664 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + hal_lcdc_config_remains 0x00019665 Thumb Code 84 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_remains) + i.hal_lcdc_config_rgb_to_pentile 0x000196bc Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + hal_lcdc_config_rgb_to_pentile 0x000196bd Thumb Code 14 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_rgb_to_pentile) + i.hal_lcdc_config_upscaler 0x000196d0 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + hal_lcdc_config_upscaler 0x000196d1 Thumb Code 348 hal_dsi_tx_ctrl.o(i.hal_lcdc_config_upscaler) + i.hal_lcdc_init_cfg 0x00019834 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + hal_lcdc_init_cfg 0x00019835 Thumb Code 60 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_cfg) + i.hal_lcdc_init_clk 0x00019874 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + hal_lcdc_init_clk 0x00019875 Thumb Code 422 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_clk) + i.hal_lcdc_init_interrupt 0x00019a24 Section 0 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + hal_lcdc_init_interrupt 0x00019a25 Thumb Code 58 hal_dsi_tx_ctrl.o(i.hal_lcdc_init_interrupt) + i.hal_spi_m_clear_rxfifo 0x00019a64 Section 0 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + i.hal_swire_deinit 0x00019a72 Section 0 hal_swire.o(i.hal_swire_deinit) + i.hal_swire_open 0x00019a84 Section 0 hal_swire.o(i.hal_swire_open) + i.hal_system_enable_systick 0x00019a9a Section 0 hal_system.o(i.hal_system_enable_systick) + i.hal_system_init 0x00019aa4 Section 0 hal_system.o(i.hal_system_init) + i.hal_system_init_console 0x00019b2c Section 0 hal_system.o(i.hal_system_init_console) + i.hal_system_set_phy_calibration 0x00019b48 Section 0 hal_system.o(i.hal_system_set_phy_calibration) + i.hal_system_set_pvd 0x00019b50 Section 0 hal_system.o(i.hal_system_set_pvd) + i.hal_system_set_vcc 0x00019b58 Section 0 hal_system.o(i.hal_system_set_vcc) + i.hal_timer_deinit 0x00019b60 Section 0 hal_timer.o(i.hal_timer_deinit) + i.hal_timer_init 0x00019b8e Section 0 hal_timer.o(i.hal_timer_init) + i.hal_timer_start 0x00019ba8 Section 0 hal_timer.o(i.hal_timer_start) + i.hal_timer_stop 0x00019bf0 Section 0 hal_timer.o(i.hal_timer_stop) + i.hal_uart_init 0x00019c18 Section 0 hal_uart.o(i.hal_uart_init) + i.hal_uart_transmit_blocking 0x00019ca4 Section 0 hal_uart.o(i.hal_uart_transmit_blocking) + i.hal_vsync_reset_lcdc_scaler 0x00019cb4 Section 0 hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) + hal_vsync_reset_lcdc_scaler 0x00019cb5 Thumb Code 460 hal_internal_vsync.o(i.hal_vsync_reset_lcdc_scaler) + i.handle_init 0x00019e90 Section 0 irq_redirect .o(i.handle_init) + i.init_mipi_tx 0x00019fa0 Section 0 ap_demo.o(i.init_mipi_tx) + init_mipi_tx 0x00019fa1 Thumb Code 92 ap_demo.o(i.init_mipi_tx) + i.init_panel 0x0001a000 Section 0 ap_demo.o(i.init_panel) + init_panel 0x0001a001 Thumb Code 146 ap_demo.o(i.init_panel) + i.main 0x0001a0e0 Section 0 main.o(i.main) + i.open_mipi_rx 0x0001a0ec Section 0 ap_demo.o(i.open_mipi_rx) + open_mipi_rx 0x0001a0ed Thumb Code 132 ap_demo.o(i.open_mipi_rx) + i.pps_update_handle 0x0001a188 Section 0 ap_demo.o(i.pps_update_handle) + pps_update_handle 0x0001a189 Thumb Code 52 ap_demo.o(i.pps_update_handle) + i.rx_get_dcs_packet_data 0x0001a1c0 Section 0 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + rx_get_dcs_packet_data 0x0001a1c1 Thumb Code 654 hal_internal_vsync.o(i.rx_get_dcs_packet_data) + i.rx_partial_update 0x0001a5b4 Section 0 hal_internal_vsync.o(i.rx_partial_update) + rx_partial_update 0x0001a5b5 Thumb Code 358 hal_internal_vsync.o(i.rx_partial_update) + i.rx_receive_packet 0x0001a72c Section 0 hal_internal_vsync.o(i.rx_receive_packet) + rx_receive_packet 0x0001a72d Thumb Code 128 hal_internal_vsync.o(i.rx_receive_packet) + i.rx_receive_pps 0x0001a7b8 Section 0 hal_internal_vsync.o(i.rx_receive_pps) + rx_receive_pps 0x0001a7b9 Thumb Code 268 hal_internal_vsync.o(i.rx_receive_pps) + i.rxbr_irq0_callback 0x0001a938 Section 0 hal_internal_vsync.o(i.rxbr_irq0_callback) + rxbr_irq0_callback 0x0001a939 Thumb Code 158 hal_internal_vsync.o(i.rxbr_irq0_callback) + i.rxbr_irq1_callback 0x0001a9dc Section 0 hal_internal_vsync.o(i.rxbr_irq1_callback) + rxbr_irq1_callback 0x0001a9dd Thumb Code 316 hal_internal_vsync.o(i.rxbr_irq1_callback) + i.send_panel_init_code 0x0001abb0 Section 0 ap_demo.o(i.send_panel_init_code) + send_panel_init_code 0x0001abb1 Thumb Code 36 ap_demo.o(i.send_panel_init_code) + i.soft_gen_te 0x0001abd4 Section 0 hal_internal_vsync.o(i.soft_gen_te) + soft_gen_te 0x0001abd5 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te) + i.soft_gen_te_double_buffer 0x0001ac98 Section 0 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + soft_gen_te_double_buffer 0x0001ac99 Thumb Code 166 hal_internal_vsync.o(i.soft_gen_te_double_buffer) + i.soft_timer3_cb 0x0001ad58 Section 0 ap_demo.o(i.soft_timer3_cb) + soft_timer3_cb 0x0001ad59 Thumb Code 36 ap_demo.o(i.soft_timer3_cb) + i.sqrt 0x0001ad88 Section 0 sqrt.o(i.sqrt) + i.tx_display_on 0x0001add0 Section 0 ap_demo.o(i.tx_display_on) + tx_display_on 0x0001add1 Thumb Code 34 ap_demo.o(i.tx_display_on) + i.tx_panel_reset 0x0001adf8 Section 0 ap_demo.o(i.tx_panel_reset) + tx_panel_reset 0x0001adf9 Thumb Code 40 ap_demo.o(i.tx_panel_reset) + i.vidc_callback 0x0001ae20 Section 0 hal_internal_vsync.o(i.vidc_callback) + vidc_callback 0x0001ae21 Thumb Code 232 hal_internal_vsync.o(i.vidc_callback) + i.vpre_err_reset 0x0001af28 Section 0 hal_internal_vsync.o(i.vpre_err_reset) + vpre_err_reset 0x0001af29 Thumb Code 184 hal_internal_vsync.o(i.vpre_err_reset) + i.vsync_set_te_mode 0x0001aff8 Section 0 hal_internal_vsync.o(i.vsync_set_te_mode) + vsync_set_te_mode 0x0001aff9 Thumb Code 300 hal_internal_vsync.o(i.vsync_set_te_mode) + .constdata 0x0001b1c4 Section 10069 ap_demo.o(.constdata) + g_cus_rx_dcs_execute_table 0x0001b1c4 Data 96 ap_demo.o(.constdata) + .constdata 0x0001d919 Section 182 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001d9cf Section 1 app_tp_for_custom_s8.o(.constdata) + .constdata 0x0001d9d0 Section 36 hal_dsi_tx_ctrl.o(.constdata) + .constdata 0x0001d9f4 Section 210 hal_gpio.o(.constdata) + s_gpio_map 0x0001d9f4 Data 120 hal_gpio.o(.constdata) + s_gpio_perf 0x0001da6c Data 90 hal_gpio.o(.constdata) + .constdata 0x0001dac8 Section 32 hal_i2c_slave.o(.constdata) + sg_i2c_s_config 0x0001dac8 Data 32 hal_i2c_slave.o(.constdata) + .constdata 0x0001dae8 Section 8 drv_param_init.o(.constdata) + .constdata 0x0001daf0 Section 390 drv_phy_common.o(.constdata) + phy_para_mapping_h 0x0001daf0 Data 184 drv_phy_common.o(.constdata) + phy_para_mapping_l 0x0001dba8 Data 128 drv_phy_common.o(.constdata) + phy_data_high_map 0x0001dc28 Data 48 drv_phy_common.o(.constdata) + phy_data_lp_map 0x0001dc58 Data 30 drv_phy_common.o(.constdata) + .conststring 0x0001dc78 Section 72 hal_dsi_rx_ctrl.o(.conststring) + .conststring 0x0001dcc0 Section 67 hal_dsi_tx_ctrl.o(.conststring) + .conststring 0x0001dd04 Section 224 hal_internal_vsync.o(.conststring) + .ARM.__AT_0x00070100 0x00070100 Section 192 irq_redirect .o(.ARM.__AT_0x00070100) + .data 0x000701d0 Section 556 ap_demo.o(.data) + g_need_enter_sleep_mode 0x000701d0 Data 1 ap_demo.o(.data) + g_calibration_flag 0x000701d1 Data 1 ap_demo.o(.data) + start_display_on 0x000701d2 Data 1 ap_demo.o(.data) + g_exit_sleep_mode 0x000701d3 Data 1 ap_demo.o(.data) + panel_display_done 0x000701d4 Data 1 ap_demo.o(.data) + R60_Parma_backup 0x000701d7 Data 1 ap_demo.o(.data) + read_A1_count 0x000701d9 Data 1 ap_demo.o(.data) + read_6e_10 0x000701da Data 1 ap_demo.o(.data) + read_6e_24 0x000701db Data 1 ap_demo.o(.data) + read_6e_38 0x000701dc Data 1 ap_demo.o(.data) + read_6e_52 0x000701dd Data 1 ap_demo.o(.data) + read_6e_66 0x000701de Data 1 ap_demo.o(.data) + read_6e_70 0x000701df Data 1 ap_demo.o(.data) + read_5a_39 0x000701e0 Data 1 ap_demo.o(.data) + read_7F_count 0x000701e1 Data 1 ap_demo.o(.data) + read_bl_data 0x000701e4 Data 2 ap_demo.o(.data) + read_bl_data_bak 0x000701e6 Data 2 ap_demo.o(.data) + g_rx_ctrl_handle 0x000701f0 Data 4 ap_demo.o(.data) + g_tx_ctrl_handle 0x000701f4 Data 4 ap_demo.o(.data) + value_reg_df 0x000701f8 Data 4 ap_demo.o(.data) + .data 0x000703fc Section 46 app_tp_transfer.o(.data) + s_spim_write 0x000703fc Data 1 app_tp_transfer.o(.data) + s_screen_int_flag 0x000703fd Data 1 app_tp_transfer.o(.data) + s_phone_reset_flag 0x000703fe Data 1 app_tp_transfer.o(.data) + s_screen_int_transfer_status 0x000703ff Data 1 app_tp_transfer.o(.data) + s_screen_const_transfer_count 0x00070401 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_count 0x00070402 Data 1 app_tp_transfer.o(.data) + screen_int_transfer_buffer_ready 0x00070403 Data 1 app_tp_transfer.o(.data) + .data 0x0007042a Section 228 app_tp_for_custom_s8.o(.data) + app_tp_count 0x00070434 Data 1 app_tp_for_custom_s8.o(.data) + phone_85_flag 0x00070435 Data 1 app_tp_for_custom_s8.o(.data) + phone_F6_flag 0x00070436 Data 1 app_tp_for_custom_s8.o(.data) + phone_E4_flag 0x00070437 Data 1 app_tp_for_custom_s8.o(.data) + phone_72_flag 0x00070438 Data 1 app_tp_for_custom_s8.o(.data) + phone_75_flag 0x00070439 Data 1 app_tp_for_custom_s8.o(.data) + phone_92_flag 0x0007043a Data 1 app_tp_for_custom_s8.o(.data) + phone_74_flag 0x0007043b Data 1 app_tp_for_custom_s8.o(.data) + u16CoordY 0x0007043e Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX 0x00070440 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordY_back 0x00070442 Data 2 app_tp_for_custom_s8.o(.data) + u16CoordX_back 0x00070444 Data 2 app_tp_for_custom_s8.o(.data) + .data 0x0007050e Section 1 app_tp_for_custom_s8.o(.data) + .data 0x0007050f Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070510 Section 1 app_tp_for_custom_s8.o(.data) + .data 0x00070511 Section 3 app_tp_for_custom_s8.o(.data) + .data 0x00070514 Section 5 app_tp_for_custom_s8.o(.data) + .data 0x0007051c Section 48 app_tp_for_custom_s8.o(.data) + .data 0x0007054c Section 8 hal_dsi_rx_ctrl.o(.data) + g_hw_auto_filter 0x0007054c Data 1 hal_dsi_rx_ctrl.o(.data) + g_esc_clk 0x00070550 Data 4 hal_dsi_rx_ctrl.o(.data) + .data 0x00070554 Section 3 hal_dsi_tx_ctrl.o(.data) + g_tx_vcom_en 0x00070554 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_vpg_en 0x00070555 Data 1 hal_dsi_tx_ctrl.o(.data) + g_tx_mode 0x00070556 Data 1 hal_dsi_tx_ctrl.o(.data) + .data 0x00070557 Section 1 hal_i2c_master.o(.data) + s_i2c_m_transfer_end 0x00070557 Data 1 hal_i2c_master.o(.data) + .data 0x00070558 Section 32 hal_i2c_slave.o(.data) + s_txbuffer_complate 0x00070558 Data 1 hal_i2c_slave.o(.data) + s_i2c_s_dma_end 0x00070559 Data 1 hal_i2c_slave.o(.data) + s_i2c_s_receive_cnt 0x0007055a Data 1 hal_i2c_slave.o(.data) + sg_i2c_s_index 0x0007055b Data 1 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer 0x0007055c Data 4 hal_i2c_slave.o(.data) + s_hal_slave_rxbuffer_size 0x00070560 Data 4 hal_i2c_slave.o(.data) + hal_i2c_s_callback 0x00070564 Data 4 hal_i2c_slave.o(.data) + sg_tx_byte_num 0x00070568 Data 4 hal_i2c_slave.o(.data) + s_receive_count 0x0007056c Data 4 hal_i2c_slave.o(.data) + s_tx_buffer_t 0x00070570 Data 4 hal_i2c_slave.o(.data) + tx_sum 0x00070574 Data 4 hal_i2c_slave.o(.data) + .data 0x00070578 Section 18 norflash.o(.data) + tmprg 0x00070580 Data 4 norflash.o(.data) + .data 0x0007058c Section 12 drv_common.o(.data) + s_my_tick 0x0007058c Data 4 drv_common.o(.data) + .data 0x00070598 Section 4 drv_gpio.o(.data) + g_ap_reset_cb 0x00070598 Data 4 drv_gpio.o(.data) + .data 0x0007059c Section 8 drv_i2c_dma.o(.data) + i2c0_dma_callback 0x0007059c Data 4 drv_i2c_dma.o(.data) + i2c1_dma_callback 0x000705a0 Data 4 drv_i2c_dma.o(.data) + .data 0x000705a4 Section 4 drv_i2c_master.o(.data) + i2c1_intr_callback 0x000705a4 Data 4 drv_i2c_master.o(.data) + .data 0x000705a8 Section 4 drv_i2c_slave.o(.data) + i2c0_intr_callback 0x000705a8 Data 4 drv_i2c_slave.o(.data) + .data 0x000705ac Section 1188 drv_param_init.o(.data) + .data 0x00070a50 Section 12 drv_pwm.o(.data) + s_pwm_type 0x00070a50 Data 1 drv_pwm.o(.data) + s_pwm_cb 0x00070a54 Data 8 drv_pwm.o(.data) + .data 0x00070a5c Section 4 drv_spi_master.o(.data) + SPIM_intr_callback 0x00070a5c Data 4 drv_spi_master.o(.data) + .data 0x00070a60 Section 8 drv_swire.o(.data) + s_swire_cb 0x00070a60 Data 8 drv_swire.o(.data) + .data 0x00070a68 Section 1 drv_sys_cfg.o(.data) + sg_ap_rstn_trigger_type 0x00070a68 Data 1 drv_sys_cfg.o(.data) + .data 0x00070a6c Section 80 drv_timer.o(.data) + sg_timer_info 0x00070a6c Data 80 drv_timer.o(.data) + .data 0x00070abc Section 12 hal_internal_vsync.o(.data) + sg_cmd_mode_tx_start 0x00070abc Data 1 hal_internal_vsync.o(.data) + sg_cur_te_info 0x00070ac0 Data 4 hal_internal_vsync.o(.data) + .data 0x00070ac8 Section 8 drv_rxbr.o(.data) + .data 0x00070ad0 Section 4 drv_vidc.o(.data) + .data 0x00070ad4 Section 1 drv_phy_common.o(.data) + g_phy_calibration 0x00070ad4 Data 1 drv_phy_common.o(.data) + .data 0x00070ad8 Section 12 drv_chip_info.o(.data) + sg_chip_info 0x00070ad8 Data 4 drv_chip_info.o(.data) + sg_chip_function 0x00070adc Data 4 drv_chip_info.o(.data) + sg_chip_encrypt 0x00070ae0 Data 4 drv_chip_info.o(.data) + .data 0x00070ae4 Section 8 drv_uart.o(.data) + s_UartFcrReg 0x00070ae4 Data 4 drv_uart.o(.data) + uart_userData 0x00070ae8 Data 4 drv_uart.o(.data) + .data 0x00070aec Section 12 drv_wdg.o(.data) + sg_wdg_repeat 0x00070aec Data 1 drv_wdg.o(.data) + sg_wdg_cb 0x00070af0 Data 8 drv_wdg.o(.data) + .data 0x00070af8 Section 4 stdout.o(.data) + .data 0x00070afc Section 4 errno.o(.data) + _errno 0x00070afc Data 4 errno.o(.data) + .bss 0x00070b00 Section 400 app_tp_transfer.o(.bss) + s_screen_read_buffer 0x00070b00 Data 200 app_tp_transfer.o(.bss) + s_phone_read_buffer 0x00070bc8 Data 200 app_tp_transfer.o(.bss) + .bss 0x00070c90 Section 196 hal_dsi_rx_ctrl.o(.bss) + g_rx_ctrl_handle 0x00070c90 Data 196 hal_dsi_rx_ctrl.o(.bss) + .bss 0x00070d54 Section 76 hal_dsi_tx_ctrl.o(.bss) + g_tx_ctrl_handle 0x00070d54 Data 76 hal_dsi_tx_ctrl.o(.bss) + .bss 0x00070da0 Section 256 tau_log.o(.bss) + .bss 0x00070ea0 Section 208 hal_uart.o(.bss) + .bss 0x00070f70 Section 28 drv_dma.o(.bss) + s_dma_handle 0x00070f70 Data 28 drv_dma.o(.bss) + .bss 0x00070f8c Section 64 drv_gpio.o(.bss) + s_gpio_cb 0x00070f8c Data 64 drv_gpio.o(.bss) + .bss 0x00070fcc Section 320 drv_i2c_dma.o(.bss) + i2c0_dma_slave_handle 0x00070fcc Data 160 drv_i2c_dma.o(.bss) + i2c1_dma_master_handle 0x0007106c Data 160 drv_i2c_dma.o(.bss) + .bss 0x0007110c Section 2436 hal_internal_vsync.o(.bss) + g_imm_buffer 0x00071970 Data 255 hal_internal_vsync.o(.bss) + sg_te_info 0x00071a70 Data 12 hal_internal_vsync.o(.bss) + g_imm_packet 0x00071a7c Data 20 hal_internal_vsync.o(.bss) + .bss 0x00071a90 Section 4144 dcs_packet_fifo.o(.bss) + .bss 0x00072ac0 Section 32 hal_spi_slave.o(.bss) + STACK 0x00072ae0 Section 4096 startup_armcm0.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEJ$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x000000c0 Number 0 startup_armcm0.o ABSOLUTE + __Vectors 0x00010000 Data 4 startup_armcm0.o(RESET) + __Vectors_End 0x000100c0 Data 0 startup_armcm0.o(RESET) + __main 0x000100c1 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x000100c1 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x000100c5 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x000100c9 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x000100c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x000100c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x000100c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x000100d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x000100d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x000100d5 Thumb Code 28 startup_armcm0.o(.text) + NMI_Handler 0x000100f1 Thumb Code 2 startup_armcm0.o(.text) + SVC_Handler 0x000100f5 Thumb Code 2 startup_armcm0.o(.text) + PendSV_Handler 0x000100f7 Thumb Code 2 startup_armcm0.o(.text) + OTP_IRQn_Handler 0x00010123 Thumb Code 2 startup_armcm0.o(.text) + PVD_IRQn_Handler 0x00010127 Thumb Code 2 startup_armcm0.o(.text) + __aeabi_uidiv 0x0001014d Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x0001014d Thumb Code 44 uidiv.o(.text) + __aeabi_idiv 0x00010179 Thumb Code 0 idiv.o(.text) + __aeabi_idivmod 0x00010179 Thumb Code 40 idiv.o(.text) + __aeabi_memcpy 0x000101a1 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x000101a1 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x000101c5 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x000101c5 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x000101d3 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x000101d3 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x000101d3 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x000101d7 Thumb Code 18 memseta.o(.text) + __aeabi_fadd 0x000101e9 Thumb Code 162 fadd.o(.text) + __aeabi_fsub 0x0001028b Thumb Code 8 fadd.o(.text) + __aeabi_frsub 0x00010293 Thumb Code 8 fadd.o(.text) + __aeabi_fmul 0x0001029b Thumb Code 122 fmul.o(.text) + __aeabi_fdiv 0x00010315 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x00010391 Thumb Code 24 fscalb.o(.text) + scalbnf 0x00010391 Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x000103a9 Thumb Code 328 dadd.o(.text) + __aeabi_dsub 0x000104f1 Thumb Code 12 dadd.o(.text) + __aeabi_drsub 0x000104fd Thumb Code 12 dadd.o(.text) + __aeabi_dmul 0x0001050d Thumb Code 202 dmul.o(.text) + __aeabi_ddiv 0x000105dd Thumb Code 234 ddiv.o(.text) + __aeabi_i2f 0x000106cd Thumb Code 22 fflti.o(.text) + __aeabi_ui2f 0x000106e3 Thumb Code 14 ffltui.o(.text) + __aeabi_ui2d 0x000106f1 Thumb Code 24 dfltui.o(.text) + __aeabi_f2iz 0x0001070d Thumb Code 50 ffixi.o(.text) + __aeabi_f2uiz 0x0001073f Thumb Code 40 ffixui.o(.text) + __aeabi_d2iz 0x00010769 Thumb Code 62 dfixi.o(.text) + __aeabi_d2uiz 0x000107b1 Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x000107ed Thumb Code 40 f2d.o(.text) + __aeabi_cdcmpeq 0x00010815 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x00010815 Thumb Code 38 cdcmple.o(.text) + __aeabi_cfrcmple 0x0001083d Thumb Code 20 cfrcmple.o(.text) + __aeabi_uldivmod 0x00010851 Thumb Code 96 uldiv.o(.text) + __aeabi_llsl 0x000108b1 Thumb Code 32 llshl.o(.text) + _ll_shift_l 0x000108b1 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x000108d1 Thumb Code 34 llushr.o(.text) + _ll_ushift_r 0x000108d1 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x000108f3 Thumb Code 38 llsshr.o(.text) + _ll_sshift_r 0x000108f3 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x00010919 Thumb Code 0 iusefp.o(.text) + _float_round 0x00010919 Thumb Code 16 fepilogue.o(.text) + _float_epilogue 0x00010929 Thumb Code 114 fepilogue.o(.text) + _double_round 0x0001099b Thumb Code 26 depilogue.o(.text) + _double_epilogue 0x000109b5 Thumb Code 164 depilogue.o(.text) + _dsqrt 0x00010a59 Thumb Code 162 dsqrt.o(.text) + __aeabi_d2ulz 0x00010afd Thumb Code 54 dfixul.o(.text) + __aeabi_cdrcmple 0x00010b3d Thumb Code 38 cdrcmple.o(.text) + __scatterload 0x00010b65 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x00010b65 Thumb Code 0 init.o(.text) + __decompress 0x00010b89 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x00010b89 Thumb Code 86 __dczerorl2.o(.text) + ADC_IRQn_Handler 0x00010be1 Thumb Code 18 irq_redirect .o(i.ADC_IRQn_Handler) + AP_NRESET_IRQn_Handler 0x00010bf9 Thumb Code 18 irq_redirect .o(i.AP_NRESET_IRQn_Handler) + DMA_IRQn_Handler 0x00010c11 Thumb Code 14 irq_redirect .o(i.DMA_IRQn_Handler) + EXTI_INT0_IRQn_Handler 0x00010c25 Thumb Code 22 irq_redirect .o(i.EXTI_INT0_IRQn_Handler) + EXTI_INT1_IRQn_Handler 0x00010c41 Thumb Code 22 irq_redirect .o(i.EXTI_INT1_IRQn_Handler) + EXTI_INT2_IRQn_Handler 0x00010c5d Thumb Code 22 irq_redirect .o(i.EXTI_INT2_IRQn_Handler) + EXTI_INT3_IRQn_Handler 0x00010c79 Thumb Code 22 irq_redirect .o(i.EXTI_INT3_IRQn_Handler) + EXTI_INT4_IRQn_Handler 0x00010c95 Thumb Code 22 irq_redirect .o(i.EXTI_INT4_IRQn_Handler) + EXTI_INT5_IRQn_Handler 0x00010cb1 Thumb Code 22 irq_redirect .o(i.EXTI_INT5_IRQn_Handler) + EXTI_INT6_IRQn_Handler 0x00010ccd Thumb Code 22 irq_redirect .o(i.EXTI_INT6_IRQn_Handler) + EXTI_INT7_IRQn_Handler 0x00010ce9 Thumb Code 22 irq_redirect .o(i.EXTI_INT7_IRQn_Handler) + FLSCTRL_IRQn_Handler 0x00010d05 Thumb Code 14 irq_redirect .o(i.FLSCTRL_IRQn_Handler) + Gpio_swire_output 0x00010d19 Thumb Code 78 ap_demo.o(i.Gpio_swire_output) + HardFault_Handler 0x00010d69 Thumb Code 14 irq_redirect .o(i.HardFault_Handler) + I2C0_IRQn_Handler 0x00010d7d Thumb Code 18 irq_redirect .o(i.I2C0_IRQn_Handler) + I2C1_IRQn_Handler 0x00010d95 Thumb Code 18 irq_redirect .o(i.I2C1_IRQn_Handler) + LCDC_IRQn_Handler 0x00010dad Thumb Code 18 irq_redirect .o(i.LCDC_IRQn_Handler) + LOG_printf 0x00010dc5 Thumb Code 30 tau_log.o(i.LOG_printf) + MEMC_IRQn_Handler 0x00010ded Thumb Code 18 irq_redirect .o(i.MEMC_IRQn_Handler) + MIPI_RX_IRQn_Handler 0x00010e05 Thumb Code 18 irq_redirect .o(i.MIPI_RX_IRQn_Handler) + MIPI_TX_IRQn_Handler 0x00010e1d Thumb Code 18 irq_redirect .o(i.MIPI_TX_IRQn_Handler) + PWMDET_IRQn_Handler 0x00010e35 Thumb Code 22 irq_redirect .o(i.PWMDET_IRQn_Handler) + S20_Start_init 0x00010e51 Thumb Code 270 app_tp_transfer.o(i.S20_Start_init) + SPIM_IRQn_Handler 0x00010f75 Thumb Code 22 irq_redirect .o(i.SPIM_IRQn_Handler) + SPIS_IRQn_Handler 0x00010f91 Thumb Code 22 irq_redirect .o(i.SPIS_IRQn_Handler) + SWIRE_IRQn_Handler 0x00010fad Thumb Code 22 irq_redirect .o(i.SWIRE_IRQn_Handler) + SysTick_Handler 0x00010fc9 Thumb Code 18 irq_redirect .o(i.SysTick_Handler) + TIMER0_IRQn_Handler 0x00010fe1 Thumb Code 18 irq_redirect .o(i.TIMER0_IRQn_Handler) + UART_DisableDma 0x00010ff9 Thumb Code 2 drv_uart.o(i.UART_DisableDma) + UART_GetInstance 0x00010ffb Thumb Code 4 drv_uart.o(i.UART_GetInstance) + __scatterload_null 0x00010fff Thumb Code 2 handlers.o(i.__scatterload_null) + s_RAM_CK 0x00011000 Data 20 drv_common.o(.ARM.__at_0x11000) + s_debug_state 0x00011018 Data 4 drv_common.o(.ARM.__at_0x11018) + TIMER1_IRQn_Handler 0x0001101d Thumb Code 18 irq_redirect .o(i.TIMER1_IRQn_Handler) + TIMER2_IRQn_Handler 0x00011035 Thumb Code 18 irq_redirect .o(i.TIMER2_IRQn_Handler) + TIMER3_IRQn_Handler 0x0001104d Thumb Code 18 irq_redirect .o(i.TIMER3_IRQn_Handler) + UART0_IRQ_Handle 0x00011065 Thumb Code 20 drv_uart.o(i.UART0_IRQ_Handle) + UART_IRQn_Handler 0x00011081 Thumb Code 18 irq_redirect .o(i.UART_IRQn_Handler) + UART_ResetRxFIFO 0x00011099 Thumb Code 32 drv_uart.o(i.UART_ResetRxFIFO) + UART_SetBaudRate 0x000110bd Thumb Code 72 drv_uart.o(i.UART_SetBaudRate) + UART_SwitchSCLK 0x00011105 Thumb Code 26 drv_uart.o(i.UART_SwitchSCLK) + UART_TransferHandleIRQ 0x0001111f Thumb Code 308 drv_uart.o(i.UART_TransferHandleIRQ) + UART_WriteBlocking 0x00011253 Thumb Code 26 drv_uart.o(i.UART_WriteBlocking) + UART_init 0x0001126d Thumb Code 182 drv_uart.o(i.UART_init) + VIDC_IRQn_Handler 0x00011329 Thumb Code 18 irq_redirect .o(i.VIDC_IRQn_Handler) + VPRE_IRQn_Handler 0x00011341 Thumb Code 18 irq_redirect .o(i.VPRE_IRQn_Handler) + WDG_IRQn_Handler 0x00011359 Thumb Code 18 irq_redirect .o(i.WDG_IRQn_Handler) + __0printf 0x00011371 Thumb Code 24 printfa.o(i.__0printf) + __1printf 0x00011371 Thumb Code 0 printfa.o(i.__0printf) + __2printf 0x00011371 Thumb Code 0 printfa.o(i.__0printf) + __c89printf 0x00011371 Thumb Code 0 printfa.o(i.__0printf) + printf 0x00011371 Thumb Code 0 printfa.o(i.__0printf) + __0vsprintf 0x00011391 Thumb Code 30 printfa.o(i.__0vsprintf) + __1vsprintf 0x00011391 Thumb Code 0 printfa.o(i.__0vsprintf) + __2vsprintf 0x00011391 Thumb Code 0 printfa.o(i.__0vsprintf) + __c89vsprintf 0x00011391 Thumb Code 0 printfa.o(i.__0vsprintf) + vsprintf 0x00011391 Thumb Code 0 printfa.o(i.__0vsprintf) + __ARM_clz 0x000113b5 Thumb Code 46 depilogue.o(i.__ARM_clz) + __ARM_common_switch8 0x000113e3 Thumb Code 26 hal_dsi_rx_ctrl.o(i.__ARM_common_switch8) + __scatterload_copy 0x000114a9 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_zeroinit 0x000114b7 Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + __set_errno 0x000114c5 Thumb Code 6 errno.o(i.__set_errno) + ap_demo 0x00012b0d Thumb Code 232 ap_demo.o(i.ap_demo) + ap_tp_calibration 0x00012d81 Thumb Code 170 app_tp_transfer.o(i.ap_tp_calibration) + app_ADC_IRQn_Handler 0x00012e61 Thumb Code 22 drv_rxbr.o(i.app_ADC_IRQn_Handler) + app_AP_NRESET_IRQn_Handler 0x00012e7d Thumb Code 32 drv_gpio.o(i.app_AP_NRESET_IRQn_Handler) + app_EXTI_INT0_IRQn_Handler 0x00012ea1 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT0_IRQn_Handler) + app_EXTI_INT1_IRQn_Handler 0x00012ebd Thumb Code 22 drv_gpio.o(i.app_EXTI_INT1_IRQn_Handler) + app_EXTI_INT2_IRQn_Handler 0x00012ed9 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT2_IRQn_Handler) + app_EXTI_INT3_IRQn_Handler 0x00012ef5 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT3_IRQn_Handler) + app_EXTI_INT4_IRQn_Handler 0x00012f11 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT4_IRQn_Handler) + app_EXTI_INT5_IRQn_Handler 0x00012f2d Thumb Code 22 drv_gpio.o(i.app_EXTI_INT5_IRQn_Handler) + app_EXTI_INT6_IRQn_Handler 0x00012f49 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT6_IRQn_Handler) + app_EXTI_INT7_IRQn_Handler 0x00012f65 Thumb Code 22 drv_gpio.o(i.app_EXTI_INT7_IRQn_Handler) + app_HardFault_Handler 0x00012f81 Thumb Code 12 drv_common.o(i.app_HardFault_Handler) + app_I2C0_IRQn_Handler 0x00012fc9 Thumb Code 14 drv_i2c_slave.o(i.app_I2C0_IRQn_Handler) + app_I2C1_IRQn_Handler 0x00012fe1 Thumb Code 8 drv_i2c_master.o(i.app_I2C1_IRQn_Handler) + app_LCDC_IRQn_Handler 0x00012ff1 Thumb Code 208 hal_internal_vsync.o(i.app_LCDC_IRQn_Handler) + app_MEMC_IRQn_Handler 0x00013195 Thumb Code 132 drv_memc.o(i.app_MEMC_IRQn_Handler) + app_MIPI_RX_IRQn_Handler 0x0001321d Thumb Code 232 drv_dsi_rx.o(i.app_MIPI_RX_IRQn_Handler) + app_MIPI_TX_IRQn_Handler 0x000134b5 Thumb Code 56 drv_dsi_tx.o(i.app_MIPI_TX_IRQn_Handler) + app_PWMDET_IRQn_Handler 0x00013555 Thumb Code 62 drv_pwm.o(i.app_PWMDET_IRQn_Handler) + app_SPIM_IRQn_Handler 0x0001359d Thumb Code 34 drv_spi_master.o(i.app_SPIM_IRQn_Handler) + app_SPIS_IRQn_Handler 0x000135cd Thumb Code 500 hal_spi_slave.o(i.app_SPIS_IRQn_Handler) + app_SWIRE_IRQn_Handler 0x000137cd Thumb Code 28 drv_swire.o(i.app_SWIRE_IRQn_Handler) + app_SysTick_Handler 0x000137ed Thumb Code 20 drv_common.o(i.app_SysTick_Handler) + app_TIMER0_IRQn_Handler 0x00013805 Thumb Code 10 drv_timer.o(i.app_TIMER0_IRQn_Handler) + app_TIMER1_IRQn_Handler 0x0001380f Thumb Code 10 drv_timer.o(i.app_TIMER1_IRQn_Handler) + app_TIMER2_IRQn_Handler 0x00013819 Thumb Code 10 drv_timer.o(i.app_TIMER2_IRQn_Handler) + app_TIMER3_IRQn_Handler 0x00013823 Thumb Code 10 drv_timer.o(i.app_TIMER3_IRQn_Handler) + app_UART_IRQn_Handler 0x0001382d Thumb Code 8 drv_uart.o(i.app_UART_IRQn_Handler) + app_VIDC_IRQn_Handler 0x00013835 Thumb Code 22 drv_vidc.o(i.app_VIDC_IRQn_Handler) + app_VPRE_IRQn_Handler 0x00013851 Thumb Code 22 drv_rxbr.o(i.app_VPRE_IRQn_Handler) + app_WDG_IRQn_Handler 0x0001386d Thumb Code 52 drv_wdg.o(i.app_WDG_IRQn_Handler) + app_dma_irq_handler 0x000138a5 Thumb Code 10 drv_dma.o(i.app_dma_irq_handler) + app_fls_ctrl_Handler 0x000138b5 Thumb Code 38 norflash.o(i.app_fls_ctrl_Handler) + app_tp_I2C_init 0x000138e5 Thumb Code 26 app_tp_transfer.o(i.app_tp_I2C_init) + app_tp_calibration_exec 0x00013909 Thumb Code 20 ap_demo.o(i.app_tp_calibration_exec) + app_tp_init 0x0001392d Thumb Code 56 app_tp_transfer.o(i.app_tp_init) + app_tp_m_transfer_complate 0x00013991 Thumb Code 8 app_tp_transfer.o(i.app_tp_m_transfer_complate) + app_tp_phone_analysis_data 0x000139a1 Thumb Code 822 app_tp_for_custom_s8.o(i.app_tp_phone_analysis_data) + app_tp_s_read 0x00013ce1 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_read) + app_tp_s_write 0x00013ce9 Thumb Code 8 app_tp_transfer.o(i.app_tp_s_write) + app_tp_screen_analysis_int 0x00013cf1 Thumb Code 716 app_tp_for_custom_s8.o(i.app_tp_screen_analysis_int) + app_tp_screen_init 0x00013fc5 Thumb Code 42 app_tp_transfer.o(i.app_tp_screen_init) + app_tp_transfer_screen_int 0x000140c5 Thumb Code 242 app_tp_transfer.o(i.app_tp_transfer_screen_int) + app_tp_transfer_screen_start 0x000141c9 Thumb Code 16 app_tp_transfer.o(i.app_tp_transfer_screen_start) + board_Init 0x000141dd Thumb Code 30 board.o(i.board_Init) + calc_framebuffer_setting 0x00014201 Thumb Code 1258 hal_internal_vsync.o(i.calc_framebuffer_setting) + ceil 0x000146f1 Thumb Code 180 ceil.o(i.ceil) + dcs_packet_fifo_alloc 0x00014879 Thumb Code 80 dcs_packet_fifo.o(i.dcs_packet_fifo_alloc) + dcs_packet_fifo_init 0x000148d1 Thumb Code 18 dcs_packet_fifo.o(i.dcs_packet_fifo_init) + dcs_packet_free_fifo_header 0x000148e9 Thumb Code 60 dcs_packet_fifo.o(i.dcs_packet_free_fifo_header) + dcs_packet_get_fifo_header 0x0001492d Thumb Code 26 dcs_packet_fifo.o(i.dcs_packet_get_fifo_header) + delayMs 0x0001496d Thumb Code 24 tau_delay.o(i.delayMs) + delayUs 0x00014985 Thumb Code 34 tau_delay.o(i.delayUs) + drv_ap_rst_trig_edge_detect 0x000149a9 Thumb Code 46 drv_sys_cfg.o(i.drv_ap_rst_trig_edge_detect) + drv_chip_info_get_info 0x000149e1 Thumb Code 6 drv_chip_info.o(i.drv_chip_info_get_info) + drv_chip_info_init 0x000149ed Thumb Code 56 drv_chip_info.o(i.drv_chip_info_init) + drv_chip_rx_info_check 0x00014a2d Thumb Code 98 drv_chip_info.o(i.drv_chip_rx_info_check) + drv_chip_rx_init_done 0x00014add Thumb Code 16 drv_chip_info.o(i.drv_chip_rx_init_done) + drv_common_enable_systick 0x00014af1 Thumb Code 70 drv_common.o(i.drv_common_enable_systick) + drv_common_system_init 0x00014b49 Thumb Code 8 drv_common.o(i.drv_common_system_init) + drv_crgu_config_reset_modules 0x00014b51 Thumb Code 10 drv_crgu.o(i.drv_crgu_config_reset_modules) + drv_crgu_set_ahb_pre_div 0x00014b61 Thumb Code 14 drv_crgu.o(i.drv_crgu_set_ahb_pre_div) + drv_crgu_set_ahb_src 0x00014b75 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_ahb_src) + drv_crgu_set_clock 0x00014b89 Thumb Code 26 drv_crgu.o(i.drv_crgu_set_clock) + drv_crgu_set_dpi_mux_src 0x00014ba9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_mux_src) + drv_crgu_set_dpi_pre_div 0x00014bbd Thumb Code 18 drv_crgu.o(i.drv_crgu_set_dpi_pre_div) + drv_crgu_set_dpi_pre_src 0x00014bd5 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dpi_pre_src) + drv_crgu_set_dsc_core_div 0x00014be9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsc_core_div) + drv_crgu_set_dsco_src 0x00014bfd Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src) + drv_crgu_set_dsco_src_div 0x00014c11 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_dsco_src_div) + drv_crgu_set_fb_div 0x00014c25 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_div) + drv_crgu_set_fb_src 0x00014c39 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_fb_src) + drv_crgu_set_lcdc_div 0x00014c4d Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_div) + drv_crgu_set_lcdc_src 0x00014c61 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_lcdc_src) + drv_crgu_set_mipi_cfg_src 0x00014c75 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_mipi_cfg_src) + drv_crgu_set_mipi_ref_src 0x00014c89 Thumb Code 18 drv_crgu.o(i.drv_crgu_set_mipi_ref_src) + drv_crgu_set_reset 0x00014ca1 Thumb Code 20 drv_crgu.o(i.drv_crgu_set_reset) + drv_crgu_set_rxbr_div 0x00014cb9 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_div) + drv_crgu_set_rxbr_src 0x00014ccd Thumb Code 16 drv_crgu.o(i.drv_crgu_set_rxbr_src) + drv_crgu_set_vidc_src 0x00014ce1 Thumb Code 16 drv_crgu.o(i.drv_crgu_set_vidc_src) + drv_dma_clear_flag 0x00014cf5 Thumb Code 24 drv_dma.o(i.drv_dma_clear_flag) + drv_dma_create_handle 0x00014d0d Thumb Code 22 drv_dma.o(i.drv_dma_create_handle) + drv_dma_disenable_channel 0x00014d29 Thumb Code 16 drv_dma.o(i.drv_dma_disenable_channel) + drv_dma_enable_channel 0x00014d39 Thumb Code 16 drv_dma.o(i.drv_dma_enable_channel) + drv_dma_enable_channel_interrupts 0x00014d49 Thumb Code 32 drv_dma.o(i.drv_dma_enable_channel_interrupts) + drv_dma_get_channel_flag 0x00014d6d Thumb Code 12 drv_dma.o(i.drv_dma_get_channel_flag) + drv_dma_irq_handler 0x00014d79 Thumb Code 138 drv_dma.o(i.drv_dma_irq_handler) + drv_dma_prepar_transfer 0x00014e09 Thumb Code 18 drv_dma.o(i.drv_dma_prepar_transfer) + drv_dma_set_burst 0x00014e1b Thumb Code 26 drv_dma.o(i.drv_dma_set_burst) + drv_dma_set_callback 0x00014e35 Thumb Code 6 drv_dma.o(i.drv_dma_set_callback) + drv_dma_set_transfer 0x00014e3d Thumb Code 62 drv_dma.o(i.drv_dma_set_transfer) + drv_dsc_dec_convert_pps_rc_parameter 0x00014e81 Thumb Code 54 drv_dsc_dec.o(i.drv_dsc_dec_convert_pps_rc_parameter) + drv_dsc_dec_disable 0x00014eb7 Thumb Code 12 drv_dsc_dec.o(i.drv_dsc_dec_disable) + drv_dsc_dec_enable 0x00014ec5 Thumb Code 88 drv_dsc_dec.o(i.drv_dsc_dec_enable) + drv_dsc_dec_get_nslc 0x00014f39 Thumb Code 10 drv_dsc_dec.o(i.drv_dsc_dec_get_nslc) + drv_dsc_dec_set_u8_pps 0x00014f43 Thumb Code 40 drv_dsc_dec.o(i.drv_dsc_dec_set_u8_pps) + drv_dsi_rx_calc_ipi_tx_delay 0x00014f6d Thumb Code 244 drv_dsi_rx.o(i.drv_dsi_rx_calc_ipi_tx_delay) + drv_dsi_rx_enable_irq 0x00015071 Thumb Code 58 drv_dsi_rx.o(i.drv_dsi_rx_enable_irq) + drv_dsi_rx_get_compression_en 0x0001511d Thumb Code 8 drv_dsi_rx.o(i.drv_dsi_rx_get_compression_en) + drv_dsi_rx_get_max_ret_size 0x00015125 Thumb Code 6 drv_dsi_rx.o(i.drv_dsi_rx_get_max_ret_size) + drv_dsi_rx_power_up 0x0001512b Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_power_up) + drv_dsi_rx_set_ctrl_cfg 0x00015139 Thumb Code 32 drv_dsi_rx.o(i.drv_dsi_rx_set_ctrl_cfg) + drv_dsi_rx_set_ddi_cfg 0x00015159 Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ddi_cfg) + drv_dsi_rx_set_inten 0x00015169 Thumb Code 4 drv_dsi_rx.o(i.drv_dsi_rx_set_inten) + drv_dsi_rx_set_ipi_cfg 0x0001516d Thumb Code 16 drv_dsi_rx.o(i.drv_dsi_rx_set_ipi_cfg) + drv_dsi_rx_set_lane_swap 0x0001517d Thumb Code 70 drv_dsi_rx.o(i.drv_dsi_rx_set_lane_swap) + drv_dsi_rx_set_resp_cnt 0x000151c3 Thumb Code 38 drv_dsi_rx.o(i.drv_dsi_rx_set_resp_cnt) + drv_dsi_rx_set_up_phy 0x000151e9 Thumb Code 256 drv_dsi_rx.o(i.drv_dsi_rx_set_up_phy) + drv_dsi_rx_shut_down 0x000152ed Thumb Code 14 drv_dsi_rx.o(i.drv_dsi_rx_shut_down) + drv_dsi_tx_command_get_payload 0x000152fb Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_get_payload) + drv_dsi_tx_command_header 0x000152ff Thumb Code 20 drv_dsi_tx.o(i.drv_dsi_tx_command_header) + drv_dsi_tx_command_mode_cfg 0x00015313 Thumb Code 108 drv_dsi_tx.o(i.drv_dsi_tx_command_mode_cfg) + drv_dsi_tx_command_put_payload 0x0001537f Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_command_put_payload) + drv_dsi_tx_config_eotp 0x00015383 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_config_eotp) + drv_dsi_tx_config_int 0x0001539b Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_config_int) + drv_dsi_tx_dpi_lpcmd_time 0x000153a3 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_dpi_lpcmd_time) + drv_dsi_tx_dpi_mode 0x000153ab Thumb Code 10 drv_dsi_tx.o(i.drv_dsi_tx_dpi_mode) + drv_dsi_tx_dpi_polarity 0x000153b5 Thumb Code 36 drv_dsi_tx.o(i.drv_dsi_tx_dpi_polarity) + drv_dsi_tx_edpi_cmd_size 0x000153d9 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_edpi_cmd_size) + drv_dsi_tx_get_cmd_status 0x000153dd Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_get_cmd_status) + drv_dsi_tx_mode 0x000153e1 Thumb Code 4 drv_dsi_tx.o(i.drv_dsi_tx_mode) + drv_dsi_tx_phy_clock_lane_auto_lp 0x000153e5 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_auto_lp) + drv_dsi_tx_phy_clock_lane_req_hs 0x000153fd Thumb Code 26 drv_dsi_tx.o(i.drv_dsi_tx_phy_clock_lane_req_hs) + drv_dsi_tx_phy_lane_mode 0x00015417 Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_phy_lane_mode) + drv_dsi_tx_phy_status_ready 0x00015423 Thumb Code 100 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_ready) + drv_dsi_tx_phy_status_stopstate 0x00015487 Thumb Code 62 drv_dsi_tx.o(i.drv_dsi_tx_phy_status_stopstate) + drv_dsi_tx_phy_test_setup 0x000154c5 Thumb Code 308 drv_dsi_tx.o(i.drv_dsi_tx_phy_test_setup) + drv_dsi_tx_phy_time_cfg 0x000155f9 Thumb Code 30 drv_dsi_tx.o(i.drv_dsi_tx_phy_time_cfg) + drv_dsi_tx_powerup 0x00015617 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_powerup) + drv_dsi_tx_response_mode 0x0001561f Thumb Code 28 drv_dsi_tx.o(i.drv_dsi_tx_response_mode) + drv_dsi_tx_set_bta_ack 0x0001563b Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_set_bta_ack) + drv_dsi_tx_set_esc_div 0x00015653 Thumb Code 12 drv_dsi_tx.o(i.drv_dsi_tx_set_esc_div) + drv_dsi_tx_set_int 0x00015661 Thumb Code 58 drv_dsi_tx.o(i.drv_dsi_tx_set_int) + drv_dsi_tx_set_time_out_div 0x000156a1 Thumb Code 16 drv_dsi_tx.o(i.drv_dsi_tx_set_time_out_div) + drv_dsi_tx_set_video_chunk 0x000156b1 Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_set_video_chunk) + drv_dsi_tx_set_video_timing 0x000156b9 Thumb Code 34 drv_dsi_tx.o(i.drv_dsi_tx_set_video_timing) + drv_dsi_tx_shutdown 0x000156db Thumb Code 8 drv_dsi_tx.o(i.drv_dsi_tx_shutdown) + drv_dsi_tx_timeout_cfg 0x000156e3 Thumb Code 38 drv_dsi_tx.o(i.drv_dsi_tx_timeout_cfg) + drv_dsi_tx_video_mode_cfg 0x00015709 Thumb Code 170 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_cfg) + drv_dsi_tx_video_mode_disable_hact_cmd 0x000157b3 Thumb Code 22 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_disable_hact_cmd) + drv_dsi_tx_video_mode_set_lp_cmd 0x000157c9 Thumb Code 24 drv_dsi_tx.o(i.drv_dsi_tx_video_mode_set_lp_cmd) + drv_efuse_enter_inactive 0x000157e1 Thumb Code 46 drv_efuse.o(i.drv_efuse_enter_inactive) + drv_efuse_int_enable 0x0001580f Thumb Code 12 drv_efuse.o(i.drv_efuse_int_enable) + drv_efuse_read 0x0001581b Thumb Code 50 drv_efuse.o(i.drv_efuse_read) + drv_efuse_read_req 0x0001584d Thumb Code 24 drv_efuse.o(i.drv_efuse_read_req) + drv_gpio_get_input_data 0x00015865 Thumb Code 20 drv_gpio.o(i.drv_gpio_get_input_data) + drv_gpio_register_ap_reset_callback 0x0001587d Thumb Code 6 drv_gpio.o(i.drv_gpio_register_ap_reset_callback) + drv_gpio_register_callback 0x00015889 Thumb Code 14 drv_gpio.o(i.drv_gpio_register_callback) + drv_gpio_set_int 0x0001589d Thumb Code 74 drv_gpio.o(i.drv_gpio_set_int) + drv_gpio_set_ioe 0x000158ed Thumb Code 26 drv_gpio.o(i.drv_gpio_set_ioe) + drv_gpio_set_mode0 0x0001590d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode0) + drv_gpio_set_mode1 0x0001591d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode1) + drv_gpio_set_mode2 0x0001592d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode2) + drv_gpio_set_mode3 0x0001593d Thumb Code 12 drv_gpio.o(i.drv_gpio_set_mode3) + drv_gpio_set_pull_state 0x0001596d Thumb Code 298 drv_gpio.o(i.drv_gpio_set_pull_state) + drv_i2c0_set_callback 0x00015a9d Thumb Code 6 drv_i2c_slave.o(i.drv_i2c0_set_callback) + drv_i2c1_set_callback 0x00015aa9 Thumb Code 6 drv_i2c_master.o(i.drv_i2c1_set_callback) + drv_i2c_dma_init 0x00015ae9 Thumb Code 146 drv_i2c_dma.o(i.drv_i2c_dma_init) + drv_i2c_enable_rx_dma 0x00015b95 Thumb Code 26 drv_i2c_dma.o(i.drv_i2c_enable_rx_dma) + drv_i2c_enable_tx_dma 0x00015baf Thumb Code 24 drv_i2c_dma.o(i.drv_i2c_enable_tx_dma) + drv_i2c_m_clear_it_pending_bit 0x00015bc9 Thumb Code 86 drv_i2c_master.o(i.drv_i2c_m_clear_it_pending_bit) + drv_i2c_m_enable 0x00015c29 Thumb Code 10 drv_i2c_master.o(i.drv_i2c_m_enable) + drv_i2c_m_enable_intr 0x00015c39 Thumb Code 42 drv_i2c_master.o(i.drv_i2c_m_enable_intr) + drv_i2c_master_init 0x00015c71 Thumb Code 118 drv_i2c_master.o(i.drv_i2c_master_init) + drv_i2c_master_read_dma 0x00015cfd Thumb Code 82 drv_i2c_dma.o(i.drv_i2c_master_read_dma) + drv_i2c_master_write_dma 0x00015d59 Thumb Code 50 drv_i2c_dma.o(i.drv_i2c_master_write_dma) + drv_i2c_s_clear_it_pending_bit 0x00015dd3 Thumb Code 66 drv_i2c_slave.o(i.drv_i2c_s_clear_it_pending_bit) + drv_i2c_s_config_intr 0x00015e15 Thumb Code 4 drv_i2c_slave.o(i.drv_i2c_s_config_intr) + drv_i2c_s_enable 0x00015e19 Thumb Code 8 drv_i2c_slave.o(i.drv_i2c_s_enable) + drv_i2c_s_get_fifo_status 0x00015e21 Thumb Code 20 drv_i2c_slave.o(i.drv_i2c_s_get_fifo_status) + drv_i2c_s_set_intr 0x00015e35 Thumb Code 74 drv_i2c_slave.o(i.drv_i2c_s_set_intr) + drv_i2c_s_write_data 0x00015e85 Thumb Code 28 drv_i2c_slave.o(i.drv_i2c_s_write_data) + drv_i2c_set_dma_irq_callback 0x00015ea1 Thumb Code 68 drv_i2c_dma.o(i.drv_i2c_set_dma_irq_callback) + drv_i2c_slave_init 0x00015ef9 Thumb Code 50 drv_i2c_slave.o(i.drv_i2c_slave_init) + drv_i2c_slave_write_dma 0x00015f2d Thumb Code 20 drv_i2c_dma.o(i.drv_i2c_slave_write_dma) + drv_lcdc_config_bypass 0x00015f45 Thumb Code 24 drv_lcdc.o(i.drv_lcdc_config_bypass) + drv_lcdc_config_ccm 0x00015f5d Thumb Code 48 drv_lcdc.o(i.drv_lcdc_config_ccm) + drv_lcdc_config_disp_mode 0x00015f8d Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_disp_mode) + drv_lcdc_config_dpi_polarity 0x00015fa3 Thumb Code 36 drv_lcdc.o(i.drv_lcdc_config_dpi_polarity) + drv_lcdc_config_dpi_timing 0x00015fc7 Thumb Code 38 drv_lcdc.o(i.drv_lcdc_config_dpi_timing) + drv_lcdc_config_edpi_mode 0x00015fed Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_edpi_mode) + drv_lcdc_config_endianness 0x00016003 Thumb Code 22 drv_lcdc.o(i.drv_lcdc_config_endianness) + drv_lcdc_config_input_size 0x00016019 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_input_size) + drv_lcdc_config_int 0x00016025 Thumb Code 30 drv_lcdc.o(i.drv_lcdc_config_int) + drv_lcdc_config_int_single 0x00016043 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_int_single) + drv_lcdc_config_overwrite 0x00016065 Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_overwrite) + drv_lcdc_config_overwrite_rgb 0x00016087 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_overwrite_rgb) + drv_lcdc_config_partial_display_area 0x00016093 Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_partial_display_area) + drv_lcdc_config_partial_display_enable 0x000160ad Thumb Code 34 drv_lcdc.o(i.drv_lcdc_config_partial_display_enable) + drv_lcdc_config_scale_up_coef 0x000160cf Thumb Code 26 drv_lcdc.o(i.drv_lcdc_config_scale_up_coef) + drv_lcdc_config_scale_up_step 0x000160e9 Thumb Code 12 drv_lcdc.o(i.drv_lcdc_config_scale_up_step) + drv_lcdc_config_src_parameter 0x000160f5 Thumb Code 76 drv_lcdc.o(i.drv_lcdc_config_src_parameter) + drv_lcdc_config_thresh 0x00016141 Thumb Code 6 drv_lcdc.o(i.drv_lcdc_config_thresh) + drv_lcdc_ctrl_flow 0x00016147 Thumb Code 18 drv_lcdc.o(i.drv_lcdc_ctrl_flow) + drv_lcdc_enable_shadow_reg 0x00016159 Thumb Code 32 drv_lcdc.o(i.drv_lcdc_enable_shadow_reg) + drv_lcdc_set_int 0x00016179 Thumb Code 58 drv_lcdc.o(i.drv_lcdc_set_int) + drv_lcdc_set_video_hw_mode 0x000161b9 Thumb Code 20 drv_lcdc.o(i.drv_lcdc_set_video_hw_mode) + drv_lcdc_start 0x000161cd Thumb Code 32 drv_lcdc.o(i.drv_lcdc_start) + drv_memc_clear_status 0x000161ed Thumb Code 12 drv_memc.o(i.drv_memc_clear_status) + drv_memc_enable_irq 0x000161f9 Thumb Code 58 drv_memc.o(i.drv_memc_enable_irq) + drv_memc_gen_a_tear_signal 0x00016239 Thumb Code 12 drv_memc.o(i.drv_memc_gen_a_tear_signal) + drv_memc_get_status 0x00016245 Thumb Code 18 drv_memc.o(i.drv_memc_get_status) + drv_memc_rate_transfer_sel 0x00016257 Thumb Code 16 drv_memc.o(i.drv_memc_rate_transfer_sel) + drv_memc_sel_vsync 0x00016267 Thumb Code 14 drv_memc.o(i.drv_memc_sel_vsync) + drv_memc_set_active_height 0x00016275 Thumb Code 14 drv_memc.o(i.drv_memc_set_active_height) + drv_memc_set_data_mode 0x00016289 Thumb Code 12 drv_memc.o(i.drv_memc_set_data_mode) + drv_memc_set_double_buffer 0x00016295 Thumb Code 16 drv_memc.o(i.drv_memc_set_double_buffer) + drv_memc_set_double_buffer_reverse 0x000162a5 Thumb Code 18 drv_memc.o(i.drv_memc_set_double_buffer_reverse) + drv_memc_set_fs_en_conditions 0x000162b7 Thumb Code 16 drv_memc.o(i.drv_memc_set_fs_en_conditions) + drv_memc_set_inten 0x000162c7 Thumb Code 20 drv_memc.o(i.drv_memc_set_inten) + drv_memc_set_lcdc_st_conditions 0x000162dd Thumb Code 18 drv_memc.o(i.drv_memc_set_lcdc_st_conditions) + drv_memc_set_ltpo_mode 0x000162f5 Thumb Code 26 drv_memc.o(i.drv_memc_set_ltpo_mode) + drv_memc_set_tear_mode 0x0001630f Thumb Code 14 drv_memc.o(i.drv_memc_set_tear_mode) + drv_memc_set_tear_waveform 0x0001631d Thumb Code 34 drv_memc.o(i.drv_memc_set_tear_waveform) + drv_memc_set_vidc_sync_cnt 0x00016345 Thumb Code 14 drv_memc.o(i.drv_memc_set_vidc_sync_cnt) + drv_param_init_get_ccm 0x00016355 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_ccm) + drv_param_init_get_scld_filter_h 0x0001635d Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_h) + drv_param_init_get_scld_filter_v 0x00016371 Thumb Code 12 drv_param_init.o(i.drv_param_init_get_scld_filter_v) + drv_param_init_get_sclu_filter 0x00016385 Thumb Code 4 drv_param_init.o(i.drv_param_init_get_sclu_filter) + drv_param_init_set_ccm 0x0001638d Thumb Code 14 drv_param_init.o(i.drv_param_init_set_ccm) + drv_param_init_set_scld_filter 0x000163a1 Thumb Code 92 drv_param_init.o(i.drv_param_init_set_scld_filter) + drv_param_p2r_filter_init 0x00016405 Thumb Code 30 drv_param_init.o(i.drv_param_p2r_filter_init) + drv_phy_enable_calibration 0x00016429 Thumb Code 12 drv_phy_common.o(i.drv_phy_enable_calibration) + drv_phy_get_calibration 0x00016439 Thumb Code 50 drv_phy_common.o(i.drv_phy_get_calibration) + drv_phy_get_pll_para 0x00016475 Thumb Code 88 drv_phy_common.o(i.drv_phy_get_pll_para) + drv_phy_get_rate_para 0x000164d5 Thumb Code 76 drv_phy_common.o(i.drv_phy_get_rate_para) + drv_phy_test_clear 0x00016529 Thumb Code 16 drv_phy_common.o(i.drv_phy_test_clear) + drv_phy_test_lock 0x00016539 Thumb Code 24 drv_phy_common.o(i.drv_phy_test_lock) + drv_phy_test_write_1_byte 0x00016551 Thumb Code 32 drv_phy_common.o(i.drv_phy_test_write_1_byte) + drv_phy_test_write_2_byte 0x00016571 Thumb Code 38 drv_phy_common.o(i.drv_phy_test_write_2_byte) + drv_phy_test_write_code 0x00016597 Thumb Code 30 drv_phy_common.o(i.drv_phy_test_write_code) + drv_pwr_set_cp_mode 0x000165d5 Thumb Code 26 drv_pwr.o(i.drv_pwr_set_cp_mode) + drv_pwr_set_pvd_mode 0x000165f5 Thumb Code 18 drv_pwr.o(i.drv_pwr_set_pvd_mode) + drv_pwr_set_system_clk_src 0x0001660d Thumb Code 44 drv_pwr.o(i.drv_pwr_set_system_clk_src) + drv_rxbr_clear_pkt_buffer 0x0001668b Thumb Code 10 drv_rxbr.o(i.drv_rxbr_clear_pkt_buffer) + drv_rxbr_clear_status0 0x00016695 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_clear_status0) + drv_rxbr_enable_irq 0x00016699 Thumb Code 90 drv_rxbr.o(i.drv_rxbr_enable_irq) + drv_rxbr_frame_drop_cfg 0x000166f5 Thumb Code 16 drv_rxbr.o(i.drv_rxbr_frame_drop_cfg) + drv_rxbr_get_clk 0x00016709 Thumb Code 66 drv_rxbr.o(i.drv_rxbr_get_clk) + drv_rxbr_get_col_addr 0x0001676d Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_col_addr) + drv_rxbr_get_page_addr 0x00016783 Thumb Code 4 drv_rxbr.o(i.drv_rxbr_get_page_addr) + drv_rxbr_hline_rcv0_cfg 0x00016799 Thumb Code 12 drv_rxbr.o(i.drv_rxbr_hline_rcv0_cfg) + drv_rxbr_hline_rcv_cfg 0x000167a5 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_hline_rcv_cfg) + drv_rxbr_register_irq0_callback 0x000167ad Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq0_callback) + drv_rxbr_register_irq1_callback 0x000167b9 Thumb Code 6 drv_rxbr.o(i.drv_rxbr_register_irq1_callback) + drv_rxbr_set_ack_pkt_header 0x000167c5 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_ack_pkt_header) + drv_rxbr_set_cmd_filter 0x000167d9 Thumb Code 204 drv_rxbr.o(i.drv_rxbr_set_cmd_filter) + drv_rxbr_set_color_format 0x000168a5 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_color_format) + drv_rxbr_set_inten 0x000168b9 Thumb Code 20 drv_rxbr.o(i.drv_rxbr_set_inten) + drv_rxbr_set_ltpo_drop_th 0x000168cd Thumb Code 16 drv_rxbr.o(i.drv_rxbr_set_ltpo_drop_th) + drv_rxbr_set_usr_cfg 0x000168dd Thumb Code 38 drv_rxbr.o(i.drv_rxbr_set_usr_cfg) + drv_rxbr_set_usr_col 0x00016903 Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_col) + drv_rxbr_set_usr_row 0x0001690b Thumb Code 8 drv_rxbr.o(i.drv_rxbr_set_usr_row) + drv_spi_m_read_data 0x00016915 Thumb Code 28 drv_spi_master.o(i.drv_spi_m_read_data) + drv_swire_enable 0x00016935 Thumb Code 24 drv_swire.o(i.drv_swire_enable) + drv_swire_set_int 0x00016951 Thumb Code 76 drv_swire.o(i.drv_swire_set_int) + drv_swire_set_power_down 0x000169a5 Thumb Code 24 drv_swire.o(i.drv_swire_set_power_down) + drv_sys_cfg_clear_all_int 0x000169c1 Thumb Code 8 drv_sys_cfg.o(i.drv_sys_cfg_clear_all_int) + drv_sys_cfg_clear_pending 0x000169cd Thumb Code 32 drv_sys_cfg.o(i.drv_sys_cfg_clear_pending) + drv_sys_cfg_sel_ap_rst_lvl_trig 0x000169f5 Thumb Code 18 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_lvl_trig) + drv_sys_cfg_sel_ap_rst_trig 0x00016a0d Thumb Code 22 drv_sys_cfg.o(i.drv_sys_cfg_sel_ap_rst_trig) + drv_sys_cfg_sel_gpio_group 0x00016a29 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_gpio_group) + drv_sys_cfg_sel_int_trig 0x00016a4d Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_sel_int_trig) + drv_sys_cfg_set_dma_rx_req 0x00016a71 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_rx_req) + drv_sys_cfg_set_dma_tx_req 0x00016a81 Thumb Code 10 drv_sys_cfg.o(i.drv_sys_cfg_set_dma_tx_req) + drv_sys_cfg_set_int 0x00016a91 Thumb Code 30 drv_sys_cfg.o(i.drv_sys_cfg_set_int) + drv_timer_enable 0x00016acf Thumb Code 32 drv_timer.o(i.drv_timer_enable) + drv_timer_get_instance 0x00016af1 Thumb Code 10 drv_timer.o(i.drv_timer_get_instance) + drv_timer_get_prescaler 0x00016b01 Thumb Code 12 drv_timer.o(i.drv_timer_get_prescaler) + drv_timer_register_callback 0x00016b55 Thumb Code 14 drv_timer.o(i.drv_timer_register_callback) + drv_timer_set_compare_val 0x00016b69 Thumb Code 16 drv_timer.o(i.drv_timer_set_compare_val) + drv_timer_set_int 0x00016b79 Thumb Code 80 drv_timer.o(i.drv_timer_set_int) + drv_timer_set_prescaler 0x00016bcd Thumb Code 36 drv_timer.o(i.drv_timer_set_prescaler) + drv_timer_set_repeat 0x00016bf5 Thumb Code 12 drv_timer.o(i.drv_timer_set_repeat) + drv_tx_phy_test_enter 0x00016c0f Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_enter) + drv_tx_phy_test_exit 0x00016c2b Thumb Code 28 drv_dsi_tx.o(i.drv_tx_phy_test_exit) + drv_vidc_clear_irq 0x00016c7d Thumb Code 8 drv_vidc.o(i.drv_vidc_clear_irq) + drv_vidc_enable 0x00016c85 Thumb Code 24 drv_vidc.o(i.drv_vidc_enable) + drv_vidc_enable_irq 0x00016c9d Thumb Code 58 drv_vidc.o(i.drv_vidc_enable_irq) + drv_vidc_get_irq_status 0x00016cdd Thumb Code 18 drv_vidc.o(i.drv_vidc_get_irq_status) + drv_vidc_init_module_enable 0x00016cf1 Thumb Code 36 drv_vidc.o(i.drv_vidc_init_module_enable) + drv_vidc_register_callback 0x00016d19 Thumb Code 6 drv_vidc.o(i.drv_vidc_register_callback) + drv_vidc_reset 0x00016d25 Thumb Code 6 drv_vidc.o(i.drv_vidc_reset) + drv_vidc_set_dst_parameter 0x00016d2b Thumb Code 60 drv_vidc.o(i.drv_vidc_set_dst_parameter) + drv_vidc_set_irqen 0x00016d67 Thumb Code 20 drv_vidc.o(i.drv_vidc_set_irqen) + drv_vidc_set_mirror 0x00016d7b Thumb Code 16 drv_vidc.o(i.drv_vidc_set_mirror) + drv_vidc_set_p2r_hcoef0 0x00016d8b Thumb Code 8 drv_vidc.o(i.drv_vidc_set_p2r_hcoef0) + drv_vidc_set_p2r_hinitb 0x00016d93 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitb) + drv_vidc_set_p2r_hinitr 0x00016db9 Thumb Code 38 drv_vidc.o(i.drv_vidc_set_p2r_hinitr) + drv_vidc_set_pentile_swap 0x00016de1 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_pentile_swap) + drv_vidc_set_pu_ctrl 0x00016df9 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_pu_ctrl) + drv_vidc_set_rotation 0x00016e03 Thumb Code 16 drv_vidc.o(i.drv_vidc_set_rotation) + drv_vidc_set_scld_hcoef0 0x00016e13 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef0) + drv_vidc_set_scld_hcoef1 0x00016e1d Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_hcoef1) + drv_vidc_set_scld_step 0x00016e27 Thumb Code 18 drv_vidc.o(i.drv_vidc_set_scld_step) + drv_vidc_set_scld_vcoef0 0x00016e39 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef0) + drv_vidc_set_scld_vcoef1 0x00016e43 Thumb Code 10 drv_vidc.o(i.drv_vidc_set_scld_vcoef1) + drv_vidc_set_src_parameter 0x00016e4d Thumb Code 22 drv_vidc.o(i.drv_vidc_set_src_parameter) + drv_wdg_clear_counter 0x00016e65 Thumb Code 12 drv_wdg.o(i.drv_wdg_clear_counter) + drv_wdg_set_int 0x00016e95 Thumb Code 60 drv_wdg.o(i.drv_wdg_set_int) + fls_clr_interrupt_flag 0x00016ed5 Thumb Code 10 drv_fls.o(i.fls_clr_interrupt_flag) + fputc 0x00016edf Thumb Code 20 tau_log.o(i.fputc) + hal_dsi_rx_ctrl_create_handle 0x00016ef5 Thumb Code 48 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_create_handle) + hal_dsi_rx_ctrl_deinit 0x00016f29 Thumb Code 148 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_deinit) + hal_dsi_rx_ctrl_dsc_async_handler 0x00016fc5 Thumb Code 120 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_dsc_async_handler) + hal_dsi_rx_ctrl_gen_a_tear_signal 0x00017049 Thumb Code 32 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_gen_a_tear_signal) + hal_dsi_rx_ctrl_get_compressen_en 0x00017071 Thumb Code 10 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_compressen_en) + hal_dsi_rx_ctrl_get_max_ret_size 0x00017081 Thumb Code 30 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_get_max_ret_size) + hal_dsi_rx_ctrl_init 0x000170a9 Thumb Code 88 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_init) + hal_dsi_rx_ctrl_send_ack_cmd 0x00017851 Thumb Code 212 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_send_ack_cmd) + hal_dsi_rx_ctrl_set_cus_scld_filter 0x00017941 Thumb Code 98 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_scld_filter) + hal_dsi_rx_ctrl_set_cus_sync_line 0x000179ad Thumb Code 44 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_cus_sync_line) + hal_dsi_rx_ctrl_set_sw_tear_mode 0x00017a8d Thumb Code 42 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_sw_tear_mode) + hal_dsi_rx_ctrl_set_tear_mode_ex 0x00017ac1 Thumb Code 14 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_set_tear_mode_ex) + hal_dsi_rx_ctrl_start 0x00017ad1 Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_start) + hal_dsi_rx_ctrl_stop 0x00017b0d Thumb Code 46 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_stop) + hal_dsi_rx_ctrl_toggle_resolution_ex 0x00017b49 Thumb Code 28 hal_dsi_rx_ctrl.o(i.hal_dsi_rx_ctrl_toggle_resolution_ex) + hal_dsi_tx_ctrl_create_handle 0x0001817d Thumb Code 34 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_create_handle) + hal_dsi_tx_ctrl_deinit 0x000181a9 Thumb Code 118 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_deinit) + hal_dsi_tx_ctrl_enter_init_panel_mode 0x0001822d Thumb Code 68 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_enter_init_panel_mode) + hal_dsi_tx_ctrl_exit_init_panel_mode 0x00018279 Thumb Code 32 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_exit_init_panel_mode) + hal_dsi_tx_ctrl_init 0x000182a1 Thumb Code 154 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_init) + hal_dsi_tx_ctrl_panel_reset_pin 0x00018369 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_panel_reset_pin) + hal_dsi_tx_ctrl_read_cmd 0x00018375 Thumb Code 134 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_read_cmd) + hal_dsi_tx_ctrl_set_ccm 0x00018401 Thumb Code 28 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_ccm) + hal_dsi_tx_ctrl_set_overwrite_rgb 0x00018421 Thumb Code 16 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_overwrite_rgb) + hal_dsi_tx_ctrl_set_partial_disp 0x00018435 Thumb Code 12 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp) + hal_dsi_tx_ctrl_set_partial_disp_area 0x00018445 Thumb Code 30 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_set_partial_disp_area) + hal_dsi_tx_ctrl_start 0x00018469 Thumb Code 140 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_start) + hal_dsi_tx_ctrl_stop 0x00018505 Thumb Code 56 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_stop) + hal_dsi_tx_ctrl_write_array_cmd 0x00018549 Thumb Code 210 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_array_cmd) + hal_dsi_tx_ctrl_write_cmd 0x00018621 Thumb Code 172 hal_dsi_tx_ctrl.o(i.hal_dsi_tx_ctrl_write_cmd) + hal_gpio_ctrl_eint 0x000188b5 Thumb Code 18 hal_gpio.o(i.hal_gpio_ctrl_eint) + hal_gpio_get_input_data 0x000188cd Thumb Code 18 hal_gpio.o(i.hal_gpio_get_input_data) + hal_gpio_init_eint 0x000188e1 Thumb Code 58 hal_gpio.o(i.hal_gpio_init_eint) + hal_gpio_init_input 0x00018921 Thumb Code 28 hal_gpio.o(i.hal_gpio_init_input) + hal_gpio_init_output 0x00018941 Thumb Code 34 hal_gpio.o(i.hal_gpio_init_output) + hal_gpio_reg_eint_cb 0x00018969 Thumb Code 20 hal_gpio.o(i.hal_gpio_reg_eint_cb) + hal_gpio_set_ap_reset_int 0x00018981 Thumb Code 76 hal_gpio.o(i.hal_gpio_set_ap_reset_int) + hal_gpio_set_mode 0x000189d1 Thumb Code 90 hal_gpio.o(i.hal_gpio_set_mode) + hal_gpio_set_output_data 0x00018a31 Thumb Code 8 hal_gpio.o(i.hal_gpio_set_output_data) + hal_gpio_set_pull_state 0x00018a39 Thumb Code 26 hal_gpio.o(i.hal_gpio_set_pull_state) + hal_i2c_m_dma_init 0x00018a59 Thumb Code 92 hal_i2c_master.o(i.hal_i2c_m_dma_init) + hal_i2c_m_dma_read 0x00018ac5 Thumb Code 26 hal_i2c_master.o(i.hal_i2c_m_dma_read) + hal_i2c_m_dma_write 0x00018ae5 Thumb Code 24 hal_i2c_master.o(i.hal_i2c_m_dma_write) + hal_i2c_m_transfer_complate 0x00018b01 Thumb Code 6 hal_i2c_master.o(i.hal_i2c_m_transfer_complate) + hal_i2c_s_dma_write 0x00018b3d Thumb Code 62 hal_i2c_slave.o(i.hal_i2c_s_dma_write) + hal_i2c_s_init 0x00018b89 Thumb Code 176 hal_i2c_slave.o(i.hal_i2c_s_init) + hal_i2c_s_nonblocking_read 0x00018c51 Thumb Code 14 hal_i2c_slave.o(i.hal_i2c_s_nonblocking_read) + hal_i2c_s_set_transfer 0x00018c65 Thumb Code 6 hal_i2c_slave.o(i.hal_i2c_s_set_transfer) + hal_internal_init_memc 0x00018de5 Thumb Code 170 hal_internal_vsync.o(i.hal_internal_init_memc) + hal_internal_sync_get_fb_setting 0x00018ee1 Thumb Code 12 hal_internal_vsync.o(i.hal_internal_sync_get_fb_setting) + hal_internal_sync_get_hight_performan_mode 0x00018ef1 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_sync_get_hight_performan_mode) + hal_internal_sync_input_resolution_change_ex 0x00018f01 Thumb Code 362 hal_internal_vsync.o(i.hal_internal_sync_input_resolution_change_ex) + hal_internal_update_dpi_param 0x000190d5 Thumb Code 10 hal_internal_vsync.o(i.hal_internal_update_dpi_param) + hal_internal_video_mode_auto_sync 0x000190e5 Thumb Code 238 hal_internal_vsync.o(i.hal_internal_video_mode_auto_sync) + hal_internal_vsync_deinit 0x000191f1 Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_deinit) + hal_internal_vsync_get_rx_state 0x00019219 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_rx_state) + hal_internal_vsync_get_sync_line 0x00019225 Thumb Code 18 hal_internal_vsync.o(i.hal_internal_vsync_get_sync_line) + hal_internal_vsync_get_tear_mode 0x0001923d Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tear_mode) + hal_internal_vsync_get_tx_state 0x00019249 Thumb Code 6 hal_internal_vsync.o(i.hal_internal_vsync_get_tx_state) + hal_internal_vsync_init_rx 0x00019255 Thumb Code 236 hal_internal_vsync.o(i.hal_internal_vsync_init_rx) + hal_internal_vsync_init_tx 0x0001936d Thumb Code 172 hal_internal_vsync.o(i.hal_internal_vsync_init_tx) + hal_internal_vsync_set_auto_hw_filter 0x0001941d Thumb Code 222 hal_internal_vsync.o(i.hal_internal_vsync_set_auto_hw_filter) + hal_internal_vsync_set_rx_state 0x00019539 Thumb Code 16 hal_internal_vsync.o(i.hal_internal_vsync_set_rx_state) + hal_internal_vsync_set_sync_line 0x0001954d Thumb Code 30 hal_internal_vsync.o(i.hal_internal_vsync_set_sync_line) + hal_internal_vsync_set_tear_mode 0x00019571 Thumb Code 72 hal_internal_vsync.o(i.hal_internal_vsync_set_tear_mode) + hal_internal_vsync_set_tx_state 0x000195c1 Thumb Code 118 hal_internal_vsync.o(i.hal_internal_vsync_set_tx_state) + hal_spi_m_clear_rxfifo 0x00019a65 Thumb Code 14 hal_spi_master.o(i.hal_spi_m_clear_rxfifo) + hal_swire_deinit 0x00019a73 Thumb Code 18 hal_swire.o(i.hal_swire_deinit) + hal_swire_open 0x00019a85 Thumb Code 22 hal_swire.o(i.hal_swire_open) + hal_system_enable_systick 0x00019a9b Thumb Code 8 hal_system.o(i.hal_system_enable_systick) + hal_system_init 0x00019aa5 Thumb Code 104 hal_system.o(i.hal_system_init) + hal_system_init_console 0x00019b2d Thumb Code 28 hal_system.o(i.hal_system_init_console) + hal_system_set_phy_calibration 0x00019b49 Thumb Code 8 hal_system.o(i.hal_system_set_phy_calibration) + hal_system_set_pvd 0x00019b51 Thumb Code 8 hal_system.o(i.hal_system_set_pvd) + hal_system_set_vcc 0x00019b59 Thumb Code 8 hal_system.o(i.hal_system_set_vcc) + hal_timer_deinit 0x00019b61 Thumb Code 46 hal_timer.o(i.hal_timer_deinit) + hal_timer_init 0x00019b8f Thumb Code 26 hal_timer.o(i.hal_timer_init) + hal_timer_start 0x00019ba9 Thumb Code 66 hal_timer.o(i.hal_timer_start) + hal_timer_stop 0x00019bf1 Thumb Code 40 hal_timer.o(i.hal_timer_stop) + hal_uart_init 0x00019c19 Thumb Code 126 hal_uart.o(i.hal_uart_init) + hal_uart_transmit_blocking 0x00019ca5 Thumb Code 12 hal_uart.o(i.hal_uart_transmit_blocking) + handle_init 0x00019e91 Thumb Code 140 irq_redirect .o(i.handle_init) + main 0x0001a0e1 Thumb Code 10 main.o(i.main) + sqrt 0x0001ad89 Thumb Code 66 sqrt.o(i.sqrt) + panel_init_code 0x0001b224 Data 9973 ap_demo.o(.constdata) + phone_data_21 0x0001d919 Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_55 0x0001d91a Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_85_00 0x0001d91b Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_1 0x0001d91c Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_2 0x0001d91d Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_3 0x0001d91e Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_F5_4 0x0001d91f Data 1 app_tp_for_custom_s8.o(.constdata) + phone_data_30 0x0001d920 Data 2 app_tp_for_custom_s8.o(.constdata) + phone_data_92_F0 0x0001d922 Data 2 app_tp_for_custom_s8.o(.constdata) + phone_data_52 0x0001d924 Data 3 app_tp_for_custom_s8.o(.constdata) + phone_data_92_15 0x0001d927 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A3 0x0001d92b Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A4 0x0001d92f Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_A5 0x0001d933 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_AF 0x0001d937 Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_F1 0x0001d93b Data 4 app_tp_for_custom_s8.o(.constdata) + phone_data_22 0x0001d93f Data 5 app_tp_for_custom_s8.o(.constdata) + phone_data_92_0A 0x0001d944 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_1 0x0001d94a Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_2 0x0001d950 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_3 0x0001d956 Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_F6_4 0x0001d95c Data 6 app_tp_for_custom_s8.o(.constdata) + phone_data_60_1 0x0001d962 Data 16 app_tp_for_custom_s8.o(.constdata) + phone_data_23 0x0001d972 Data 11 app_tp_for_custom_s8.o(.constdata) + phone_data_85_02 0x0001d97d Data 28 app_tp_for_custom_s8.o(.constdata) + phone_data_85_20 0x0001d999 Data 28 app_tp_for_custom_s8.o(.constdata) + phone_data_90 0x0001d9b5 Data 10 app_tp_for_custom_s8.o(.constdata) + sleep_on 0x0001d9bf Data 16 app_tp_for_custom_s8.o(.constdata) + screen_reg_start_data_size 0x0001d9cf Data 1 app_tp_for_custom_s8.o(.constdata) + Region$$Table$$Base 0x0001dde4 Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0001de14 Number 0 anon$$obj.o(Region$$Table) + g_fun_handle 0x00070100 Data 192 irq_redirect .o(.ARM.__AT_0x00070100) + phone_start_flag 0x000701d5 Data 1 ap_demo.o(.data) + phone_DisplayOFF_flag 0x000701d6 Data 1 ap_demo.o(.data) + panel_mode 0x000701d8 Data 1 ap_demo.o(.data) + phone_DisplayOFF_count 0x000701e2 Data 2 ap_demo.o(.data) + panel_r 0x000701e8 Data 2 ap_demo.o(.data) + panel_g 0x000701ea Data 2 ap_demo.o(.data) + panel_b 0x000701ec Data 2 ap_demo.o(.data) + rx_filter_1080_h_4_96 0x000701fc Data 256 ap_demo.o(.data) + rx_filter_2400_v_4_96 0x000702fc Data 256 ap_demo.o(.data) + s_screen_init_complate 0x00070400 Data 1 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data1 0x00070404 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data3 0x00070407 Data 3 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data4 0x0007040a Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data2 0x0007040d Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data3 0x00070410 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data6 0x00070413 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data7 0x00070416 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data8 0x00070419 Data 3 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data4 0x0007041c Data 4 app_tp_transfer.o(.data) + MI10_PRO_TP_Tuning_data5 0x00070420 Data 4 app_tp_transfer.o(.data) + MI10_PRO_screen_init_data2 0x00070424 Data 6 app_tp_transfer.o(.data) + phone_data_E4 0x0007042a Data 1 app_tp_for_custom_s8.o(.data) + tp_flag 0x0007042b Data 1 app_tp_for_custom_s8.o(.data) + g_phone_output_int_pad 0x0007042c Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_in 0x0007042d Data 1 app_tp_for_custom_s8.o(.data) + tp_sleep_count 0x0007042e Data 1 app_tp_for_custom_s8.o(.data) + sleep_double_EN 0x0007042f Data 1 app_tp_for_custom_s8.o(.data) + Flag_EA_EN 0x00070430 Data 1 app_tp_for_custom_s8.o(.data) + Flag_touch_count 0x00070431 Data 1 app_tp_for_custom_s8.o(.data) + touchnum_bak 0x00070432 Data 1 app_tp_for_custom_s8.o(.data) + Flag_blacklight_EN 0x00070433 Data 1 app_tp_for_custom_s8.o(.data) + phone_data_B1 0x0007043c Data 2 app_tp_for_custom_s8.o(.data) + phone_reg_coord_back 0x00070446 Data 200 app_tp_for_custom_s8.o(.data) + g_screen_input_rst_pad 0x0007050e Data 1 app_tp_for_custom_s8.o(.data) + g_screen_input_int_pad 0x0007050f Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_1 0x00070510 Data 1 app_tp_for_custom_s8.o(.data) + screen_data_write_2 0x00070511 Data 3 app_tp_for_custom_s8.o(.data) + screen_data_write_3 0x00070514 Data 5 app_tp_for_custom_s8.o(.data) + screen_reg_int_data 0x0007051c Data 48 app_tp_for_custom_s8.o(.data) + g_fls_w_cmd 0x00070578 Data 1 norflash.o(.data) + g_fls_r_cmd 0x00070579 Data 1 norflash.o(.data) + g_fls_write_en_status 0x0007057a Data 1 norflash.o(.data) + isFlsTransferEnd 0x0007057b Data 1 norflash.o(.data) + isFlsFifoReq 0x0007057c Data 1 norflash.o(.data) + isNandWriteCompleted 0x0007057d Data 1 norflash.o(.data) + isNandReadCompleted 0x0007057e Data 1 norflash.o(.data) + g_fls_error_info 0x00070584 Data 6 norflash.o(.data) + g_systick_cb_func 0x00070590 Data 4 drv_common.o(.data) + g_system_clock 0x00070594 Data 4 drv_common.o(.data) + g_scld_fhd_filter_h 0x000705ac Data 256 drv_param_init.o(.data) + g_scld_fhd_filter_v 0x000706ac Data 256 drv_param_init.o(.data) + g_scld_hd_filter_h 0x000707ac Data 256 drv_param_init.o(.data) + g_scld_hd_filter_v 0x000708ac Data 256 drv_param_init.o(.data) + g_sclu_lanczos_filter 0x000709ac Data 128 drv_param_init.o(.data) + g_ccm_setting 0x00070a2c Data 36 drv_param_init.o(.data) + g_sof_gen_te_func 0x00070ac4 Data 4 hal_internal_vsync.o(.data) + g_int_rxbr_irq0_cb_func 0x00070ac8 Data 4 drv_rxbr.o(.data) + g_int_rxbr_irq1_cb_func 0x00070acc Data 4 drv_rxbr.o(.data) + g_int_vidc_cb_func 0x00070ad0 Data 4 drv_vidc.o(.data) + __stdout 0x00070af8 Data 4 stdout.o(.data) + string 0x00070da0 Data 256 tau_log.o(.bss) + hal_dmahandle 0x00070ea0 Data 160 hal_uart.o(.bss) + hal_uarthandle_dma 0x00070f40 Data 32 hal_uart.o(.bss) + hal_uart_handle_global 0x00070f60 Data 16 hal_uart.o(.bss) + g_vsync_hande 0x0007110c Data 100 hal_internal_vsync.o(.bss) + g_dcs_execute_table 0x00071170 Data 2048 hal_internal_vsync.o(.bss) + g_packet_fifo 0x00071a90 Data 4144 dcs_packet_fifo.o(.bss) + g_spis_ctrl_handle 0x00072ac0 Data 32 hal_spi_slave.o(.bss) + __stack_limit 0x00072ae0 Data 0 startup_armcm0.o(STACK) + __initial_sp 0x00073ae0 Data 0 startup_armcm0.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x000100c1 + + Load Region LR_IROM2 (Base: 0x00010000, Size: 0x0000e744, Max: 0x00010000, ABSOLUTE, COMPRESSED[0x0000e360]) + + Execution Region ER_IROM2 (Exec base: 0x00010000, Load base: 0x00010000, Size: 0x0000de14, Max: 0x00010000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00010000 0x00010000 0x000000c0 Data RO 558 RESET startup_armcm0.o + 0x000100c0 0x000100c0 0x00000000 Code RO 2648 * .ARM.Collect$$$$00000000 mc_p.l(entry.o) + 0x000100c0 0x000100c0 0x00000004 Code RO 2958 .ARM.Collect$$$$00000001 mc_p.l(entry2.o) + 0x000100c4 0x000100c4 0x00000004 Code RO 2961 .ARM.Collect$$$$00000004 mc_p.l(entry5.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2963 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o) + 0x000100c8 0x000100c8 0x00000000 Code RO 2965 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o) + 0x000100c8 0x000100c8 0x00000008 Code RO 2966 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2968 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o) + 0x000100d0 0x000100d0 0x00000000 Code RO 2970 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o) + 0x000100d0 0x000100d0 0x00000004 Code RO 2959 .ARM.Collect$$$$00002712 mc_p.l(entry2.o) + 0x000100d4 0x000100d4 0x00000078 Code RO 559 .text startup_armcm0.o + 0x0001014c 0x0001014c 0x0000002c Code RO 2651 .text mc_p.l(uidiv.o) + 0x00010178 0x00010178 0x00000028 Code RO 2653 .text mc_p.l(idiv.o) + 0x000101a0 0x000101a0 0x00000024 Code RO 2655 .text mc_p.l(memcpya.o) + 0x000101c4 0x000101c4 0x00000024 Code RO 2657 .text mc_p.l(memseta.o) + 0x000101e8 0x000101e8 0x000000b2 Code RO 2922 .text mf_p.l(fadd.o) + 0x0001029a 0x0001029a 0x0000007a Code RO 2924 .text mf_p.l(fmul.o) + 0x00010314 0x00010314 0x0000007c Code RO 2926 .text mf_p.l(fdiv.o) + 0x00010390 0x00010390 0x00000018 Code RO 2928 .text mf_p.l(fscalb.o) + 0x000103a8 0x000103a8 0x00000164 Code RO 2930 .text mf_p.l(dadd.o) + 0x0001050c 0x0001050c 0x000000d0 Code RO 2932 .text mf_p.l(dmul.o) + 0x000105dc 0x000105dc 0x000000f0 Code RO 2934 .text mf_p.l(ddiv.o) + 0x000106cc 0x000106cc 0x00000016 Code RO 2936 .text mf_p.l(fflti.o) + 0x000106e2 0x000106e2 0x0000000e Code RO 2938 .text mf_p.l(ffltui.o) + 0x000106f0 0x000106f0 0x0000001c Code RO 2942 .text mf_p.l(dfltui.o) + 0x0001070c 0x0001070c 0x00000032 Code RO 2944 .text mf_p.l(ffixi.o) + 0x0001073e 0x0001073e 0x00000028 Code RO 2946 .text mf_p.l(ffixui.o) + 0x00010766 0x00010766 0x00000002 PAD + 0x00010768 0x00010768 0x00000048 Code RO 2948 .text mf_p.l(dfixi.o) + 0x000107b0 0x000107b0 0x0000003c Code RO 2950 .text mf_p.l(dfixui.o) + 0x000107ec 0x000107ec 0x00000028 Code RO 2952 .text mf_p.l(f2d.o) + 0x00010814 0x00010814 0x00000028 Code RO 2954 .text mf_p.l(cdcmple.o) + 0x0001083c 0x0001083c 0x00000014 Code RO 2956 .text mf_p.l(cfrcmple.o) + 0x00010850 0x00010850 0x00000060 Code RO 2973 .text mc_p.l(uldiv.o) + 0x000108b0 0x000108b0 0x00000020 Code RO 2975 .text mc_p.l(llshl.o) + 0x000108d0 0x000108d0 0x00000022 Code RO 2977 .text mc_p.l(llushr.o) + 0x000108f2 0x000108f2 0x00000026 Code RO 2979 .text mc_p.l(llsshr.o) + 0x00010918 0x00010918 0x00000000 Code RO 2988 .text mc_p.l(iusefp.o) + 0x00010918 0x00010918 0x00000082 Code RO 2989 .text mf_p.l(fepilogue.o) + 0x0001099a 0x0001099a 0x000000be Code RO 2991 .text mf_p.l(depilogue.o) + 0x00010a58 0x00010a58 0x000000a2 Code RO 2995 .text mf_p.l(dsqrt.o) + 0x00010afa 0x00010afa 0x00000002 PAD + 0x00010afc 0x00010afc 0x00000040 Code RO 2997 .text mf_p.l(dfixul.o) + 0x00010b3c 0x00010b3c 0x00000028 Code RO 2999 .text mf_p.l(cdrcmple.o) + 0x00010b64 0x00010b64 0x00000024 Code RO 3001 .text mc_p.l(init.o) + 0x00010b88 0x00010b88 0x00000056 Code RO 3011 .text mc_p.l(__dczerorl2.o) + 0x00010bde 0x00010bde 0x00000002 PAD + 0x00010be0 0x00010be0 0x00000018 Code RO 2282 i.ADC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010bf8 0x00010bf8 0x00000018 Code RO 2283 i.AP_NRESET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c10 0x00010c10 0x00000014 Code RO 2284 i.DMA_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c24 0x00010c24 0x0000001c Code RO 2285 i.EXTI_INT0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c40 0x00010c40 0x0000001c Code RO 2286 i.EXTI_INT1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c5c 0x00010c5c 0x0000001c Code RO 2287 i.EXTI_INT2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c78 0x00010c78 0x0000001c Code RO 2288 i.EXTI_INT3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010c94 0x00010c94 0x0000001c Code RO 2289 i.EXTI_INT4_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010cb0 0x00010cb0 0x0000001c Code RO 2290 i.EXTI_INT5_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ccc 0x00010ccc 0x0000001c Code RO 2291 i.EXTI_INT6_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ce8 0x00010ce8 0x0000001c Code RO 2292 i.EXTI_INT7_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d04 0x00010d04 0x00000014 Code RO 2293 i.FLSCTRL_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d18 0x00010d18 0x0000004e Code RO 99 i.Gpio_swire_output ap_demo.o + 0x00010d66 0x00010d66 0x00000002 PAD + 0x00010d68 0x00010d68 0x00000014 Code RO 2294 i.HardFault_Handler CVWL368.lib(irq_redirect .o) + 0x00010d7c 0x00010d7c 0x00000018 Code RO 2295 i.I2C0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010d94 0x00010d94 0x00000018 Code RO 2296 i.I2C1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dac 0x00010dac 0x00000018 Code RO 2297 i.LCDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010dc4 0x00010dc4 0x00000028 Code RO 1024 i.LOG_printf CVWL368.lib(tau_log.o) + 0x00010dec 0x00010dec 0x00000018 Code RO 2298 i.MEMC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e04 0x00010e04 0x00000018 Code RO 2299 i.MIPI_RX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e1c 0x00010e1c 0x00000018 Code RO 2300 i.MIPI_TX_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e34 0x00010e34 0x0000001c Code RO 2301 i.PWMDET_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010e50 0x00010e50 0x00000124 Code RO 278 i.S20_Start_init app_tp_transfer.o + 0x00010f74 0x00010f74 0x0000001c Code RO 2302 i.SPIM_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010f90 0x00010f90 0x0000001c Code RO 2303 i.SPIS_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fac 0x00010fac 0x0000001c Code RO 2304 i.SWIRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010fc8 0x00010fc8 0x00000018 Code RO 2305 i.SysTick_Handler CVWL368.lib(irq_redirect .o) + 0x00010fe0 0x00010fe0 0x00000018 Code RO 2306 i.TIMER0_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00010ff8 0x00010ff8 0x00000002 Code RO 2530 i.UART_DisableDma CVWL368.lib(drv_uart.o) + 0x00010ffa 0x00010ffa 0x00000004 Code RO 2536 i.UART_GetInstance CVWL368.lib(drv_uart.o) + 0x00010ffe 0x00010ffe 0x00000002 Code RO 3006 i.__scatterload_null mc_p.l(handlers.o) + 0x00011000 0x00011000 0x00000014 Data RO 1146 .ARM.__at_0x11000 CVWL368.lib(drv_common.o) + 0x00011014 0x00011014 0x00000004 Code RO 108 i.ap_set_display_on ap_demo.o + 0x00011018 0x00011018 0x00000004 Data RO 1147 .ARM.__at_0x11018 CVWL368.lib(drv_common.o) + 0x0001101c 0x0001101c 0x00000018 Code RO 2307 i.TIMER1_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011034 0x00011034 0x00000018 Code RO 2308 i.TIMER2_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x0001104c 0x0001104c 0x00000018 Code RO 2309 i.TIMER3_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011064 0x00011064 0x0000001c Code RO 2526 i.UART0_IRQ_Handle CVWL368.lib(drv_uart.o) + 0x00011080 0x00011080 0x00000018 Code RO 2310 i.UART_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011098 0x00011098 0x00000024 Code RO 2544 i.UART_ResetRxFIFO CVWL368.lib(drv_uart.o) + 0x000110bc 0x000110bc 0x00000048 Code RO 2547 i.UART_SetBaudRate CVWL368.lib(drv_uart.o) + 0x00011104 0x00011104 0x0000001a Code RO 2548 i.UART_SwitchSCLK CVWL368.lib(drv_uart.o) + 0x0001111e 0x0001111e 0x00000134 Code RO 2550 i.UART_TransferHandleIRQ CVWL368.lib(drv_uart.o) + 0x00011252 0x00011252 0x0000001a Code RO 2552 i.UART_WriteBlocking CVWL368.lib(drv_uart.o) + 0x0001126c 0x0001126c 0x000000bc Code RO 2553 i.UART_init CVWL368.lib(drv_uart.o) + 0x00011328 0x00011328 0x00000018 Code RO 2311 i.VIDC_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011340 0x00011340 0x00000018 Code RO 2312 i.VPRE_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011358 0x00011358 0x00000018 Code RO 2313 i.WDG_IRQn_Handler CVWL368.lib(irq_redirect .o) + 0x00011370 0x00011370 0x00000020 Code RO 2894 i.__0printf mc_p.l(printfa.o) + 0x00011390 0x00011390 0x00000024 Code RO 2900 i.__0vsprintf mc_p.l(printfa.o) + 0x000113b4 0x000113b4 0x0000002e Code RO 2993 i.__ARM_clz mf_p.l(depilogue.o) + 0x000113e2 0x000113e2 0x0000001a Code RO 656 i.__ARM_common_switch8 CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000113fc 0x000113fc 0x00000018 Code RO 1467 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_i2c_master.o) + 0x00011414 0x00011414 0x00000018 Code RO 1630 i.__NVIC_ClearPendingIRQ CVWL368.lib(drv_spi_master.o) + 0x0001142c 0x0001142c 0x00000020 Code RO 2136 i.__NVIC_DisableIRQ CVWL368.lib(drv_rxbr.o) + 0x0001144c 0x0001144c 0x00000018 Code RO 2137 i.__NVIC_EnableIRQ CVWL368.lib(drv_rxbr.o) + 0x00011464 0x00011464 0x00000044 Code RO 2432 i.__NVIC_SetPriority CVWL368.lib(hal_spi_slave.o) + 0x000114a8 0x000114a8 0x0000000e Code RO 3005 i.__scatterload_copy mc_p.l(handlers.o) + 0x000114b6 0x000114b6 0x0000000e Code RO 3007 i.__scatterload_zeroinit mc_p.l(handlers.o) + 0x000114c4 0x000114c4 0x0000000c Code RO 2983 i.__set_errno mc_p.l(errno.o) + 0x000114d0 0x000114d0 0x00000174 Code RO 2901 i._fp_digits mc_p.l(printfa.o) + 0x00011644 0x00011644 0x000006ec Code RO 2902 i._printf_core mc_p.l(printfa.o) + 0x00011d30 0x00011d30 0x00000020 Code RO 2903 i._printf_post_padding mc_p.l(printfa.o) + 0x00011d50 0x00011d50 0x0000002c Code RO 2904 i._printf_pre_padding mc_p.l(printfa.o) + 0x00011d7c 0x00011d7c 0x0000000a Code RO 2906 i._sputc mc_p.l(printfa.o) + 0x00011d86 0x00011d86 0x00000002 PAD + 0x00011d88 0x00011d88 0x00000d84 Code RO 102 i.ap_dcs_read ap_demo.o + 0x00012b0c 0x00012b0c 0x000000fc Code RO 103 i.ap_demo ap_demo.o + 0x00012c08 0x00012c08 0x0000009c Code RO 104 i.ap_get_reg_df ap_demo.o + 0x00012ca4 0x00012ca4 0x00000030 Code RO 105 i.ap_reset_cb ap_demo.o + 0x00012cd4 0x00012cd4 0x00000048 Code RO 106 i.ap_set_backlight_51 ap_demo.o + 0x00012d1c 0x00012d1c 0x00000012 Code RO 107 i.ap_set_display_off ap_demo.o + 0x00012d2e 0x00012d2e 0x00000002 PAD + 0x00012d30 0x00012d30 0x00000044 Code RO 109 i.ap_set_enter_sleep_mode ap_demo.o + 0x00012d74 0x00012d74 0x0000000c Code RO 110 i.ap_set_exit_sleep_mode ap_demo.o + 0x00012d80 0x00012d80 0x000000b0 Code RO 279 i.ap_tp_calibration app_tp_transfer.o + 0x00012e30 0x00012e30 0x00000030 Code RO 111 i.ap_update_frame_rate ap_demo.o + 0x00012e60 0x00012e60 0x0000001c Code RO 2138 i.app_ADC_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x00012e7c 0x00012e7c 0x00000024 Code RO 1391 i.app_AP_NRESET_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012ea0 0x00012ea0 0x0000001c Code RO 1392 i.app_EXTI_INT0_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012ebc 0x00012ebc 0x0000001c Code RO 1393 i.app_EXTI_INT1_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012ed8 0x00012ed8 0x0000001c Code RO 1394 i.app_EXTI_INT2_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012ef4 0x00012ef4 0x0000001c Code RO 1395 i.app_EXTI_INT3_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012f10 0x00012f10 0x0000001c Code RO 1396 i.app_EXTI_INT4_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012f2c 0x00012f2c 0x0000001c Code RO 1397 i.app_EXTI_INT5_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012f48 0x00012f48 0x0000001c Code RO 1398 i.app_EXTI_INT6_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012f64 0x00012f64 0x0000001c Code RO 1399 i.app_EXTI_INT7_IRQn_Handler CVWL368.lib(drv_gpio.o) + 0x00012f80 0x00012f80 0x00000048 Code RO 1138 i.app_HardFault_Handler CVWL368.lib(drv_common.o) + 0x00012fc8 0x00012fc8 0x00000018 Code RO 1502 i.app_I2C0_IRQn_Handler CVWL368.lib(drv_i2c_slave.o) + 0x00012fe0 0x00012fe0 0x00000010 Code RO 1468 i.app_I2C1_IRQn_Handler CVWL368.lib(drv_i2c_master.o) + 0x00012ff0 0x00012ff0 0x000001a4 Code RO 1748 i.app_LCDC_IRQn_Handler CVWL368.lib(hal_internal_vsync.o) + 0x00013194 0x00013194 0x00000088 Code RO 2080 i.app_MEMC_IRQn_Handler CVWL368.lib(drv_memc.o) + 0x0001321c 0x0001321c 0x00000298 Code RO 1852 i.app_MIPI_RX_IRQn_Handler CVWL368.lib(drv_dsi_rx.o) + 0x000134b4 0x000134b4 0x000000a0 Code RO 1908 i.app_MIPI_TX_IRQn_Handler CVWL368.lib(drv_dsi_tx.o) + 0x00013554 0x00013554 0x00000048 Code RO 1551 i.app_PWMDET_IRQn_Handler CVWL368.lib(drv_pwm.o) + 0x0001359c 0x0001359c 0x00000030 Code RO 1631 i.app_SPIM_IRQn_Handler CVWL368.lib(drv_spi_master.o) + 0x000135cc 0x000135cc 0x00000200 Code RO 2433 i.app_SPIS_IRQn_Handler CVWL368.lib(hal_spi_slave.o) + 0x000137cc 0x000137cc 0x00000020 Code RO 1663 i.app_SWIRE_IRQn_Handler CVWL368.lib(drv_swire.o) + 0x000137ec 0x000137ec 0x00000018 Code RO 1139 i.app_SysTick_Handler CVWL368.lib(drv_common.o) + 0x00013804 0x00013804 0x0000000a Code RO 1713 i.app_TIMER0_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x0001380e 0x0001380e 0x0000000a Code RO 1714 i.app_TIMER1_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00013818 0x00013818 0x0000000a Code RO 1715 i.app_TIMER2_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x00013822 0x00013822 0x0000000a Code RO 1716 i.app_TIMER3_IRQn_Handler CVWL368.lib(drv_timer.o) + 0x0001382c 0x0001382c 0x00000008 Code RO 2554 i.app_UART_IRQn_Handler CVWL368.lib(drv_uart.o) + 0x00013834 0x00013834 0x0000001c Code RO 2203 i.app_VIDC_IRQn_Handler CVWL368.lib(drv_vidc.o) + 0x00013850 0x00013850 0x0000001c Code RO 2139 i.app_VPRE_IRQn_Handler CVWL368.lib(drv_rxbr.o) + 0x0001386c 0x0001386c 0x00000038 Code RO 2613 i.app_WDG_IRQn_Handler CVWL368.lib(drv_wdg.o) + 0x000138a4 0x000138a4 0x00000010 Code RO 1253 i.app_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x000138b4 0x000138b4 0x00000030 Code RO 1054 i.app_fls_ctrl_Handler CVWL368.lib(norflash.o) + 0x000138e4 0x000138e4 0x00000024 Code RO 280 i.app_tp_I2C_init app_tp_transfer.o + 0x00013908 0x00013908 0x00000018 Code RO 112 i.app_tp_calibration_exec ap_demo.o + 0x00013920 0x00013920 0x0000000a Code RO 281 i.app_tp_i2cs_callback app_tp_transfer.o + 0x0001392a 0x0001392a 0x00000002 PAD + 0x0001392c 0x0001392c 0x00000044 Code RO 282 i.app_tp_init app_tp_transfer.o + 0x00013970 0x00013970 0x00000020 Code RO 283 i.app_tp_m_read app_tp_transfer.o + 0x00013990 0x00013990 0x00000008 Code RO 284 i.app_tp_m_transfer_complate app_tp_transfer.o + 0x00013998 0x00013998 0x00000008 Code RO 285 i.app_tp_m_write app_tp_transfer.o + 0x000139a0 0x000139a0 0x00000340 Code RO 439 i.app_tp_phone_analysis_data app_tp_for_custom_s8.o + 0x00013ce0 0x00013ce0 0x00000008 Code RO 288 i.app_tp_s_read app_tp_transfer.o + 0x00013ce8 0x00013ce8 0x00000008 Code RO 290 i.app_tp_s_write app_tp_transfer.o + 0x00013cf0 0x00013cf0 0x000002d4 Code RO 441 i.app_tp_screen_analysis_int app_tp_for_custom_s8.o + 0x00013fc4 0x00013fc4 0x00000030 Code RO 291 i.app_tp_screen_init app_tp_transfer.o + 0x00013ff4 0x00013ff4 0x0000000c Code RO 292 i.app_tp_screen_int_callback app_tp_transfer.o + 0x00014000 0x00014000 0x00000038 Code RO 293 i.app_tp_screen_int_init app_tp_transfer.o + 0x00014038 0x00014038 0x0000001c Code RO 294 i.app_tp_screen_int_lvl_low app_tp_transfer.o + 0x00014054 0x00014054 0x00000030 Code RO 295 i.app_tp_transfer_phone app_tp_transfer.o + 0x00014084 0x00014084 0x00000040 Code RO 296 i.app_tp_transfer_screen_const app_tp_transfer.o + 0x000140c4 0x000140c4 0x00000104 Code RO 297 i.app_tp_transfer_screen_int app_tp_transfer.o + 0x000141c8 0x000141c8 0x00000014 Code RO 298 i.app_tp_transfer_screen_start app_tp_transfer.o + 0x000141dc 0x000141dc 0x00000024 Code RO 538 i.board_Init board.o + 0x00014200 0x00014200 0x000004f0 Code RO 1749 i.calc_framebuffer_setting CVWL368.lib(hal_internal_vsync.o) + 0x000146f0 0x000146f0 0x000000c8 Code RO 2637 i.ceil m_ps.l(ceil.o) + 0x000147b8 0x000147b8 0x0000002c Code RO 1750 i.check_mipi_rx_tx_video_info CVWL368.lib(hal_internal_vsync.o) + 0x000147e4 0x000147e4 0x00000094 Code RO 1751 i.check_pkt_buf_rev CVWL368.lib(hal_internal_vsync.o) + 0x00014878 0x00014878 0x00000058 Code RO 1839 i.dcs_packet_fifo_alloc CVWL368.lib(dcs_packet_fifo.o) + 0x000148d0 0x000148d0 0x00000018 Code RO 1840 i.dcs_packet_fifo_init CVWL368.lib(dcs_packet_fifo.o) + 0x000148e8 0x000148e8 0x00000044 Code RO 1841 i.dcs_packet_free_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x0001492c 0x0001492c 0x00000024 Code RO 1842 i.dcs_packet_get_fifo_header CVWL368.lib(dcs_packet_fifo.o) + 0x00014950 0x00014950 0x0000001c Code RO 1752 i.dcs_sw_filter CVWL368.lib(hal_internal_vsync.o) + 0x0001496c 0x0001496c 0x00000018 Code RO 1016 i.delayMs CVWL368.lib(tau_delay.o) + 0x00014984 0x00014984 0x00000022 Code RO 1017 i.delayUs CVWL368.lib(tau_delay.o) + 0x000149a6 0x000149a6 0x00000002 PAD + 0x000149a8 0x000149a8 0x00000038 Code RO 1682 i.drv_ap_rst_trig_edge_detect CVWL368.lib(drv_sys_cfg.o) + 0x000149e0 0x000149e0 0x0000000c Code RO 2403 i.drv_chip_info_get_info CVWL368.lib(drv_chip_info.o) + 0x000149ec 0x000149ec 0x00000040 Code RO 2404 i.drv_chip_info_init CVWL368.lib(drv_chip_info.o) + 0x00014a2c 0x00014a2c 0x000000b0 Code RO 2405 i.drv_chip_rx_info_check CVWL368.lib(drv_chip_info.o) + 0x00014adc 0x00014adc 0x00000014 Code RO 2406 i.drv_chip_rx_init_done CVWL368.lib(drv_chip_info.o) + 0x00014af0 0x00014af0 0x00000058 Code RO 1141 i.drv_common_enable_systick CVWL368.lib(drv_common.o) + 0x00014b48 0x00014b48 0x00000008 Code RO 1144 i.drv_common_system_init CVWL368.lib(drv_common.o) + 0x00014b50 0x00014b50 0x00000010 Code RO 1166 i.drv_crgu_config_reset_modules CVWL368.lib(drv_crgu.o) + 0x00014b60 0x00014b60 0x00000014 Code RO 1179 i.drv_crgu_set_ahb_pre_div CVWL368.lib(drv_crgu.o) + 0x00014b74 0x00014b74 0x00000014 Code RO 1180 i.drv_crgu_set_ahb_src CVWL368.lib(drv_crgu.o) + 0x00014b88 0x00014b88 0x00000020 Code RO 1183 i.drv_crgu_set_clock CVWL368.lib(drv_crgu.o) + 0x00014ba8 0x00014ba8 0x00000014 Code RO 1184 i.drv_crgu_set_dpi_mux_src CVWL368.lib(drv_crgu.o) + 0x00014bbc 0x00014bbc 0x00000018 Code RO 1185 i.drv_crgu_set_dpi_pre_div CVWL368.lib(drv_crgu.o) + 0x00014bd4 0x00014bd4 0x00000014 Code RO 1186 i.drv_crgu_set_dpi_pre_src CVWL368.lib(drv_crgu.o) + 0x00014be8 0x00014be8 0x00000014 Code RO 1187 i.drv_crgu_set_dsc_core_div CVWL368.lib(drv_crgu.o) + 0x00014bfc 0x00014bfc 0x00000014 Code RO 1188 i.drv_crgu_set_dsco_src CVWL368.lib(drv_crgu.o) + 0x00014c10 0x00014c10 0x00000014 Code RO 1189 i.drv_crgu_set_dsco_src_div CVWL368.lib(drv_crgu.o) + 0x00014c24 0x00014c24 0x00000014 Code RO 1190 i.drv_crgu_set_fb_div CVWL368.lib(drv_crgu.o) + 0x00014c38 0x00014c38 0x00000014 Code RO 1191 i.drv_crgu_set_fb_src CVWL368.lib(drv_crgu.o) + 0x00014c4c 0x00014c4c 0x00000014 Code RO 1194 i.drv_crgu_set_lcdc_div CVWL368.lib(drv_crgu.o) + 0x00014c60 0x00014c60 0x00000014 Code RO 1195 i.drv_crgu_set_lcdc_src CVWL368.lib(drv_crgu.o) + 0x00014c74 0x00014c74 0x00000014 Code RO 1196 i.drv_crgu_set_mipi_cfg_src CVWL368.lib(drv_crgu.o) + 0x00014c88 0x00014c88 0x00000018 Code RO 1197 i.drv_crgu_set_mipi_ref_src CVWL368.lib(drv_crgu.o) + 0x00014ca0 0x00014ca0 0x00000018 Code RO 1200 i.drv_crgu_set_reset CVWL368.lib(drv_crgu.o) + 0x00014cb8 0x00014cb8 0x00000014 Code RO 1201 i.drv_crgu_set_rxbr_div CVWL368.lib(drv_crgu.o) + 0x00014ccc 0x00014ccc 0x00000014 Code RO 1202 i.drv_crgu_set_rxbr_src CVWL368.lib(drv_crgu.o) + 0x00014ce0 0x00014ce0 0x00000014 Code RO 1204 i.drv_crgu_set_vidc_src CVWL368.lib(drv_crgu.o) + 0x00014cf4 0x00014cf4 0x00000018 Code RO 1257 i.drv_dma_clear_flag CVWL368.lib(drv_dma.o) + 0x00014d0c 0x00014d0c 0x0000001c Code RO 1258 i.drv_dma_create_handle CVWL368.lib(drv_dma.o) + 0x00014d28 0x00014d28 0x00000010 Code RO 1260 i.drv_dma_disenable_channel CVWL368.lib(drv_dma.o) + 0x00014d38 0x00014d38 0x00000010 Code RO 1262 i.drv_dma_enable_channel CVWL368.lib(drv_dma.o) + 0x00014d48 0x00014d48 0x00000024 Code RO 1263 i.drv_dma_enable_channel_interrupts CVWL368.lib(drv_dma.o) + 0x00014d6c 0x00014d6c 0x0000000c Code RO 1265 i.drv_dma_get_channel_flag CVWL368.lib(drv_dma.o) + 0x00014d78 0x00014d78 0x00000090 Code RO 1268 i.drv_dma_irq_handler CVWL368.lib(drv_dma.o) + 0x00014e08 0x00014e08 0x00000012 Code RO 1270 i.drv_dma_prepar_transfer CVWL368.lib(drv_dma.o) + 0x00014e1a 0x00014e1a 0x0000001a Code RO 1272 i.drv_dma_set_burst CVWL368.lib(drv_dma.o) + 0x00014e34 0x00014e34 0x00000006 Code RO 1273 i.drv_dma_set_callback CVWL368.lib(drv_dma.o) + 0x00014e3a 0x00014e3a 0x00000002 PAD + 0x00014e3c 0x00014e3c 0x00000044 Code RO 1275 i.drv_dma_set_transfer CVWL368.lib(drv_dma.o) + 0x00014e80 0x00014e80 0x00000036 Code RO 2416 i.drv_dsc_dec_convert_pps_rc_parameter CVWL368.lib(drv_dsc_dec.o) + 0x00014eb6 0x00014eb6 0x0000000c Code RO 2417 i.drv_dsc_dec_disable CVWL368.lib(drv_dsc_dec.o) + 0x00014ec2 0x00014ec2 0x00000002 PAD + 0x00014ec4 0x00014ec4 0x00000074 Code RO 2418 i.drv_dsc_dec_enable CVWL368.lib(drv_dsc_dec.o) + 0x00014f38 0x00014f38 0x0000000a Code RO 2419 i.drv_dsc_dec_get_nslc CVWL368.lib(drv_dsc_dec.o) + 0x00014f42 0x00014f42 0x00000028 Code RO 2421 i.drv_dsc_dec_set_u8_pps CVWL368.lib(drv_dsc_dec.o) + 0x00014f6a 0x00014f6a 0x00000002 PAD + 0x00014f6c 0x00014f6c 0x00000104 Code RO 1853 i.drv_dsi_rx_calc_ipi_tx_delay CVWL368.lib(drv_dsi_rx.o) + 0x00015070 0x00015070 0x00000040 Code RO 1854 i.drv_dsi_rx_enable_irq CVWL368.lib(drv_dsi_rx.o) + 0x000150b0 0x000150b0 0x00000050 Code RO 1855 i.drv_dsi_rx_get_color_bpp CVWL368.lib(drv_dsi_rx.o) + 0x00015100 0x00015100 0x0000001c Code RO 1856 i.drv_dsi_rx_get_color_pcc CVWL368.lib(drv_dsi_rx.o) + 0x0001511c 0x0001511c 0x00000008 Code RO 1857 i.drv_dsi_rx_get_compression_en CVWL368.lib(drv_dsi_rx.o) + 0x00015124 0x00015124 0x00000006 Code RO 1858 i.drv_dsi_rx_get_max_ret_size CVWL368.lib(drv_dsi_rx.o) + 0x0001512a 0x0001512a 0x0000000e Code RO 1862 i.drv_dsi_rx_power_up CVWL368.lib(drv_dsi_rx.o) + 0x00015138 0x00015138 0x00000020 Code RO 1863 i.drv_dsi_rx_set_ctrl_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00015158 0x00015158 0x00000010 Code RO 1864 i.drv_dsi_rx_set_ddi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x00015168 0x00015168 0x00000004 Code RO 1866 i.drv_dsi_rx_set_inten CVWL368.lib(drv_dsi_rx.o) + 0x0001516c 0x0001516c 0x00000010 Code RO 1867 i.drv_dsi_rx_set_ipi_cfg CVWL368.lib(drv_dsi_rx.o) + 0x0001517c 0x0001517c 0x00000046 Code RO 1869 i.drv_dsi_rx_set_lane_swap CVWL368.lib(drv_dsi_rx.o) + 0x000151c2 0x000151c2 0x00000026 Code RO 1870 i.drv_dsi_rx_set_resp_cnt CVWL368.lib(drv_dsi_rx.o) + 0x000151e8 0x000151e8 0x00000104 Code RO 1871 i.drv_dsi_rx_set_up_phy CVWL368.lib(drv_dsi_rx.o) + 0x000152ec 0x000152ec 0x0000000e Code RO 1872 i.drv_dsi_rx_shut_down CVWL368.lib(drv_dsi_rx.o) + 0x000152fa 0x000152fa 0x00000004 Code RO 1909 i.drv_dsi_tx_command_get_payload CVWL368.lib(drv_dsi_tx.o) + 0x000152fe 0x000152fe 0x00000014 Code RO 1910 i.drv_dsi_tx_command_header CVWL368.lib(drv_dsi_tx.o) + 0x00015312 0x00015312 0x0000006c Code RO 1911 i.drv_dsi_tx_command_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x0001537e 0x0001537e 0x00000004 Code RO 1912 i.drv_dsi_tx_command_put_payload CVWL368.lib(drv_dsi_tx.o) + 0x00015382 0x00015382 0x00000018 Code RO 1913 i.drv_dsi_tx_config_eotp CVWL368.lib(drv_dsi_tx.o) + 0x0001539a 0x0001539a 0x00000008 Code RO 1914 i.drv_dsi_tx_config_int CVWL368.lib(drv_dsi_tx.o) + 0x000153a2 0x000153a2 0x00000008 Code RO 1915 i.drv_dsi_tx_dpi_lpcmd_time CVWL368.lib(drv_dsi_tx.o) + 0x000153aa 0x000153aa 0x0000000a Code RO 1916 i.drv_dsi_tx_dpi_mode CVWL368.lib(drv_dsi_tx.o) + 0x000153b4 0x000153b4 0x00000024 Code RO 1917 i.drv_dsi_tx_dpi_polarity CVWL368.lib(drv_dsi_tx.o) + 0x000153d8 0x000153d8 0x00000004 Code RO 1918 i.drv_dsi_tx_edpi_cmd_size CVWL368.lib(drv_dsi_tx.o) + 0x000153dc 0x000153dc 0x00000004 Code RO 1920 i.drv_dsi_tx_get_cmd_status CVWL368.lib(drv_dsi_tx.o) + 0x000153e0 0x000153e0 0x00000004 Code RO 1922 i.drv_dsi_tx_mode CVWL368.lib(drv_dsi_tx.o) + 0x000153e4 0x000153e4 0x00000018 Code RO 1923 i.drv_dsi_tx_phy_clock_lane_auto_lp CVWL368.lib(drv_dsi_tx.o) + 0x000153fc 0x000153fc 0x0000001a Code RO 1924 i.drv_dsi_tx_phy_clock_lane_req_hs CVWL368.lib(drv_dsi_tx.o) + 0x00015416 0x00015416 0x0000000c Code RO 1926 i.drv_dsi_tx_phy_lane_mode CVWL368.lib(drv_dsi_tx.o) + 0x00015422 0x00015422 0x00000064 Code RO 1930 i.drv_dsi_tx_phy_status_ready CVWL368.lib(drv_dsi_tx.o) + 0x00015486 0x00015486 0x0000003e Code RO 1931 i.drv_dsi_tx_phy_status_stopstate CVWL368.lib(drv_dsi_tx.o) + 0x000154c4 0x000154c4 0x00000134 Code RO 1933 i.drv_dsi_tx_phy_test_setup CVWL368.lib(drv_dsi_tx.o) + 0x000155f8 0x000155f8 0x0000001e Code RO 1934 i.drv_dsi_tx_phy_time_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015616 0x00015616 0x00000008 Code RO 1938 i.drv_dsi_tx_powerup CVWL368.lib(drv_dsi_tx.o) + 0x0001561e 0x0001561e 0x0000001c Code RO 1939 i.drv_dsi_tx_response_mode CVWL368.lib(drv_dsi_tx.o) + 0x0001563a 0x0001563a 0x00000018 Code RO 1942 i.drv_dsi_tx_set_bta_ack CVWL368.lib(drv_dsi_tx.o) + 0x00015652 0x00015652 0x0000000c Code RO 1943 i.drv_dsi_tx_set_esc_div CVWL368.lib(drv_dsi_tx.o) + 0x0001565e 0x0001565e 0x00000002 PAD + 0x00015660 0x00015660 0x00000040 Code RO 1944 i.drv_dsi_tx_set_int CVWL368.lib(drv_dsi_tx.o) + 0x000156a0 0x000156a0 0x00000010 Code RO 1945 i.drv_dsi_tx_set_time_out_div CVWL368.lib(drv_dsi_tx.o) + 0x000156b0 0x000156b0 0x00000008 Code RO 1946 i.drv_dsi_tx_set_video_chunk CVWL368.lib(drv_dsi_tx.o) + 0x000156b8 0x000156b8 0x00000022 Code RO 1947 i.drv_dsi_tx_set_video_timing CVWL368.lib(drv_dsi_tx.o) + 0x000156da 0x000156da 0x00000008 Code RO 1949 i.drv_dsi_tx_shutdown CVWL368.lib(drv_dsi_tx.o) + 0x000156e2 0x000156e2 0x00000026 Code RO 1950 i.drv_dsi_tx_timeout_cfg CVWL368.lib(drv_dsi_tx.o) + 0x00015708 0x00015708 0x000000aa Code RO 1953 i.drv_dsi_tx_video_mode_cfg CVWL368.lib(drv_dsi_tx.o) + 0x000157b2 0x000157b2 0x00000016 Code RO 1954 i.drv_dsi_tx_video_mode_disable_hact_cmd CVWL368.lib(drv_dsi_tx.o) + 0x000157c8 0x000157c8 0x00000018 Code RO 1955 i.drv_dsi_tx_video_mode_set_lp_cmd CVWL368.lib(drv_dsi_tx.o) + 0x000157e0 0x000157e0 0x0000002e Code RO 2354 i.drv_efuse_enter_inactive CVWL368.lib(drv_efuse.o) + 0x0001580e 0x0001580e 0x0000000c Code RO 2357 i.drv_efuse_int_enable CVWL368.lib(drv_efuse.o) + 0x0001581a 0x0001581a 0x00000032 Code RO 2358 i.drv_efuse_read CVWL368.lib(drv_efuse.o) + 0x0001584c 0x0001584c 0x00000018 Code RO 2359 i.drv_efuse_read_req CVWL368.lib(drv_efuse.o) + 0x00015864 0x00015864 0x00000018 Code RO 1400 i.drv_gpio_get_input_data CVWL368.lib(drv_gpio.o) + 0x0001587c 0x0001587c 0x0000000c Code RO 1402 i.drv_gpio_register_ap_reset_callback CVWL368.lib(drv_gpio.o) + 0x00015888 0x00015888 0x00000014 Code RO 1403 i.drv_gpio_register_callback CVWL368.lib(drv_gpio.o) + 0x0001589c 0x0001589c 0x00000050 Code RO 1405 i.drv_gpio_set_int CVWL368.lib(drv_gpio.o) + 0x000158ec 0x000158ec 0x00000020 Code RO 1406 i.drv_gpio_set_ioe CVWL368.lib(drv_gpio.o) + 0x0001590c 0x0001590c 0x00000010 Code RO 1407 i.drv_gpio_set_mode0 CVWL368.lib(drv_gpio.o) + 0x0001591c 0x0001591c 0x00000010 Code RO 1408 i.drv_gpio_set_mode1 CVWL368.lib(drv_gpio.o) + 0x0001592c 0x0001592c 0x00000010 Code RO 1409 i.drv_gpio_set_mode2 CVWL368.lib(drv_gpio.o) + 0x0001593c 0x0001593c 0x00000010 Code RO 1410 i.drv_gpio_set_mode3 CVWL368.lib(drv_gpio.o) + 0x0001594c 0x0001594c 0x00000020 Code RO 764 i.drv_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x0001596c 0x0001596c 0x00000130 Code RO 1411 i.drv_gpio_set_pull_state CVWL368.lib(drv_gpio.o) + 0x00015a9c 0x00015a9c 0x0000000c Code RO 1503 i.drv_i2c0_set_callback CVWL368.lib(drv_i2c_slave.o) + 0x00015aa8 0x00015aa8 0x0000000c Code RO 1469 i.drv_i2c1_set_callback CVWL368.lib(drv_i2c_master.o) + 0x00015ab4 0x00015ab4 0x00000034 Code RO 1443 i.drv_i2c_dma_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015ae8 0x00015ae8 0x000000ac Code RO 1444 i.drv_i2c_dma_init CVWL368.lib(drv_i2c_dma.o) + 0x00015b94 0x00015b94 0x0000001a Code RO 1445 i.drv_i2c_enable_rx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015bae 0x00015bae 0x00000018 Code RO 1446 i.drv_i2c_enable_tx_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015bc6 0x00015bc6 0x00000002 PAD + 0x00015bc8 0x00015bc8 0x00000060 Code RO 1471 i.drv_i2c_m_clear_it_pending_bit CVWL368.lib(drv_i2c_master.o) + 0x00015c28 0x00015c28 0x00000010 Code RO 1474 i.drv_i2c_m_enable CVWL368.lib(drv_i2c_master.o) + 0x00015c38 0x00015c38 0x00000038 Code RO 1475 i.drv_i2c_m_enable_intr CVWL368.lib(drv_i2c_master.o) + 0x00015c70 0x00015c70 0x0000008c Code RO 1481 i.drv_i2c_master_init CVWL368.lib(drv_i2c_master.o) + 0x00015cfc 0x00015cfc 0x0000005c Code RO 1447 i.drv_i2c_master_read_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015d58 0x00015d58 0x0000003c Code RO 1448 i.drv_i2c_master_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015d94 0x00015d94 0x0000003e Code RO 1449 i.drv_i2c_master_write_read_cmd CVWL368.lib(drv_i2c_dma.o) + 0x00015dd2 0x00015dd2 0x00000042 Code RO 1504 i.drv_i2c_s_clear_it_pending_bit CVWL368.lib(drv_i2c_slave.o) + 0x00015e14 0x00015e14 0x00000004 Code RO 1505 i.drv_i2c_s_config_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015e18 0x00015e18 0x00000008 Code RO 1506 i.drv_i2c_s_enable CVWL368.lib(drv_i2c_slave.o) + 0x00015e20 0x00015e20 0x00000014 Code RO 1507 i.drv_i2c_s_get_fifo_status CVWL368.lib(drv_i2c_slave.o) + 0x00015e34 0x00015e34 0x00000050 Code RO 1510 i.drv_i2c_s_set_intr CVWL368.lib(drv_i2c_slave.o) + 0x00015e84 0x00015e84 0x0000001c Code RO 1511 i.drv_i2c_s_write_data CVWL368.lib(drv_i2c_slave.o) + 0x00015ea0 0x00015ea0 0x00000058 Code RO 1450 i.drv_i2c_set_dma_irq_callback CVWL368.lib(drv_i2c_dma.o) + 0x00015ef8 0x00015ef8 0x00000032 Code RO 1512 i.drv_i2c_slave_init CVWL368.lib(drv_i2c_slave.o) + 0x00015f2a 0x00015f2a 0x00000002 PAD + 0x00015f2c 0x00015f2c 0x00000018 Code RO 1451 i.drv_i2c_slave_write_dma CVWL368.lib(drv_i2c_dma.o) + 0x00015f44 0x00015f44 0x00000018 Code RO 2022 i.drv_lcdc_config_bypass CVWL368.lib(drv_lcdc.o) + 0x00015f5c 0x00015f5c 0x00000030 Code RO 2023 i.drv_lcdc_config_ccm CVWL368.lib(drv_lcdc.o) + 0x00015f8c 0x00015f8c 0x00000016 Code RO 2024 i.drv_lcdc_config_disp_mode CVWL368.lib(drv_lcdc.o) + 0x00015fa2 0x00015fa2 0x00000024 Code RO 2025 i.drv_lcdc_config_dpi_polarity CVWL368.lib(drv_lcdc.o) + 0x00015fc6 0x00015fc6 0x00000026 Code RO 2026 i.drv_lcdc_config_dpi_timing CVWL368.lib(drv_lcdc.o) + 0x00015fec 0x00015fec 0x00000016 Code RO 2027 i.drv_lcdc_config_edpi_mode CVWL368.lib(drv_lcdc.o) + 0x00016002 0x00016002 0x00000016 Code RO 2028 i.drv_lcdc_config_endianness CVWL368.lib(drv_lcdc.o) + 0x00016018 0x00016018 0x0000000c Code RO 2029 i.drv_lcdc_config_input_size CVWL368.lib(drv_lcdc.o) + 0x00016024 0x00016024 0x0000001e Code RO 2030 i.drv_lcdc_config_int CVWL368.lib(drv_lcdc.o) + 0x00016042 0x00016042 0x00000022 Code RO 2031 i.drv_lcdc_config_int_single CVWL368.lib(drv_lcdc.o) + 0x00016064 0x00016064 0x00000022 Code RO 2032 i.drv_lcdc_config_overwrite CVWL368.lib(drv_lcdc.o) + 0x00016086 0x00016086 0x0000000c Code RO 2033 i.drv_lcdc_config_overwrite_rgb CVWL368.lib(drv_lcdc.o) + 0x00016092 0x00016092 0x0000001a Code RO 2034 i.drv_lcdc_config_partial_display_area CVWL368.lib(drv_lcdc.o) + 0x000160ac 0x000160ac 0x00000022 Code RO 2035 i.drv_lcdc_config_partial_display_enable CVWL368.lib(drv_lcdc.o) + 0x000160ce 0x000160ce 0x0000001a Code RO 2037 i.drv_lcdc_config_scale_up_coef CVWL368.lib(drv_lcdc.o) + 0x000160e8 0x000160e8 0x0000000c Code RO 2038 i.drv_lcdc_config_scale_up_step CVWL368.lib(drv_lcdc.o) + 0x000160f4 0x000160f4 0x0000004c Code RO 2039 i.drv_lcdc_config_src_parameter CVWL368.lib(drv_lcdc.o) + 0x00016140 0x00016140 0x00000006 Code RO 2040 i.drv_lcdc_config_thresh CVWL368.lib(drv_lcdc.o) + 0x00016146 0x00016146 0x00000012 Code RO 2041 i.drv_lcdc_ctrl_flow CVWL368.lib(drv_lcdc.o) + 0x00016158 0x00016158 0x00000020 Code RO 2043 i.drv_lcdc_enable_shadow_reg CVWL368.lib(drv_lcdc.o) + 0x00016178 0x00016178 0x00000040 Code RO 2044 i.drv_lcdc_set_int CVWL368.lib(drv_lcdc.o) + 0x000161b8 0x000161b8 0x00000014 Code RO 2046 i.drv_lcdc_set_video_hw_mode CVWL368.lib(drv_lcdc.o) + 0x000161cc 0x000161cc 0x00000020 Code RO 2047 i.drv_lcdc_start CVWL368.lib(drv_lcdc.o) + 0x000161ec 0x000161ec 0x0000000c Code RO 2081 i.drv_memc_clear_status CVWL368.lib(drv_memc.o) + 0x000161f8 0x000161f8 0x00000040 Code RO 2082 i.drv_memc_enable_irq CVWL368.lib(drv_memc.o) + 0x00016238 0x00016238 0x0000000c Code RO 2083 i.drv_memc_gen_a_tear_signal CVWL368.lib(drv_memc.o) + 0x00016244 0x00016244 0x00000012 Code RO 2084 i.drv_memc_get_status CVWL368.lib(drv_memc.o) + 0x00016256 0x00016256 0x00000010 Code RO 2085 i.drv_memc_rate_transfer_sel CVWL368.lib(drv_memc.o) + 0x00016266 0x00016266 0x0000000e Code RO 2086 i.drv_memc_sel_vsync CVWL368.lib(drv_memc.o) + 0x00016274 0x00016274 0x00000014 Code RO 2087 i.drv_memc_set_active_height CVWL368.lib(drv_memc.o) + 0x00016288 0x00016288 0x0000000c Code RO 2088 i.drv_memc_set_data_mode CVWL368.lib(drv_memc.o) + 0x00016294 0x00016294 0x00000010 Code RO 2091 i.drv_memc_set_double_buffer CVWL368.lib(drv_memc.o) + 0x000162a4 0x000162a4 0x00000012 Code RO 2092 i.drv_memc_set_double_buffer_reverse CVWL368.lib(drv_memc.o) + 0x000162b6 0x000162b6 0x00000010 Code RO 2094 i.drv_memc_set_fs_en_conditions CVWL368.lib(drv_memc.o) + 0x000162c6 0x000162c6 0x00000014 Code RO 2095 i.drv_memc_set_inten CVWL368.lib(drv_memc.o) + 0x000162da 0x000162da 0x00000002 PAD + 0x000162dc 0x000162dc 0x00000018 Code RO 2096 i.drv_memc_set_lcdc_st_conditions CVWL368.lib(drv_memc.o) + 0x000162f4 0x000162f4 0x0000001a Code RO 2097 i.drv_memc_set_ltpo_mode CVWL368.lib(drv_memc.o) + 0x0001630e 0x0001630e 0x0000000e Code RO 2101 i.drv_memc_set_tear_mode CVWL368.lib(drv_memc.o) + 0x0001631c 0x0001631c 0x00000028 Code RO 2102 i.drv_memc_set_tear_waveform CVWL368.lib(drv_memc.o) + 0x00016344 0x00016344 0x0000000e Code RO 2104 i.drv_memc_set_vidc_sync_cnt CVWL368.lib(drv_memc.o) + 0x00016352 0x00016352 0x00000002 PAD + 0x00016354 0x00016354 0x00000008 Code RO 1529 i.drv_param_init_get_ccm CVWL368.lib(drv_param_init.o) + 0x0001635c 0x0001635c 0x00000014 Code RO 1530 i.drv_param_init_get_scld_filter_h CVWL368.lib(drv_param_init.o) + 0x00016370 0x00016370 0x00000014 Code RO 1531 i.drv_param_init_get_scld_filter_v CVWL368.lib(drv_param_init.o) + 0x00016384 0x00016384 0x00000008 Code RO 1532 i.drv_param_init_get_sclu_filter CVWL368.lib(drv_param_init.o) + 0x0001638c 0x0001638c 0x00000014 Code RO 1533 i.drv_param_init_set_ccm CVWL368.lib(drv_param_init.o) + 0x000163a0 0x000163a0 0x00000064 Code RO 1534 i.drv_param_init_set_scld_filter CVWL368.lib(drv_param_init.o) + 0x00016404 0x00016404 0x00000024 Code RO 1536 i.drv_param_p2r_filter_init CVWL368.lib(drv_param_init.o) + 0x00016428 0x00016428 0x00000010 Code RO 2375 i.drv_phy_enable_calibration CVWL368.lib(drv_phy_common.o) + 0x00016438 0x00016438 0x0000003c Code RO 2376 i.drv_phy_get_calibration CVWL368.lib(drv_phy_common.o) + 0x00016474 0x00016474 0x00000060 Code RO 2377 i.drv_phy_get_pll_para CVWL368.lib(drv_phy_common.o) + 0x000164d4 0x000164d4 0x00000054 Code RO 2378 i.drv_phy_get_rate_para CVWL368.lib(drv_phy_common.o) + 0x00016528 0x00016528 0x00000010 Code RO 2379 i.drv_phy_test_clear CVWL368.lib(drv_phy_common.o) + 0x00016538 0x00016538 0x00000018 Code RO 2380 i.drv_phy_test_lock CVWL368.lib(drv_phy_common.o) + 0x00016550 0x00016550 0x00000020 Code RO 2382 i.drv_phy_test_write_1_byte CVWL368.lib(drv_phy_common.o) + 0x00016570 0x00016570 0x00000026 Code RO 2383 i.drv_phy_test_write_2_byte CVWL368.lib(drv_phy_common.o) + 0x00016596 0x00016596 0x0000001e Code RO 2384 i.drv_phy_test_write_code CVWL368.lib(drv_phy_common.o) + 0x000165b4 0x000165b4 0x00000020 Code RO 2385 i.drv_phy_test_write_data CVWL368.lib(drv_phy_common.o) + 0x000165d4 0x000165d4 0x00000020 Code RO 1591 i.drv_pwr_set_cp_mode CVWL368.lib(drv_pwr.o) + 0x000165f4 0x000165f4 0x00000018 Code RO 1593 i.drv_pwr_set_pvd_mode CVWL368.lib(drv_pwr.o) + 0x0001660c 0x0001660c 0x00000038 Code RO 1594 i.drv_pwr_set_system_clk_src CVWL368.lib(drv_pwr.o) + 0x00016644 0x00016644 0x0000000c Code RO 1873 i.drv_rx_phy_test_clear CVWL368.lib(drv_dsi_rx.o) + 0x00016650 0x00016650 0x00000010 Code RO 1874 i.drv_rx_phy_test_lock CVWL368.lib(drv_dsi_rx.o) + 0x00016660 0x00016660 0x00000014 Code RO 1876 i.drv_rx_phy_test_write_1_byte CVWL368.lib(drv_dsi_rx.o) + 0x00016674 0x00016674 0x00000016 Code RO 1877 i.drv_rx_phy_test_write_2_byte CVWL368.lib(drv_dsi_rx.o) + 0x0001668a 0x0001668a 0x0000000a Code RO 2140 i.drv_rxbr_clear_pkt_buffer CVWL368.lib(drv_rxbr.o) + 0x00016694 0x00016694 0x00000004 Code RO 2141 i.drv_rxbr_clear_status0 CVWL368.lib(drv_rxbr.o) + 0x00016698 0x00016698 0x0000005a Code RO 2143 i.drv_rxbr_enable_irq CVWL368.lib(drv_rxbr.o) + 0x000166f2 0x000166f2 0x00000002 PAD + 0x000166f4 0x000166f4 0x00000014 Code RO 2144 i.drv_rxbr_frame_drop_cfg CVWL368.lib(drv_rxbr.o) + 0x00016708 0x00016708 0x00000064 Code RO 2145 i.drv_rxbr_get_clk CVWL368.lib(drv_rxbr.o) + 0x0001676c 0x0001676c 0x00000004 Code RO 2146 i.drv_rxbr_get_col_addr CVWL368.lib(drv_rxbr.o) + 0x00016770 0x00016770 0x00000012 Code RO 1753 i.drv_rxbr_get_int_source CVWL368.lib(hal_internal_vsync.o) + 0x00016782 0x00016782 0x00000004 Code RO 2149 i.drv_rxbr_get_page_addr CVWL368.lib(drv_rxbr.o) + 0x00016786 0x00016786 0x00000012 Code RO 1754 i.drv_rxbr_get_status0 CVWL368.lib(hal_internal_vsync.o) + 0x00016798 0x00016798 0x0000000c Code RO 2151 i.drv_rxbr_hline_rcv0_cfg CVWL368.lib(drv_rxbr.o) + 0x000167a4 0x000167a4 0x00000008 Code RO 2152 i.drv_rxbr_hline_rcv_cfg CVWL368.lib(drv_rxbr.o) + 0x000167ac 0x000167ac 0x0000000c Code RO 2153 i.drv_rxbr_register_irq0_callback CVWL368.lib(drv_rxbr.o) + 0x000167b8 0x000167b8 0x0000000c Code RO 2154 i.drv_rxbr_register_irq1_callback CVWL368.lib(drv_rxbr.o) + 0x000167c4 0x000167c4 0x00000014 Code RO 2155 i.drv_rxbr_set_ack_pkt_header CVWL368.lib(drv_rxbr.o) + 0x000167d8 0x000167d8 0x000000cc Code RO 2156 i.drv_rxbr_set_cmd_filter CVWL368.lib(drv_rxbr.o) + 0x000168a4 0x000168a4 0x00000014 Code RO 2158 i.drv_rxbr_set_color_format CVWL368.lib(drv_rxbr.o) + 0x000168b8 0x000168b8 0x00000014 Code RO 2160 i.drv_rxbr_set_inten CVWL368.lib(drv_rxbr.o) + 0x000168cc 0x000168cc 0x00000010 Code RO 2161 i.drv_rxbr_set_ltpo_drop_th CVWL368.lib(drv_rxbr.o) + 0x000168dc 0x000168dc 0x00000026 Code RO 2163 i.drv_rxbr_set_usr_cfg CVWL368.lib(drv_rxbr.o) + 0x00016902 0x00016902 0x00000008 Code RO 2164 i.drv_rxbr_set_usr_col CVWL368.lib(drv_rxbr.o) + 0x0001690a 0x0001690a 0x00000008 Code RO 2165 i.drv_rxbr_set_usr_row CVWL368.lib(drv_rxbr.o) + 0x00016912 0x00016912 0x00000002 PAD + 0x00016914 0x00016914 0x00000020 Code RO 1639 i.drv_spi_m_read_data CVWL368.lib(drv_spi_master.o) + 0x00016934 0x00016934 0x0000001c Code RO 1664 i.drv_swire_enable CVWL368.lib(drv_swire.o) + 0x00016950 0x00016950 0x00000054 Code RO 1667 i.drv_swire_set_int CVWL368.lib(drv_swire.o) + 0x000169a4 0x000169a4 0x0000001c Code RO 1668 i.drv_swire_set_power_down CVWL368.lib(drv_swire.o) + 0x000169c0 0x000169c0 0x0000000c Code RO 1683 i.drv_sys_cfg_clear_all_int CVWL368.lib(drv_sys_cfg.o) + 0x000169cc 0x000169cc 0x00000028 Code RO 1684 i.drv_sys_cfg_clear_pending CVWL368.lib(drv_sys_cfg.o) + 0x000169f4 0x000169f4 0x00000018 Code RO 1687 i.drv_sys_cfg_sel_ap_rst_lvl_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016a0c 0x00016a0c 0x0000001c Code RO 1688 i.drv_sys_cfg_sel_ap_rst_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016a28 0x00016a28 0x00000024 Code RO 1689 i.drv_sys_cfg_sel_gpio_group CVWL368.lib(drv_sys_cfg.o) + 0x00016a4c 0x00016a4c 0x00000024 Code RO 1690 i.drv_sys_cfg_sel_int_trig CVWL368.lib(drv_sys_cfg.o) + 0x00016a70 0x00016a70 0x00000010 Code RO 1692 i.drv_sys_cfg_set_dma_rx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016a80 0x00016a80 0x00000010 Code RO 1693 i.drv_sys_cfg_set_dma_tx_req CVWL368.lib(drv_sys_cfg.o) + 0x00016a90 0x00016a90 0x00000024 Code RO 1694 i.drv_sys_cfg_set_int CVWL368.lib(drv_sys_cfg.o) + 0x00016ab4 0x00016ab4 0x0000001a Code RO 1717 i.drv_timer_clear_status_flags CVWL368.lib(drv_timer.o) + 0x00016ace 0x00016ace 0x00000020 Code RO 1718 i.drv_timer_enable CVWL368.lib(drv_timer.o) + 0x00016aee 0x00016aee 0x00000002 PAD + 0x00016af0 0x00016af0 0x00000010 Code RO 1719 i.drv_timer_get_instance CVWL368.lib(drv_timer.o) + 0x00016b00 0x00016b00 0x00000010 Code RO 1720 i.drv_timer_get_prescaler CVWL368.lib(drv_timer.o) + 0x00016b10 0x00016b10 0x00000044 Code RO 1722 i.drv_timer_handle_interrupt CVWL368.lib(drv_timer.o) + 0x00016b54 0x00016b54 0x00000014 Code RO 1723 i.drv_timer_register_callback CVWL368.lib(drv_timer.o) + 0x00016b68 0x00016b68 0x00000010 Code RO 1724 i.drv_timer_set_compare_val CVWL368.lib(drv_timer.o) + 0x00016b78 0x00016b78 0x00000054 Code RO 1725 i.drv_timer_set_int CVWL368.lib(drv_timer.o) + 0x00016bcc 0x00016bcc 0x00000028 Code RO 1726 i.drv_timer_set_prescaler CVWL368.lib(drv_timer.o) + 0x00016bf4 0x00016bf4 0x00000010 Code RO 1727 i.drv_timer_set_repeat CVWL368.lib(drv_timer.o) + 0x00016c04 0x00016c04 0x0000000a Code RO 1956 i.drv_tx_phy_test_clear CVWL368.lib(drv_dsi_tx.o) + 0x00016c0e 0x00016c0e 0x0000001c Code RO 1957 i.drv_tx_phy_test_enter CVWL368.lib(drv_dsi_tx.o) + 0x00016c2a 0x00016c2a 0x0000001c Code RO 1958 i.drv_tx_phy_test_exit CVWL368.lib(drv_dsi_tx.o) + 0x00016c46 0x00016c46 0x00000012 Code RO 1960 i.drv_tx_phy_test_write_1_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016c58 0x00016c58 0x00000014 Code RO 1961 i.drv_tx_phy_test_write_2_byte CVWL368.lib(drv_dsi_tx.o) + 0x00016c6c 0x00016c6c 0x00000010 Code RO 1962 i.drv_tx_phy_test_write_code CVWL368.lib(drv_dsi_tx.o) + 0x00016c7c 0x00016c7c 0x00000008 Code RO 2204 i.drv_vidc_clear_irq CVWL368.lib(drv_vidc.o) + 0x00016c84 0x00016c84 0x00000018 Code RO 2208 i.drv_vidc_enable CVWL368.lib(drv_vidc.o) + 0x00016c9c 0x00016c9c 0x00000040 Code RO 2209 i.drv_vidc_enable_irq CVWL368.lib(drv_vidc.o) + 0x00016cdc 0x00016cdc 0x00000012 Code RO 2211 i.drv_vidc_get_irq_status CVWL368.lib(drv_vidc.o) + 0x00016cee 0x00016cee 0x00000002 PAD + 0x00016cf0 0x00016cf0 0x00000028 Code RO 2215 i.drv_vidc_init_module_enable CVWL368.lib(drv_vidc.o) + 0x00016d18 0x00016d18 0x0000000c Code RO 2216 i.drv_vidc_register_callback CVWL368.lib(drv_vidc.o) + 0x00016d24 0x00016d24 0x00000006 Code RO 2217 i.drv_vidc_reset CVWL368.lib(drv_vidc.o) + 0x00016d2a 0x00016d2a 0x0000003c Code RO 2219 i.drv_vidc_set_dst_parameter CVWL368.lib(drv_vidc.o) + 0x00016d66 0x00016d66 0x00000014 Code RO 2223 i.drv_vidc_set_irqen CVWL368.lib(drv_vidc.o) + 0x00016d7a 0x00016d7a 0x00000010 Code RO 2224 i.drv_vidc_set_mirror CVWL368.lib(drv_vidc.o) + 0x00016d8a 0x00016d8a 0x00000008 Code RO 2227 i.drv_vidc_set_p2r_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016d92 0x00016d92 0x00000026 Code RO 2228 i.drv_vidc_set_p2r_hinitb CVWL368.lib(drv_vidc.o) + 0x00016db8 0x00016db8 0x00000026 Code RO 2229 i.drv_vidc_set_p2r_hinitr CVWL368.lib(drv_vidc.o) + 0x00016dde 0x00016dde 0x00000002 PAD + 0x00016de0 0x00016de0 0x00000018 Code RO 2230 i.drv_vidc_set_pentile_swap CVWL368.lib(drv_vidc.o) + 0x00016df8 0x00016df8 0x0000000a Code RO 2231 i.drv_vidc_set_pu_ctrl CVWL368.lib(drv_vidc.o) + 0x00016e02 0x00016e02 0x00000010 Code RO 2232 i.drv_vidc_set_rotation CVWL368.lib(drv_vidc.o) + 0x00016e12 0x00016e12 0x0000000a Code RO 2233 i.drv_vidc_set_scld_hcoef0 CVWL368.lib(drv_vidc.o) + 0x00016e1c 0x00016e1c 0x0000000a Code RO 2234 i.drv_vidc_set_scld_hcoef1 CVWL368.lib(drv_vidc.o) + 0x00016e26 0x00016e26 0x00000012 Code RO 2235 i.drv_vidc_set_scld_step CVWL368.lib(drv_vidc.o) + 0x00016e38 0x00016e38 0x0000000a Code RO 2236 i.drv_vidc_set_scld_vcoef0 CVWL368.lib(drv_vidc.o) + 0x00016e42 0x00016e42 0x0000000a Code RO 2237 i.drv_vidc_set_scld_vcoef1 CVWL368.lib(drv_vidc.o) + 0x00016e4c 0x00016e4c 0x00000016 Code RO 2238 i.drv_vidc_set_src_parameter CVWL368.lib(drv_vidc.o) + 0x00016e62 0x00016e62 0x00000002 PAD + 0x00016e64 0x00016e64 0x00000010 Code RO 2614 i.drv_wdg_clear_counter CVWL368.lib(drv_wdg.o) + 0x00016e74 0x00016e74 0x00000010 Code RO 2615 i.drv_wdg_clear_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016e84 0x00016e84 0x00000010 Code RO 2618 i.drv_wdg_read_edge_flag CVWL368.lib(drv_wdg.o) + 0x00016e94 0x00016e94 0x00000040 Code RO 2621 i.drv_wdg_set_int CVWL368.lib(drv_wdg.o) + 0x00016ed4 0x00016ed4 0x0000000a Code RO 1312 i.fls_clr_interrupt_flag CVWL368.lib(drv_fls.o) + 0x00016ede 0x00016ede 0x00000014 Code RO 1026 i.fputc CVWL368.lib(tau_log.o) + 0x00016ef2 0x00016ef2 0x00000002 PAD + 0x00016ef4 0x00016ef4 0x00000034 Code RO 567 i.hal_dsi_rx_ctrl_create_handle CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016f28 0x00016f28 0x0000009c Code RO 569 i.hal_dsi_rx_ctrl_deinit CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00016fc4 0x00016fc4 0x00000084 Code RO 571 i.hal_dsi_rx_ctrl_dsc_async_handler CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017048 0x00017048 0x00000028 Code RO 573 i.hal_dsi_rx_ctrl_gen_a_tear_signal CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017070 0x00017070 0x00000010 Code RO 574 i.hal_dsi_rx_ctrl_get_compressen_en CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017080 0x00017080 0x00000028 Code RO 575 i.hal_dsi_rx_ctrl_get_max_ret_size CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000170a8 0x000170a8 0x00000060 Code RO 577 i.hal_dsi_rx_ctrl_init CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017108 0x00017108 0x000001a4 Code RO 578 i.hal_dsi_rx_ctrl_init_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000172ac 0x000172ac 0x000000d8 Code RO 579 i.hal_dsi_rx_ctrl_init_dsi_rx CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017384 0x00017384 0x00000158 Code RO 580 i.hal_dsi_rx_ctrl_init_memc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000174dc 0x000174dc 0x00000148 Code RO 581 i.hal_dsi_rx_ctrl_init_rxbr CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017624 0x00017624 0x0000022c Code RO 582 i.hal_dsi_rx_ctrl_init_vidc CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017850 0x00017850 0x000000f0 Code RO 586 i.hal_dsi_rx_ctrl_send_ack_cmd CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017940 0x00017940 0x0000006c Code RO 589 i.hal_dsi_rx_ctrl_set_cus_scld_filter CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000179ac 0x000179ac 0x00000034 Code RO 590 i.hal_dsi_rx_ctrl_set_cus_sync_line CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x000179e0 0x000179e0 0x00000038 Code RO 594 i.hal_dsi_rx_ctrl_set_ipi_cfg CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017a18 0x00017a18 0x00000072 Code RO 599 i.hal_dsi_rx_ctrl_set_rxbr_clk CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017a8a 0x00017a8a 0x00000002 PAD + 0x00017a8c 0x00017a8c 0x00000034 Code RO 600 i.hal_dsi_rx_ctrl_set_sw_tear_mode CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017ac0 0x00017ac0 0x0000000e Code RO 602 i.hal_dsi_rx_ctrl_set_tear_mode_ex CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017ace 0x00017ace 0x00000002 PAD + 0x00017ad0 0x00017ad0 0x0000003c Code RO 603 i.hal_dsi_rx_ctrl_start CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017b0c 0x00017b0c 0x0000003c Code RO 604 i.hal_dsi_rx_ctrl_stop CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017b48 0x00017b48 0x00000020 Code RO 607 i.hal_dsi_rx_ctrl_toggle_resolution_ex CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00017b68 0x00017b68 0x00000190 Code RO 660 i.hal_dsi_tx_calc_video_chunks CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017cf8 0x00017cf8 0x00000034 Code RO 661 i.hal_dsi_tx_config_params_for_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00017d2c 0x00017d2c 0x00000450 Code RO 662 i.hal_dsi_tx_count_lane_rate CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001817c 0x0001817c 0x0000002c Code RO 665 i.hal_dsi_tx_ctrl_create_handle CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000181a8 0x000181a8 0x00000084 Code RO 666 i.hal_dsi_tx_ctrl_deinit CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001822c 0x0001822c 0x0000004c Code RO 670 i.hal_dsi_tx_ctrl_enter_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018278 0x00018278 0x00000028 Code RO 672 i.hal_dsi_tx_ctrl_exit_init_panel_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000182a0 0x000182a0 0x000000a4 Code RO 674 i.hal_dsi_tx_ctrl_init CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018344 0x00018344 0x00000024 Code RO 675 i.hal_dsi_tx_ctrl_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018368 0x00018368 0x0000000c Code RO 676 i.hal_dsi_tx_ctrl_panel_reset_pin CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018374 0x00018374 0x0000008c Code RO 677 i.hal_dsi_tx_ctrl_read_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018400 0x00018400 0x00000020 Code RO 679 i.hal_dsi_tx_ctrl_set_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018420 0x00018420 0x00000014 Code RO 685 i.hal_dsi_tx_ctrl_set_overwrite_rgb CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018434 0x00018434 0x00000010 Code RO 686 i.hal_dsi_tx_ctrl_set_partial_disp CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018444 0x00018444 0x00000024 Code RO 687 i.hal_dsi_tx_ctrl_set_partial_disp_area CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018468 0x00018468 0x0000009c Code RO 690 i.hal_dsi_tx_ctrl_start CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018504 0x00018504 0x00000044 Code RO 691 i.hal_dsi_tx_ctrl_stop CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018548 0x00018548 0x000000d8 Code RO 692 i.hal_dsi_tx_ctrl_write_array_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018620 0x00018620 0x000000b0 Code RO 693 i.hal_dsi_tx_ctrl_write_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000186d0 0x000186d0 0x00000044 Code RO 694 i.hal_dsi_tx_init_data_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018714 0x00018714 0x00000030 Code RO 695 i.hal_dsi_tx_init_dpi_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018744 0x00018744 0x00000020 Code RO 696 i.hal_dsi_tx_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018764 0x00018764 0x00000020 Code RO 697 i.hal_dsi_tx_init_phy_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018784 0x00018784 0x00000094 Code RO 698 i.hal_dsi_tx_init_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018818 0x00018818 0x00000058 Code RO 699 i.hal_dsi_tx_init_video_mode CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00018870 0x00018870 0x00000044 Code RO 700 i.hal_dsi_tx_send_cmd CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000188b4 0x000188b4 0x00000018 Code RO 765 i.hal_gpio_ctrl_eint CVWL368.lib(hal_gpio.o) + 0x000188cc 0x000188cc 0x00000012 Code RO 766 i.hal_gpio_get_input_data CVWL368.lib(hal_gpio.o) + 0x000188de 0x000188de 0x00000002 PAD + 0x000188e0 0x000188e0 0x00000040 Code RO 769 i.hal_gpio_init_eint CVWL368.lib(hal_gpio.o) + 0x00018920 0x00018920 0x00000020 Code RO 770 i.hal_gpio_init_input CVWL368.lib(hal_gpio.o) + 0x00018940 0x00018940 0x00000028 Code RO 771 i.hal_gpio_init_output CVWL368.lib(hal_gpio.o) + 0x00018968 0x00018968 0x00000018 Code RO 772 i.hal_gpio_reg_eint_cb CVWL368.lib(hal_gpio.o) + 0x00018980 0x00018980 0x00000050 Code RO 773 i.hal_gpio_set_ap_reset_int CVWL368.lib(hal_gpio.o) + 0x000189d0 0x000189d0 0x00000060 Code RO 775 i.hal_gpio_set_mode CVWL368.lib(hal_gpio.o) + 0x00018a30 0x00018a30 0x00000008 Code RO 776 i.hal_gpio_set_output_data CVWL368.lib(hal_gpio.o) + 0x00018a38 0x00018a38 0x00000020 Code RO 778 i.hal_gpio_set_pull_state CVWL368.lib(hal_gpio.o) + 0x00018a58 0x00018a58 0x0000006c Code RO 804 i.hal_i2c_m_dma_init CVWL368.lib(hal_i2c_master.o) + 0x00018ac4 0x00018ac4 0x00000020 Code RO 805 i.hal_i2c_m_dma_read CVWL368.lib(hal_i2c_master.o) + 0x00018ae4 0x00018ae4 0x0000001c Code RO 806 i.hal_i2c_m_dma_write CVWL368.lib(hal_i2c_master.o) + 0x00018b00 0x00018b00 0x0000000c Code RO 808 i.hal_i2c_m_transfer_complate CVWL368.lib(hal_i2c_master.o) + 0x00018b0c 0x00018b0c 0x00000020 Code RO 809 i.hal_i2c_master_irq_callback CVWL368.lib(hal_i2c_master.o) + 0x00018b2c 0x00018b2c 0x00000010 Code RO 823 i.hal_i2c_s_dma_user_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018b3c 0x00018b3c 0x0000004c Code RO 824 i.hal_i2c_s_dma_write CVWL368.lib(hal_i2c_slave.o) + 0x00018b88 0x00018b88 0x000000c8 Code RO 826 i.hal_i2c_s_init CVWL368.lib(hal_i2c_slave.o) + 0x00018c50 0x00018c50 0x00000014 Code RO 827 i.hal_i2c_s_nonblocking_read CVWL368.lib(hal_i2c_slave.o) + 0x00018c64 0x00018c64 0x0000000c Code RO 835 i.hal_i2c_s_set_transfer CVWL368.lib(hal_i2c_slave.o) + 0x00018c70 0x00018c70 0x00000174 Code RO 838 i.hal_i2c_slave_irq_callback CVWL368.lib(hal_i2c_slave.o) + 0x00018de4 0x00018de4 0x000000fc Code RO 1755 i.hal_internal_init_memc CVWL368.lib(hal_internal_vsync.o) + 0x00018ee0 0x00018ee0 0x00000010 Code RO 1757 i.hal_internal_sync_get_fb_setting CVWL368.lib(hal_internal_vsync.o) + 0x00018ef0 0x00018ef0 0x00000010 Code RO 1758 i.hal_internal_sync_get_hight_performan_mode CVWL368.lib(hal_internal_vsync.o) + 0x00018f00 0x00018f00 0x000001d4 Code RO 1760 i.hal_internal_sync_input_resolution_change_ex CVWL368.lib(hal_internal_vsync.o) + 0x000190d4 0x000190d4 0x00000010 Code RO 1762 i.hal_internal_update_dpi_param CVWL368.lib(hal_internal_vsync.o) + 0x000190e4 0x000190e4 0x0000010c Code RO 1763 i.hal_internal_video_mode_auto_sync CVWL368.lib(hal_internal_vsync.o) + 0x000191f0 0x000191f0 0x00000028 Code RO 1764 i.hal_internal_vsync_deinit CVWL368.lib(hal_internal_vsync.o) + 0x00019218 0x00019218 0x0000000c Code RO 1765 i.hal_internal_vsync_get_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019224 0x00019224 0x00000018 Code RO 1766 i.hal_internal_vsync_get_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x0001923c 0x0001923c 0x0000000c Code RO 1767 i.hal_internal_vsync_get_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x00019248 0x00019248 0x0000000c Code RO 1768 i.hal_internal_vsync_get_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019254 0x00019254 0x00000118 Code RO 1769 i.hal_internal_vsync_init_rx CVWL368.lib(hal_internal_vsync.o) + 0x0001936c 0x0001936c 0x000000b0 Code RO 1770 i.hal_internal_vsync_init_tx CVWL368.lib(hal_internal_vsync.o) + 0x0001941c 0x0001941c 0x0000011c Code RO 1771 i.hal_internal_vsync_set_auto_hw_filter CVWL368.lib(hal_internal_vsync.o) + 0x00019538 0x00019538 0x00000014 Code RO 1773 i.hal_internal_vsync_set_rx_state CVWL368.lib(hal_internal_vsync.o) + 0x0001954c 0x0001954c 0x00000024 Code RO 1774 i.hal_internal_vsync_set_sync_line CVWL368.lib(hal_internal_vsync.o) + 0x00019570 0x00019570 0x00000050 Code RO 1775 i.hal_internal_vsync_set_tear_mode CVWL368.lib(hal_internal_vsync.o) + 0x000195c0 0x000195c0 0x00000080 Code RO 1776 i.hal_internal_vsync_set_tx_state CVWL368.lib(hal_internal_vsync.o) + 0x00019640 0x00019640 0x00000024 Code RO 701 i.hal_lcdc_config_ccm CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019664 0x00019664 0x00000058 Code RO 702 i.hal_lcdc_config_remains CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000196bc 0x000196bc 0x00000014 Code RO 703 i.hal_lcdc_config_rgb_to_pentile CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x000196d0 0x000196d0 0x00000164 Code RO 704 i.hal_lcdc_config_upscaler CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019834 0x00019834 0x00000040 Code RO 705 i.hal_lcdc_init_cfg CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019874 0x00019874 0x000001b0 Code RO 706 i.hal_lcdc_init_clk CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019a24 0x00019a24 0x00000040 Code RO 707 i.hal_lcdc_init_interrupt CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00019a64 0x00019a64 0x0000000e Code RO 916 i.hal_spi_m_clear_rxfifo CVWL368.lib(hal_spi_master.o) + 0x00019a72 0x00019a72 0x00000012 Code RO 940 i.hal_swire_deinit CVWL368.lib(hal_swire.o) + 0x00019a84 0x00019a84 0x00000016 Code RO 942 i.hal_swire_open CVWL368.lib(hal_swire.o) + 0x00019a9a 0x00019a9a 0x00000008 Code RO 957 i.hal_system_enable_systick CVWL368.lib(hal_system.o) + 0x00019aa2 0x00019aa2 0x00000002 PAD + 0x00019aa4 0x00019aa4 0x00000088 Code RO 965 i.hal_system_init CVWL368.lib(hal_system.o) + 0x00019b2c 0x00019b2c 0x0000001c Code RO 966 i.hal_system_init_console CVWL368.lib(hal_system.o) + 0x00019b48 0x00019b48 0x00000008 Code RO 969 i.hal_system_set_phy_calibration CVWL368.lib(hal_system.o) + 0x00019b50 0x00019b50 0x00000008 Code RO 970 i.hal_system_set_pvd CVWL368.lib(hal_system.o) + 0x00019b58 0x00019b58 0x00000008 Code RO 971 i.hal_system_set_vcc CVWL368.lib(hal_system.o) + 0x00019b60 0x00019b60 0x0000002e Code RO 998 i.hal_timer_deinit CVWL368.lib(hal_timer.o) + 0x00019b8e 0x00019b8e 0x0000001a Code RO 1000 i.hal_timer_init CVWL368.lib(hal_timer.o) + 0x00019ba8 0x00019ba8 0x00000048 Code RO 1002 i.hal_timer_start CVWL368.lib(hal_timer.o) + 0x00019bf0 0x00019bf0 0x00000028 Code RO 1004 i.hal_timer_stop CVWL368.lib(hal_timer.o) + 0x00019c18 0x00019c18 0x0000008c Code RO 1037 i.hal_uart_init CVWL368.lib(hal_uart.o) + 0x00019ca4 0x00019ca4 0x00000010 Code RO 1040 i.hal_uart_transmit_blocking CVWL368.lib(hal_uart.o) + 0x00019cb4 0x00019cb4 0x000001dc Code RO 1779 i.hal_vsync_reset_lcdc_scaler CVWL368.lib(hal_internal_vsync.o) + 0x00019e90 0x00019e90 0x00000110 Code RO 2314 i.handle_init CVWL368.lib(irq_redirect .o) + 0x00019fa0 0x00019fa0 0x00000060 Code RO 113 i.init_mipi_tx ap_demo.o + 0x0001a000 0x0001a000 0x000000e0 Code RO 114 i.init_panel ap_demo.o + 0x0001a0e0 0x0001a0e0 0x0000000a Code RO 3 i.main main.o + 0x0001a0ea 0x0001a0ea 0x00000002 PAD + 0x0001a0ec 0x0001a0ec 0x0000009c Code RO 115 i.open_mipi_rx ap_demo.o + 0x0001a188 0x0001a188 0x00000038 Code RO 116 i.pps_update_handle ap_demo.o + 0x0001a1c0 0x0001a1c0 0x000003f4 Code RO 1780 i.rx_get_dcs_packet_data CVWL368.lib(hal_internal_vsync.o) + 0x0001a5b4 0x0001a5b4 0x00000178 Code RO 1781 i.rx_partial_update CVWL368.lib(hal_internal_vsync.o) + 0x0001a72c 0x0001a72c 0x0000008c Code RO 1782 i.rx_receive_packet CVWL368.lib(hal_internal_vsync.o) + 0x0001a7b8 0x0001a7b8 0x00000180 Code RO 1783 i.rx_receive_pps CVWL368.lib(hal_internal_vsync.o) + 0x0001a938 0x0001a938 0x000000a4 Code RO 1784 i.rxbr_irq0_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001a9dc 0x0001a9dc 0x000001d4 Code RO 1785 i.rxbr_irq1_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001abb0 0x0001abb0 0x00000024 Code RO 117 i.send_panel_init_code ap_demo.o + 0x0001abd4 0x0001abd4 0x000000c4 Code RO 1786 i.soft_gen_te CVWL368.lib(hal_internal_vsync.o) + 0x0001ac98 0x0001ac98 0x000000c0 Code RO 1787 i.soft_gen_te_double_buffer CVWL368.lib(hal_internal_vsync.o) + 0x0001ad58 0x0001ad58 0x00000030 Code RO 118 i.soft_timer3_cb ap_demo.o + 0x0001ad88 0x0001ad88 0x00000048 Code RO 2641 i.sqrt m_ps.l(sqrt.o) + 0x0001add0 0x0001add0 0x00000028 Code RO 120 i.tx_display_on ap_demo.o + 0x0001adf8 0x0001adf8 0x00000028 Code RO 121 i.tx_panel_reset ap_demo.o + 0x0001ae20 0x0001ae20 0x00000108 Code RO 1788 i.vidc_callback CVWL368.lib(hal_internal_vsync.o) + 0x0001af28 0x0001af28 0x000000d0 Code RO 1789 i.vpre_err_reset CVWL368.lib(hal_internal_vsync.o) + 0x0001aff8 0x0001aff8 0x000001cc Code RO 1790 i.vsync_set_te_mode CVWL368.lib(hal_internal_vsync.o) + 0x0001b1c4 0x0001b1c4 0x00002755 Data RO 122 .constdata ap_demo.o + 0x0001d919 0x0001d919 0x000000b6 Data RO 443 .constdata app_tp_for_custom_s8.o + 0x0001d9cf 0x0001d9cf 0x00000001 Data RO 467 .constdata app_tp_for_custom_s8.o + 0x0001d9d0 0x0001d9d0 0x00000024 Data RO 709 .constdata CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001d9f4 0x0001d9f4 0x000000d2 Data RO 781 .constdata CVWL368.lib(hal_gpio.o) + 0x0001dac6 0x0001dac6 0x00000002 PAD + 0x0001dac8 0x0001dac8 0x00000020 Data RO 839 .constdata CVWL368.lib(hal_i2c_slave.o) + 0x0001dae8 0x0001dae8 0x00000008 Data RO 1537 .constdata CVWL368.lib(drv_param_init.o) + 0x0001daf0 0x0001daf0 0x00000186 Data RO 2386 .constdata CVWL368.lib(drv_phy_common.o) + 0x0001dc76 0x0001dc76 0x00000002 PAD + 0x0001dc78 0x0001dc78 0x00000048 Data RO 609 .conststring CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x0001dcc0 0x0001dcc0 0x00000043 Data RO 710 .conststring CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x0001dd03 0x0001dd03 0x00000001 PAD + 0x0001dd04 0x0001dd04 0x000000e0 Data RO 1792 .conststring CVWL368.lib(hal_internal_vsync.o) + 0x0001dde4 0x0001dde4 0x00000030 Data RO 3003 Region$$Table anon$$obj.o + + + Execution Region RW_RAM1 (Exec base: 0x00070000, Load base: 0x0001de14, Size: 0x00000000, Max: 0x000000f0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM2 (Exec base: 0x00070100, Load base: 0x0001de14, Size: 0x000000c0, Max: 0x000000d0, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x00070100 - 0x000000c0 Zero RW 2315 .ARM.__AT_0x00070100 CVWL368.lib(irq_redirect .o) + + + Execution Region RW_RAM3 (Exec base: 0x000701d0, Load base: 0x0001de14, Size: 0x00003910, Max: 0x00007e30, ABSOLUTE, COMPRESSED[0x0000054c]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x000701d0 COMPRESSED 0x0000022c Data RW 123 .data ap_demo.o + 0x000703fc COMPRESSED 0x0000002e Data RW 300 .data app_tp_transfer.o + 0x0007042a COMPRESSED 0x000000e4 Data RW 468 .data app_tp_for_custom_s8.o + 0x0007050e COMPRESSED 0x00000001 Data RW 471 .data app_tp_for_custom_s8.o + 0x0007050f COMPRESSED 0x00000001 Data RW 472 .data app_tp_for_custom_s8.o + 0x00070510 COMPRESSED 0x00000001 Data RW 477 .data app_tp_for_custom_s8.o + 0x00070511 COMPRESSED 0x00000003 Data RW 478 .data app_tp_for_custom_s8.o + 0x00070514 COMPRESSED 0x00000005 Data RW 479 .data app_tp_for_custom_s8.o + 0x00070519 COMPRESSED 0x00000003 PAD + 0x0007051c COMPRESSED 0x00000030 Data RW 489 .data app_tp_for_custom_s8.o + 0x0007054c COMPRESSED 0x00000008 Data RW 610 .data CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070554 COMPRESSED 0x00000003 Data RW 711 .data CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070557 COMPRESSED 0x00000001 Data RW 810 .data CVWL368.lib(hal_i2c_master.o) + 0x00070558 COMPRESSED 0x00000020 Data RW 840 .data CVWL368.lib(hal_i2c_slave.o) + 0x00070578 COMPRESSED 0x00000012 Data RW 1094 .data CVWL368.lib(norflash.o) + 0x0007058a COMPRESSED 0x00000002 PAD + 0x0007058c COMPRESSED 0x0000000c Data RW 1148 .data CVWL368.lib(drv_common.o) + 0x00070598 COMPRESSED 0x00000004 Data RW 1415 .data CVWL368.lib(drv_gpio.o) + 0x0007059c COMPRESSED 0x00000008 Data RW 1453 .data CVWL368.lib(drv_i2c_dma.o) + 0x000705a4 COMPRESSED 0x00000004 Data RW 1482 .data CVWL368.lib(drv_i2c_master.o) + 0x000705a8 COMPRESSED 0x00000004 Data RW 1513 .data CVWL368.lib(drv_i2c_slave.o) + 0x000705ac COMPRESSED 0x000004a4 Data RW 1538 .data CVWL368.lib(drv_param_init.o) + 0x00070a50 COMPRESSED 0x0000000c Data RW 1568 .data CVWL368.lib(drv_pwm.o) + 0x00070a5c COMPRESSED 0x00000004 Data RW 1644 .data CVWL368.lib(drv_spi_master.o) + 0x00070a60 COMPRESSED 0x00000008 Data RW 1670 .data CVWL368.lib(drv_swire.o) + 0x00070a68 COMPRESSED 0x00000001 Data RW 1695 .data CVWL368.lib(drv_sys_cfg.o) + 0x00070a69 COMPRESSED 0x00000003 PAD + 0x00070a6c COMPRESSED 0x00000050 Data RW 1728 .data CVWL368.lib(drv_timer.o) + 0x00070abc COMPRESSED 0x0000000c Data RW 1793 .data CVWL368.lib(hal_internal_vsync.o) + 0x00070ac8 COMPRESSED 0x00000008 Data RW 2167 .data CVWL368.lib(drv_rxbr.o) + 0x00070ad0 COMPRESSED 0x00000004 Data RW 2240 .data CVWL368.lib(drv_vidc.o) + 0x00070ad4 COMPRESSED 0x00000001 Data RW 2387 .data CVWL368.lib(drv_phy_common.o) + 0x00070ad5 COMPRESSED 0x00000003 PAD + 0x00070ad8 COMPRESSED 0x0000000c Data RW 2407 .data CVWL368.lib(drv_chip_info.o) + 0x00070ae4 COMPRESSED 0x00000008 Data RW 2556 .data CVWL368.lib(drv_uart.o) + 0x00070aec COMPRESSED 0x0000000c Data RW 2623 .data CVWL368.lib(drv_wdg.o) + 0x00070af8 COMPRESSED 0x00000004 Data RW 2972 .data mc_p.l(stdout.o) + 0x00070afc COMPRESSED 0x00000004 Data RW 2984 .data mc_p.l(errno.o) + 0x00070b00 - 0x00000190 Zero RW 299 .bss app_tp_transfer.o + 0x00070c90 - 0x000000c4 Zero RW 608 .bss CVWL368.lib(hal_dsi_rx_ctrl.o) + 0x00070d54 - 0x0000004c Zero RW 708 .bss CVWL368.lib(hal_dsi_tx_ctrl.o) + 0x00070da0 - 0x00000100 Zero RW 1027 .bss CVWL368.lib(tau_log.o) + 0x00070ea0 - 0x000000d0 Zero RW 1042 .bss CVWL368.lib(hal_uart.o) + 0x00070f70 - 0x0000001c Zero RW 1277 .bss CVWL368.lib(drv_dma.o) + 0x00070f8c - 0x00000040 Zero RW 1414 .bss CVWL368.lib(drv_gpio.o) + 0x00070fcc - 0x00000140 Zero RW 1452 .bss CVWL368.lib(drv_i2c_dma.o) + 0x0007110c - 0x00000984 Zero RW 1791 .bss CVWL368.lib(hal_internal_vsync.o) + 0x00071a90 - 0x00001030 Zero RW 1844 .bss CVWL368.lib(dcs_packet_fifo.o) + 0x00072ac0 - 0x00000020 Zero RW 2451 .bss CVWL368.lib(hal_spi_slave.o) + 0x00072ae0 - 0x00001000 Zero RW 556 STACK startup_armcm0.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 4936 242 10069 556 0 34507 ap_demo.o + 1556 18 183 287 0 13548 app_tp_for_custom_s8.o + 1182 114 0 46 400 13580 app_tp_transfer.o + 36 6 0 0 0 449 board.o + 10 0 0 0 0 9519 main.o + 120 18 192 0 4096 2032 startup_armcm0.o + + ---------------------------------------------------------------------- + 7848 398 10492 892 4496 73635 Object Totals + 0 0 48 0 0 0 (incl. Generated) + 8 0 0 3 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 216 32 0 0 4144 252 dcs_packet_fifo.o + 272 96 0 12 0 256 drv_chip_info.o + 192 82 24 12 0 264 drv_common.o + 420 90 0 0 0 1200 drv_crgu.o + 410 28 0 0 28 796 drv_dma.o + 232 28 0 0 0 340 drv_dsc_dec.o + 1644 494 0 0 0 1336 drv_dsi_rx.o + 1532 118 0 0 0 2488 drv_dsi_tx.o + 132 0 0 0 0 256 drv_efuse.o + 10 0 0 0 0 60 drv_fls.o + 796 112 0 4 64 1236 drv_gpio.o + 600 82 0 8 320 624 drv_i2c_dma.o + 360 86 0 4 0 456 drv_i2c_master.o + 292 36 0 4 0 580 drv_i2c_slave.o + 680 6 0 0 0 1444 drv_lcdc.o + 492 28 0 0 0 1112 drv_memc.o + 212 44 8 1188 0 452 drv_param_init.o + 428 30 390 1 0 664 drv_phy_common.o + 72 10 0 12 0 76 drv_pwm.o + 112 24 0 0 0 180 drv_pwr.o + 722 84 0 8 0 1456 drv_rxbr.o + 104 24 0 4 0 188 drv_spi_master.o + 172 20 0 8 0 260 drv_swire.o + 300 64 0 1 0 628 drv_sys_cfg.o + 374 34 0 80 0 932 drv_timer.o + 698 18 0 8 0 680 drv_uart.o + 510 28 0 4 0 1452 drv_vidc.o + 168 22 0 12 0 316 drv_wdg.o + 3210 316 72 8 196 1680 hal_dsi_rx_ctrl.o + 4464 308 103 3 76 2492 hal_dsi_tx_ctrl.o + 450 48 210 0 0 752 hal_gpio.o + 212 40 0 1 0 340 hal_i2c_master.o + 696 72 32 32 0 408 hal_i2c_slave.o + 8420 1710 224 12 2436 2696 hal_internal_vsync.o + 14 0 0 0 0 68 hal_spi_master.o + 580 32 0 0 32 136 hal_spi_slave.o + 40 0 0 0 0 136 hal_swire.o + 196 32 0 0 0 408 hal_system.o + 184 6 0 0 0 276 hal_timer.o + 156 18 0 0 208 144 hal_uart.o + 1076 324 0 0 192 1980 irq_redirect .o + 48 10 0 18 0 68 norflash.o + 58 0 0 0 0 128 tau_delay.o + 60 10 0 0 256 156 tau_log.o + 200 20 0 0 0 76 ceil.o + 72 6 0 0 0 76 sqrt.o + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 12 6 0 4 0 60 errno.o + 30 0 0 0 0 0 handlers.o + 40 0 0 0 0 72 idiv.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 32 0 0 0 0 68 llshl.o + 38 0 0 0 0 68 llsshr.o + 34 0 0 0 0 68 llushr.o + 36 0 0 0 0 60 memcpya.o + 36 0 0 0 0 100 memseta.o + 2298 104 0 0 0 544 printfa.o + 0 0 0 4 0 0 stdout.o + 44 0 0 0 0 72 uidiv.o + 96 0 0 0 0 84 uldiv.o + 40 2 0 0 0 68 cdcmple.o + 40 2 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfrcmple.o + 356 4 0 0 0 140 dadd.o + 240 6 0 0 0 84 ddiv.o + 236 0 0 0 0 216 depilogue.o + 72 10 0 0 0 72 dfixi.o + 60 10 0 0 0 68 dfixui.o + 64 10 0 0 0 68 dfixul.o + 28 4 0 0 0 68 dfltui.o + 208 6 0 0 0 88 dmul.o + 162 0 0 0 0 80 dsqrt.o + 40 0 0 0 0 60 f2d.o + 178 0 0 0 0 108 fadd.o + 124 0 0 0 0 72 fdiv.o + 130 0 0 0 0 144 fepilogue.o + 50 0 0 0 0 60 ffixi.o + 40 0 0 0 0 60 ffixui.o + 22 0 0 0 0 68 fflti.o + 14 0 0 0 0 68 ffltui.o + 122 0 0 0 0 72 fmul.o + 24 0 0 0 0 60 fscalb.o + + ---------------------------------------------------------------------- + 37444 4852 1068 1460 7952 35128 Library Totals + 48 0 5 8 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 32016 4646 1063 1444 7952 31852 CVWL368.lib + 272 26 0 0 0 152 m_ps.l + 2838 126 0 8 0 1264 mc_p.l + 2270 54 0 0 0 1860 mf_p.l + + ---------------------------------------------------------------------- + 37444 4852 1068 1460 7952 35128 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 45292 5250 11560 2352 12448 84411 Grand Totals + 45292 5250 11560 1356 12448 84411 ELF Image Totals (compressed) + 45292 5250 11560 1356 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 56852 ( 55.52kB) + Total RW Size (RW Data + ZI Data) 14800 ( 14.45kB) + Total ROM Size (Code + RO Data + RW Data) 58208 ( 56.84kB) + +============================================================================== + diff --git a/project/ISP_368/Listings/ap_demo.txt b/project/ISP_368/Listings/ap_demo.txt new file mode 100644 index 0000000..8f62d11 --- /dev/null +++ b/project/ISP_368/Listings/ap_demo.txt @@ -0,0 +1,4813 @@ +; generated by Component: ARM Compiler 5.06 update 6 (build 750) Tool: ArmCC [4d3637] +; commandline ArmCC [--c99 --list --split_sections --debug -c --asm --interleave --gnu -o.\objects\ap_demo.o --asm_dir=.\Listings\ --list_dir=.\Listings\ --depend=.\objects\ap_demo.d --cpu=Cortex-M0 --apcs=interwork --diag_suppress=9931 -I..\..\src -I..\..\src\board -I..\..\src\common -I..\..\src\sdk\include -I..\..\src\app\demo -I..\..\src\sdk\include\M0 -I..\..\src\app -I..\..\src\app\module_demo -I..\..\src\app\touch -I..\..\src\app\S8 -I..\..\src\app\S9 -I..\CVWL368 -I.\RTE\_ISP_368 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\CMSIS\Core\Include -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\Device\ARM\ARMCM0\Include -D__MICROLIB -D__UVISION_VERSION=528 -D_RTE_ -DARMCM0 -DISP_368 --omf_browse=.\objects\ap_demo.crf ..\..\src\app\demo\ap_demo.c] + THUMB + + AREA ||i.Gpio_swire_output||, CODE, READONLY, ALIGN=1 + + Gpio_swire_output PROC +;;;376 *****************************************************************************/ +;;;377 void Gpio_swire_output(uint8_t flag, uint8_t num) +000000 b570 PUSH {r4-r6,lr} +;;;378 { +000002 460d MOV r5,r1 +;;;379 uint8_t ii; +;;;380 +;;;381 if (flag) +000004 2800 CMP r0,#0 +000006 d01d BEQ |L1.68| +;;;382 { +;;;383 if (flag ==2) +000008 2802 CMP r0,#2 +00000a d106 BNE |L1.26| +;;;384 { +;;;385 hal_gpio_init_output(IO_PAD_ADCIN, IO_LVL_HIGH); +00000c 2101 MOVS r1,#1 +00000e 2014 MOVS r0,#0x14 +000010 f7fffffe BL hal_gpio_init_output +;;;386 //hal_gpio_set_output_data(IO_PAD_ADCIN, IO_LVL_HIGH); +;;;387 delayMs(2); +000014 2002 MOVS r0,#2 +000016 f7fffffe BL delayMs + |L1.26| +;;;388 } +;;;389 for (ii =0; ii< num; ii++) +00001a 2400 MOVS r4,#0 +00001c e00f B |L1.62| + |L1.30| +;;;390 { +;;;391 hal_gpio_set_output_data(IO_PAD_ADCIN, IO_LVL_LOW); +00001e 2100 MOVS r1,#0 +000020 2014 MOVS r0,#0x14 +000022 f7fffffe BL hal_gpio_set_output_data +;;;392 delayUs(10); +000026 200a MOVS r0,#0xa +000028 f7fffffe BL delayUs +;;;393 hal_gpio_set_output_data(IO_PAD_ADCIN, IO_LVL_HIGH); +00002c 2101 MOVS r1,#1 +00002e 2014 MOVS r0,#0x14 +000030 f7fffffe BL hal_gpio_set_output_data +;;;394 delayUs(9); +000034 2009 MOVS r0,#9 +000036 f7fffffe BL delayUs +00003a 1c64 ADDS r4,r4,#1 +00003c b2e4 UXTB r4,r4 ;389 + |L1.62| +00003e 42ac CMP r4,r5 ;389 +000040 d3ed BCC |L1.30| +;;;395 } +;;;396 } +;;;397 else +;;;398 { +;;;399 hal_gpio_init_output(IO_PAD_ADCIN, IO_LVL_LOW); +;;;400 } +;;;401 } +000042 bd70 POP {r4-r6,pc} + |L1.68| +000044 2100 MOVS r1,#0 ;399 +000046 2014 MOVS r0,#0x14 ;399 +000048 f7fffffe BL hal_gpio_init_output +00004c bd70 POP {r4-r6,pc} +;;;402 + ENDP + + + AREA ||i.ap_dcs_read||, CODE, READONLY, ALIGN=2 + + ap_dcs_read PROC +;;;167 +;;;168 static bool ap_dcs_read(uint8_t data_type, uint8_t dcs_cmd, uint8_t param) +000000 b5f0 PUSH {r4-r7,lr} +;;;169 { +;;;170 uint32_t return_size = hal_dsi_rx_ctrl_get_max_ret_size(g_rx_ctrl_handle); +000002 4d64 LDR r5,|L2.404| +000004 b09f SUB sp,sp,#0x7c ;169 +000006 4617 MOV r7,r2 ;169 +000008 460c MOV r4,r1 ;169 +00000a 69a8 LDR r0,[r5,#0x18] ; g_rx_ctrl_handle +00000c f7fffffe BL hal_dsi_rx_ctrl_get_max_ret_size +000010 4606 MOV r6,r0 +000012 2000 MOVS r0,#0 +;;;171 // TAU_LOGD("r[%x] [%d]--", dcs_cmd, return_size); +;;;172 +;;;173 //------------ +;;;174 if (dcs_cmd == 0x04) +;;;175 { +;;;176 phone_DisplayOFF_flag=1; +000014 2101 MOVS r1,#1 +;;;177 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +000016 2280 MOVS r2,#0x80 +000018 2c04 CMP r4,#4 ;174 +00001a d023 BEQ |L2.100| +;;;178 DSI_ACK_DT_DSC_LONG_RESPONSE, +;;;179 DSI_VC_0, +;;;180 3, 0x80,0x00,0x00); +;;;181 } +;;;182 else if (dcs_cmd == 0x0F) +00001c 2c0f CMP r4,#0xf +00001e d02c BEQ |L2.122| +;;;183 { +;;;184 phone_DisplayOFF_flag=0; +;;;185 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;186 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, +;;;187 DSI_VC_0, +;;;188 1, 0x80); +;;;189 } +;;;190 else if (dcs_cmd == 0xEA) +000020 2cea CMP r4,#0xea +000022 d02d BEQ |L2.128| +;;;191 { +;;;192 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;193 DSI_ACK_DT_DSC_SHORT_RESPONSE_2B, +;;;194 DSI_VC_0, +;;;195 2, 0x00, 0x00); +;;;196 } +;;;197 else if (dcs_cmd == 0x0A) +000024 2c0a CMP r4,#0xa +000026 d034 BEQ |L2.146| +;;;198 { +;;;199 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;200 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, +;;;201 DSI_VC_0, +;;;202 1, 0x9f); +;;;203 } +;;;204 else if (dcs_cmd == 0x0E) +000028 2c0e CMP r4,#0xe +00002a d027 BEQ |L2.124| +;;;205 { +;;;206 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;207 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, +;;;208 DSI_VC_0, +;;;209 1, 0x80); +;;;210 } +;;;211 else if (dcs_cmd == 0x05) +00002c 2c05 CMP r4,#5 +00002e d031 BEQ |L2.148| +;;;212 { +;;;213 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;214 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, +;;;215 DSI_VC_0, +;;;216 1, 0x00); +;;;217 } +;;;218 else if (dcs_cmd == 0xEE) +000030 2cee CMP r4,#0xee +000032 d02f BEQ |L2.148| +;;;219 { +;;;220 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;221 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, +;;;222 DSI_VC_0, +;;;223 1, 0x00); +;;;224 } +;;;225 //---- +;;;226 else if (dcs_cmd == 0xA1) +000034 2ca1 CMP r4,#0xa1 +000036 d035 BEQ |L2.164| +;;;227 { +;;;228 if (return_size == 11) +;;;229 { +;;;230 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;231 DSI_ACK_DT_DSC_LONG_RESPONSE, +;;;232 DSI_VC_0, +;;;233 11, +;;;234 0x0B,0xEB,0x0C,0x98,0x91,0x14,0x00,0x38,0x10,0x08,0x32); +;;;235 } +;;;236 else if (return_size == 31) +;;;237 { +;;;238 phone_DisplayOFF_flag=1; +;;;239 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;240 DSI_ACK_DT_DSC_LONG_RESPONSE, +;;;241 DSI_VC_0, +;;;242 31, +;;;243 0x0B,0xEB,0x0C,0x98,0x91,0x14,0x00,0x38,0x10,0x08,0x32,0x10,0x01,0x01,0xB5,0x41, +;;;244 0x32,0x55,0x4B,0x31,0x53,0x4A,0x31,0x33,0x37,0x43,0x42,0x43,0x30,0x35,0x37); +;;;245 } +;;;246 else +;;;247 { +;;;248 TAU_LOGD("r[%x] [%d] err!!!!!!", dcs_cmd, return_size); +;;;249 } +;;;250 } +;;;251 else if (dcs_cmd == 0xD6) +000038 2cd6 CMP r4,#0xd6 +00003a d07d BEQ |L2.312| +;;;252 { +;;;253 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +;;;254 DSI_ACK_DT_DSC_LONG_RESPONSE, +;;;255 DSI_VC_0, +;;;256 5, +;;;257 0x47,0xCE,0xB0,0xF1,0xEE); +;;;258 } +;;;259 else if (dcs_cmd == 0x01) +00003c 2c01 CMP r4,#1 +00003e d07c BEQ |L2.314| +;;;260 { +;;;261 ap_get_tp_calibration_status_01(g_rx_ctrl_handle,param); +;;;262 } +;;;263 else +;;;264 { +;;;265 hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, +000040 9000 STR r0,[sp,#0] +000042 2301 MOVS r3,#1 +000044 2200 MOVS r2,#0 +000046 2121 MOVS r1,#0x21 +000048 69a8 LDR r0,[r5,#0x18] ; g_rx_ctrl_handle +00004a f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +;;;266 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, +;;;267 DSI_VC_0, +;;;268 1, 0); +;;;269 TAU_LOGD("r[%x] [%d] err!!!!!!", dcs_cmd, return_size); +00004e 22ff MOVS r2,#0xff +000050 4623 MOV r3,r4 +000052 320e ADDS r2,r2,#0xe +000054 9600 STR r6,[sp,#0] + |L2.86| +000056 a150 ADR r1,|L2.408| +000058 a053 ADR r0,|L2.424| +00005a f7fffffe BL LOG_printf + |L2.94| +;;;270 } +;;;271 +;;;272 return true; +00005e 2001 MOVS r0,#1 +;;;273 } +000060 b01f ADD sp,sp,#0x7c +000062 bdf0 POP {r4-r7,pc} + |L2.100| +000064 7269 STRB r1,[r5,#9] ;176 +000066 9200 STR r2,[sp,#0] ;177 +000068 9001 STR r0,[sp,#4] ;177 +00006a 9002 STR r0,[sp,#8] ;177 +00006c 2303 MOVS r3,#3 ;177 +00006e 2200 MOVS r2,#0 ;177 +000070 211c MOVS r1,#0x1c ;177 +000072 69a8 LDR r0,[r5,#0x18] ;177 ; g_rx_ctrl_handle +000074 f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +000078 e7f1 B |L2.94| + |L2.122| +00007a 7268 STRB r0,[r5,#9] ;184 + |L2.124| +00007c 9200 STR r2,[sp,#0] ;206 +00007e e00a B |L2.150| + |L2.128| +000080 9000 STR r0,[sp,#0] ;192 +000082 9001 STR r0,[sp,#4] ;192 +000084 2302 MOVS r3,#2 ;192 +000086 2200 MOVS r2,#0 ;192 +000088 2122 MOVS r1,#0x22 ;192 +00008a 69a8 LDR r0,[r5,#0x18] ;192 ; g_rx_ctrl_handle +00008c f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +000090 e7e5 B |L2.94| + |L2.146| +000092 209f MOVS r0,#0x9f ;199 + |L2.148| +000094 9000 STR r0,[sp,#0] ;220 + |L2.150| +000096 2301 MOVS r3,#1 ;220 +000098 2200 MOVS r2,#0 ;220 +00009a 2121 MOVS r1,#0x21 ;220 +00009c 69a8 LDR r0,[r5,#0x18] ;220 ; g_rx_ctrl_handle +00009e f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +0000a2 e7dc B |L2.94| + |L2.164| +0000a4 2710 MOVS r7,#0x10 ;230 +0000a6 2e0b CMP r6,#0xb ;228 +0000a8 d005 BEQ |L2.182| +0000aa 2e1f CMP r6,#0x1f ;236 +0000ac d01e BEQ |L2.236| +0000ae 4623 MOV r3,r4 ;248 +0000b0 22f8 MOVS r2,#0xf8 ;248 +0000b2 9600 STR r6,[sp,#0] ;248 +0000b4 e7cf B |L2.86| + |L2.182| +0000b6 2132 MOVS r1,#0x32 ;230 +0000b8 2208 MOVS r2,#8 ;230 +0000ba 910a STR r1,[sp,#0x28] ;230 +0000bc 2338 MOVS r3,#0x38 ;230 +0000be 9209 STR r2,[sp,#0x24] ;230 +0000c0 2114 MOVS r1,#0x14 ;230 +0000c2 9307 STR r3,[sp,#0x1c] ;230 +0000c4 2291 MOVS r2,#0x91 ;230 +0000c6 9105 STR r1,[sp,#0x14] ;230 +0000c8 9204 STR r2,[sp,#0x10] ;230 +0000ca 9006 STR r0,[sp,#0x18] ;230 +0000cc 9708 STR r7,[sp,#0x20] ;230 +0000ce 2398 MOVS r3,#0x98 ;230 +0000d0 220b MOVS r2,#0xb ;230 +0000d2 9303 STR r3,[sp,#0xc] ;230 +0000d4 21eb MOVS r1,#0xeb ;230 +0000d6 200c MOVS r0,#0xc ;230 +0000d8 9200 STR r2,[sp,#0] ;230 +0000da 9101 STR r1,[sp,#4] ;230 +0000dc 4613 MOV r3,r2 ;230 +0000de 9002 STR r0,[sp,#8] ;230 +0000e0 2200 MOVS r2,#0 ;230 +0000e2 211c MOVS r1,#0x1c ;230 +0000e4 69a8 LDR r0,[r5,#0x18] ;230 ; g_rx_ctrl_handle +0000e6 f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +0000ea e7b8 B |L2.94| + |L2.236| +0000ec 7269 STRB r1,[r5,#9] ;238 +0000ee 2630 MOVS r6,#0x30 ;239 +0000f0 961c STR r6,[sp,#0x70] ;239 +0000f2 2435 MOVS r4,#0x35 ;239 +0000f4 2633 MOVS r6,#0x33 ;239 +0000f6 2237 MOVS r2,#0x37 ;239 +0000f8 2343 MOVS r3,#0x43 ;239 +0000fa 941d STR r4,[sp,#0x74] ;239 +0000fc 9617 STR r6,[sp,#0x5c] ;239 +0000fe 931b STR r3,[sp,#0x6c] ;239 +000100 921e STR r2,[sp,#0x78] ;239 +000102 2442 MOVS r4,#0x42 ;239 +000104 ae18 ADD r6,sp,#0x60 ;239 +000106 c61c STM r6!,{r2-r4} ;239 +000108 2231 MOVS r2,#0x31 ;239 +00010a 9216 STR r2,[sp,#0x58] ;239 +00010c 9213 STR r2,[sp,#0x4c] ;239 +00010e 2453 MOVS r4,#0x53 ;239 +000110 224b MOVS r2,#0x4b ;239 +000112 9414 STR r4,[sp,#0x50] ;239 +000114 9212 STR r2,[sp,#0x48] ;239 +000116 234a MOVS r3,#0x4a ;239 +000118 9315 STR r3,[sp,#0x54] ;239 +00011a 2455 MOVS r4,#0x55 ;239 +00011c 2332 MOVS r3,#0x32 ;239 +00011e 9411 STR r4,[sp,#0x44] ;239 +000120 910d STR r1,[sp,#0x34] ;239 +000122 2641 MOVS r6,#0x41 ;239 +000124 22b5 MOVS r2,#0xb5 ;239 +000126 910c STR r1,[sp,#0x30] ;239 +000128 9310 STR r3,[sp,#0x40] ;239 +00012a 920e STR r2,[sp,#0x38] ;239 +00012c 2108 MOVS r1,#8 ;239 +00012e 960f STR r6,[sp,#0x3c] ;239 +000130 970b STR r7,[sp,#0x2c] ;239 +000132 2238 MOVS r2,#0x38 ;239 +000134 9708 STR r7,[sp,#0x20] ;239 +000136 e001 B |L2.316| + |L2.312| +000138 e017 B |L2.362| + |L2.314| +00013a e025 B |L2.392| + |L2.316| +00013c 930a STR r3,[sp,#0x28] ;239 +00013e 9207 STR r2,[sp,#0x1c] ;239 +000140 9109 STR r1,[sp,#0x24] ;239 +000142 2214 MOVS r2,#0x14 ;239 +000144 2191 MOVS r1,#0x91 ;239 +000146 9006 STR r0,[sp,#0x18] ;239 +000148 9205 STR r2,[sp,#0x14] ;239 +00014a 9104 STR r1,[sp,#0x10] ;239 +00014c 2398 MOVS r3,#0x98 ;239 +00014e 21eb MOVS r1,#0xeb ;239 +000150 220b MOVS r2,#0xb ;239 +000152 9303 STR r3,[sp,#0xc] ;239 +000154 200c MOVS r0,#0xc ;239 +000156 9200 STR r2,[sp,#0] ;239 +000158 9101 STR r1,[sp,#4] ;239 +00015a 9002 STR r0,[sp,#8] ;239 +00015c 231f MOVS r3,#0x1f ;239 +00015e 2200 MOVS r2,#0 ;239 +000160 211c MOVS r1,#0x1c ;239 +000162 69a8 LDR r0,[r5,#0x18] ;239 ; g_rx_ctrl_handle +000164 f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +000168 e779 B |L2.94| + |L2.362| +00016a 23ee MOVS r3,#0xee ;253 +00016c 22f1 MOVS r2,#0xf1 ;253 +00016e 21b0 MOVS r1,#0xb0 ;253 +000170 20ce MOVS r0,#0xce ;253 +000172 ac01 ADD r4,sp,#4 ;253 +000174 c40f STM r4!,{r0-r3} ;253 +000176 2047 MOVS r0,#0x47 ;253 +000178 9000 STR r0,[sp,#0] ;253 +00017a 2305 MOVS r3,#5 ;253 +00017c 2200 MOVS r2,#0 ;253 +00017e 211c MOVS r1,#0x1c ;253 +000180 69a8 LDR r0,[r5,#0x18] ;253 ; g_rx_ctrl_handle +000182 f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +000186 e76a B |L2.94| + |L2.392| +000188 4639 MOV r1,r7 ;261 +00018a 69a8 LDR r0,[r5,#0x18] ;261 ; g_rx_ctrl_handle +00018c f7fffffe BL ap_get_tp_calibration_status_01 +000190 e765 B |L2.94| +;;;274 + ENDP + +000192 0000 DCW 0x0000 + |L2.404| + DCD ||.data|| + |L2.408| +000198 4e31304c DCB "N10Lite_NT37701",0 +00019c 6974655f +0001a0 4e543337 +0001a4 37303100 + |L2.424| +0001a8 5b25735d DCB "[%s] (%04d) r[%x] [%d] err!!!!!!",0 +0001ac 20282530 +0001b0 34642920 +0001b4 725b2578 +0001b8 5d205b25 +0001bc 645d2065 +0001c0 72722121 +0001c4 21212121 +0001c8 00 +0001c9 00 DCB 0 +0001ca 00 DCB 0 +0001cb 00 DCB 0 + + AREA ||i.ap_demo||, CODE, READONLY, ALIGN=2 + + ap_demo PROC +;;;2447 +;;;2448 void ap_demo(void) +000000 b51c PUSH {r2-r4,lr} +;;;2449 { +;;;2450 hal_gpio_init_output(IO_PAD_TD_TPRSTN, IO_LVL_HIGH); +000002 2101 MOVS r1,#1 +000004 2008 MOVS r0,#8 +000006 f7fffffe BL hal_gpio_init_output +;;;2451 hal_gpio_init_output(IO_PAD_AP_SWIRE, IO_LVL_LOW); +00000a 2100 MOVS r1,#0 +00000c 2004 MOVS r0,#4 +00000e f7fffffe BL hal_gpio_init_output +;;;2452 hal_gpio_init_output(IO_PAD_PWMEN, IO_LVL_LOW); //AP_SWIRE +000012 2100 MOVS r1,#0 +000014 2013 MOVS r0,#0x13 +000016 f7fffffe BL hal_gpio_init_output +;;;2453 hal_gpio_init_output(IO_PAD_ADCIN, IO_LVL_LOW); //SWIRE +00001a 2100 MOVS r1,#0 +00001c 2014 MOVS r0,#0x14 +00001e f7fffffe BL hal_gpio_init_output +;;;2454 +;;;2455 TAU_LOGD("Note10Lite CSOT667 [%s %s]", __DATE__, __TIME__); +000022 a070 ADR r0,|L3.484| +000024 9000 STR r0,[sp,#0] +000026 a372 ADR r3,|L3.496| +000028 4a74 LDR r2,|L3.508| +00002a a175 ADR r1,|L3.512| +00002c a078 ADR r0,|L3.528| +00002e f7fffffe BL LOG_printf +;;;2456 /* mipi rx初始化 */ +;;;2457 open_mipi_rx(); +000032 f7fffffe BL open_mipi_rx +;;;2458 delayMs(20); +000036 2014 MOVS r0,#0x14 +000038 f7fffffe BL delayMs +;;;2459 +;;;2460 // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); //LED_ON +;;;2461 +;;;2462 app_tp_I2C_init(); +00003c f7fffffe BL app_tp_I2C_init +;;;2463 // soft_te_timer_init(); +;;;2464 +;;;2465 /* mipi tx 初始化*/ +;;;2466 init_mipi_tx(); +000040 f7fffffe BL init_mipi_tx +;;;2467 +;;;2468 app_tp_init(); +000044 f7fffffe BL app_tp_init +;;;2469 #ifdef ADD_TIMER3_FUNCTION +;;;2470 tp_sleep_count=0; +000048 487b LDR r0,|L3.568| +00004a 2400 MOVS r4,#0 +00004c 7004 STRB r4,[r0,#0] +;;;2471 tp_sleep_clk_count = 0; +00004e 487b LDR r0,|L3.572| +;;;2472 phone_DisplayOFF_count=1; +000050 4e7b LDR r6,|L3.576| +000052 7004 STRB r4,[r0,#0] ;2471 +000054 2501 MOVS r5,#1 +000056 81f5 STRH r5,[r6,#0xe] +;;;2473 hal_timer_init(TIMER_NUM3); +000058 2003 MOVS r0,#3 +00005a f7fffffe BL hal_timer_init +;;;2474 hal_timer_start(TIMER_NUM3, 10, soft_timer3_cb, NULL); +00005e 2300 MOVS r3,#0 +000060 4a78 LDR r2,|L3.580| +000062 210a MOVS r1,#0xa +000064 2003 MOVS r0,#3 +000066 f7fffffe BL hal_timer_start +;;;2475 #endif +;;;2476 +;;;2477 while (1) +;;;2478 { +;;;2479 if (start_display_on == true ) +;;;2480 { +;;;2481 tx_display_on(); +;;;2482 start_display_on = false; +;;;2483 +;;;2484 #ifndef DISABLE_TDDI_I2C_FUNCTION +;;;2485 /* 与屏的TP 模块通讯并初始化 */ +;;;2486 app_tp_transfer_screen_start(); +;;;2487 #endif +;;;2488 #if ENABLE_TP_WAKE_UP +;;;2489 hal_gpio_set_ap_reset_int(ENABLE, ap_reset_cb, DETECT_RISING_EDGE); +;;;2490 #endif +;;;2491 } +;;;2492 +;;;2493 #if 1//电话熄屏 +;;;2494 if (phone_off_flag==0) +;;;2495 { +;;;2496 if(Flag_blacklight_EN) +00006a 4f77 LDR r7,|L3.584| + |L3.108| +00006c 7830 LDRB r0,[r6,#0] ;2479 ; start_display_on +00006e 2800 CMP r0,#0 ;2479 +000070 d01f BEQ |L3.178| +000072 f7fffffe BL init_panel +000076 4a61 LDR r2,|L3.508| +000078 4974 LDR r1,|L3.588| +00007a 3a4f SUBS r2,r2,#0x4f ;2479 +00007c a074 ADR r0,|L3.592| +00007e f7fffffe BL LOG_printf +000082 70b5 STRB r5,[r6,#2] ;2479 +000084 69f0 LDR r0,[r6,#0x1c] ;2479 ; g_tx_ctrl_handle +000086 f7fffffe BL hal_dsi_tx_ctrl_start +00008a 2014 MOVS r0,#0x14 ;2479 +00008c f7fffffe BL delayMs +000090 2329 MOVS r3,#0x29 ;2479 +000092 2201 MOVS r2,#1 ;2479 +000094 2100 MOVS r1,#0 ;2479 +000096 2005 MOVS r0,#5 ;2479 +000098 f7fffffe BL hal_dsi_tx_ctrl_write_cmd +00009c 200a MOVS r0,#0xa ;2479 +00009e f7fffffe BL delayMs +0000a2 7034 STRB r4,[r6,#0] ;2482 +0000a4 f7fffffe BL app_tp_transfer_screen_start +0000a8 2202 MOVS r2,#2 ;2489 +0000aa 496f LDR r1,|L3.616| +0000ac 2001 MOVS r0,#1 ;2489 +0000ae f7fffffe BL hal_gpio_set_ap_reset_int + |L3.178| +0000b2 79f0 LDRB r0,[r6,#7] ;2494 ; phone_off_flag +0000b4 2800 CMP r0,#0 ;2494 +;;;2497 { +;;;2498 phone_off_flag =1; +;;;2499 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x28, 0x00); +;;;2500 TAU_LOGD("Phone off 28"); +;;;2501 } +;;;2502 } +;;;2503 else +;;;2504 { +;;;2505 if(Flag_blacklight_EN ==0) +0000b6 7838 LDRB r0,[r7,#0] ; Flag_blacklight_EN +0000b8 d002 BEQ |L3.192| +0000ba 2800 CMP r0,#0 +0000bc d00f BEQ |L3.222| +0000be e01c B |L3.250| + |L3.192| +0000c0 2800 CMP r0,#0 ;2496 +0000c2 d01a BEQ |L3.250| +0000c4 71f5 STRB r5,[r6,#7] ;2498 +0000c6 2328 MOVS r3,#0x28 ;2499 +0000c8 2202 MOVS r2,#2 ;2499 +0000ca 2100 MOVS r1,#0 ;2499 +0000cc 2039 MOVS r0,#0x39 ;2499 +0000ce 9400 STR r4,[sp,#0] ;2499 +0000d0 f7fffffe BL hal_dsi_tx_ctrl_write_cmd +0000d4 4a49 LDR r2,|L3.508| +0000d6 a14a ADR r1,|L3.512| +0000d8 322d ADDS r2,r2,#0x2d ;2500 +0000da a064 ADR r0,|L3.620| +0000dc e00b B |L3.246| + |L3.222| +;;;2506 { +;;;2507 phone_off_flag =0; +0000de 71f4 STRB r4,[r6,#7] +;;;2508 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x29, 0x00); +0000e0 2329 MOVS r3,#0x29 +0000e2 2202 MOVS r2,#2 +0000e4 2100 MOVS r1,#0 +0000e6 2039 MOVS r0,#0x39 +0000e8 9400 STR r4,[sp,#0] +0000ea f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;2509 TAU_LOGD("Phone off 29"); +0000ee 4a43 LDR r2,|L3.508| +0000f0 a143 ADR r1,|L3.512| +0000f2 3236 ADDS r2,r2,#0x36 +0000f4 a064 ADR r0,|L3.648| + |L3.246| +0000f6 f7fffffe BL LOG_printf + |L3.250| +;;;2510 } +;;;2511 } +;;;2512 #endif +;;;2513 if(phone_DisplayOFF_flag==1) +0000fa 7a70 LDRB r0,[r6,#9] ; phone_DisplayOFF_flag +0000fc 2801 CMP r0,#1 +;;;2514 { +;;;2515 if(phone_DisplayOFF_count>2200) +;;;2516 { +;;;2517 phone_DisplayOFF_count=0; +;;;2518 phone_start_flag=1; +;;;2519 } +;;;2520 } +;;;2521 else +;;;2522 { +;;;2523 if(phone_DisplayOFF_count>30) +0000fe 89f0 LDRH r0,[r6,#0xe] ; phone_DisplayOFF_count +000100 d019 BEQ |L3.310| +000102 281e CMP r0,#0x1e +000104 d905 BLS |L3.274| +;;;2524 { +;;;2525 phone_DisplayOFF_count=0; +000106 81f4 STRH r4,[r6,#0xe] +;;;2526 phone_start_flag=1; +000108 7235 STRB r5,[r6,#8] +;;;2527 hal_gpio_set_output_data(IO_PAD_AP_INT, IO_LVL_LOW);//必须拉低,否则待机或者双击唤醒2~3s无触摸.jason_su +00010a 2100 MOVS r1,#0 +00010c 2002 MOVS r0,#2 +00010e f7fffffe BL hal_gpio_set_output_data + |L3.274| +;;;2528 } +;;;2529 } +;;;2530 +;;;2531 +;;;2532 if (BL_ADJ_flag) +000112 79b0 LDRB r0,[r6,#6] ; BL_ADJ_flag +000114 2800 CMP r0,#0 +000116 d02f BEQ |L3.376| +;;;2533 { +;;;2534 if(hbm_mode) //高亮延时 +000118 7ab0 LDRB r0,[r6,#0xa] ; hbm_mode +00011a 2800 CMP r0,#0 +00011c d015 BEQ |L3.330| +;;;2535 { +;;;2536 if (enter_hbm_mode_cnt <41) +00011e 7930 LDRB r0,[r6,#4] ; enter_hbm_mode_cnt +000120 2829 CMP r0,#0x29 +000122 d229 BCS |L3.376| +000124 1c40 ADDS r0,r0,#1 +;;;2537 { +;;;2538 enter_hbm_mode_cnt++; +000126 7130 STRB r0,[r6,#4] +;;;2539 delayMs(1); +000128 2001 MOVS r0,#1 +00012a f7fffffe BL delayMs +;;;2540 if (enter_hbm_mode_cnt ==40) +00012e 7930 LDRB r0,[r6,#4] ; enter_hbm_mode_cnt +000130 2828 CMP r0,#0x28 +000132 d007 BEQ |L3.324| +000134 e020 B |L3.376| + |L3.310| +000136 4931 LDR r1,|L3.508| +000138 39ff SUBS r1,r1,#0xff ;2515 +00013a 4288 CMP r0,r1 ;2515 +00013c d9e9 BLS |L3.274| +00013e 81f4 STRH r4,[r6,#0xe] ;2517 +000140 7235 STRB r5,[r6,#8] ;2518 +000142 e7e6 B |L3.274| + |L3.324| +;;;2541 { +;;;2542 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 3, 0x51, 0x07, 0xFF); +000144 21ff MOVS r1,#0xff +000146 2007 MOVS r0,#7 +;;;2543 BL_ADJ_flag=false; +000148 e00d B |L3.358| + |L3.330| +;;;2544 } +;;;2545 } +;;;2546 } +;;;2547 else +;;;2548 { +;;;2549 if (exit_hbm_mode_cnt < 3) //7 +00014a 7970 LDRB r0,[r6,#5] ; exit_hbm_mode_cnt +00014c 2803 CMP r0,#3 +00014e d213 BCS |L3.376| +000150 1c40 ADDS r0,r0,#1 +;;;2550 { +;;;2551 exit_hbm_mode_cnt++; +000152 7170 STRB r0,[r6,#5] +;;;2552 delayMs(1); +000154 2001 MOVS r0,#1 +000156 f7fffffe BL delayMs +;;;2553 if (exit_hbm_mode_cnt==2) +00015a 7970 LDRB r0,[r6,#5] ; exit_hbm_mode_cnt +00015c 2802 CMP r0,#2 +00015e d10b BNE |L3.376| +;;;2554 { +;;;2555 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 3, 0x51, rd_51_val2>>8, rd_51_val2&0xFF); +000160 8a30 LDRH r0,[r6,#0x10] ; rd_51_val2 +000162 b2c1 UXTB r1,r0 +000164 0a00 LSRS r0,r0,#8 + |L3.358| +000166 9101 STR r1,[sp,#4] +000168 9000 STR r0,[sp,#0] +00016a 2351 MOVS r3,#0x51 +00016c 2203 MOVS r2,#3 +00016e 2100 MOVS r1,#0 +000170 2039 MOVS r0,#0x39 +000172 f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;2556 BL_ADJ_flag=false; +000176 71b4 STRB r4,[r6,#6] + |L3.376| +;;;2557 } +;;;2558 } +;;;2559 } +;;;2560 } +;;;2561 +;;;2562 +;;;2563 +;;;2564 #ifndef DISABLE_TDDI_I2C_FUNCTION +;;;2565 /* 等待屏 TP 中断上报做TP 协议转换 */ +;;;2566 app_tp_transfer_screen_int(); +000178 f7fffffe BL app_tp_transfer_screen_int +;;;2567 #endif +;;;2568 tp_heartbeat_exec(); +00017c f7fffffe BL tp_heartbeat_exec +;;;2569 app_tp_calibration_exec(); +000180 f7fffffe BL app_tp_calibration_exec +;;;2570 ap_tp_st_touch_scan_point_record_event_exec(); +000184 f7fffffe BL ap_tp_st_touch_scan_point_record_event_exec + |L3.392| +;;;2571 +;;;2572 while (hal_dsi_rx_ctrl_dsc_async_handler(g_rx_ctrl_handle)); +000188 69b0 LDR r0,[r6,#0x18] ; g_rx_ctrl_handle +00018a f7fffffe BL hal_dsi_rx_ctrl_dsc_async_handler +00018e 2800 CMP r0,#0 +000190 d1fa BNE |L3.392| +;;;2573 +;;;2574 #if ENABLE_TP_WAKE_UP +;;;2575 if (g_need_enter_sleep_mode) +000192 7af0 LDRB r0,[r6,#0xb] ; g_need_enter_sleep_mode +000194 2800 CMP r0,#0 +000196 d100 BNE |L3.410| +000198 e768 B |L3.108| + |L3.410| +;;;2576 { +;;;2577 tp_sleep_in=1; +00019a 4842 LDR r0,|L3.676| +00019c 7005 STRB r5,[r0,#0] +;;;2578 // hal_gpio_set_output_data(IO_PAD_TD_LEDPWM, IO_LVL_HIGH); +;;;2579 +;;;2580 /* FIXME stop more model */ +;;;2581 hal_dsi_tx_ctrl_stop(g_tx_ctrl_handle); +00019e 69f0 LDR r0,[r6,#0x1c] ; g_tx_ctrl_handle +0001a0 f7fffffe BL hal_dsi_tx_ctrl_stop +;;;2582 hal_dsi_tx_ctrl_deinit(g_tx_ctrl_handle); +0001a4 69f0 LDR r0,[r6,#0x1c] ; g_tx_ctrl_handle +0001a6 f7fffffe BL hal_dsi_tx_ctrl_deinit +;;;2583 hal_dsi_rx_ctrl_stop(g_rx_ctrl_handle); +0001aa 69b0 LDR r0,[r6,#0x18] ; g_rx_ctrl_handle +0001ac f7fffffe BL hal_dsi_rx_ctrl_stop +;;;2584 hal_dsi_rx_ctrl_deinit(g_rx_ctrl_handle); +0001b0 69b0 LDR r0,[r6,#0x18] ; g_rx_ctrl_handle +0001b2 f7fffffe BL hal_dsi_rx_ctrl_deinit +;;;2585 +;;;2586 hal_swire_open(DISABLE); +0001b6 2000 MOVS r0,#0 +0001b8 f7fffffe BL hal_swire_open +;;;2587 hal_swire_deinit(); +0001bc f7fffffe BL hal_swire_deinit +;;;2588 hal_timer_stop(SWIRE_TIMER); +0001c0 2001 MOVS r0,#1 +0001c2 f7fffffe BL hal_timer_stop +;;;2589 hal_timer_deinit(SWIRE_TIMER); +0001c6 2001 MOVS r0,#1 +0001c8 f7fffffe BL hal_timer_deinit +;;;2590 +;;;2591 hal_system_set_vcc(false); +0001cc 2000 MOVS r0,#0 +0001ce f7fffffe BL hal_system_set_vcc +;;;2592 TAU_LOGD("disable video path\n"); +0001d2 2251 MOVS r2,#0x51 +0001d4 0152 LSLS r2,r2,#5 +0001d6 a10a ADR r1,|L3.512| +0001d8 a033 ADR r0,|L3.680| +0001da f7fffffe BL LOG_printf +;;;2593 g_need_enter_sleep_mode = false; +0001de 72f4 STRB r4,[r6,#0xb] +0001e0 e744 B |L3.108| +;;;2594 } +;;;2595 #endif +;;;2596 } +;;;2597 } +;;;2598 + ENDP + +0001e2 0000 DCW 0x0000 + |L3.484| +0001e4 31353a35 DCB "15:52:33",0 +0001e8 323a3333 +0001ec 00 +0001ed 00 DCB 0 +0001ee 00 DCB 0 +0001ef 00 DCB 0 + |L3.496| +0001f0 4a756e20 DCB "Jun 20 2023",0 +0001f4 32302032 +0001f8 30323300 + |L3.508| + DCD 0x00000997 + |L3.512| +000200 4e31304c DCB "N10Lite_NT37701",0 +000204 6974655f +000208 4e543337 +00020c 37303100 + |L3.528| +000210 5b25735d DCB "[%s] (%04d) Note10Lite CSOT667 [%s %s]",0 +000214 20282530 +000218 34642920 +00021c 4e6f7465 +000220 31304c69 +000224 74652043 +000228 534f5436 +00022c 3637205b +000230 25732025 +000234 735d00 +000237 00 DCB 0 + |L3.568| + DCD tp_sleep_count + |L3.572| + DCD tp_sleep_clk_count + |L3.576| + DCD ||.data|| + |L3.580| + DCD soft_timer3_cb + |L3.584| + DCD Flag_blacklight_EN + |L3.588| + DCD ||i.init_panel||+0xc8 + |L3.592| +000250 5b25735d DCB "[%s] (%04d) init code",0 +000254 20282530 +000258 34642920 +00025c 696e6974 +000260 20636f64 +000264 6500 +000266 00 DCB 0 +000267 00 DCB 0 + |L3.616| + DCD ap_reset_cb + |L3.620| +00026c 5b25735d DCB "[%s] (%04d) Phone off 28",0 +000270 20282530 +000274 34642920 +000278 50686f6e +00027c 65206f66 +000280 66203238 +000284 00 +000285 00 DCB 0 +000286 00 DCB 0 +000287 00 DCB 0 + |L3.648| +000288 5b25735d DCB "[%s] (%04d) Phone off 29",0 +00028c 20282530 +000290 34642920 +000294 50686f6e +000298 65206f66 +00029c 66203239 +0002a0 00 +0002a1 00 DCB 0 +0002a2 00 DCB 0 +0002a3 00 DCB 0 + |L3.676| + DCD tp_sleep_in + |L3.680| +0002a8 5b25735d DCB "[%s] (%04d) disable video path\n",0 +0002ac 20282530 +0002b0 34642920 +0002b4 64697361 +0002b8 626c6520 +0002bc 76696465 +0002c0 6f207061 +0002c4 74680a00 + + AREA ||i.ap_get_reg_53||, CODE, READONLY, ALIGN=2 + + ap_get_reg_53 PROC +;;;825 +;;;826 static bool ap_get_reg_53(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 68c8 LDR r0,[r1,#0xc] +;;;827 { +;;;828 if (dcs_packet->packet_param[0] ==0xE0) +;;;829 { +;;;830 #ifdef ADD_FINGERPRINT_FUNC +;;;831 fingerprint_flag =1; +000002 4b08 LDR r3,|L4.36| +000004 7802 LDRB r2,[r0,#0] ;828 +000006 2000 MOVS r0,#0 ;828 +;;;832 #endif +;;;833 hbm_mode = 1; +000008 4907 LDR r1,|L4.40| +00000a 2ae0 CMP r2,#0xe0 ;828 +00000c d004 BEQ |L4.24| +;;;834 enter_hbm_mode_cnt=0; +;;;835 // hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x53, 0XE0); +;;;836 // hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x53, 0X28); +;;;837 } +;;;838 else +;;;839 { +;;;840 #ifdef ADD_FINGERPRINT_FUNC +;;;841 fingerprint_flag =0; +00000e 7018 STRB r0,[r3,#0] +;;;842 #endif +;;;843 hbm_mode = 0; +000010 7288 STRB r0,[r1,#0xa] +;;;844 exit_hbm_mode_cnt=0; +000012 7148 STRB r0,[r1,#5] + |L4.20| +;;;845 +;;;846 // if (dcs_packet->packet_param[0] == 0x28) +;;;847 // hbm_mode_cnt = 10; +;;;848 // else +;;;849 // hbm_mode_cnt = 0; +;;;850 // hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x53, 0X20); +;;;851 } +;;;852 +;;;853 // TAU_LOGD("value_reg_53[0x%x], Len[%d] hbm_mode=%d", dcs_packet->packet_param[0],dcs_packet->param_length, hbm_mode); +;;;854 +;;;855 return true; +000014 2001 MOVS r0,#1 +;;;856 } +000016 4770 BX lr + |L4.24| +000018 2201 MOVS r2,#1 ;831 +00001a 701a STRB r2,[r3,#0] ;831 +00001c 728a STRB r2,[r1,#0xa] ;833 +00001e 7108 STRB r0,[r1,#4] ;834 +000020 e7f8 B |L4.20| +;;;857 + ENDP + +000022 0000 DCW 0x0000 + |L4.36| + DCD fingerprint_flag + |L4.40| + DCD ||.data|| + + AREA ||i.ap_get_reg_7A||, CODE, READONLY, ALIGN=1 + + ap_get_reg_7A PROC +;;;865 +;;;866 static bool ap_get_reg_7A(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b50e PUSH {r1-r3,lr} +;;;867 { +;;;868 uint8_t mode; +;;;869 uint32_t pk_length; +;;;870 +;;;871 pk_length = dcs_packet->param_length; +;;;872 // TAU_LOGD("value_reg_7A[0x%x], Len[%d]", dcs_packet->packet_param[0], pk_length); +;;;873 +;;;874 if (pk_length == 1) +000002 6888 LDR r0,[r1,#8] +000004 2801 CMP r0,#1 +000006 d123 BNE |L5.80| +;;;875 { +;;;876 mode = dcs_packet->packet_param[0]; +000008 68c8 LDR r0,[r1,#0xc] +00000a 7800 LDRB r0,[r0,#0] +;;;877 if (mode == 0x21) +00000c 2821 CMP r0,#0x21 +00000e d002 BEQ |L5.22| +;;;878 { +;;;879 //HBM Mode2 / FPS Enable +;;;880 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 4, 0x87,0x1F,0xF8,0x05); +;;;881 } +;;;882 else if (mode == 0x23) +000010 2823 CMP r0,#0x23 +000012 d00d BEQ |L5.48| +000014 e01c B |L5.80| + |L5.22| +000016 2205 MOVS r2,#5 ;880 +000018 21f8 MOVS r1,#0xf8 ;880 +00001a 201f MOVS r0,#0x1f ;880 +00001c 9202 STR r2,[sp,#8] ;880 +00001e 9101 STR r1,[sp,#4] ;880 +000020 9000 STR r0,[sp,#0] ;880 +000022 2387 MOVS r3,#0x87 ;880 +000024 2204 MOVS r2,#4 ;880 +000026 2100 MOVS r1,#0 ;880 +000028 2039 MOVS r0,#0x39 ;880 +00002a f7fffffe BL hal_dsi_tx_ctrl_write_cmd +00002e e00f B |L5.80| + |L5.48| +;;;883 { +;;;884 //HBM Mode2 / FPS Disable +;;;885 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x6F,0x02); +000030 2002 MOVS r0,#2 +000032 4602 MOV r2,r0 +000034 9000 STR r0,[sp,#0] +000036 236f MOVS r3,#0x6f +000038 2100 MOVS r1,#0 +00003a 2039 MOVS r0,#0x39 +00003c f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;886 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x87,0x04); +000040 2004 MOVS r0,#4 +000042 9000 STR r0,[sp,#0] +000044 2387 MOVS r3,#0x87 +000046 2202 MOVS r2,#2 +000048 2100 MOVS r1,#0 +00004a 2039 MOVS r0,#0x39 +00004c f7fffffe BL hal_dsi_tx_ctrl_write_cmd + |L5.80| +;;;887 } +;;;888 //FPR ON +;;;889 // 0x39, 0, 4, 0x87,0x13,0xFF,0x05, +;;;890 // //FPR OFF +;;;891 // 0x39, 0, 2, 0x6F,0x02, +;;;892 // 0x39, 0, 2, 0x87,0x04, +;;;893 } +;;;894 return true; +000050 2001 MOVS r0,#1 +;;;895 } +000052 bd0e POP {r1-r3,pc} +;;;896 + ENDP + + + AREA ||i.ap_get_reg_df||, CODE, READONLY, ALIGN=2 + + ap_get_reg_df PROC +;;;545 +;;;546 static bool ap_get_reg_df(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b570 PUSH {r4-r6,lr} +;;;547 { +000002 b08e SUB sp,sp,#0x38 +;;;548 ccm_coef_t ccm; +;;;549 ccm.coef_c00 = 255; +;;;550 ccm.coef_c01 = 0; +000004 2000 MOVS r0,#0 +000006 24ff MOVS r4,#0xff ;549 +;;;551 ccm.coef_c02 = 0; +000008 9006 STR r0,[sp,#0x18] +;;;552 ccm.coef_c10 = 0; +00000a 9007 STR r0,[sp,#0x1c] +;;;553 ccm.coef_c11 = 255; +00000c 9405 STR r4,[sp,#0x14] +;;;554 ccm.coef_c12 = 0; +00000e 9008 STR r0,[sp,#0x20] +;;;555 ccm.coef_c20 = 0; +000010 900a STR r0,[sp,#0x28] +;;;556 ccm.coef_c21 = 0; +000012 900b STR r0,[sp,#0x2c] +;;;557 ccm.coef_c22 = 255; +000014 9409 STR r4,[sp,#0x24] +;;;558 +;;;559 #ifdef ADD_PANEL_DISPLAY_MODE +;;;560 value_reg_df = (dcs_packet->packet_param[35] << 8) + dcs_packet->packet_param[33]; +000016 940d STR r4,[sp,#0x34] +000018 900c STR r0,[sp,#0x30] +00001a 68c9 LDR r1,[r1,#0xc] +00001c 4e28 LDR r6,|L6.192| +00001e 4608 MOV r0,r1 +000020 3020 ADDS r0,r0,#0x20 +000022 78c2 LDRB r2,[r0,#3] +000024 7843 LDRB r3,[r0,#1] +000026 0212 LSLS r2,r2,#8 +000028 18d2 ADDS r2,r2,r3 +;;;561 panel_mode = dcs_packet->packet_param[0]; +00002a 6232 STR r2,[r6,#0x20] ; value_reg_df +00002c 780d LDRB r5,[r1,#0] +00002e 7335 STRB r5,[r6,#0xc] +;;;562 panel_r =dcs_packet->packet_param[49]; +000030 7c43 LDRB r3,[r0,#0x11] +000032 8273 STRH r3,[r6,#0x12] +;;;563 panel_g =dcs_packet->packet_param[51]; +000034 7cc2 LDRB r2,[r0,#0x13] +000036 82b2 STRH r2,[r6,#0x14] +;;;564 panel_b =dcs_packet->packet_param[53]; +000038 7d40 LDRB r0,[r0,#0x15] +00003a 82f0 STRH r0,[r6,#0x16] +00003c a909 ADD r1,sp,#0x24 ;548 +;;;565 // TAU_LOGD("value_reg_df[%4x],panel_mode[%4x],panel_r[%4x],panel_g[%4x],panel_b[%4x]", value_reg_df,panel_mode,panel_r,panel_g,panel_b); +;;;566 +;;;567 if (panel_mode ==00) +00003e 2d00 CMP r5,#0 +000040 d002 BEQ |L6.72| +;;;568 { +;;;569 //护眼模式 +;;;570 #ifdef USE_FOR_A71_BLUE_MODE +;;;571 //panel_r =256-RATIO_VALUE*(0xFF-panel_r); +;;;572 //panel_g =256-RATIO_VALUE*(0xFF-panel_g); +;;;573 //panel_b =256-RATIO_VALUE*(0xFF-panel_b); +;;;574 // hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle,panel_r,panel_g,panel_b); +;;;575 ccm.coef_c00 = panel_r; +;;;576 ccm.coef_c11 = panel_g; +;;;577 ccm.coef_c22 = panel_b; +;;;578 hal_dsi_tx_ctrl_set_ccm(ccm); +;;;579 +;;;580 #else +;;;581 value_reg_df =value_reg_df&0xFF; +;;;582 switch(value_reg_df) +;;;583 { +;;;584 case 0xC1: +;;;585 case 0xC3: +;;;586 value_blue = BLUE_MIN; +;;;587 break; +;;;588 +;;;589 case 0xCF: +;;;590 case 0xD0: +;;;591 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)/BLUE_STEP; +;;;592 break; +;;;593 +;;;594 case 0xD8: +;;;595 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*2/BLUE_STEP; +;;;596 break; +;;;597 +;;;598 case 0xDE: +;;;599 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*3/BLUE_STEP; +;;;600 break; +;;;601 +;;;602 case 0xE4: +;;;603 case 0xE5: +;;;604 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*4/BLUE_STEP; +;;;605 break; +;;;606 +;;;607 case 0xE9: +;;;608 case 0xEA: +;;;609 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*5/BLUE_STEP; +;;;610 break; +;;;611 +;;;612 case 0xED: +;;;613 case 0xEE: +;;;614 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*6/BLUE_STEP; +;;;615 break; +;;;616 +;;;617 case 0xF1: +;;;618 case 0xF2: +;;;619 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*7/BLUE_STEP; +;;;620 break; +;;;621 +;;;622 case 0xF4: +;;;623 case 0xF5: +;;;624 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*8/BLUE_STEP; +;;;625 break; +;;;626 +;;;627 case 0xF7: +;;;628 case 0xF8: +;;;629 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*9/BLUE_STEP; +;;;630 break; +;;;631 +;;;632 case 0xFA: +;;;633 value_blue = BLUE_MAX; +;;;634 break; +;;;635 +;;;636 default: +;;;637 case 0xFF: +;;;638 value_blue = 0; +;;;639 break; +;;;640 +;;;641 } +;;;642 hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle,256,256,256); +;;;643 hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); +;;;644 +;;;645 #endif +;;;646 +;;;647 } +;;;648 else +;;;649 { +;;;650 #ifndef USE_FOR_A71_BLUE_MODE +;;;651 value_blue =0; +;;;652 hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); //护眼模式关s8+/s9+ +;;;653 #endif +;;;654 +;;;655 //做一下运算,让效果更加明显。这个估计要根据客户要求细调 +;;;656 if(panel_r == 0xFF && panel_g == 0xFC && panel_b == 0xF6) // +000042 2bff CMP r3,#0xff +000044 d00a BEQ |L6.92| +000046 e00d B |L6.100| + |L6.72| +000048 9209 STR r2,[sp,#0x24] ;578 +00004a 900d STR r0,[sp,#0x34] ;578 +00004c 9305 STR r3,[sp,#0x14] ;578 +00004e 2214 MOVS r2,#0x14 ;578 +000050 4668 MOV r0,sp ;578 +000052 f7fffffe BL __aeabi_memcpy4 +000056 ac05 ADD r4,sp,#0x14 ;578 +000058 cc0f LDM r4!,{r0-r3} ;578 +00005a e01d B |L6.152| + |L6.92| +00005c 2afc CMP r2,#0xfc +00005e d101 BNE |L6.100| +000060 28f6 CMP r0,#0xf6 +000062 d01e BEQ |L6.162| + |L6.100| +;;;657 { +;;;658 // CCM1 +;;;659 // ccm.coef_c00 = 250; +;;;660 // ccm.coef_c11 = 240; +;;;661 // ccm.coef_c22 = 220; +;;;662 // CCM2B +;;;663 ccm.coef_c00 = 225; +;;;664 ccm.coef_c11 = 220; +;;;665 ccm.coef_c22 = 205; +;;;666 // CCM2A +;;;667 // ccm.coef_c00 = 172; +;;;668 // ccm.coef_c11 = 180; +;;;669 // ccm.coef_c22 = 180; +;;;670 // CCM3 +;;;671 // ccm.coef_c00 = 230; +;;;672 // ccm.coef_c11 = 230; +;;;673 // ccm.coef_c22 = 200; +;;;674 hal_dsi_tx_ctrl_set_ccm(ccm); +;;;675 // TAU_LOGD("value_reg_df[%2x]",ccm.coef_c00); +;;;676 } +;;;677 else +;;;678 { +;;;679 panel_r =256-RATIO_VALUE*(0xFF-panel_r); +000064 25ff MOVS r5,#0xff +000066 3501 ADDS r5,#1 +000068 1ae3 SUBS r3,r4,r3 +00006a 005b LSLS r3,r3,#1 +;;;680 panel_g =256-RATIO_VALUE*(0xFF-panel_g); +00006c 1aa2 SUBS r2,r4,r2 +00006e 1aeb SUBS r3,r5,r3 ;679 +000070 0052 LSLS r2,r2,#1 +;;;681 panel_b =256-RATIO_VALUE*(0xFF-panel_b); +000072 1a20 SUBS r0,r4,r0 +000074 b29b UXTH r3,r3 ;679 +000076 1aaa SUBS r2,r5,r2 ;680 +000078 0040 LSLS r0,r0,#1 +00007a 8273 STRH r3,[r6,#0x12] ;679 +00007c b292 UXTH r2,r2 ;680 +00007e 1a28 SUBS r0,r5,r0 +000080 82b2 STRH r2,[r6,#0x14] ;680 +000082 b280 UXTH r0,r0 +000084 82f0 STRH r0,[r6,#0x16] +;;;682 // hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle,panel_r,panel_g,panel_b); +;;;683 +;;;684 ccm.coef_c00 = panel_r; +;;;685 ccm.coef_c11 = panel_g; +;;;686 ccm.coef_c22 = panel_b; +;;;687 hal_dsi_tx_ctrl_set_ccm(ccm); +000086 9209 STR r2,[sp,#0x24] +000088 900d STR r0,[sp,#0x34] +00008a 9305 STR r3,[sp,#0x14] +00008c 2214 MOVS r2,#0x14 +00008e 4668 MOV r0,sp +000090 f7fffffe BL __aeabi_memcpy4 +000094 ad05 ADD r5,sp,#0x14 +000096 cd0f LDM r5!,{r0-r3} + |L6.152| +000098 f7fffffe BL hal_dsi_tx_ctrl_set_ccm +;;;688 } +;;;689 } +;;;690 +;;;691 #ifndef USE_FOR_A71_BLUE_MODE +;;;692 if (blue_flag==0) +;;;693 { +;;;694 blue_flag =1; +;;;695 delayMs(20); +;;;696 hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); +;;;697 } +;;;698 #endif +;;;699 +;;;700 #else +;;;701 value_reg_df = (dcs_packet->packet_param[35] << 8) + dcs_packet->packet_param[33]; +;;;702 +;;;703 value_reg_df =value_reg_df&0xFF; +;;;704 switch(value_reg_df) +;;;705 { +;;;706 case 0xC1: +;;;707 case 0xC3: +;;;708 value_blue = BLUE_MIN; +;;;709 break; +;;;710 +;;;711 case 0xCF: +;;;712 case 0xD0: +;;;713 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)/BLUE_STEP; +;;;714 break; +;;;715 +;;;716 case 0xD8: +;;;717 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*2/BLUE_STEP; +;;;718 break; +;;;719 +;;;720 case 0xDE: +;;;721 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*3/BLUE_STEP; +;;;722 break; +;;;723 +;;;724 case 0xE4: +;;;725 case 0xE5: +;;;726 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*4/BLUE_STEP; +;;;727 break; +;;;728 +;;;729 case 0xE9: +;;;730 case 0xEA: +;;;731 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*5/BLUE_STEP; +;;;732 break; +;;;733 +;;;734 case 0xED: +;;;735 case 0xEE: +;;;736 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*6/BLUE_STEP; +;;;737 break; +;;;738 +;;;739 case 0xF1: +;;;740 case 0xF2: +;;;741 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*7/BLUE_STEP; +;;;742 break; +;;;743 +;;;744 case 0xF4: +;;;745 case 0xF5: +;;;746 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*8/BLUE_STEP; +;;;747 break; +;;;748 +;;;749 case 0xF7: +;;;750 case 0xF8: +;;;751 value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*9/BLUE_STEP; +;;;752 break; +;;;753 +;;;754 case 0xFA: +;;;755 value_blue = BLUE_MAX; +;;;756 break; +;;;757 +;;;758 default: +;;;759 case 0xFF: +;;;760 value_blue = 0; +;;;761 break; +;;;762 +;;;763 } +;;;764 +;;;765 //TAU_LOGD("df[%4x]", value_reg_df); +;;;766 hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); +;;;767 if (blue_flag==0) +;;;768 { +;;;769 blue_flag =1; +;;;770 delayMs(20); +;;;771 hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); +;;;772 } +;;;773 #endif +;;;774 +;;;775 return true; +00009c 2001 MOVS r0,#1 +;;;776 } +00009e b00e ADD sp,sp,#0x38 +0000a0 bd70 POP {r4-r6,pc} + |L6.162| +0000a2 22dc MOVS r2,#0xdc ;664 +0000a4 9209 STR r2,[sp,#0x24] ;665 +0000a6 22cd MOVS r2,#0xcd ;665 +0000a8 24e1 MOVS r4,#0xe1 ;663 +0000aa 920d STR r2,[sp,#0x34] ;674 +0000ac 9405 STR r4,[sp,#0x14] ;665 +0000ae 2214 MOVS r2,#0x14 ;674 +0000b0 4668 MOV r0,sp ;674 +0000b2 f7fffffe BL __aeabi_memcpy4 +0000b6 4620 MOV r0,r4 ;674 +0000b8 ac06 ADD r4,sp,#0x18 ;674 +0000ba cc0e LDM r4!,{r1-r3} ;674 +0000bc e7ec B |L6.152| +;;;777 + ENDP + +0000be 0000 DCW 0x0000 + |L6.192| + DCD ||.data|| + + AREA ||i.ap_reset_cb||, CODE, READONLY, ALIGN=2 + + ap_reset_cb PROC +;;;153 static bool g_need_enter_sleep_mode = false; +;;;154 static void ap_reset_cb(void *data) +000000 229f MOVS r2,#0x9f +;;;155 { +;;;156 /* 切换电源 */ +;;;157 // hal_gpio_set_output_data_ex(POWER_IO_B, IO_LVL_HIGH, POWER_IO_A, IO_LVL_LOW); +;;;158 /* 打开VCC供电 */ +;;;159 TAU_LOGD("ap reset cb!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); +000002 a109 ADR r1,|L7.40| +000004 480c LDR r0,|L7.56| +000006 f7fffffe BL LOG_printf +;;;160 hal_system_set_pvd(true); +00000a 2001 MOVS r0,#1 +00000c f7fffffe BL hal_system_set_pvd +;;;161 hal_system_set_vcc(true); +000010 2001 MOVS r0,#1 +000012 f7fffffe BL hal_system_set_vcc +000016 f3bf8f4f DSB +00001a 4909 LDR r1,|L7.64| +00001c 4807 LDR r0,|L7.60| +00001e 60c8 STR r0,[r1,#0xc] +000020 f3bf8f4f DSB + |L7.36| +000024 bf00 NOP +000026 e7fd B |L7.36| +;;;162 NVIC_SystemReset(); +;;;163 } +;;;164 #endif + ENDP + + |L7.40| +000028 4e31304c DCB "N10Lite_NT37701",0 +00002c 6974655f +000030 4e543337 +000034 37303100 + |L7.56| + DCD ||.conststring|| + |L7.60| + DCD 0x05fa0004 + |L7.64| + DCD 0xe000ed00 + + AREA ||i.ap_set_backlight_51||, CODE, READONLY, ALIGN=2 + + ap_set_backlight_51 PROC +;;;487 +;;;488 static bool ap_set_backlight_51(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b510 PUSH {r4,lr} +;;;489 { +;;;490 uint16_t rd_51_val; // 0x0003~0x03FF(1020) [0x65处有跳变,中间还有一段跳变] ==> 0x007F~0x06FF(1664) //0x007F~0x07FF(1920) +;;;491 +;;;492 rd_51_val = dcs_packet->packet_param[0]; +000002 68c8 LDR r0,[r1,#0xc] +;;;493 rd_51_val <<=8; +;;;494 rd_51_val |= dcs_packet->packet_param[1]; +;;;495 +;;;496 if (hbm_mode ==0) +000004 4c0e LDR r4,|L8.64| +000006 7801 LDRB r1,[r0,#0] ;492 +000008 7840 LDRB r0,[r0,#1] ;494 +00000a 0209 LSLS r1,r1,#8 ;493 +00000c 4308 ORRS r0,r0,r1 ;494 +00000e 7aa1 LDRB r1,[r4,#0xa] ; hbm_mode +000010 2900 CMP r1,#0 +000012 d111 BNE |L8.56| +;;;497 { +;;;498 rd_51_val2 = (rd_51_val-0x03)*1664/1020+0x7F; +000014 210d MOVS r1,#0xd +000016 01c9 LSLS r1,r1,#7 +000018 1ec0 SUBS r0,r0,#3 +00001a 4348 MULS r0,r1,r0 +00001c 21ff MOVS r1,#0xff +00001e 0089 LSLS r1,r1,#2 +000020 f7fffffe BL __aeabi_idivmod +000024 307f ADDS r0,r0,#0x7f +000026 b280 UXTH r0,r0 +000028 8220 STRH r0,[r4,#0x10] +00002a 38ff SUBS r0,r0,#0xff +00002c 38b5 SUBS r0,r0,#0xb5 +;;;499 if (rd_51_val2 < 0x220 && rd_51_val2 > 0x1B3) +00002e 286c CMP r0,#0x6c +000030 d202 BCS |L8.56| +;;;500 { +;;;501 rd_51_val2 = 0x1B3; +000032 20ff MOVS r0,#0xff +000034 30b4 ADDS r0,r0,#0xb4 +000036 8220 STRH r0,[r4,#0x10] + |L8.56| +;;;502 } +;;;503 } +;;;504 BL_ADJ_flag = true; +000038 2001 MOVS r0,#1 +00003a 71a0 STRB r0,[r4,#6] +;;;505 +;;;506 return true; +;;;507 } +00003c bd10 POP {r4,pc} +;;;508 + ENDP + +00003e 0000 DCW 0x0000 + |L8.64| + DCD ||.data|| + + AREA ||i.ap_set_display_off||, CODE, READONLY, ALIGN=2 + + ap_set_display_off PROC +;;;326 +;;;327 static bool ap_set_display_off(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b510 PUSH {r4,lr} +;;;328 { +;;;329 // TAU_LOGD("disp off"); +;;;330 //// hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_LOW); +;;;331 +;;;332 // Gpio_swire_output(0, 0); +;;;333 // hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x28); +;;;334 // send_29_flag = 0; +;;;335 // hal_swire_open(DISABLE); +;;;336 +;;;337 +;;;338 hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x28); +000002 2328 MOVS r3,#0x28 +000004 2201 MOVS r2,#1 +000006 2100 MOVS r1,#0 +000008 2005 MOVS r0,#5 +00000a f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;339 TAU_LOGD("disp off"); +00000e 22ff MOVS r2,#0xff +000010 3254 ADDS r2,r2,#0x54 +000012 a103 ADR r1,|L9.32| +000014 a006 ADR r0,|L9.48| +000016 f7fffffe BL LOG_printf +;;;340 return true; +00001a 2001 MOVS r0,#1 +;;;341 } +00001c bd10 POP {r4,pc} +;;;342 + ENDP + +00001e 0000 DCW 0x0000 + |L9.32| +000020 4e31304c DCB "N10Lite_NT37701",0 +000024 6974655f +000028 4e543337 +00002c 37303100 + |L9.48| +000030 5b25735d DCB "[%s] (%04d) disp off",0 +000034 20282530 +000038 34642920 +00003c 64697370 +000040 206f6666 +000044 00 +000045 00 DCB 0 +000046 00 DCB 0 +000047 00 DCB 0 + + AREA ||i.ap_set_display_on||, CODE, READONLY, ALIGN=2 + + ap_set_display_on PROC +;;;316 +;;;317 static bool ap_set_display_on(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b510 PUSH {r4,lr} +;;;318 { +;;;319 TAU_LOGD("disp on"); +000002 22ff MOVS r2,#0xff +000004 3240 ADDS r2,r2,#0x40 +000006 a103 ADR r1,|L10.20| +000008 a006 ADR r0,|L10.36| +00000a f7fffffe BL LOG_printf +;;;320 // if(send_29_flag) +;;;321 // hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x29); +;;;322 // send_29_flag++; +;;;323 +;;;324 return true; +00000e 2001 MOVS r0,#1 +;;;325 } +000010 bd10 POP {r4,pc} +;;;326 + ENDP + +000012 0000 DCW 0x0000 + |L10.20| +000014 4e31304c DCB "N10Lite_NT37701",0 +000018 6974655f +00001c 4e543337 +000020 37303100 + |L10.36| +000024 5b25735d DCB "[%s] (%04d) disp on",0 +000028 20282530 +00002c 34642920 +000030 64697370 +000034 206f6e00 + + AREA ||i.ap_set_enter_sleep_mode||, CODE, READONLY, ALIGN=2 + + ap_set_enter_sleep_mode PROC +;;;343 +;;;344 static bool ap_set_enter_sleep_mode(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b510 PUSH {r4,lr} +;;;345 { +;;;346 hal_dsi_rx_ctrl_set_sw_tear_mode(g_rx_ctrl_handle); +000002 4c10 LDR r4,|L11.68| +000004 69a0 LDR r0,[r4,#0x18] ; g_rx_ctrl_handle +000006 f7fffffe BL hal_dsi_rx_ctrl_set_sw_tear_mode +;;;347 Gpio_swire_output(0, 0); +00000a 2100 MOVS r1,#0 +00000c 4608 MOV r0,r1 +00000e f7fffffe BL Gpio_swire_output +;;;348 delayMs(50); +000012 2032 MOVS r0,#0x32 +000014 f7fffffe BL delayMs +;;;349 hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x10); +000018 2310 MOVS r3,#0x10 +00001a 2201 MOVS r2,#1 +00001c 2100 MOVS r1,#0 +00001e 2005 MOVS r0,#5 +000020 f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;350 hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_LOW); +000024 2100 MOVS r1,#0 +000026 2013 MOVS r0,#0x13 +000028 f7fffffe BL hal_gpio_set_output_data +;;;351 TAU_LOGD("enter sleep mode"); +00002c 22ff MOVS r2,#0xff +00002e 3260 ADDS r2,r2,#0x60 +000030 a105 ADR r1,|L11.72| +000032 a009 ADR r0,|L11.88| +000034 f7fffffe BL LOG_printf +;;;352 +;;;353 #if ENABLE_TP_WAKE_UP +;;;354 g_need_enter_sleep_mode = true; +000038 2001 MOVS r0,#1 +00003a 72e0 STRB r0,[r4,#0xb] +;;;355 #endif +;;;356 g_exit_sleep_mode = false; +00003c 2000 MOVS r0,#0 +00003e 7060 STRB r0,[r4,#1] +;;;357 +;;;358 return true; +000040 2001 MOVS r0,#1 +;;;359 } +000042 bd10 POP {r4,pc} +;;;360 + ENDP + + |L11.68| + DCD ||.data|| + |L11.72| +000048 4e31304c DCB "N10Lite_NT37701",0 +00004c 6974655f +000050 4e543337 +000054 37303100 + |L11.88| +000058 5b25735d DCB "[%s] (%04d) enter sleep mode",0 +00005c 20282530 +000060 34642920 +000064 656e7465 +000068 7220736c +00006c 65657020 +000070 6d6f6465 +000074 00 +000075 00 DCB 0 +000076 00 DCB 0 +000077 00 DCB 0 + + AREA ||i.ap_set_exit_sleep_mode||, CODE, READONLY, ALIGN=2 + + ap_set_exit_sleep_mode PROC +;;;360 +;;;361 static bool ap_set_exit_sleep_mode(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b510 PUSH {r4,lr} +;;;362 { +;;;363 TAU_LOGD("exit sleep mode"); +000002 22ff MOVS r2,#0xff +000004 326c ADDS r2,r2,#0x6c +000006 a104 ADR r1,|L12.24| +000008 a007 ADR r0,|L12.40| +00000a f7fffffe BL LOG_printf +;;;364 g_exit_sleep_mode = true; +00000e 490d LDR r1,|L12.68| +000010 2001 MOVS r0,#1 +000012 7048 STRB r0,[r1,#1] +;;;365 +;;;366 /* AVDD 上电, 用于解决息屏开屏PPS不更新问题 */ +;;;367 // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); +;;;368 return true; +;;;369 } +000014 bd10 POP {r4,pc} +;;;370 + ENDP + +000016 0000 DCW 0x0000 + |L12.24| +000018 4e31304c DCB "N10Lite_NT37701",0 +00001c 6974655f +000020 4e543337 +000024 37303100 + |L12.40| +000028 5b25735d DCB "[%s] (%04d) exit sleep mode",0 +00002c 20282530 +000030 34642920 +000034 65786974 +000038 20736c65 +00003c 6570206d +000040 6f646500 + |L12.68| + DCD ||.data|| + + AREA ||i.init_mipi_tx||, CODE, READONLY, ALIGN=2 + + init_mipi_tx PROC +;;;2319 +;;;2320 static void init_mipi_tx(void) +000000 b5e0 PUSH {r5-r7,lr} +;;;2321 { +;;;2322 if (g_tx_ctrl_handle == NULL) +000002 4f1b LDR r7,|L13.112| +000004 69f8 LDR r0,[r7,#0x1c] ; g_tx_ctrl_handle +000006 2800 CMP r0,#0 +000008 d102 BNE |L13.16| +;;;2323 { +;;;2324 g_tx_ctrl_handle = hal_dsi_tx_ctrl_create_handle(); +00000a f7fffffe BL hal_dsi_tx_ctrl_create_handle +00000e 61f8 STR r0,[r7,#0x1c] ; g_tx_ctrl_handle + |L13.16| +;;;2325 } +;;;2326 g_tx_ctrl_handle->channel_id = OUTPUT_VC; +000010 2300 MOVS r3,#0 +000012 7083 STRB r3,[r0,#2] +;;;2327 g_tx_ctrl_handle->lane_num = OUTPUT_LANE_NUMBER; +000014 2104 MOVS r1,#4 +000016 7041 STRB r1,[r0,#1] +;;;2328 g_tx_ctrl_handle->vid_mode = OUTPUT_VIDEO_MODEL; +000018 2501 MOVS r5,#1 +00001a 70c5 STRB r5,[r0,#3] +;;;2329 g_tx_ctrl_handle->cmd_tx_type = _CMD_TYPE; +00001c 7105 STRB r5,[r0,#4] +;;;2330 g_tx_ctrl_handle->dpi_vsa = OUTPUT_VSA; +;;;2331 g_tx_ctrl_handle->dpi_vbp = OUTPUT_VBP; +00001e 2608 MOVS r6,#8 +000020 220c MOVS r2,#0xc ;2330 +;;;2332 g_tx_ctrl_handle->dpi_vfp = OUTPUT_VFP; +;;;2333 g_tx_ctrl_handle->dpi_hsa = OUTPUT_HSA; +000022 60c6 STR r6,[r0,#0xc] +;;;2334 g_tx_ctrl_handle->dpi_hbp = OUTPUT_HBP; +000024 6082 STR r2,[r0,#8] +;;;2335 g_tx_ctrl_handle->dpi_hfp = OUTPUT_HFP; +000026 6146 STR r6,[r0,#0x14] +000028 6182 STR r2,[r0,#0x18] +00002a 2138 MOVS r1,#0x38 ;2332 +00002c 6101 STR r1,[r0,#0x10] +;;;2336 // g_tx_ctrl_handle->lane_rate_coef = _LANE_RATE_COEF; +;;;2337 g_tx_ctrl_handle->base_info.src_w = INPUT_WIDTH; +00002e 2287 MOVS r2,#0x87 +000030 00d2 LSLS r2,r2,#3 +000032 2178 MOVS r1,#0x78 ;2335 +;;;2338 g_tx_ctrl_handle->base_info.src_h = INPUT_HEIGHT; +000034 6202 STR r2,[r0,#0x20] +000036 61c1 STR r1,[r0,#0x1c] +000038 214b MOVS r1,#0x4b +00003a 0149 LSLS r1,r1,#5 +;;;2339 g_tx_ctrl_handle->base_info.dst_w = OUTPUT_WIDTH; +;;;2340 g_tx_ctrl_handle->base_info.dst_h = OUTPUT_HEIGHT; +00003c 6241 STR r1,[r0,#0x24] +;;;2341 g_tx_ctrl_handle->base_info.src_frate = INPUT_FRAME_RATE; +00003e 6282 STR r2,[r0,#0x28] +000040 62c1 STR r1,[r0,#0x2c] +000042 4601 MOV r1,r0 +000044 3120 ADDS r1,r1,#0x20 +000046 740b STRB r3,[r1,#0x10] +;;;2342 g_tx_ctrl_handle->base_info.src_mode = INPUT_DATA_MODE; +000048 744d STRB r5,[r1,#0x11] +;;;2343 // g_tx_ctrl_handle->tx_line_delay = 80; +;;;2344 // g_tx_ctrl_handle->tx_frame_rate = TX_FRAME_RATE; +;;;2345 // g_tx_ctrl_handle->tx_clkawayshs = false ; +;;;2346 // g_tx_ctrl_handle->lp_exit_lpdt = true; +;;;2347 hal_dsi_tx_ctrl_init(g_tx_ctrl_handle); +00004a f7fffffe BL hal_dsi_tx_ctrl_init +;;;2348 /* AP 没有发送数据时默认的显示颜色, 量产为0 0 0(黑色), 配置其他颜色仅为debug使用 */ +;;;2349 hal_dsi_tx_ctrl_set_overwrite_rgb(0x00, 0x00, 0x00); +00004e 2200 MOVS r2,#0 +000050 4611 MOV r1,r2 +000052 4610 MOV r0,r2 +000054 f7fffffe BL hal_dsi_tx_ctrl_set_overwrite_rgb +;;;2350 +;;;2351 // tx_display_on(); +;;;2352 #if CUS_SCLD_FILTER +;;;2353 hal_dsi_tx_ctrl_set_cus_pq_filter(g_tx_ctrl_handle, tx_filter_h_3, tx_filter_v_3); +;;;2354 #endif +;;;2355 +;;;2356 // hal_dsi_tx_crop_t *crop; +;;;2357 // crop->crop_top = 9; +;;;2358 // crop->crop_bottom = 0; +;;;2359 // crop->crop_left = 0; +;;;2360 // crop->crop_right = 6; +;;;2361 +;;;2362 hal_dsi_tx_crop_t *crop; +;;;2363 crop->crop_top = 8; +000058 8026 STRH r6,[r4,#0] +;;;2364 crop->crop_bottom = 1; +00005a 8065 STRH r5,[r4,#2] +;;;2365 crop->crop_left = 3; +00005c 2003 MOVS r0,#3 +00005e 80a0 STRH r0,[r4,#4] +;;;2366 crop->crop_right = 5; +000060 2005 MOVS r0,#5 +000062 80e0 STRH r0,[r4,#6] +;;;2367 hal_dsi_tx_crop_pic(g_tx_ctrl_handle, crop); +000064 4621 MOV r1,r4 +000066 69f8 LDR r0,[r7,#0x1c] ; g_tx_ctrl_handle +000068 f7fffffe BL hal_dsi_tx_crop_pic +;;;2368 +;;;2369 } +00006c bde0 POP {r5-r7,pc} +;;;2370 + ENDP + +00006e 0000 DCW 0x0000 + |L13.112| + DCD ||.data|| + + AREA ||i.init_panel||, CODE, READONLY, ALIGN=2 + + init_panel PROC +;;;2212 +;;;2213 static void init_panel(void) +000000 b5fe PUSH {r1-r7,lr} +000002 2001 MOVS r0,#1 +000004 f7fffffe BL hal_dsi_tx_ctrl_panel_reset_pin +000008 200a MOVS r0,#0xa +00000a f7fffffe BL delayMs +00000e 2000 MOVS r0,#0 +000010 f7fffffe BL hal_dsi_tx_ctrl_panel_reset_pin +000014 200a MOVS r0,#0xa +000016 f7fffffe BL delayMs +00001a 2001 MOVS r0,#1 +00001c f7fffffe BL hal_dsi_tx_ctrl_panel_reset_pin +000020 200a MOVS r0,#0xa +000022 f7fffffe BL delayMs +;;;2214 { +;;;2215 /* reset panel*/ +;;;2216 tx_panel_reset(); +;;;2217 +;;;2218 // hal_gpio_init_output(IO_PAD_TD_LEDPWM, IO_LVL_HIGH); +;;;2219 +;;;2220 hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); //LED_ON +000026 2101 MOVS r1,#1 +000028 2013 MOVS r0,#0x13 +00002a f7fffffe BL hal_gpio_set_output_data +;;;2221 +;;;2222 /* enter send initial code mode*/ +;;;2223 hal_dsi_tx_ctrl_enter_init_panel_mode(); +00002e f7fffffe BL hal_dsi_tx_ctrl_enter_init_panel_mode +;;;2224 +;;;2225 #if AMOLED_NT37701_CSOT667 +;;;2226 #ifdef PANEL_INIT_CODE_ARRAY +;;;2227 send_panel_init_code(sizeof(panel_init_code), (uint8_t *)panel_init_code); +000032 4f22 LDR r7,|L14.188| +000034 4d22 LDR r5,|L14.192| +000036 2400 MOVS r4,#0 + |L14.56| +000038 192b ADDS r3,r5,r4 +00003a 789e LDRB r6,[r3,#2] +00003c 7859 LDRB r1,[r3,#1] +00003e 5d28 LDRB r0,[r5,r4] +000040 4632 MOV r2,r6 +000042 1cdb ADDS r3,r3,#3 +000044 f7fffffe BL hal_dsi_tx_ctrl_write_array_cmd +000048 19a4 ADDS r4,r4,r6 +00004a 2032 MOVS r0,#0x32 +00004c 1ce4 ADDS r4,r4,#3 +00004e f7fffffe BL delayUs +000052 42bc CMP r4,r7 +000054 d3f0 BCC |L14.56| +000056 4a1b LDR r2,|L14.196| +000058 a11b ADR r1,|L14.200| +00005a a01f ADR r0,|L14.216| +00005c f7fffffe BL LOG_printf +000060 4825 LDR r0,|L14.248| +000062 6980 LDR r0,[r0,#0x18] ; g_rx_ctrl_handle +000064 f7fffffe BL hal_dsi_rx_ctrl_set_sw_tear_mode +000068 2002 MOVS r0,#2 +00006a f7fffffe BL hal_timer_init +00006e 2300 MOVS r3,#0 +000070 4a22 LDR r2,|L14.252| +000072 2101 MOVS r1,#1 +000074 2002 MOVS r0,#2 +000076 f7fffffe BL hal_timer_start +;;;2228 #endif +;;;2229 #endif +;;;2230 +;;;2231 soft_te_timer_init(); +;;;2232 hal_dsi_tx_ctrl_write_cmd(0x39, 0, 3, 0x51, 0x00, 0x7F); +00007a 217f MOVS r1,#0x7f +00007c 2000 MOVS r0,#0 +00007e 9101 STR r1,[sp,#4] +000080 9000 STR r0,[sp,#0] +000082 4601 MOV r1,r0 +000084 2351 MOVS r3,#0x51 +000086 2203 MOVS r2,#3 +000088 2039 MOVS r0,#0x39 +00008a f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;2233 hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x11); +00008e 2311 MOVS r3,#0x11 +000090 2201 MOVS r2,#1 +000092 2100 MOVS r1,#0 +000094 2005 MOVS r0,#5 +000096 f7fffffe BL hal_dsi_tx_ctrl_write_cmd +;;;2234 delayMs(90); //50 +00009a 205a MOVS r0,#0x5a +00009c f7fffffe BL delayMs +;;;2235 Gpio_swire_output(2, 40); +0000a0 2128 MOVS r1,#0x28 +0000a2 2002 MOVS r0,#2 +0000a4 f7fffffe BL Gpio_swire_output +;;;2236 delayMs(20); +0000a8 2014 MOVS r0,#0x14 +0000aa f7fffffe BL delayMs +;;;2237 +;;;2238 hal_dsi_tx_ctrl_exit_init_panel_mode(); +0000ae f7fffffe BL hal_dsi_tx_ctrl_exit_init_panel_mode +;;;2239 delayMs(20); +0000b2 2014 MOVS r0,#0x14 +0000b4 f7fffffe BL delayMs +;;;2240 } +0000b8 bdfe POP {r1-r7,pc} +;;;2241 + ENDP + +0000ba 0000 DCW 0x0000 + |L14.188| + DCD 0x0000243a + |L14.192| + DCD ||.constdata||+0x78 + |L14.196| + DCD 0x0000031d + |L14.200| +0000c8 4e31304c DCB "N10Lite_NT37701",0 +0000cc 6974655f +0000d0 4e543337 +0000d4 37303100 + |L14.216| +0000d8 5b25735d DCB "[%s] (%04d) soft_te_timer_init",0 +0000dc 20282530 +0000e0 34642920 +0000e4 736f6674 +0000e8 5f74655f +0000ec 74696d65 +0000f0 725f696e +0000f4 697400 +0000f7 00 DCB 0 + |L14.248| + DCD ||.data|| + |L14.252| + DCD soft_te_timer_cb + + AREA ||i.open_mipi_rx||, CODE, READONLY, ALIGN=2 + + open_mipi_rx PROC +;;;2241 +;;;2242 static void open_mipi_rx(void) +000000 b510 PUSH {r4,lr} +;;;2243 { +;;;2244 /* 配置TE引脚 */ +;;;2245 hal_gpio_set_mode(IO_PAD_AP_TE, IO_MODE_TEAR); +000002 2100 MOVS r1,#0 +000004 2003 MOVS r0,#3 +000006 f7fffffe BL hal_gpio_set_mode +;;;2246 +;;;2247 if (g_rx_ctrl_handle == NULL) +00000a 4c19 LDR r4,|L15.112| +00000c 69a0 LDR r0,[r4,#0x18] ; g_rx_ctrl_handle +00000e 2800 CMP r0,#0 +000010 d102 BNE |L15.24| +;;;2248 { +;;;2249 /* 创建rx ctrl handle */ +;;;2250 g_rx_ctrl_handle = hal_dsi_rx_ctrl_create_handle(); +000012 f7fffffe BL hal_dsi_rx_ctrl_create_handle +000016 61a0 STR r0,[r4,#0x18] ; g_rx_ctrl_handle + |L15.24| +;;;2251 } +;;;2252 /* 配置参数 */ +;;;2253 g_rx_ctrl_handle->base_info.src_w = INPUT_WIDTH; +000018 2187 MOVS r1,#0x87 +;;;2254 g_rx_ctrl_handle->base_info.src_h = INPUT_HEIGHT; +00001a 224b MOVS r2,#0x4b +00001c 00c9 LSLS r1,r1,#3 ;2253 +00001e 0152 LSLS r2,r2,#5 +000020 c006 STM r0!,{r1,r2} +;;;2255 g_rx_ctrl_handle->base_info.dst_w = OUTPUT_WIDTH; +;;;2256 g_rx_ctrl_handle->base_info.dst_h = OUTPUT_HEIGHT; +;;;2257 g_rx_ctrl_handle->base_info.src_frate = INPUT_FRAME_RATE; +000022 6042 STR r2,[r0,#4] +000024 6001 STR r1,[r0,#0] +000026 2100 MOVS r1,#0 +000028 7201 STRB r1,[r0,#8] +;;;2258 g_rx_ctrl_handle->base_info.src_mode = INPUT_DATA_MODE; +00002a 2201 MOVS r2,#1 +00002c 7242 STRB r2,[r0,#9] +;;;2259 g_rx_ctrl_handle->rx_color_mode = INPUT_COLOR_MODE; +00002e 2304 MOVS r3,#4 +000030 7503 STRB r3,[r0,#0x14] +;;;2260 g_rx_ctrl_handle->rx_lanes = INPUT_MIPI_LANE_NUM; +000032 7543 STRB r3,[r0,#0x15] +;;;2261 g_rx_ctrl_handle->rx_nonburst_models = INPUT_VIDEO_MODEL; /* 可不配置 */ +000034 7582 STRB r2,[r0,#0x16] +;;;2262 g_rx_ctrl_handle->rx_vc = INPUT_VC; +000036 75c1 STRB r1,[r0,#0x17] +;;;2263 g_rx_ctrl_handle->compress_en = INPUT_COMPRESS; //INPUT_COMPRESS; +000038 7601 STRB r1,[r0,#0x18] +;;;2264 g_rx_ctrl_handle->rx_hsclk_rate = INPUT_MIPI_LANE_RATE; +00003a 4a0e LDR r2,|L15.116| +;;;2265 g_rx_ctrl_handle->cus_dcs_entry_table = g_cus_rx_dcs_execute_table; /* 注册 DCS处理列表 */ +00003c 61c2 STR r2,[r0,#0x1c] +00003e 4602 MOV r2,r0 +000040 4b0d LDR r3,|L15.120| +000042 3278 ADDS r2,r2,#0x78 +;;;2266 g_rx_ctrl_handle->rx_dcs_read_entry = ap_dcs_read; /* 注册dsc read 回调函数,可选,此函数为空时由cus_dcs_entry_table执行 */ +000044 6293 STR r3,[r2,#0x28] +000046 4b0d LDR r3,|L15.124| +;;;2267 g_rx_ctrl_handle->pps_update_entry = pps_update_handle; +000048 62d3 STR r3,[r2,#0x2c] +00004a 4b0d LDR r3,|L15.128| +;;;2268 // g_rx_ctrl_handle->pq_marginal = PQ_TYPE_6; +;;;2269 +;;;2270 #if defined(ISP_568) || defined(ISP_368) +;;;2271 g_rx_ctrl_handle->base_info.extra_info.rot_angle = VIDOE_ROT_ANGLE_0; +00004c 6313 STR r3,[r2,#0x30] +00004e 7381 STRB r1,[r0,#0xe] +;;;2272 g_rx_ctrl_handle->base_info.extra_info.mirror_en = false; +000050 7341 STRB r1,[r0,#0xd] +;;;2273 +;;;2274 g_rx_ctrl_handle->hight_performan_mode = HIGHT_PERFORMAN_L2; +000052 2202 MOVS r2,#2 +000054 21b7 MOVS r1,#0xb7 +000056 540a STRB r2,[r1,r0] +000058 3808 SUBS r0,r0,#8 +;;;2275 // g_rx_ctrl_handle->base_info.extra_info.ltpo = LTPO_MODE_2; +;;;2276 // g_rx_ctrl_handle->pu_optimize = true; +;;;2277 #endif +;;;2278 +;;;2279 /* 提前预置PPS, AP 有PPS cmd也会更新 */ +;;;2280 if (g_rx_ctrl_handle->compress_en == true) +;;;2281 { +;;;2282 uint8_t pps[128] = {0x11,0x00,0x00,0x89,0x30,0x80,0x09,0x60,0x04,0x38,0x00,0x1E,0x02,0x1C,0x02,0x1C, +;;;2283 0x02,0x00,0x02,0x0E,0x00,0x20,0x02,0xE3,0x00,0x07,0x00,0x0C,0x03,0x50,0x03,0x64, +;;;2284 0x18,0x00,0x10,0xF0,0x03,0x0C,0x20,0x00,0x06,0x0B,0x0B,0x33,0x0E,0x1C,0x2A,0x38, +;;;2285 0x46,0x54,0x62,0x69,0x70,0x77,0x79,0x7B,0x7D,0x7E,0x01,0x02,0x01,0x00,0x09,0x40, +;;;2286 0x09,0xBE,0x19,0xFC,0x19,0xFA,0x19,0xF8,0x1A,0x38,0x1A,0x78,0x1A,0xB6,0x2A,0xF6, +;;;2287 0x2B,0x34,0x2B,0x74,0x3B,0x74,0x63,0xF4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +;;;2288 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +;;;2289 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; +;;;2290 +;;;2291 hal_dsi_rx_ctrl_pre_init_pps(g_rx_ctrl_handle, pps, 128); +;;;2292 } +;;;2293 +;;;2294 /* 初始化rx ctrl */ +;;;2295 hal_dsi_rx_ctrl_init(g_rx_ctrl_handle); +00005a f7fffffe BL hal_dsi_rx_ctrl_init +;;;2296 +;;;2297 #if CUS_SCLD_FILTER +;;;2298 // hal_dsi_rx_ctrl_set_cus_scld_filter(g_rx_ctrl_handle, rx_filter_1080_h_3_61, rx_filter_2400_v_5_84); +;;;2299 hal_dsi_rx_ctrl_set_cus_scld_filter(g_rx_ctrl_handle, rx_filter_1080_h_3_62, rx_filter_2400_v_5_85); +;;;2300 #endif +;;;2301 +;;;2302 #if !defined(ISP_568) && !defined(ISP_368) +;;;2303 hal_dsi_rx_ctrl_set_cus_pq_enh_lum(g_rx_ctrl_handle,0,0); +;;;2304 hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle, 260, 256, 260); +;;;2305 hal_dsi_rx_ctrl_set_cus_pq_enh_chr(g_rx_ctrl_handle,0,0); +;;;2306 hal_dsi_rx_ctrl_set_cus_pq_enh_chr2(g_rx_ctrl_handle,1,0,0); +;;;2307 #endif +;;;2308 +;;;2309 hal_dsi_rx_ctrl_set_cus_sync_line(g_rx_ctrl_handle, 2000);// lss add, 撕裂问题1600 +00005e 217d MOVS r1,#0x7d +000060 0109 LSLS r1,r1,#4 +000062 69a0 LDR r0,[r4,#0x18] ; g_rx_ctrl_handle +000064 f7fffffe BL hal_dsi_rx_ctrl_set_cus_sync_line +;;;2310 // hal_dsi_rx_ctrl_hight_performan_mode(g_rx_ctrl_handle); +;;;2311 // hal_dsi_rx_ctrl_set_cus_esc_clk(g_rx_ctrl_handle, SET_RESPONSE_CLK); +;;;2312 +;;;2313 /* 启动rx ctrl */ +;;;2314 hal_dsi_rx_ctrl_start(g_rx_ctrl_handle); +000068 69a0 LDR r0,[r4,#0x18] ; g_rx_ctrl_handle +00006a f7fffffe BL hal_dsi_rx_ctrl_start +;;;2315 //hal_dsi_rx_ctrl_set_auto_hw_filter(g_rx_ctrl_handle, true); +;;;2316 } +00006e bd10 POP {r4,pc} +;;;2317 + ENDP + + |L15.112| + DCD ||.data|| + |L15.116| + DCD 0x4190ab00 + |L15.120| + DCD ||.constdata|| + |L15.124| + DCD ap_dcs_read + |L15.128| + DCD pps_update_handle + + AREA ||i.pps_update_handle||, CODE, READONLY, ALIGN=2 + + pps_update_handle PROC +;;;276 /* PPS update callback 用于分辨率切换case */ +;;;277 static bool pps_update_handle(uint8_t *pps, uint8_t size, uint32_t pic_width, uint32_t pic_height) +000000 b570 PUSH {r4-r6,lr} +;;;278 { +;;;279 /* AVDD 上电, 用于解决息屏开屏PPS不更新问题 */ +;;;280 // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); +;;;281 // hal_dsi_rx_ctrl_set_sw_tear_mode(g_rx_ctrl_handle); +;;;282 +;;;283 //TAU_LOGD("PPS compress_en=[%d]\n", input_compress_flag); +;;;284 if (!input_compress_flag) +000002 4e13 LDR r6,|L16.80| +000004 461d MOV r5,r3 ;278 +000006 78f0 LDRB r0,[r6,#3] ; input_compress_flag +000008 4614 MOV r4,r2 ;278 +00000a 2800 CMP r0,#0 +00000c d106 BNE |L16.28| +;;;285 { +;;;286 g_rx_ctrl_handle->compress_en = true; +00000e 69b0 LDR r0,[r6,#0x18] ; g_rx_ctrl_handle +000010 2101 MOVS r1,#1 +000012 2220 MOVS r2,#0x20 +000014 5411 STRB r1,[r2,r0] +;;;287 input_compress_flag = true; +000016 70f1 STRB r1,[r6,#3] +;;;288 //hal_dsi_rx_ctrl_restart(g_rx_ctrl_handle); +;;;289 hal_dsi_rx_ctrl_toggle_resolution(g_rx_ctrl_handle); +000018 f7fffffe BL hal_dsi_rx_ctrl_toggle_resolution + |L16.28| +;;;290 //TAU_LOGD("toggle rx ctrl\n"); +;;;291 } +;;;292 +;;;293 if (pic_width != g_rx_ctrl_handle->base_info.src_w || pic_height != g_rx_ctrl_handle->base_info.src_h) +00001c 69b0 LDR r0,[r6,#0x18] ; g_rx_ctrl_handle +00001e 6801 LDR r1,[r0,#0] +000020 42a1 CMP r1,r4 +000022 d102 BNE |L16.42| +000024 6841 LDR r1,[r0,#4] +000026 42a9 CMP r1,r5 +000028 d00a BEQ |L16.64| + |L16.42| +;;;294 { +;;;295 /* PPS Update 且分辨率发生变化 */ +;;;296 g_rx_ctrl_handle->base_info.src_w = pic_width; +;;;297 g_rx_ctrl_handle->base_info.src_h = pic_height; +;;;298 +;;;299 /* 注意部分基板更新PPS前不发 Compression Mode Command的情况 */ +;;;300 if (pic_width >720) +00002a 212d MOVS r1,#0x2d +00002c 0109 LSLS r1,r1,#4 +00002e 6045 STR r5,[r0,#4] +000030 6004 STR r4,[r0,#0] +000032 428c CMP r4,r1 +000034 d902 BLS |L16.60| +;;;301 { +;;;302 g_tx_ctrl_handle->base_info.src_w = pic_width; +000036 69f1 LDR r1,[r6,#0x1c] ; g_tx_ctrl_handle +;;;303 g_tx_ctrl_handle->base_info.src_h = pic_height; +000038 624d STR r5,[r1,#0x24] +00003a 620c STR r4,[r1,#0x20] + |L16.60| +;;;304 } +;;;305 // hal_dsi_rx_ctrl_pre_init_pps(g_rx_ctrl_handle, pps, 128); +;;;306 hal_dsi_rx_ctrl_toggle_resolution(g_rx_ctrl_handle); +00003c f7fffffe BL hal_dsi_rx_ctrl_toggle_resolution + |L16.64| +;;;307 // hal_dsi_rx_ctrl_set_auto_hw_filter(g_rx_ctrl_handle, true); +;;;308 // TAU_LOGD("resolution update w[%d] h[%d] compress[%d]\n", pic_width, pic_height, g_rx_ctrl_handle->compress_en); +;;;309 } +;;;310 // hal_dsi_rx_ctrl_set_hw_tear_mode(g_rx_ctrl_handle); +;;;311 // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); +;;;312 +;;;313 TAU_LOGD("PPS Update"); +000040 22ff MOVS r2,#0xff +000042 323a ADDS r2,r2,#0x3a +000044 a103 ADR r1,|L16.84| +000046 a007 ADR r0,|L16.100| +000048 f7fffffe BL LOG_printf +;;;314 return true; +00004c 2001 MOVS r0,#1 +;;;315 } +00004e bd70 POP {r4-r6,pc} +;;;316 + ENDP + + |L16.80| + DCD ||.data|| + |L16.84| +000054 4e31304c DCB "N10Lite_NT37701",0 +000058 6974655f +00005c 4e543337 +000060 37303100 + |L16.100| +000064 5b25735d DCB "[%s] (%04d) PPS Update",0 +000068 20282530 +00006c 34642920 +000070 50505320 +000074 55706461 +000078 746500 +00007b 00 DCB 0 + + AREA ||i.soft_te_timer_cb||, CODE, READONLY, ALIGN=2 + + soft_te_timer_cb PROC +;;;778 +;;;779 static void soft_te_timer_cb(void *data) +000000 b510 PUSH {r4,lr} +;;;780 { +;;;781 /* +;;;782 S8 的屏接的是TP1.8V, AC 启动后需要等到TP1.8 起来后再初始化屏, 所以在TP 起来前需要通过软件产生TE给手机,避免手机卡死 +;;;783 */ +;;;784 if (panel_display_done == false) +000002 4808 LDR r0,|L17.36| +000004 7881 LDRB r1,[r0,#2] ; panel_display_done +;;;785 { +;;;786 hal_dsi_rx_ctrl_gen_a_tear_signal(g_rx_ctrl_handle); +000006 6980 LDR r0,[r0,#0x18] +000008 2900 CMP r1,#0 ;784 +00000a d002 BEQ |L17.18| +;;;787 hal_timer_start(TE_TIMER, 17, soft_te_timer_cb, NULL); +;;;788 } +;;;789 else +;;;790 { +;;;791 hal_dsi_rx_ctrl_set_hw_tear_mode(g_rx_ctrl_handle); +00000c f7fffffe BL hal_dsi_rx_ctrl_set_hw_tear_mode +;;;792 } +;;;793 } +000010 bd10 POP {r4,pc} + |L17.18| +000012 f7fffffe BL hal_dsi_rx_ctrl_gen_a_tear_signal +000016 2300 MOVS r3,#0 ;787 +000018 4a03 LDR r2,|L17.40| +00001a 2111 MOVS r1,#0x11 ;787 +00001c 2002 MOVS r0,#2 ;787 +00001e f7fffffe BL hal_timer_start +000022 bd10 POP {r4,pc} +;;;794 + ENDP + + |L17.36| + DCD ||.data|| + |L17.40| + DCD soft_te_timer_cb + + AREA ||i.soft_timer3_cb||, CODE, READONLY, ALIGN=2 + + soft_timer3_cb PROC +;;;2392 #ifdef ADD_TIMER3_FUNCTION +;;;2393 static void soft_timer3_cb(void *data) +000000 b510 PUSH {r4,lr} +;;;2394 { +;;;2395 hal_timer_start(TIMER_NUM3, 10, soft_timer3_cb, NULL); +000002 2300 MOVS r3,#0 +000004 4a0a LDR r2,|L18.48| +000006 210a MOVS r1,#0xa +000008 2003 MOVS r0,#3 +00000a f7fffffe BL hal_timer_start +;;;2396 tp_sleep_count++; +00000e 4809 LDR r0,|L18.52| +000010 7801 LDRB r1,[r0,#0] ; tp_sleep_count +000012 1c49 ADDS r1,r1,#1 +000014 7001 STRB r1,[r0,#0] +;;;2397 +;;;2398 if (tp_sleep_clk_count < 0xF8) +000016 4908 LDR r1,|L18.56| +000018 7808 LDRB r0,[r1,#0] ; tp_sleep_clk_count +00001a 28f8 CMP r0,#0xf8 +00001c d201 BCS |L18.34| +00001e 1c40 ADDS r0,r0,#1 +;;;2399 tp_sleep_clk_count++; +000020 7008 STRB r0,[r1,#0] + |L18.34| +;;;2400 if(phone_DisplayOFF_count>0) +000022 4906 LDR r1,|L18.60| +000024 89c8 LDRH r0,[r1,#0xe] ; phone_DisplayOFF_count +000026 2800 CMP r0,#0 +000028 d001 BEQ |L18.46| +00002a 1c40 ADDS r0,r0,#1 +;;;2401 { +;;;2402 phone_DisplayOFF_count++; +00002c 81c8 STRH r0,[r1,#0xe] + |L18.46| +;;;2403 } +;;;2404 +;;;2405 #if AUTO_CAL_TP +;;;2406 if (g_exit_sleep_mode) +;;;2407 { +;;;2408 if (g_cal_cnt > 0) +;;;2409 { +;;;2410 g_cal_cnt--; +;;;2411 if (g_cal_cnt == 0){ +;;;2412 g_calibration_flag = true; +;;;2413 //TAU_LOGD("Start cal tp!\n"); +;;;2414 } +;;;2415 } +;;;2416 } +;;;2417 #endif +;;;2418 } +00002e bd10 POP {r4,pc} +;;;2419 #endif + ENDP + + |L18.48| + DCD soft_timer3_cb + |L18.52| + DCD tp_sleep_count + |L18.56| + DCD tp_sleep_clk_count + |L18.60| + DCD ||.data|| + + AREA ||i.tp_heartbeat_exec||, CODE, READONLY, ALIGN=2 + + tp_heartbeat_exec PROC +;;;2423 uint32_t s_heartbeat = 0; +;;;2424 void tp_heartbeat_exec(void) +000000 b570 PUSH {r4-r6,lr} +;;;2425 { +;;;2426 if (s_screen_init_complate) +000002 480e LDR r0,|L19.60| +000004 7800 LDRB r0,[r0,#0] ; s_screen_init_complate +000006 2800 CMP r0,#0 +000008 d007 BEQ |L19.26| +;;;2427 { +;;;2428 if(hal_gpio_get_input_data(IO_PAD_TD_INT)) +00000a 2009 MOVS r0,#9 +00000c f7fffffe BL hal_gpio_get_input_data +000010 2500 MOVS r5,#0 +;;;2429 { +;;;2430 s_heartbeat = 0; +000012 4c0b LDR r4,|L19.64| +000014 2800 CMP r0,#0 ;2428 +000016 d001 BEQ |L19.28| +000018 6265 STR r5,[r4,#0x24] ; s_heartbeat + |L19.26| +;;;2431 } +;;;2432 else +;;;2433 { +;;;2434 if(s_heartbeat < (65536/50)) // 65536*3 = 900ms 65536/50 = 6ms +;;;2435 { +;;;2436 s_heartbeat ++; +;;;2437 }else +;;;2438 { +;;;2439 TAU_LOGD("hb..."); +;;;2440 s_heartbeat = 0; +;;;2441 ap_tp_st_touch_software_reset(); +;;;2442 } +;;;2443 } +;;;2444 } +;;;2445 } +00001a bd70 POP {r4-r6,pc} + |L19.28| +00001c 4909 LDR r1,|L19.68| +00001e 6a60 LDR r0,[r4,#0x24] ;2434 ; s_heartbeat +000020 4288 CMP r0,r1 ;2434 +000022 d202 BCS |L19.42| +000024 1c40 ADDS r0,r0,#1 ;2434 +000026 6260 STR r0,[r4,#0x24] ;2436 ; s_heartbeat +000028 bd70 POP {r4-r6,pc} + |L19.42| +00002a 4a07 LDR r2,|L19.72| +00002c a107 ADR r1,|L19.76| +00002e a00b ADR r0,|L19.92| +000030 f7fffffe BL LOG_printf +000034 6265 STR r5,[r4,#0x24] ;2441 ; s_heartbeat +000036 f7fffffe BL ap_tp_st_touch_software_reset +00003a bd70 POP {r4-r6,pc} +;;;2446 + ENDP + + |L19.60| + DCD s_screen_init_complate + |L19.64| + DCD ||.data|| + |L19.68| + DCD 0x0000051e + |L19.72| + DCD 0x00000987 + |L19.76| +00004c 4e31304c DCB "N10Lite_NT37701",0 +000050 6974655f +000054 4e543337 +000058 37303100 + |L19.92| +00005c 5b25735d DCB "[%s] (%04d) hb...",0 +000060 20282530 +000064 34642920 +000068 68622e2e +00006c 2e00 +00006e 00 DCB 0 +00006f 00 DCB 0 + + AREA ||.constdata||, DATA, READONLY, ALIGN=2 + + g_cus_rx_dcs_execute_table + DCD 0x00000029 + DCD ap_set_display_on +000008 01000000 DCB 0x01,0x00,0x00,0x00 + DCD 0x00000028 + DCD ap_set_display_off +000014 01000000 DCB 0x01,0x00,0x00,0x00 + DCD 0x000000df + DCD ap_get_reg_df +000020 00000000 DCB 0x00,0x00,0x00,0x00 + DCD 0x00000051 + DCD ap_set_backlight_51 +00002c 00000000 DCB 0x00,0x00,0x00,0x00 + DCD 0x00000053 + DCD ap_get_reg_53 +000038 00000000 DCB 0x00,0x00,0x00,0x00 + DCD 0x0000007a + DCD ap_get_reg_7A +000044 00000000 DCB 0x00,0x00,0x00,0x00 + DCD 0x00000004 + DCD ap_set_tp_calibration_04 +000050 01000000 DCB 0x01,0x00,0x00,0x00 + DCD 0x00000010 + DCD ap_set_enter_sleep_mode +00005c 01000000 DCB 0x01,0x00,0x00,0x00 + DCD 0x00000011 + DCD ap_set_exit_sleep_mode +000068 01000000 DCB 0x01,0x00,0x00,0x00 + DCD 0x00000000 + DCD 0x00000000 +000074 00000000 DCB 0x00,0x00,0x00,0x00 + panel_init_code +000078 390006f0 DCB 0x39,0x00,0x06,0xf0 +00007c 55aa5208 DCB 0x55,0xaa,0x52,0x08 +000080 00390009 DCB 0x00,0x39,0x00,0x09 +000084 ba027900 DCB 0xba,0x02,0x79,0x00 +000088 14039c00 DCB 0x14,0x03,0x9c,0x00 +00008c 01390002 DCB 0x01,0x39,0x00,0x02 +000090 6f083900 DCB 0x6f,0x08,0x39,0x00 +000094 09ba01af DCB 0x09,0xba,0x01,0xaf +000098 0014001c DCB 0x00,0x14,0x00,0x1c +00009c 00003900 DCB 0x00,0x00,0x39,0x00 +0000a0 026f1039 DCB 0x02,0x6f,0x10,0x39 +0000a4 0008ba01 DCB 0x00,0x08,0xba,0x01 +0000a8 66001400 DCB 0x66,0x00,0x14,0x00 +0000ac 1c003900 DCB 0x1c,0x00,0x39,0x00 +0000b0 09bb0279 DCB 0x09,0xbb,0x02,0x79 +0000b4 0014039c DCB 0x00,0x14,0x03,0x9c +0000b8 00213900 DCB 0x00,0x21,0x39,0x00 +0000bc 02b58439 DCB 0x02,0xb5,0x84,0x39 +0000c0 00026f06 DCB 0x00,0x02,0x6f,0x06 +0000c4 390004b5 DCB 0x39,0x00,0x04,0xb5 +0000c8 2b0c3339 DCB 0x2b,0x0c,0x33,0x39 +0000cc 00026f0b DCB 0x00,0x02,0x6f,0x0b +0000d0 390004b5 DCB 0x39,0x00,0x04,0xb5 +0000d4 2b233339 DCB 0x2b,0x23,0x33,0x39 +0000d8 00026f10 DCB 0x00,0x02,0x6f,0x10 +0000dc 390006b5 DCB 0x39,0x00,0x06,0xb5 +0000e0 0c0c0c0c DCB 0x0c,0x0c,0x0c,0x0c +0000e4 0c390002 DCB 0x0c,0x39,0x00,0x02 +0000e8 6f013900 DCB 0x6f,0x01,0x39,0x00 +0000ec 02b61939 DCB 0x02,0xb6,0x19,0x39 +0000f0 0013b799 DCB 0x00,0x13,0xb7,0x99 +0000f4 99999999 DCB 0x99,0x99,0x99,0x99 +0000f8 99876543 DCB 0x99,0x87,0x65,0x43 +0000fc 32100000 DCB 0x32,0x10,0x00,0x00 +000100 00000000 DCB 0x00,0x00,0x00,0x00 +000104 00390002 DCB 0x00,0x39,0x00,0x02 +000108 6f133900 DCB 0x6f,0x13,0x39,0x00 +00010c 0db70000 DCB 0x0d,0xb7,0x00,0x00 +000110 01137889 DCB 0x01,0x13,0x78,0x89 +000114 9aabbccd DCB 0x9a,0xab,0xbc,0xcd +000118 deef3900 DCB 0xde,0xef,0x39,0x00 +00011c 026f1f39 DCB 0x02,0x6f,0x1f,0x39 +000120 0019b708 DCB 0x00,0x19,0xb7,0x08 +000124 31668ff5 DCB 0x31,0x66,0x8f,0xf5 +000128 c1c233ff DCB 0xc1,0xc2,0x33,0xff +00012c 7fff7fff DCB 0x7f,0xff,0x7f,0xff +000130 7fff7fff DCB 0x7f,0xff,0x7f,0xff +000134 7fff7fff DCB 0x7f,0xff,0x7f,0xff +000138 7fffff39 DCB 0x7f,0xff,0xff,0x39 +00013c 0003b298 DCB 0x00,0x03,0xb2,0x98 +000140 60390002 DCB 0x60,0x39,0x00,0x02 +000144 6f093900 DCB 0x6f,0x09,0x39,0x00 +000148 02b24039 DCB 0x02,0xb2,0x40,0x39 +00014c 00026f0f DCB 0x00,0x02,0x6f,0x0f +000150 390009b2 DCB 0x39,0x00,0x09,0xb2 +000154 202021c2 DCB 0x20,0x20,0x21,0xc2 +000158 21c22fff DCB 0x21,0xc2,0x2f,0xff +00015c 39000db3 DCB 0x39,0x00,0x0d,0xb3 +000160 0008001c DCB 0x00,0x08,0x00,0x1c +000164 001c003c DCB 0x00,0x1c,0x00,0x3c +000168 003c0070 DCB 0x00,0x3c,0x00,0x70 +00016c 3900026f DCB 0x39,0x00,0x02,0x6f +000170 0c39000d DCB 0x0c,0x39,0x00,0x0d +000174 b3007000 DCB 0xb3,0x00,0x70,0x00 +000178 c800c801 DCB 0xc8,0x00,0xc8,0x01 +00017c 48014801 DCB 0x48,0x01,0x48,0x01 +000180 ad390002 DCB 0xad,0x39,0x00,0x02 +000184 6f183900 DCB 0x6f,0x18,0x39,0x00 +000188 0db301ad DCB 0x0d,0xb3,0x01,0xad +00018c 01c201c2 DCB 0x01,0xc2,0x01,0xc2 +000190 01c207ff DCB 0x01,0xc2,0x07,0xff +000194 0fff3900 DCB 0x0f,0xff,0x39,0x00 +000198 026f2439 DCB 0x02,0x6f,0x24,0x39 +00019c 0009b301 DCB 0x00,0x09,0xb3,0x01 +0001a0 5508cc08 DCB 0x55,0x08,0xcc,0x08 +0001a4 cc0fff39 DCB 0xcc,0x0f,0xff,0x39 +0001a8 00026f2c DCB 0x00,0x02,0x6f,0x2c +0001ac 39000fb3 DCB 0x39,0x00,0x0f,0xb3 +0001b0 099008dc DCB 0x09,0x90,0x08,0xdc +0001b4 08700870 DCB 0x08,0x70,0x08,0x70 +0001b8 07c807c8 DCB 0x07,0xc8,0x07,0xc8 +0001bc 06b83900 DCB 0x06,0xb8,0x39,0x00 +0001c0 026f3a39 DCB 0x02,0x6f,0x3a,0x39 +0001c4 000db306 DCB 0x00,0x0d,0xb3,0x06 +0001c8 b804e804 DCB 0xb8,0x04,0xe8,0x04 +0001cc e8024802 DCB 0xe8,0x02,0x48,0x02 +0001d0 48003839 DCB 0x48,0x00,0x38,0x39 +0001d4 00026f46 DCB 0x00,0x02,0x6f,0x46 +0001d8 39000db3 DCB 0x39,0x00,0x0d,0xb3 +0001dc 00380038 DCB 0x00,0x38,0x00,0x38 +0001e0 00380038 DCB 0x00,0x38,0x00,0x38 +0001e4 00380038 DCB 0x00,0x38,0x00,0x38 +0001e8 39000fb4 DCB 0x39,0x00,0x0f,0xb4 +0001ec 0d100c1c DCB 0x0d,0x10,0x0c,0x1c +0001f0 0b880b88 DCB 0x0b,0x88,0x0b,0x88 +0001f4 0aa00aa0 DCB 0x0a,0xa0,0x0a,0xa0 +0001f8 09283900 DCB 0x09,0x28,0x39,0x00 +0001fc 026f0e39 DCB 0x02,0x6f,0x0e,0x39 +000200 000db409 DCB 0x00,0x0d,0xb4,0x09 +000204 2806b006 DCB 0x28,0x06,0xb0,0x06 +000208 b0031803 DCB 0xb0,0x03,0x18,0x03 +00020c 18004839 DCB 0x18,0x00,0x48,0x39 +000210 00026f1a DCB 0x00,0x02,0x6f,0x1a +000214 39000db4 DCB 0x39,0x00,0x0d,0xb4 +000218 00480048 DCB 0x00,0x48,0x00,0x48 +00021c 00480048 DCB 0x00,0x48,0x00,0x48 +000220 00480048 DCB 0x00,0x48,0x00,0x48 +000224 3900026f DCB 0x39,0x00,0x02,0x6f +000228 2639000b DCB 0x26,0x39,0x00,0x0b +00022c b40d1000 DCB 0xb4,0x0d,0x10,0x00 +000230 48004800 DCB 0x48,0x00,0x48,0x00 +000234 48004839 DCB 0x48,0x00,0x48,0x39 +000238 00026f30 DCB 0x00,0x02,0x6f,0x30 +00023c 39000fb4 DCB 0x39,0x00,0x0f,0xb4 +000240 099008dc DCB 0x09,0x90,0x08,0xdc +000244 08700870 DCB 0x08,0x70,0x08,0x70 +000248 07c807c8 DCB 0x07,0xc8,0x07,0xc8 +00024c 06b83900 DCB 0x06,0xb8,0x39,0x00 +000250 026f3e39 DCB 0x02,0x6f,0x3e,0x39 +000254 000db406 DCB 0x00,0x0d,0xb4,0x06 +000258 b804e804 DCB 0xb8,0x04,0xe8,0x04 +00025c e8024802 DCB 0xe8,0x02,0x48,0x02 +000260 48003839 DCB 0x48,0x00,0x38,0x39 +000264 00026f4a DCB 0x00,0x02,0x6f,0x4a +000268 39000db4 DCB 0x39,0x00,0x0d,0xb4 +00026c 00380038 DCB 0x00,0x38,0x00,0x38 +000270 00380038 DCB 0x00,0x38,0x00,0x38 +000274 00380038 DCB 0x00,0x38,0x00,0x38 +000278 3900026f DCB 0x39,0x00,0x02,0x6f +00027c ac390015 DCB 0xac,0x39,0x00,0x15 +000280 b20fff0f DCB 0xb2,0x0f,0xff,0x0f +000284 ff080908 DCB 0xff,0x08,0x09,0x08 +000288 6c08ca09 DCB 0x6c,0x08,0xca,0x09 +00028c 24097909 DCB 0x24,0x09,0x79,0x09 +000290 cb0a1a0a DCB 0xcb,0x0a,0x1a,0x0a +000294 66390002 DCB 0x66,0x39,0x00,0x02 +000298 6fc03900 DCB 0x6f,0xc0,0x39,0x00 +00029c 15b20ab0 DCB 0x15,0xb2,0x0a,0xb0 +0002a0 0af70b3d DCB 0x0a,0xf7,0x0b,0x3d +0002a4 0b800bc1 DCB 0x0b,0x80,0x0b,0xc1 +0002a8 0c010c40 DCB 0x0c,0x01,0x0c,0x40 +0002ac 0c7c0cb8 DCB 0x0c,0x7c,0x0c,0xb8 +0002b0 0cf23900 DCB 0x0c,0xf2,0x39,0x00 +0002b4 026fd439 DCB 0x02,0x6f,0xd4,0x39 +0002b8 0015b20d DCB 0x00,0x15,0xb2,0x0d +0002bc 2b0d630d DCB 0x2b,0x0d,0x63,0x0d +0002c0 9a0dcf0e DCB 0x9a,0x0d,0xcf,0x0e +0002c4 040e380e DCB 0x04,0x0e,0x38,0x0e +0002c8 6b0e9d0e DCB 0x6b,0x0e,0x9d,0x0e +0002cc cf0eff39 DCB 0xcf,0x0e,0xff,0x39 +0002d0 00026fe8 DCB 0x00,0x02,0x6f,0xe8 +0002d4 39000bb2 DCB 0x39,0x00,0x0b,0xb2 +0002d8 0f2f0f5e DCB 0x0f,0x2f,0x0f,0x5e +0002dc 0f8d0fbb DCB 0x0f,0x8d,0x0f,0xbb +0002e0 0fff3900 DCB 0x0f,0xff,0x39,0x00 +0002e4 026f5239 DCB 0x02,0x6f,0x52,0x39 +0002e8 0015b301 DCB 0x00,0x15,0xb3,0x01 +0002ec c201c301 DCB 0xc2,0x01,0xc3,0x01 +0002f0 f5022702 DCB 0xf5,0x02,0x27,0x02 +0002f4 59028b02 DCB 0x59,0x02,0x8b,0x02 +0002f8 bd02ef03 DCB 0xbd,0x02,0xef,0x03 +0002fc 21035339 DCB 0x21,0x03,0x53,0x39 +000300 00026f66 DCB 0x00,0x02,0x6f,0x66 +000304 390015b3 DCB 0x39,0x00,0x15,0xb3 +000308 038403b6 DCB 0x03,0x84,0x03,0xb6 +00030c 03e8041a DCB 0x03,0xe8,0x04,0x1a +000310 044c047e DCB 0x04,0x4c,0x04,0x7e +000314 04b004e2 DCB 0x04,0xb0,0x04,0xe2 +000318 05140546 DCB 0x05,0x14,0x05,0x46 +00031c 3900026f DCB 0x39,0x00,0x02,0x6f +000320 7a390015 DCB 0x7a,0x39,0x00,0x15 +000324 b3057805 DCB 0xb3,0x05,0x78,0x05 +000328 a905db06 DCB 0xa9,0x05,0xdb,0x06 +00032c 0d063f06 DCB 0x0d,0x06,0x3f,0x06 +000330 7106a306 DCB 0x71,0x06,0xa3,0x06 +000334 d5070707 DCB 0xd5,0x07,0x07,0x07 +000338 39390002 DCB 0x39,0x39,0x00,0x02 +00033c 6f8e3900 DCB 0x6f,0x8e,0x39,0x00 +000340 09b3076b DCB 0x09,0xb3,0x07,0x6b +000344 079d07ce DCB 0x07,0x9d,0x07,0xce +000348 07ff3900 DCB 0x07,0xff,0x39,0x00 +00034c 03b90096 DCB 0x03,0xb9,0x00,0x96 +000350 390003bd DCB 0x39,0x00,0x03,0xbd +000354 04b03900 DCB 0x04,0xb0,0x39,0x00 +000358 04c076f3 DCB 0x04,0xc0,0x76,0xf3 +00035c c1390002 DCB 0xc1,0x39,0x00,0x02 +000360 6f083900 DCB 0x6f,0x08,0x39,0x00 +000364 02c04039 DCB 0x02,0xc0,0x40,0x39 +000368 00026f09 DCB 0x00,0x02,0x6f,0x09 +00036c 390003c0 DCB 0x39,0x00,0x03,0xc0 +000370 20203900 DCB 0x20,0x20,0x39,0x00 +000374 026f0239 DCB 0x02,0x6f,0x02,0x39 +000378 0007c124 DCB 0x00,0x07,0xc1,0x24 +00037c 86005700 DCB 0x86,0x00,0x57,0x00 +000380 45390002 DCB 0x45,0x39,0x00,0x02 +000384 6f0a3900 DCB 0x6f,0x0a,0x39,0x00 +000388 03c10086 DCB 0x03,0xc1,0x00,0x86 +00038c 390002c5 DCB 0x39,0x00,0x02,0xc5 +000390 05390002 DCB 0x05,0x39,0x00,0x02 +000394 6f083900 DCB 0x6f,0x08,0x39,0x00 +000398 02c30039 DCB 0x02,0xc3,0x00,0x39 +00039c 000fc655 DCB 0x00,0x0f,0xc6,0x55 +0003a0 55555555 DCB 0x55,0x55,0x55,0x55 +0003a4 55555555 DCB 0x55,0x55,0x55,0x55 +0003a8 55555555 DCB 0x55,0x55,0x55,0x55 +0003ac 55390002 DCB 0x55,0x39,0x00,0x02 +0003b0 ca123900 DCB 0xca,0x12,0x39,0x00 +0003b4 02b90039 DCB 0x02,0xb9,0x00,0x39 +0003b8 0005be0e DCB 0x00,0x05,0xbe,0x0e +0003bc 0b141339 DCB 0x0b,0x14,0x13,0x39 +0003c0 00026f05 DCB 0x00,0x02,0x6f,0x05 +0003c4 390002be DCB 0x39,0x00,0x02,0xbe +0003c8 8a390006 DCB 0x8a,0x39,0x00,0x06 +0003cc f055aa52 DCB 0xf0,0x55,0xaa,0x52 +0003d0 08003900 DCB 0x08,0x00,0x39,0x00 +0003d4 026f2a39 DCB 0x02,0x6f,0x2a,0x39 +0003d8 0002d943 DCB 0x00,0x02,0xd9,0x43 +0003dc 390006f0 DCB 0x39,0x00,0x06,0xf0 +0003e0 55aa5208 DCB 0x55,0xaa,0x52,0x08 +0003e4 0139000b DCB 0x01,0x39,0x00,0x0b +0003e8 b500b000 DCB 0xb5,0x00,0xb0,0x00 +0003ec 98009800 DCB 0x98,0x00,0x98,0x00 +0003f0 b0009839 DCB 0xb0,0x00,0x98,0x39 +0003f4 000bb601 DCB 0x00,0x0b,0xb6,0x01 +0003f8 3800d000 DCB 0x38,0x00,0xd0,0x00 +0003fc d0013800 DCB 0xd0,0x01,0x38,0x00 +000400 d039000d DCB 0xd0,0x39,0x00,0x0d +000404 c200b001 DCB 0xc2,0x00,0xb0,0x01 +000408 3800b001 DCB 0x38,0x00,0xb0,0x01 +00040c 3800b001 DCB 0x38,0x00,0xb0,0x01 +000410 38390003 DCB 0x38,0x39,0x00,0x03 +000414 b0040439 DCB 0xb0,0x04,0x04,0x39 +000418 0003b313 DCB 0x00,0x03,0xb3,0x13 +00041c 13390007 DCB 0x13,0x39,0x00,0x07 +000420 b71b1b1b DCB 0xb7,0x1b,0x1b,0x1b +000424 1b1b1b39 DCB 0x1b,0x1b,0x1b,0x39 +000428 0003b108 DCB 0x00,0x03,0xb1,0x08 +00042c 08390003 DCB 0x08,0x39,0x00,0x03 +000430 b4131339 DCB 0xb4,0x13,0x13,0x39 +000434 0008b846 DCB 0x00,0x08,0xb8,0x46 +000438 46464646 DCB 0x46,0x46,0x46,0x46 +00043c 46463900 DCB 0x46,0x46,0x39,0x00 +000440 1db9001f DCB 0x1d,0xb9,0x00,0x1f +000444 0000001f DCB 0x00,0x00,0x00,0x1f +000448 00001f00 DCB 0x00,0x00,0x1f,0x00 +00044c 001f0000 DCB 0x00,0x1f,0x00,0x00 +000450 00000000 DCB 0x00,0x00,0x00,0x00 +000454 1f1f1f1f DCB 0x1f,0x1f,0x1f,0x1f +000458 1f000000 DCB 0x1f,0x00,0x00,0x00 +00045c 00003900 DCB 0x00,0x00,0x39,0x00 +000460 06bb0394 DCB 0x06,0xbb,0x03,0x94 +000464 00193c39 DCB 0x00,0x19,0x3c,0x39 +000468 00026f05 DCB 0x00,0x02,0x6f,0x05 +00046c 390014bb DCB 0x39,0x00,0x14,0xbb +000470 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +000474 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +000478 1b1b2020 DCB 0x1b,0x1b,0x20,0x20 +00047c 20202020 DCB 0x20,0x20,0x20,0x20 +000480 20202039 DCB 0x20,0x20,0x20,0x39 +000484 00026f18 DCB 0x00,0x02,0x6f,0x18 +000488 390014bb DCB 0x39,0x00,0x14,0xbb +00048c 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +000490 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +000494 1b1b2020 DCB 0x1b,0x1b,0x20,0x20 +000498 20202020 DCB 0x20,0x20,0x20,0x20 +00049c 20202039 DCB 0x20,0x20,0x20,0x39 +0004a0 00026f2b DCB 0x00,0x02,0x6f,0x2b +0004a4 390014bb DCB 0x39,0x00,0x14,0xbb +0004a8 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +0004ac 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +0004b0 1b1b2020 DCB 0x1b,0x1b,0x20,0x20 +0004b4 20202020 DCB 0x20,0x20,0x20,0x20 +0004b8 20202039 DCB 0x20,0x20,0x20,0x39 +0004bc 00026f3e DCB 0x00,0x02,0x6f,0x3e +0004c0 390014bb DCB 0x39,0x00,0x14,0xbb +0004c4 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +0004c8 1b1b1b1b DCB 0x1b,0x1b,0x1b,0x1b +0004cc 1b1b2020 DCB 0x1b,0x1b,0x20,0x20 +0004d0 20202020 DCB 0x20,0x20,0x20,0x20 +0004d4 20202039 DCB 0x20,0x20,0x20,0x39 +0004d8 0005ba10 DCB 0x00,0x05,0xba,0x10 +0004dc 10101039 DCB 0x10,0x10,0x10,0x39 +0004e0 0003c480 DCB 0x00,0x03,0xc4,0x80 +0004e4 03390002 DCB 0x03,0x39,0x00,0x02 +0004e8 c7013900 DCB 0xc7,0x01,0x39,0x00 +0004ec 03cd0581 DCB 0x03,0xcd,0x05,0x81 +0004f0 390002cf DCB 0x39,0x00,0x02,0xcf +0004f4 1d390002 DCB 0x1d,0x39,0x00,0x02 +0004f8 6f013900 DCB 0x6f,0x01,0x39,0x00 +0004fc 05ce0001 DCB 0x05,0xce,0x00,0x01 +000500 00003900 DCB 0x00,0x00,0x39,0x00 +000504 026f0939 DCB 0x02,0x6f,0x09,0x39 +000508 0002d200 DCB 0x00,0x02,0xd2,0x00 +00050c 3900026f DCB 0x39,0x00,0x02,0x6f +000510 10390002 DCB 0x10,0x39,0x00,0x02 +000514 d80c3900 DCB 0xd8,0x0c,0x39,0x00 +000518 02d9ab39 DCB 0x02,0xd9,0xab,0x39 +00051c 0002d107 DCB 0x00,0x02,0xd1,0x07 +000520 3900026f DCB 0x39,0x00,0x02,0x6f +000524 02390002 DCB 0x02,0x39,0x00,0x02 +000528 d1063900 DCB 0xd1,0x06,0x39,0x00 +00052c 026f0539 DCB 0x02,0x6f,0x05,0x39 +000530 0002d106 DCB 0x00,0x02,0xd1,0x06 +000534 390003d6 DCB 0x39,0x00,0x03,0xd6 +000538 00403900 DCB 0x00,0x40,0x39,0x00 +00053c 06f055aa DCB 0x06,0xf0,0x55,0xaa +000540 52080239 DCB 0x52,0x08,0x02,0x39 +000544 0019b900 DCB 0x00,0x19,0xb9,0x00 +000548 04000c00 DCB 0x04,0x00,0x0c,0x00 +00054c 14001c00 DCB 0x14,0x00,0x1c,0x00 +000550 2c003c00 DCB 0x2c,0x00,0x3c,0x00 +000554 4c005c00 DCB 0x4c,0x00,0x5c,0x00 +000558 7c009c00 DCB 0x7c,0x00,0x9c,0x00 +00055c bc00dc39 DCB 0xbc,0x00,0xdc,0x39 +000560 0019ba00 DCB 0x00,0x19,0xba,0x00 +000564 fc013c01 DCB 0xfc,0x01,0x3c,0x01 +000568 7c01bc01 DCB 0x7c,0x01,0xbc,0x01 +00056c fc027c02 DCB 0xfc,0x02,0x7c,0x02 +000570 fc037c03 DCB 0xfc,0x03,0x7c,0x03 +000574 bc03dc03 DCB 0xbc,0x03,0xdc,0x03 +000578 fc03ff39 DCB 0xfc,0x03,0xff,0x39 +00057c 0002bc11 DCB 0x00,0x02,0xbc,0x11 +000580 390011bd DCB 0x39,0x00,0x11,0xbd +000584 96006900 DCB 0x96,0x00,0x69,0x00 +000588 00960069 DCB 0x00,0x96,0x00,0x69 +00058c bb4444bb DCB 0xbb,0x44,0x44,0xbb +000590 ee1111ee DCB 0xee,0x11,0x11,0xee +000594 390002c1 DCB 0x39,0x00,0x02,0xc1 +000598 02390009 DCB 0x02,0x39,0x00,0x09 +00059c c2190091 DCB 0xc2,0x19,0x00,0x91 +0005a0 00190091 DCB 0x00,0x19,0x00,0x91 +0005a4 00390003 DCB 0x00,0x39,0x00,0x03 +0005a8 c0000039 DCB 0xc0,0x00,0x00,0x39 +0005ac 0002ce01 DCB 0x00,0x02,0xce,0x01 +0005b0 390002cc DCB 0x39,0x00,0x02,0xcc +0005b4 00390006 DCB 0x00,0x39,0x00,0x06 +0005b8 f055aa52 DCB 0xf0,0x55,0xaa,0x52 +0005bc 08023900 DCB 0x08,0x02,0x39,0x00 +0005c0 02cc3039 DCB 0x02,0xcc,0x30,0x39 +0005c4 0006f055 DCB 0x00,0x06,0xf0,0x55 +0005c8 aa520802 DCB 0xaa,0x52,0x08,0x02 +0005cc 390002bf DCB 0x39,0x00,0x02,0xbf +0005d0 09390013 DCB 0x09,0x39,0x00,0x13 +0005d4 b0000003 DCB 0xb0,0x00,0x00,0x03 +0005d8 51038403 DCB 0x51,0x03,0x84,0x03 +0005dc fa045504 DCB 0xfa,0x04,0x55,0x04 +0005e0 a8050205 DCB 0xa8,0x05,0x02,0x05 +0005e4 5d05df39 DCB 0x5d,0x05,0xdf,0x39 +0005e8 0013b106 DCB 0x00,0x13,0xb1,0x06 +0005ec 4606a006 DCB 0x46,0x06,0xa0,0x06 +0005f0 ef073e07 DCB 0xef,0x07,0x3e,0x07 +0005f4 cb084608 DCB 0xcb,0x08,0x46,0x08 +0005f8 c1093009 DCB 0xc1,0x09,0x30,0x09 +0005fc 9a39000f DCB 0x9a,0x39,0x00,0x0f +000600 b209fb0a DCB 0xb2,0x09,0xfb,0x0a +000604 540aa60b DCB 0x54,0x0a,0xa6,0x0b +000608 030b5c0f DCB 0x03,0x0b,0x5c,0x0f +00060c fc0ffd39 DCB 0xfc,0x0f,0xfd,0x39 +000610 0013b300 DCB 0x00,0x13,0xb3,0x00 +000614 0002d603 DCB 0x00,0x02,0xd6,0x03 +000618 09037703 DCB 0x09,0x03,0x77,0x03 +00061c d2041f04 DCB 0xd2,0x04,0x1f,0x04 +000620 6d04c005 DCB 0x6d,0x04,0xc0,0x05 +000624 2f390013 DCB 0x2f,0x39,0x00,0x13 +000628 b4058c05 DCB 0xb4,0x05,0x8c,0x05 +00062c dd062306 DCB 0xdd,0x06,0x23,0x06 +000630 6906e307 DCB 0x69,0x06,0xe3,0x07 +000634 4a07b008 DCB 0x4a,0x07,0xb0,0x08 +000638 09085d39 DCB 0x09,0x08,0x5d,0x39 +00063c 000fb508 DCB 0x00,0x0f,0xb5,0x08 +000640 ad08fa09 DCB 0xad,0x08,0xfa,0x09 +000644 40098c09 DCB 0x40,0x09,0x8c,0x09 +000648 cc0ffc0f DCB 0xcc,0x0f,0xfc,0x0f +00064c fd390013 DCB 0xfd,0x39,0x00,0x13 +000650 b6000002 DCB 0xb6,0x00,0x00,0x02 +000654 f9034803 DCB 0xf9,0x03,0x48,0x03 +000658 f7047b04 DCB 0xf7,0x04,0x7b,0x04 +00065c e6055105 DCB 0xe6,0x05,0x51,0x05 +000660 bc064b39 DCB 0xbc,0x06,0x4b,0x39 +000664 0013b706 DCB 0x00,0x13,0xb7,0x06 +000668 be072407 DCB 0xbe,0x07,0x24,0x07 +00066c 7907cd08 DCB 0x79,0x07,0xcd,0x08 +000670 6308e609 DCB 0x63,0x08,0xe6,0x09 +000674 6909e40a DCB 0x69,0x09,0xe4,0x0a +000678 5b39000f DCB 0x5b,0x39,0x00,0x0f +00067c b80ace0b DCB 0xb8,0x0a,0xce,0x0b +000680 390b9d0c DCB 0x39,0x0b,0x9d,0x0c +000684 0c0c800f DCB 0x0c,0x0c,0x80,0x0f +000688 fc0ffd39 DCB 0xfc,0x0f,0xfd,0x39 +00068c 0002bf08 DCB 0x00,0x02,0xbf,0x08 +000690 390013b0 DCB 0x39,0x00,0x13,0xb0 +000694 00000352 DCB 0x00,0x00,0x03,0x52 +000698 036903d7 DCB 0x03,0x69,0x03,0xd7 +00069c 042b0475 DCB 0x04,0x2b,0x04,0x75 +0006a0 04ba0505 DCB 0x04,0xba,0x05,0x05 +0006a4 058a3900 DCB 0x05,0x8a,0x39,0x00 +0006a8 13b105f1 DCB 0x13,0xb1,0x05,0xf1 +0006ac 06470692 DCB 0x06,0x47,0x06,0x92 +0006b0 06d5075e DCB 0x06,0xd5,0x07,0x5e +0006b4 07d30842 DCB 0x07,0xd3,0x08,0x42 +0006b8 08a70900 DCB 0x08,0xa7,0x09,0x00 +0006bc 39000fb2 DCB 0x39,0x00,0x0f,0xb2 +0006c0 096109b9 DCB 0x09,0x61,0x09,0xb9 +0006c4 0a090a53 DCB 0x0a,0x09,0x0a,0x53 +0006c8 0aa50b31 DCB 0x0a,0xa5,0x0b,0x31 +0006cc 0b323900 DCB 0x0b,0x32,0x39,0x00 +0006d0 13b30000 DCB 0x13,0xb3,0x00,0x00 +0006d4 02d10302 DCB 0x02,0xd1,0x03,0x02 +0006d8 035503a8 DCB 0x03,0x55,0x03,0xa8 +0006dc 03ef042f DCB 0x03,0xef,0x04,0x2f +0006e0 047004e7 DCB 0x04,0x70,0x04,0xe7 +0006e4 390013b4 DCB 0x39,0x00,0x13,0xb4 +0006e8 0540058d DCB 0x05,0x40,0x05,0x8d +0006ec 05d0060d DCB 0x05,0xd0,0x06,0x0d +0006f0 068206e7 DCB 0x06,0x82,0x06,0xe7 +0006f4 07410795 DCB 0x07,0x41,0x07,0x95 +0006f8 07e63900 DCB 0x07,0xe6,0x39,0x00 +0006fc 0fb5082c DCB 0x0f,0xb5,0x08,0x2c +000700 087408ba DCB 0x08,0x74,0x08,0xba +000704 08fa0932 DCB 0x08,0xfa,0x09,0x32 +000708 09ac09ad DCB 0x09,0xac,0x09,0xad +00070c 390013b6 DCB 0x39,0x00,0x13,0xb6 +000710 00000310 DCB 0x00,0x00,0x03,0x10 +000714 032c03c3 DCB 0x03,0x2c,0x03,0xc3 +000718 043e04a2 DCB 0x04,0x3e,0x04,0xa2 +00071c 04fb0554 DCB 0x04,0xfb,0x05,0x54 +000720 05ee3900 DCB 0x05,0xee,0x39,0x00 +000724 13b7065c DCB 0x13,0xb7,0x06,0x5c +000728 06bf0713 DCB 0x06,0xbf,0x07,0x13 +00072c 075d07ee DCB 0x07,0x5d,0x07,0xee +000730 086b08e1 DCB 0x08,0x6b,0x08,0xe1 +000734 094c09b2 DCB 0x09,0x4c,0x09,0xb2 +000738 39000fb8 DCB 0x39,0x00,0x0f,0xb8 +00073c 0a190a7d DCB 0x0a,0x19,0x0a,0x7d +000740 0adc0b35 DCB 0x0a,0xdc,0x0b,0x35 +000744 0b820c43 DCB 0x0b,0x82,0x0c,0x43 +000748 0c443900 DCB 0x0c,0x44,0x39,0x00 +00074c 02bf0739 DCB 0x02,0xbf,0x07,0x39 +000750 0013b000 DCB 0x00,0x13,0xb0,0x00 +000754 00033903 DCB 0x00,0x03,0x39,0x03 +000758 51036403 DCB 0x51,0x03,0x64,0x03 +00075c a103d804 DCB 0xa1,0x03,0xd8,0x04 +000760 08043004 DCB 0x08,0x04,0x30,0x04 +000764 7f390013 DCB 0x7f,0x39,0x00,0x13 +000768 b104c505 DCB 0xb1,0x04,0xc5,0x05 +00076c 0f055205 DCB 0x0f,0x05,0x52,0x05 +000770 9205f806 DCB 0x92,0x05,0xf8,0x06 +000774 4e069806 DCB 0x4e,0x06,0x98,0x06 +000778 dc072139 DCB 0xdc,0x07,0x21,0x39 +00077c 000fb207 DCB 0x00,0x0f,0xb2,0x07 +000780 64079f07 DCB 0x64,0x07,0x9f,0x07 +000784 da081108 DCB 0xda,0x08,0x11,0x08 +000788 4a08ad08 DCB 0x4a,0x08,0xad,0x08 +00078c af390013 DCB 0xaf,0x39,0x00,0x13 +000790 b3000002 DCB 0xb3,0x00,0x00,0x02 +000794 a002d603 DCB 0xa0,0x02,0xd6,0x03 +000798 08032c03 DCB 0x08,0x03,0x2c,0x03 +00079c 5a038703 DCB 0x5a,0x03,0x87,0x03 +0007a0 ae03f839 DCB 0xae,0x03,0xf8,0x39 +0007a4 0013b404 DCB 0x00,0x13,0xb4,0x04 +0007a8 39047904 DCB 0x39,0x04,0x79,0x04 +0007ac b504ee05 DCB 0xb5,0x04,0xee,0x05 +0007b0 47059305 DCB 0x47,0x05,0x93,0x05 +0007b4 d6061306 DCB 0xd6,0x06,0x13,0x06 +0007b8 4e39000f DCB 0x4e,0x39,0x00,0x0f +0007bc b5068806 DCB 0xb5,0x06,0x88,0x06 +0007c0 ba06ec07 DCB 0xba,0x06,0xec,0x07 +0007c4 1a074707 DCB 0x1a,0x07,0x47,0x07 +0007c8 9b079c39 DCB 0x9b,0x07,0x9c,0x39 +0007cc 0013b600 DCB 0x00,0x13,0xb6,0x00 +0007d0 0002fe03 DCB 0x00,0x02,0xfe,0x03 +0007d4 10033e03 DCB 0x10,0x03,0x3e,0x03 +0007d8 8603d304 DCB 0x86,0x03,0xd3,0x04 +0007dc 11044c04 DCB 0x11,0x04,0x4c,0x04 +0007e0 b0390013 DCB 0xb0,0x39,0x00,0x13 +0007e4 b7050905 DCB 0xb7,0x05,0x09,0x05 +0007e8 6005ad05 DCB 0x60,0x05,0xad,0x05 +0007ec f7066406 DCB 0xf7,0x06,0x64,0x06 +0007f0 c7071a07 DCB 0xc7,0x07,0x1a,0x07 +0007f4 6407ad39 DCB 0x64,0x07,0xad,0x39 +0007f8 000fb807 DCB 0x00,0x0f,0xb8,0x07 +0007fc f5083408 DCB 0xf5,0x08,0x34,0x08 +000800 7208ad08 DCB 0x72,0x08,0xad,0x08 +000804 ea095309 DCB 0xea,0x09,0x53,0x09 +000808 55390002 DCB 0x55,0x39,0x00,0x02 +00080c bf063900 DCB 0xbf,0x06,0x39,0x00 +000810 13b00000 DCB 0x13,0xb0,0x00,0x00 +000814 033a0350 DCB 0x03,0x3a,0x03,0x50 +000818 0363039d DCB 0x03,0x63,0x03,0x9d +00081c 03d30403 DCB 0x03,0xd3,0x04,0x03 +000820 042a0478 DCB 0x04,0x2a,0x04,0x78 +000824 390013b1 DCB 0x39,0x00,0x13,0xb1 +000828 04be0506 DCB 0x04,0xbe,0x05,0x06 +00082c 05480587 DCB 0x05,0x48,0x05,0x87 +000830 05ec0643 DCB 0x05,0xec,0x06,0x43 +000834 068d06d0 DCB 0x06,0x8d,0x06,0xd0 +000838 07143900 DCB 0x07,0x14,0x39,0x00 +00083c 0fb20756 DCB 0x0f,0xb2,0x07,0x56 +000840 079107cb DCB 0x07,0x91,0x07,0xcb +000844 08020839 DCB 0x08,0x02,0x08,0x39 +000848 089c089e DCB 0x08,0x9c,0x08,0x9e +00084c 390013b3 DCB 0x39,0x00,0x13,0xb3 +000850 0000029b DCB 0x00,0x00,0x02,0x9b +000854 02d40306 DCB 0x02,0xd4,0x03,0x06 +000858 032a0356 DCB 0x03,0x2a,0x03,0x56 +00085c 038203a8 DCB 0x03,0x82,0x03,0xa8 +000860 03f13900 DCB 0x03,0xf1,0x39,0x00 +000864 13b40432 DCB 0x13,0xb4,0x04,0x32 +000868 047104ac DCB 0x04,0x71,0x04,0xac +00086c 04e4053e DCB 0x04,0xe4,0x05,0x3e +000870 058905cc DCB 0x05,0x89,0x05,0xcc +000874 06090643 DCB 0x06,0x09,0x06,0x43 +000878 39000fb5 DCB 0x39,0x00,0x0f,0xb5 +00087c 067c06ae DCB 0x06,0x7c,0x06,0xae +000880 06df070d DCB 0x06,0xdf,0x07,0x0d +000884 073a078d DCB 0x07,0x3a,0x07,0x8d +000888 078f3900 DCB 0x07,0x8f,0x39,0x00 +00088c 13b60000 DCB 0x13,0xb6,0x00,0x00 +000890 0301030f DCB 0x03,0x01,0x03,0x0f +000894 033c0382 DCB 0x03,0x3c,0x03,0x82 +000898 03cd040b DCB 0x03,0xcd,0x04,0x0b +00089c 044504a8 DCB 0x04,0x45,0x04,0xa8 +0008a0 390013b7 DCB 0x39,0x00,0x13,0xb7 +0008a4 05030555 DCB 0x05,0x03,0x05,0x55 +0008a8 05a205ea DCB 0x05,0xa2,0x05,0xea +0008ac 065806ba DCB 0x06,0x58,0x06,0xba +0008b0 070e0757 DCB 0x07,0x0e,0x07,0x57 +0008b4 079f3900 DCB 0x07,0x9f,0x39,0x00 +0008b8 0fb807e6 DCB 0x0f,0xb8,0x07,0xe6 +0008bc 08250862 DCB 0x08,0x25,0x08,0x62 +0008c0 089d08d8 DCB 0x08,0x9d,0x08,0xd8 +0008c4 09410943 DCB 0x09,0x41,0x09,0x43 +0008c8 390002bf DCB 0x39,0x00,0x02,0xbf +0008cc 05390013 DCB 0x05,0x39,0x00,0x13 +0008d0 b0000003 DCB 0xb0,0x00,0x00,0x03 +0008d4 58036703 DCB 0x58,0x03,0x67,0x03 +0008d8 6c039d03 DCB 0x6c,0x03,0x9d,0x03 +0008dc d5040304 DCB 0xd5,0x04,0x03,0x04 +0008e0 2b047839 DCB 0x2b,0x04,0x78,0x39 +0008e4 0013b104 DCB 0x00,0x13,0xb1,0x04 +0008e8 be050605 DCB 0xbe,0x05,0x06,0x05 +0008ec 48058705 DCB 0x48,0x05,0x87,0x05 +0008f0 ec064306 DCB 0xec,0x06,0x43,0x06 +0008f4 8d06d007 DCB 0x8d,0x06,0xd0,0x07 +0008f8 1439000f DCB 0x14,0x39,0x00,0x0f +0008fc b2075607 DCB 0xb2,0x07,0x56,0x07 +000900 9107cb08 DCB 0x91,0x07,0xcb,0x08 +000904 01083808 DCB 0x01,0x08,0x38,0x08 +000908 93089539 DCB 0x93,0x08,0x95,0x39 +00090c 0013b300 DCB 0x00,0x13,0xb3,0x00 +000910 0002aa02 DCB 0x00,0x02,0xaa,0x02 +000914 ed031903 DCB 0xed,0x03,0x19,0x03 +000918 31035b03 DCB 0x31,0x03,0x5b,0x03 +00091c 8503a903 DCB 0x85,0x03,0xa9,0x03 +000920 f1390013 DCB 0xf1,0x39,0x00,0x13 +000924 b4043204 DCB 0xb4,0x04,0x32,0x04 +000928 7104ac04 DCB 0x71,0x04,0xac,0x04 +00092c e4053e05 DCB 0xe4,0x05,0x3e,0x05 +000930 8905cc06 DCB 0x89,0x05,0xcc,0x06 +000934 09064339 DCB 0x09,0x06,0x43,0x39 +000938 000fb506 DCB 0x00,0x0f,0xb5,0x06 +00093c 7c06ae06 DCB 0x7c,0x06,0xae,0x06 +000940 df070c07 DCB 0xdf,0x07,0x0c,0x07 +000944 35078607 DCB 0x35,0x07,0x86,0x07 +000948 88390013 DCB 0x88,0x39,0x00,0x13 +00094c b6000003 DCB 0xb6,0x00,0x00,0x03 +000950 1f033b03 DCB 0x1f,0x03,0x3b,0x03 +000954 45038203 DCB 0x45,0x03,0x82,0x03 +000958 ca040b04 DCB 0xca,0x04,0x0b,0x04 +00095c 4504a839 DCB 0x45,0x04,0xa8,0x39 +000960 0013b705 DCB 0x00,0x13,0xb7,0x05 +000964 03055505 DCB 0x03,0x05,0x55,0x05 +000968 a205ea06 DCB 0xa2,0x05,0xea,0x06 +00096c 5806ba07 DCB 0x58,0x06,0xba,0x07 +000970 0e075707 DCB 0x0e,0x07,0x57,0x07 +000974 9f39000f DCB 0x9f,0x39,0x00,0x0f +000978 b807e608 DCB 0xb8,0x07,0xe6,0x08 +00097c 25086208 DCB 0x25,0x08,0x62,0x08 +000980 9c08d309 DCB 0x9c,0x08,0xd3,0x09 +000984 3a093c39 DCB 0x3a,0x09,0x3c,0x39 +000988 0002bf04 DCB 0x00,0x02,0xbf,0x04 +00098c 390013b0 DCB 0x39,0x00,0x13,0xb0 +000990 0000037c DCB 0x00,0x00,0x03,0x7c +000994 037f0380 DCB 0x03,0x7f,0x03,0x80 +000998 03ab03d5 DCB 0x03,0xab,0x03,0xd5 +00099c 04060430 DCB 0x04,0x06,0x04,0x30 +0009a0 047d3900 DCB 0x04,0x7d,0x39,0x00 +0009a4 13b104c2 DCB 0x13,0xb1,0x04,0xc2 +0009a8 05060548 DCB 0x05,0x06,0x05,0x48 +0009ac 057005db DCB 0x05,0x70,0x05,0xdb +0009b0 062e0680 DCB 0x06,0x2e,0x06,0x80 +0009b4 06c40707 DCB 0x06,0xc4,0x07,0x07 +0009b8 39000fb2 DCB 0x39,0x00,0x0f,0xb2 +0009bc 07450783 DCB 0x07,0x45,0x07,0x83 +0009c0 07af07e1 DCB 0x07,0xaf,0x07,0xe1 +0009c4 08140873 DCB 0x08,0x14,0x08,0x73 +0009c8 08743900 DCB 0x08,0x74,0x39,0x00 +0009cc 13b30000 DCB 0x13,0xb3,0x00,0x00 +0009d0 02bc0314 DCB 0x02,0xbc,0x03,0x14 +0009d4 03450359 DCB 0x03,0x45,0x03,0x59 +0009d8 0375039d DCB 0x03,0x75,0x03,0x9d +0009dc 03c30408 DCB 0x03,0xc3,0x04,0x08 +0009e0 390013b4 DCB 0x39,0x00,0x13,0xb4 +0009e4 04480486 DCB 0x04,0x48,0x04,0x86 +0009e8 04bf04e4 DCB 0x04,0xbf,0x04,0xe4 +0009ec 053e0589 DCB 0x05,0x3e,0x05,0x89 +0009f0 05cc0609 DCB 0x05,0xcc,0x06,0x09 +0009f4 06433900 DCB 0x06,0x43,0x39,0x00 +0009f8 0fb5067c DCB 0x0f,0xb5,0x06,0x7c +0009fc 06ab06d5 DCB 0x06,0xab,0x06,0xd5 +000a00 07020730 DCB 0x07,0x02,0x07,0x30 +000a04 077e077f DCB 0x07,0x7e,0x07,0x7f +000a08 390013b6 DCB 0x39,0x00,0x13,0xb6 +000a0c 00000343 DCB 0x00,0x00,0x03,0x43 +000a10 035b035c DCB 0x03,0x5b,0x03,0x5c +000a14 039003ca DCB 0x03,0x90,0x03,0xca +000a18 040b0445 DCB 0x04,0x0b,0x04,0x45 +000a1c 04a83900 DCB 0x04,0xa8,0x39,0x00 +000a20 13b70503 DCB 0x13,0xb7,0x05,0x03 +000a24 055505a2 DCB 0x05,0x55,0x05,0xa2 +000a28 05d50648 DCB 0x05,0xd5,0x06,0x48 +000a2c 069f06fe DCB 0x06,0x9f,0x06,0xfe +000a30 074a0792 DCB 0x07,0x4a,0x07,0x92 +000a34 39000fb8 DCB 0x39,0x00,0x0f,0xb8 +000a38 07d80816 DCB 0x07,0xd8,0x08,0x16 +000a3c 084d0885 DCB 0x08,0x4d,0x08,0x85 +000a40 08c00927 DCB 0x08,0xc0,0x09,0x27 +000a44 09283900 DCB 0x09,0x28,0x39,0x00 +000a48 02bf0339 DCB 0x02,0xbf,0x03,0x39 +000a4c 0013b000 DCB 0x00,0x13,0xb0,0x00 +000a50 0003a903 DCB 0x00,0x03,0xa9,0x03 +000a54 b403c203 DCB 0xb4,0x03,0xc2,0x03 +000a58 de040704 DCB 0xde,0x04,0x07,0x04 +000a5c 1b044c04 DCB 0x1b,0x04,0x4c,0x04 +000a60 89390013 DCB 0x89,0x39,0x00,0x13 +000a64 b104cc05 DCB 0xb1,0x04,0xcc,0x05 +000a68 05054005 DCB 0x05,0x05,0x40,0x05 +000a6c 7105c506 DCB 0x71,0x05,0xc5,0x06 +000a70 1b066d06 DCB 0x1b,0x06,0x6d,0x06 +000a74 a906e739 DCB 0xa9,0x06,0xe7,0x39 +000a78 000fb207 DCB 0x00,0x0f,0xb2,0x07 +000a7c 22075507 DCB 0x22,0x07,0x55,0x07 +000a80 9207c007 DCB 0x92,0x07,0xc0,0x07 +000a84 ef084c08 DCB 0xef,0x08,0x4c,0x08 +000a88 4d390013 DCB 0x4d,0x39,0x00,0x13 +000a8c b3000003 DCB 0xb3,0x00,0x00,0x03 +000a90 24035d03 DCB 0x24,0x03,0x5d,0x03 +000a94 83039e03 DCB 0x83,0x03,0x9e,0x03 +000a98 b503cc03 DCB 0xb5,0x03,0xcc,0x03 +000a9c ef041e39 DCB 0xef,0x04,0x1e,0x39 +000aa0 0013b404 DCB 0x00,0x13,0xb4,0x04 +000aa4 57048604 DCB 0x57,0x04,0x86,0x04 +000aa8 bf04e405 DCB 0xbf,0x04,0xe4,0x05 +000aac 30057805 DCB 0x30,0x05,0x78,0x05 +000ab0 be05f006 DCB 0xbe,0x05,0xf0,0x06 +000ab4 2b39000f DCB 0x2b,0x39,0x00,0x0f +000ab8 b5066206 DCB 0xb5,0x06,0x62,0x06 +000abc 8a06bd06 DCB 0x8a,0x06,0xbd,0x06 +000ac0 e6070e07 DCB 0xe6,0x07,0x0e,0x07 +000ac4 58075939 DCB 0x58,0x07,0x59,0x39 +000ac8 0013b600 DCB 0x00,0x13,0xb6,0x00 +000acc 00038503 DCB 0x00,0x03,0x85,0x03 +000ad0 9903a603 DCB 0x99,0x03,0xa6,0x03 +000ad4 c503f604 DCB 0xc5,0x03,0xf6,0x04 +000ad8 1d045e04 DCB 0x1d,0x04,0x5e,0x04 +000adc a8390013 DCB 0xa8,0x39,0x00,0x13 +000ae0 b7050305 DCB 0xb7,0x05,0x03,0x05 +000ae4 45059305 DCB 0x45,0x05,0x93,0x05 +000ae8 c9062d06 DCB 0xc9,0x06,0x2d,0x06 +000aec 8b06e307 DCB 0x8b,0x06,0xe3,0x07 +000af0 25077239 DCB 0x25,0x07,0x72,0x39 +000af4 000fb807 DCB 0x00,0x0f,0xb8,0x07 +000af8 b507e808 DCB 0xb5,0x07,0xe8,0x08 +000afc 29085f08 DCB 0x29,0x08,0x5f,0x08 +000b00 9008f608 DCB 0x90,0x08,0xf6,0x08 +000b04 f7390002 DCB 0xf7,0x39,0x00,0x02 +000b08 bf023900 DCB 0xbf,0x02,0x39,0x00 +000b0c 13b00000 DCB 0x13,0xb0,0x00,0x00 +000b10 03ef03f0 DCB 0x03,0xef,0x03,0xf0 +000b14 04040417 DCB 0x04,0x04,0x04,0x17 +000b18 0426044f DCB 0x04,0x26,0x04,0x4f +000b1c 045d04a3 DCB 0x04,0x5d,0x04,0xa3 +000b20 390013b1 DCB 0x39,0x00,0x13,0xb1 +000b24 04d8050b DCB 0x04,0xd8,0x05,0x0b +000b28 0544056d DCB 0x05,0x44,0x05,0x6d +000b2c 05c10610 DCB 0x05,0xc1,0x06,0x10 +000b30 065e0698 DCB 0x06,0x5e,0x06,0x98 +000b34 06db3900 DCB 0x06,0xdb,0x39,0x00 +000b38 0fb20711 DCB 0x0f,0xb2,0x07,0x11 +000b3c 074b0779 DCB 0x07,0x4b,0x07,0x79 +000b40 07a507d0 DCB 0x07,0xa5,0x07,0xd0 +000b44 08320833 DCB 0x08,0x32,0x08,0x33 +000b48 390013b3 DCB 0x39,0x00,0x13,0xb3 +000b4c 00000358 DCB 0x00,0x00,0x03,0x58 +000b50 03b203ce DCB 0x03,0xb2,0x03,0xce +000b54 03e70401 DCB 0x03,0xe7,0x04,0x01 +000b58 040d041a DCB 0x04,0x0d,0x04,0x1a +000b5c 04483900 DCB 0x04,0x48,0x39,0x00 +000b60 13b40470 DCB 0x13,0xb4,0x04,0x70 +000b64 049904c9 DCB 0x04,0x99,0x04,0xc9 +000b68 04e90530 DCB 0x04,0xe9,0x05,0x30 +000b6c 057805b7 DCB 0x05,0x78,0x05,0xb7 +000b70 05ef061f DCB 0x05,0xef,0x06,0x1f +000b74 39000fb5 DCB 0x39,0x00,0x0f,0xb5 +000b78 064f0680 DCB 0x06,0x4f,0x06,0x80 +000b7c 06ab06d3 DCB 0x06,0xab,0x06,0xd3 +000b80 06f90742 DCB 0x06,0xf9,0x07,0x42 +000b84 07433900 DCB 0x07,0x43,0x39,0x00 +000b88 13b60000 DCB 0x13,0xb6,0x00,0x00 +000b8c 03d003d6 DCB 0x03,0xd0,0x03,0xd6 +000b90 03eb03ff DCB 0x03,0xeb,0x03,0xff +000b94 0421044e DCB 0x04,0x21,0x04,0x4e +000b98 046704c2 DCB 0x04,0x67,0x04,0xc2 +000b9c 390013b7 DCB 0x39,0x00,0x13,0xb7 +000ba0 05030541 DCB 0x05,0x03,0x05,0x41 +000ba4 058505bb DCB 0x05,0x85,0x05,0xbb +000ba8 061c067b DCB 0x06,0x1c,0x06,0x7b +000bac 06d2071a DCB 0x06,0xd2,0x07,0x1a +000bb0 075c3900 DCB 0x07,0x5c,0x39,0x00 +000bb4 0fb80798 DCB 0x0f,0xb8,0x07,0x98 +000bb8 07d60810 DCB 0x07,0xd6,0x08,0x10 +000bbc 08440871 DCB 0x08,0x44,0x08,0x71 +000bc0 08d208d3 DCB 0x08,0xd2,0x08,0xd3 +000bc4 390002bf DCB 0x39,0x00,0x02,0xbf +000bc8 01390013 DCB 0x01,0x39,0x00,0x13 +000bcc b0000003 DCB 0xb0,0x00,0x00,0x03 +000bd0 f8044104 DCB 0xf8,0x04,0x41,0x04 +000bd4 42044f04 DCB 0x42,0x04,0x4f,0x04 +000bd8 5e047204 DCB 0x5e,0x04,0x72,0x04 +000bdc 8d04ac39 DCB 0x8d,0x04,0xac,0x39 +000be0 0013b104 DCB 0x00,0x13,0xb1,0x04 +000be4 db050905 DCB 0xdb,0x05,0x09,0x05 +000be8 2f055605 DCB 0x2f,0x05,0x56,0x05 +000bec a205e906 DCB 0xa2,0x05,0xe9,0x06 +000bf0 23065f06 DCB 0x23,0x06,0x5f,0x06 +000bf4 9339000f DCB 0x93,0x39,0x00,0x0f +000bf8 b206ca06 DCB 0xb2,0x06,0xca,0x06 +000bfc fb072407 DCB 0xfb,0x07,0x24,0x07 +000c00 58078107 DCB 0x58,0x07,0x81,0x07 +000c04 d007d139 DCB 0xd0,0x07,0xd1,0x39 +000c08 0013b300 DCB 0x00,0x13,0xb3,0x00 +000c0c 0003ef03 DCB 0x00,0x03,0xef,0x03 +000c10 f0041b04 DCB 0xf0,0x04,0x1b,0x04 +000c14 2a043d04 DCB 0x2a,0x04,0x3d,0x04 +000c18 4c045304 DCB 0x4c,0x04,0x53,0x04 +000c1c 72390013 DCB 0x72,0x39,0x00,0x13 +000c20 b4048a04 DCB 0xb4,0x04,0x8a,0x04 +000c24 a804c904 DCB 0xa8,0x04,0xc9,0x04 +000c28 e6052205 DCB 0xe6,0x05,0x22,0x05 +000c2c 5e059205 DCB 0x5e,0x05,0x92,0x05 +000c30 c605f039 DCB 0xc6,0x05,0xf0,0x39 +000c34 000fb506 DCB 0x00,0x0f,0xb5,0x06 +000c38 1b064906 DCB 0x1b,0x06,0x49,0x06 +000c3c 68069206 DCB 0x68,0x06,0x92,0x06 +000c40 bb06fc06 DCB 0xbb,0x06,0xfc,0x06 +000c44 fd390013 DCB 0xfd,0x39,0x00,0x13 +000c48 b6000003 DCB 0xb6,0x00,0x00,0x03 +000c4c d9043004 DCB 0xd9,0x04,0x30,0x04 +000c50 31043c04 DCB 0x31,0x04,0x3c,0x04 +000c54 4c046104 DCB 0x4c,0x04,0x61,0x04 +000c58 8204c239 DCB 0x82,0x04,0xc2,0x39 +000c5c 0013b704 DCB 0x00,0x13,0xb7,0x04 +000c60 f6052705 DCB 0xf6,0x05,0x27,0x05 +000c64 5c058f05 DCB 0x5c,0x05,0x8f,0x05 +000c68 ef064606 DCB 0xef,0x06,0x46,0x06 +000c6c 9006d607 DCB 0x90,0x06,0xd6,0x07 +000c70 1139000f DCB 0x11,0x39,0x00,0x0f +000c74 b8074d07 DCB 0xb8,0x07,0x4d,0x07 +000c78 8407ad07 DCB 0x84,0x07,0xad,0x07 +000c7c e1081508 DCB 0xe1,0x08,0x15,0x08 +000c80 74087539 DCB 0x74,0x08,0x75,0x39 +000c84 0002bf00 DCB 0x00,0x02,0xbf,0x00 +000c88 390013b0 DCB 0x39,0x00,0x13,0xb0 +000c8c 00570453 DCB 0x00,0x57,0x04,0x53 +000c90 045c046f DCB 0x04,0x5c,0x04,0x6f +000c94 047e0489 DCB 0x04,0x7e,0x04,0x89 +000c98 0494049f DCB 0x04,0x94,0x04,0x9f +000c9c 04b63900 DCB 0x04,0xb6,0x39,0x00 +000ca0 13b104cf DCB 0x13,0xb1,0x04,0xcf +000ca4 04ea0507 DCB 0x04,0xea,0x05,0x07 +000ca8 05240557 DCB 0x05,0x24,0x05,0x57 +000cac 058305af DCB 0x05,0x83,0x05,0xaf +000cb0 05db0607 DCB 0x05,0xdb,0x06,0x07 +000cb4 39000fb2 DCB 0x39,0x00,0x0f,0xb2 +000cb8 062b0651 DCB 0x06,0x2b,0x06,0x51 +000cbc 0676069b DCB 0x06,0x76,0x06,0x9b +000cc0 06bf06ff DCB 0x06,0xbf,0x06,0xff +000cc4 07003900 DCB 0x07,0x00,0x39,0x00 +000cc8 13b3006a DCB 0x13,0xb3,0x00,0x6a +000ccc 0466046d DCB 0x04,0x66,0x04,0x6d +000cd0 047b0485 DCB 0x04,0x7b,0x04,0x85 +000cd4 048a048f DCB 0x04,0x8a,0x04,0x8f +000cd8 0494049e DCB 0x04,0x94,0x04,0x9e +000cdc 390013b4 DCB 0x39,0x00,0x13,0xb4 +000ce0 04a904b5 DCB 0x04,0xa9,0x04,0xb5 +000ce4 04c404d5 DCB 0x04,0xc4,0x04,0xd5 +000ce8 04fe0520 DCB 0x04,0xfe,0x05,0x20 +000cec 05420564 DCB 0x05,0x42,0x05,0x64 +000cf0 05863900 DCB 0x05,0x86,0x39,0x00 +000cf4 0fb505a6 DCB 0x0f,0xb5,0x05,0xa6 +000cf8 05c605e3 DCB 0x05,0xc6,0x05,0xe3 +000cfc 0600061a DCB 0x06,0x00,0x06,0x1a +000d00 064e064f DCB 0x06,0x4e,0x06,0x4f +000d04 390013b6 DCB 0x39,0x00,0x13,0xb6 +000d08 003f043b DCB 0x00,0x3f,0x04,0x3b +000d0c 0445045a DCB 0x04,0x45,0x04,0x5a +000d10 046b0478 DCB 0x04,0x6b,0x04,0x78 +000d14 04850492 DCB 0x04,0x85,0x04,0x92 +000d18 04ac3900 DCB 0x04,0xac,0x39,0x00 +000d1c 13b704c8 DCB 0x13,0xb7,0x04,0xc8 +000d20 04e6050a DCB 0x04,0xe6,0x05,0x0a +000d24 05320583 DCB 0x05,0x32,0x05,0x83 +000d28 05b905ef DCB 0x05,0xb9,0x05,0xef +000d2c 0625065b DCB 0x06,0x25,0x06,0x5b +000d30 39000fb8 DCB 0x39,0x00,0x0f,0xb8 +000d34 069106bc DCB 0x06,0x91,0x06,0xbc +000d38 06e4070c DCB 0x06,0xe4,0x07,0x0c +000d3c 07330782 DCB 0x07,0x33,0x07,0x82 +000d40 07843900 DCB 0x07,0x84,0x39,0x00 +000d44 02ce0139 DCB 0x02,0xce,0x01,0x39 +000d48 0002cc00 DCB 0x00,0x02,0xcc,0x00 +000d4c 390006f0 DCB 0x39,0x00,0x06,0xf0 +000d50 55aa5208 DCB 0x55,0xaa,0x52,0x08 +000d54 02390019 DCB 0x02,0x39,0x00,0x19 +000d58 b9000400 DCB 0xb9,0x00,0x04,0x00 +000d5c 0c001c00 DCB 0x0c,0x00,0x1c,0x00 +000d60 2c003c00 DCB 0x2c,0x00,0x3c,0x00 +000d64 4c005c00 DCB 0x4c,0x00,0x5c,0x00 +000d68 7c009c00 DCB 0x7c,0x00,0x9c,0x00 +000d6c bc00dc00 DCB 0xbc,0x00,0xdc,0x00 +000d70 fc390019 DCB 0xfc,0x39,0x00,0x19 +000d74 ba013c01 DCB 0xba,0x01,0x3c,0x01 +000d78 7c01bc01 DCB 0x7c,0x01,0xbc,0x01 +000d7c fc023c02 DCB 0xfc,0x02,0x3c,0x02 +000d80 7c02bc02 DCB 0x7c,0x02,0xbc,0x02 +000d84 fc033c03 DCB 0xfc,0x03,0x3c,0x03 +000d88 7c03fc03 DCB 0x7c,0x03,0xfc,0x03 +000d8c ff390006 DCB 0xff,0x39,0x00,0x06 +000d90 f055aa52 DCB 0xf0,0x55,0xaa,0x52 +000d94 08033900 DCB 0x08,0x03,0x39,0x00 +000d98 06b2001f DCB 0x06,0xb2,0x00,0x1f +000d9c 1f060139 DCB 0x1f,0x06,0x01,0x39 +000da0 00026f05 DCB 0x00,0x02,0x6f,0x05 +000da4 39000db2 DCB 0x39,0x00,0x0d,0xb2 +000da8 00101000 DCB 0x00,0x10,0x10,0x00 +000dac 0f0f0010 DCB 0x0f,0x0f,0x00,0x10 +000db0 10001f1f DCB 0x10,0x00,0x1f,0x1f +000db4 3900026f DCB 0x39,0x00,0x02,0x6f +000db8 11390009 DCB 0x11,0x39,0x00,0x09 +000dbc b2060106 DCB 0xb2,0x06,0x01,0x06 +000dc0 01060106 DCB 0x01,0x06,0x01,0x06 +000dc4 01390002 DCB 0x01,0x39,0x00,0x02 +000dc8 6f193900 DCB 0x6f,0x19,0x39,0x00 +000dcc 02b20039 DCB 0x02,0xb2,0x00,0x39 +000dd0 0010b6f0 DCB 0x00,0x10,0xb6,0xf0 +000dd4 1c1c0010 DCB 0x1c,0x1c,0x00,0x10 +000dd8 01001001 DCB 0x01,0x00,0x10,0x01 +000ddc 00100100 DCB 0x00,0x10,0x01,0x00 +000de0 1c1c3900 DCB 0x1c,0x1c,0x39,0x00 +000de4 026f0f39 DCB 0x02,0x6f,0x0f,0x39 +000de8 0004b61f DCB 0x00,0x04,0xb6,0x1f +000dec 000a3900 DCB 0x00,0x0a,0x39,0x00 +000df0 026f1a39 DCB 0x02,0x6f,0x1a,0x39 +000df4 0004b60f DCB 0x00,0x04,0xb6,0x0f +000df8 000a3900 DCB 0x00,0x0a,0x39,0x00 +000dfc 026f2539 DCB 0x02,0x6f,0x25,0x39 +000e00 0004b60f DCB 0x00,0x04,0xb6,0x0f +000e04 000a3900 DCB 0x00,0x0a,0x39,0x00 +000e08 026f3039 DCB 0x02,0x6f,0x30,0x39 +000e0c 0004b60f DCB 0x00,0x04,0xb6,0x0f +000e10 000a3900 DCB 0x00,0x0a,0x39,0x00 +000e14 11bb1100 DCB 0x11,0xbb,0x11,0x00 +000e18 1d7e000f DCB 0x1d,0x7e,0x00,0x0f +000e1c 5e000e4c DCB 0x5e,0x00,0x0e,0x4c +000e20 00000000 DCB 0x00,0x00,0x00,0x00 +000e24 1d7e3900 DCB 0x1d,0x7e,0x39,0x00 +000e28 11bc2210 DCB 0x11,0xbc,0x22,0x10 +000e2c 1d5c000f DCB 0x1d,0x5c,0x00,0x0f +000e30 3c000e29 DCB 0x3c,0x00,0x0e,0x29 +000e34 00000000 DCB 0x00,0x00,0x00,0x00 +000e38 1d5c3900 DCB 0x1d,0x5c,0x39,0x00 +000e3c 06f055aa DCB 0x06,0xf0,0x55,0xaa +000e40 52080439 DCB 0x52,0x08,0x04,0x39 +000e44 0002c214 DCB 0x00,0x02,0xc2,0x14 +000e48 390002b1 DCB 0x39,0x00,0x02,0xb1 +000e4c 02390002 DCB 0x02,0x39,0x00,0x02 +000e50 b2403900 DCB 0xb2,0x40,0x39,0x00 +000e54 026f0139 DCB 0x02,0x6f,0x01,0x39 +000e58 0004b200 DCB 0x00,0x04,0xb2,0x00 +000e5c 00003900 DCB 0x00,0x00,0x39,0x00 +000e60 026f0439 DCB 0x02,0x6f,0x04,0x39 +000e64 0004b209 DCB 0x00,0x04,0xb2,0x09 +000e68 e3403900 DCB 0xe3,0x40,0x39,0x00 +000e6c 026f0739 DCB 0x02,0x6f,0x07,0x39 +000e70 0004b209 DCB 0x00,0x04,0xb2,0x09 +000e74 e4003900 DCB 0xe4,0x00,0x39,0x00 +000e78 026f0a39 DCB 0x02,0x6f,0x0a,0x39 +000e7c 0004b209 DCB 0x00,0x04,0xb2,0x09 +000e80 e3403900 DCB 0xe3,0x40,0x39,0x00 +000e84 02cb8639 DCB 0x02,0xcb,0x86,0x39 +000e88 0005d000 DCB 0x00,0x05,0xd0,0x00 +000e8c 00001039 DCB 0x00,0x00,0x10,0x39 +000e90 00026f04 DCB 0x00,0x02,0x6f,0x04 +000e94 390002d0 DCB 0x39,0x00,0x02,0xd0 +000e98 01390002 DCB 0x01,0x39,0x00,0x02 +000e9c 6f013900 DCB 0x6f,0x01,0x39,0x00 +000ea0 06cb050f DCB 0x06,0xcb,0x05,0x0f +000ea4 1f3e7c39 DCB 0x1f,0x3e,0x7c,0x39 +000ea8 00026f06 DCB 0x00,0x02,0x6f,0x06 +000eac 39000bcb DCB 0x39,0x00,0x0b,0xcb +000eb0 0008003c DCB 0x00,0x08,0x00,0x3c +000eb4 014807ff DCB 0x01,0x48,0x07,0xff +000eb8 0fff3900 DCB 0x0f,0xff,0x39,0x00 +000ebc 026f0039 DCB 0x02,0x6f,0x00,0x39 +000ec0 0006d212 DCB 0x00,0x06,0xd2,0x12 +000ec4 0c0c0a06 DCB 0x0c,0x0c,0x0a,0x06 +000ec8 3900026f DCB 0x39,0x00,0x02,0x6f +000ecc 05390006 DCB 0x05,0x39,0x00,0x06 +000ed0 d2301416 DCB 0xd2,0x30,0x14,0x16 +000ed4 0e0a3900 DCB 0x0e,0x0a,0x39,0x00 +000ed8 026f0a39 DCB 0x02,0x6f,0x0a,0x39 +000edc 0006d248 DCB 0x00,0x06,0xd2,0x48 +000ee0 2016120e DCB 0x20,0x16,0x12,0x0e +000ee4 3900026f DCB 0x39,0x00,0x02,0x6f +000ee8 0f390006 DCB 0x0f,0x39,0x00,0x06 +000eec d2442016 DCB 0xd2,0x44,0x20,0x16 +000ef0 12153900 DCB 0x12,0x15,0x39,0x00 +000ef4 026f1439 DCB 0x02,0x6f,0x14,0x39 +000ef8 0006d240 DCB 0x00,0x06,0xd2,0x40 +000efc 20161212 DCB 0x20,0x16,0x12,0x12 +000f00 3900026f DCB 0x39,0x00,0x02,0x6f +000f04 19390006 DCB 0x19,0x39,0x00,0x06 +000f08 d2ffe4a9 DCB 0xd2,0xff,0xe4,0xa9 +000f0c 40303900 DCB 0x40,0x30,0x39,0x00 +000f10 026f1e39 DCB 0x02,0x6f,0x1e,0x39 +000f14 0006d2ff DCB 0x00,0x06,0xd2,0xff +000f18 d8402620 DCB 0xd8,0x40,0x26,0x20 +000f1c 3900026f DCB 0x39,0x00,0x02,0x6f +000f20 23390006 DCB 0x23,0x39,0x00,0x06 +000f24 d2ff8f40 DCB 0xd2,0xff,0x8f,0x40 +000f28 261f3900 DCB 0x26,0x1f,0x39,0x00 +000f2c 026f2839 DCB 0x02,0x6f,0x28,0x39 +000f30 0006d29f DCB 0x00,0x06,0xd2,0x9f +000f34 6040201b DCB 0x60,0x40,0x20,0x1b +000f38 3900026f DCB 0x39,0x00,0x02,0x6f +000f3c 2d390006 DCB 0x2d,0x39,0x00,0x06 +000f40 d2844040 DCB 0xd2,0x84,0x40,0x40 +000f44 201b3900 DCB 0x20,0x1b,0x39,0x00 +000f48 026f3239 DCB 0x02,0x6f,0x32,0x39 +000f4c 0006d212 DCB 0x00,0x06,0xd2,0x12 +000f50 08101006 DCB 0x08,0x10,0x10,0x06 +000f54 3900026f DCB 0x39,0x00,0x02,0x6f +000f58 37390006 DCB 0x37,0x39,0x00,0x06 +000f5c d2300815 DCB 0xd2,0x30,0x08,0x15 +000f60 0b0a3900 DCB 0x0b,0x0a,0x39,0x00 +000f64 026f3c39 DCB 0x02,0x6f,0x3c,0x39 +000f68 0006d246 DCB 0x00,0x06,0xd2,0x46 +000f6c 0810100c DCB 0x08,0x10,0x10,0x0c +000f70 3900026f DCB 0x39,0x00,0x02,0x6f +000f74 41390006 DCB 0x41,0x39,0x00,0x06 +000f78 d2301a10 DCB 0xd2,0x30,0x1a,0x10 +000f7c 16163900 DCB 0x16,0x16,0x39,0x00 +000f80 026f4639 DCB 0x02,0x6f,0x46,0x39 +000f84 0006d230 DCB 0x00,0x06,0xd2,0x30 +000f88 1a101212 DCB 0x1a,0x10,0x12,0x12 +000f8c 3900026f DCB 0x39,0x00,0x02,0x6f +000f90 00390006 DCB 0x00,0x39,0x00,0x06 +000f94 d4080804 DCB 0xd4,0x08,0x08,0x04 +000f98 0c063900 DCB 0x0c,0x06,0x39,0x00 +000f9c 026f0539 DCB 0x02,0x6f,0x05,0x39 +000fa0 0006d429 DCB 0x00,0x06,0xd4,0x29 +000fa4 18100d0a DCB 0x18,0x10,0x0d,0x0a +000fa8 3900026f DCB 0x39,0x00,0x02,0x6f +000fac 0a390006 DCB 0x0a,0x39,0x00,0x06 +000fb0 d4401410 DCB 0xd4,0x40,0x14,0x10 +000fb4 110c3900 DCB 0x11,0x0c,0x39,0x00 +000fb8 026f0f39 DCB 0x02,0x6f,0x0f,0x39 +000fbc 0006d440 DCB 0x00,0x06,0xd4,0x40 +000fc0 1f131410 DCB 0x1f,0x13,0x14,0x10 +000fc4 3900026f DCB 0x39,0x00,0x02,0x6f +000fc8 14390006 DCB 0x14,0x39,0x00,0x06 +000fcc d45f1614 DCB 0xd4,0x5f,0x16,0x14 +000fd0 16133900 DCB 0x16,0x13,0x39,0x00 +000fd4 026f1939 DCB 0x02,0x6f,0x19,0x39 +000fd8 0006d4ff DCB 0x00,0x06,0xd4,0xff +000fdc ffa0502f DCB 0xff,0xa0,0x50,0x2f +000fe0 3900026f DCB 0x39,0x00,0x02,0x6f +000fe4 1e390006 DCB 0x1e,0x39,0x00,0x06 +000fe8 d4fff09a DCB 0xd4,0xff,0xf0,0x9a +000fec 300c3900 DCB 0x30,0x0c,0x39,0x00 +000ff0 026f2339 DCB 0x02,0x6f,0x23,0x39 +000ff4 0006d4ff DCB 0x00,0x06,0xd4,0xff +000ff8 a06a300f DCB 0xa0,0x6a,0x30,0x0f +000ffc 3900026f DCB 0x39,0x00,0x02,0x6f +001000 28390006 DCB 0x28,0x39,0x00,0x06 +001004 d4f08040 DCB 0xd4,0xf0,0x80,0x40 +001008 30123900 DCB 0x30,0x12,0x39,0x00 +00100c 026f2d39 DCB 0x02,0x6f,0x2d,0x39 +001010 0006d4b0 DCB 0x00,0x06,0xd4,0xb0 +001014 40403014 DCB 0x40,0x40,0x30,0x14 +001018 3900026f DCB 0x39,0x00,0x02,0x6f +00101c 32390006 DCB 0x32,0x39,0x00,0x06 +001020 d4040404 DCB 0xd4,0x04,0x04,0x04 +001024 0a053900 DCB 0x0a,0x05,0x39,0x00 +001028 026f3739 DCB 0x02,0x6f,0x37,0x39 +00102c 0006d432 DCB 0x00,0x06,0xd4,0x32 +001030 14100b07 DCB 0x14,0x10,0x0b,0x07 +001034 3900026f DCB 0x39,0x00,0x02,0x6f +001038 3c390006 DCB 0x3c,0x39,0x00,0x06 +00103c d4401810 DCB 0xd4,0x40,0x18,0x10 +001040 0c093900 DCB 0x0c,0x09,0x39,0x00 +001044 026f4139 DCB 0x02,0x6f,0x41,0x39 +001048 0006d420 DCB 0x00,0x06,0xd4,0x20 +00104c 1c1a0e0b DCB 0x1c,0x1a,0x0e,0x0b +001050 3900026f DCB 0x39,0x00,0x02,0x6f +001054 46390006 DCB 0x46,0x39,0x00,0x06 +001058 d4b51818 DCB 0xd4,0xb5,0x18,0x18 +00105c 080c3900 DCB 0x08,0x0c,0x39,0x00 +001060 06f055aa DCB 0x06,0xf0,0x55,0xaa +001064 52080539 DCB 0x52,0x08,0x05,0x39 +001068 0003c707 DCB 0x00,0x03,0xc7,0x07 +00106c 01390004 DCB 0x01,0x39,0x00,0x04 +001070 b0072100 DCB 0xb0,0x07,0x21,0x00 +001074 390003b3 DCB 0x39,0x00,0x03,0xb3 +001078 86803900 DCB 0x86,0x80,0x39,0x00 +00107c 03b58581 DCB 0x03,0xb5,0x85,0x81 +001080 390005b7 DCB 0x39,0x00,0x05,0xb7 +001084 85000081 DCB 0x85,0x00,0x00,0x81 +001088 390005b8 DCB 0x39,0x00,0x05,0xb8 +00108c 85000081 DCB 0x85,0x00,0x00,0x81 +001090 390005b9 DCB 0x39,0x00,0x05,0xb9 +001094 85000081 DCB 0x85,0x00,0x00,0x81 +001098 390004d0 DCB 0x39,0x00,0x04,0xd0 +00109c 00031039 DCB 0x00,0x03,0x10,0x39 +0010a0 0005e082 DCB 0x00,0x05,0xe0,0x82 +0010a4 00000239 DCB 0x00,0x00,0x02,0x39 +0010a8 0004d100 DCB 0x00,0x04,0xd1,0x00 +0010ac 01103900 DCB 0x01,0x10,0x39,0x00 +0010b0 05e18200 DCB 0x05,0xe1,0x82,0x00 +0010b4 00023900 DCB 0x00,0x02,0x39,0x00 +0010b8 06f055aa DCB 0x06,0xf0,0x55,0xaa +0010bc 52080639 DCB 0x52,0x08,0x06,0x39 +0010c0 0006b013 DCB 0x00,0x06,0xb0,0x13 +0010c4 32123204 DCB 0x32,0x12,0x32,0x04 +0010c8 390006b1 DCB 0x39,0x00,0x06,0xb1 +0010cc 32310e32 DCB 0x32,0x31,0x0e,0x32 +0010d0 31390006 DCB 0x31,0x39,0x00,0x06 +0010d4 b2320032 DCB 0xb2,0x32,0x00,0x32 +0010d8 31323900 DCB 0x31,0x32,0x39,0x00 +0010dc 02b30f39 DCB 0x02,0xb3,0x0f,0x39 +0010e0 0006b613 DCB 0x00,0x06,0xb6,0x13 +0010e4 32123204 DCB 0x32,0x12,0x32,0x04 +0010e8 390006b7 DCB 0x39,0x00,0x06,0xb7 +0010ec 32310e32 DCB 0x32,0x31,0x0e,0x32 +0010f0 31390006 DCB 0x31,0x39,0x00,0x06 +0010f4 b8320032 DCB 0xb8,0x32,0x00,0x32 +0010f8 31323900 DCB 0x31,0x32,0x39,0x00 +0010fc 02b90f39 DCB 0x02,0xb9,0x0f,0x39 +001100 0002d001 DCB 0x00,0x02,0xd0,0x01 +001104 390006f0 DCB 0x39,0x00,0x06,0xf0 +001108 55aa5208 DCB 0x55,0xaa,0x52,0x08 +00110c 07390002 DCB 0x07,0x39,0x00,0x02 +001110 b4c03900 DCB 0xb4,0xc0,0x39,0x00 +001114 06b084c0 DCB 0x06,0xb0,0x84,0xc0 +001118 78700039 DCB 0x78,0x70,0x00,0x39 +00111c 0007b10c DCB 0x00,0x07,0xb1,0x0c +001120 1c001c0c DCB 0x1c,0x00,0x1c,0x0c +001124 00390002 DCB 0x00,0x39,0x00,0x02 +001128 b2203900 DCB 0xb2,0x20,0x39,0x00 +00112c 026f3639 DCB 0x02,0x6f,0x36,0x39 +001130 0002b232 DCB 0x00,0x02,0xb2,0x32 +001134 3900026f DCB 0x39,0x00,0x02,0x6f +001138 3f390002 DCB 0x3f,0x39,0x00,0x02 +00113c b2043900 DCB 0xb2,0x04,0x39,0x00 +001140 026f0939 DCB 0x02,0x6f,0x09,0x39 +001144 0002b220 DCB 0x00,0x02,0xb2,0x20 +001148 3900026f DCB 0x39,0x00,0x02,0x6f +00114c 48390002 DCB 0x48,0x39,0x00,0x02 +001150 b2323900 DCB 0xb2,0x32,0x39,0x00 +001154 026f5139 DCB 0x02,0x6f,0x51,0x39 +001158 0002b204 DCB 0x00,0x02,0xb2,0x04 +00115c 3900026f DCB 0x39,0x00,0x02,0x6f +001160 12390002 DCB 0x12,0x39,0x00,0x02 +001164 b2f03900 DCB 0xb2,0xf0,0x39,0x00 +001168 026f5a39 DCB 0x02,0x6f,0x5a,0x39 +00116c 0002b203 DCB 0x00,0x02,0xb2,0x03 +001170 3900026f DCB 0x39,0x00,0x02,0x6f +001174 63390002 DCB 0x63,0x39,0x00,0x02 +001178 b29b3900 DCB 0xb2,0x9b,0x39,0x00 +00117c 026f1b39 DCB 0x02,0x6f,0x1b,0x39 +001180 0002b220 DCB 0x00,0x02,0xb2,0x20 +001184 3900026f DCB 0x39,0x00,0x02,0x6f +001188 6c390002 DCB 0x6c,0x39,0x00,0x02 +00118c b2323900 DCB 0xb2,0x32,0x39,0x00 +001190 026f7539 DCB 0x02,0x6f,0x75,0x39 +001194 0002b204 DCB 0x00,0x02,0xb2,0x04 +001198 3900026f DCB 0x39,0x00,0x02,0x6f +00119c 24390002 DCB 0x24,0x39,0x00,0x02 +0011a0 b2203900 DCB 0xb2,0x20,0x39,0x00 +0011a4 026f7e39 DCB 0x02,0x6f,0x7e,0x39 +0011a8 0002b232 DCB 0x00,0x02,0xb2,0x32 +0011ac 3900026f DCB 0x39,0x00,0x02,0x6f +0011b0 87390002 DCB 0x87,0x39,0x00,0x02 +0011b4 b2043900 DCB 0xb2,0x04,0x39,0x00 +0011b8 026f2d39 DCB 0x02,0x6f,0x2d,0x39 +0011bc 0002b2cc DCB 0x00,0x02,0xb2,0xcc +0011c0 3900026f DCB 0x39,0x00,0x02,0x6f +0011c4 90390002 DCB 0x90,0x39,0x00,0x02 +0011c8 b2033900 DCB 0xb2,0x03,0x39,0x00 +0011cc 026f9939 DCB 0x02,0x6f,0x99,0x39 +0011d0 0002b23a DCB 0x00,0x02,0xb2,0x3a +0011d4 390002b4 DCB 0x39,0x00,0x02,0xb4 +0011d8 c0390003 DCB 0xc0,0x39,0x00,0x03 +0011dc b7000039 DCB 0xb7,0x00,0x00,0x39 +0011e0 0006c001 DCB 0x00,0x06,0xc0,0x01 +0011e4 01000055 DCB 0x01,0x00,0x00,0x55 +0011e8 3900026f DCB 0x39,0x00,0x02,0x6f +0011ec 00390016 DCB 0x00,0x39,0x00,0x16 +0011f0 c12c001c DCB 0xc1,0x2c,0x00,0x1c +0011f4 391c3938 DCB 0x39,0x1c,0x39,0x38 +0011f8 723fd9a2 DCB 0x72,0x3f,0xd9,0xa2 +0011fc 844000e7 DCB 0x84,0x40,0x00,0xe7 +001200 18800000 DCB 0x18,0x80,0x00,0x00 +001204 00003900 DCB 0x00,0x00,0x39,0x00 +001208 026f1539 DCB 0x02,0x6f,0x15,0x39 +00120c 0010c190 DCB 0x00,0x10,0xc1,0x90 +001210 000a9059 DCB 0x00,0x0a,0x90,0x59 +001214 5f33e000 DCB 0x5f,0x33,0xe0,0x00 +001218 000cab59 DCB 0x00,0x0c,0xab,0x59 +00121c 00003900 DCB 0x00,0x00,0x39,0x00 +001220 026f2439 DCB 0x02,0x6f,0x24,0x39 +001224 0008c100 DCB 0x00,0x08,0xc1,0x00 +001228 00000000 DCB 0x00,0x00,0x00,0x00 +00122c 00003900 DCB 0x00,0x00,0x39,0x00 +001230 026f0039 DCB 0x02,0x6f,0x00,0x39 +001234 0016c22a DCB 0x00,0x16,0xc2,0x2a +001238 0f1c391c DCB 0x0f,0x1c,0x39,0x1c +00123c 39c78e00 DCB 0x39,0xc7,0x8e,0x00 +001240 12bdda40 DCB 0x12,0xbd,0xda,0x40 +001244 1486baff DCB 0x14,0x86,0xba,0xff +001248 f612bf8d DCB 0xf6,0x12,0xbf,0x8d +00124c 3900026f DCB 0x39,0x00,0x02,0x6f +001250 15390010 DCB 0x15,0x39,0x00,0x10 +001254 c293de0a DCB 0xc2,0x93,0xde,0x0a +001258 94375f33 DCB 0x94,0x37,0x5f,0x33 +00125c efe27300 DCB 0xef,0xe2,0x73,0x00 +001260 55590000 DCB 0x55,0x59,0x00,0x00 +001264 3900026f DCB 0x39,0x00,0x02,0x6f +001268 24390008 DCB 0x24,0x39,0x00,0x08 +00126c c2000000 DCB 0xc2,0x00,0x00,0x00 +001270 00000000 DCB 0x00,0x00,0x00,0x00 +001274 3900026f DCB 0x39,0x00,0x02,0x6f +001278 00390016 DCB 0x00,0x39,0x00,0x16 +00127c c326001c DCB 0xc3,0x26,0x00,0x1c +001280 391c3938 DCB 0x39,0x1c,0x39,0x38 +001284 72000000 DCB 0x72,0x00,0x00,0x00 +001288 003fd8bb DCB 0x00,0x3f,0xd8,0xbb +00128c 6c800000 DCB 0x6c,0x80,0x00,0x00 +001290 00003900 DCB 0x00,0x00,0x39,0x00 +001294 026f1539 DCB 0x02,0x6f,0x15,0x39 +001298 0010c303 DCB 0x00,0x10,0xc3,0x03 +00129c de000437 DCB 0xde,0x00,0x04,0x37 +0012a0 55336000 DCB 0x55,0x33,0x60,0x00 +0012a4 000355a7 DCB 0x00,0x03,0x55,0xa7 +0012a8 00003900 DCB 0x00,0x00,0x39,0x00 +0012ac 026f2439 DCB 0x02,0x6f,0x24,0x39 +0012b0 0008c300 DCB 0x00,0x08,0xc3,0x00 +0012b4 00000000 DCB 0x00,0x00,0x00,0x00 +0012b8 00003900 DCB 0x00,0x00,0x39,0x00 +0012bc 026f0039 DCB 0x02,0x6f,0x00,0x39 +0012c0 0016c420 DCB 0x00,0x16,0xc4,0x20 +0012c4 0f1c391c DCB 0x0f,0x1c,0x39,0x1c +0012c8 39c78e3f DCB 0x39,0xc7,0x8e,0x3f +0012cc ec605e3f DCB 0xec,0x60,0x5e,0x3f +0012d0 ec5b0e80 DCB 0xec,0x5b,0x0e,0x80 +0012d4 03693fa9 DCB 0x03,0x69,0x3f,0xa9 +0012d8 3900026f DCB 0x39,0x00,0x02,0x6f +0012dc 15390010 DCB 0x15,0x39,0x00,0x10 +0012e0 c4000000 DCB 0xc4,0x00,0x00,0x00 +0012e4 00595533 DCB 0x00,0x59,0x55,0x33 +0012e8 601d8d0f DCB 0x60,0x1d,0x8d,0x0f +0012ec aba70000 DCB 0xab,0xa7,0x00,0x00 +0012f0 3900026f DCB 0x39,0x00,0x02,0x6f +0012f4 24390008 DCB 0x24,0x39,0x00,0x08 +0012f8 c4000000 DCB 0xc4,0x00,0x00,0x00 +0012fc 00000000 DCB 0x00,0x00,0x00,0x00 +001300 3900026f DCB 0x39,0x00,0x02,0x6f +001304 00390016 DCB 0x00,0x39,0x00,0x16 +001308 c5210003 DCB 0xc5,0x21,0x00,0x03 +00130c c1034900 DCB 0xc1,0x03,0x49,0x00 +001310 003fff26 DCB 0x00,0x3f,0xff,0x26 +001314 463fff34 DCB 0x46,0x3f,0xff,0x34 +001318 5200000c DCB 0x52,0x00,0x00,0x0c +00131c 55093900 DCB 0x55,0x09,0x39,0x00 +001320 026f1539 DCB 0x02,0x6f,0x15,0x39 +001324 0010c501 DCB 0x00,0x10,0xc5,0x01 +001328 fe14021b DCB 0xfe,0x14,0x02,0x1b +00132c 33338003 DCB 0x33,0x33,0x80,0x03 +001330 830fe1e3 DCB 0x83,0x0f,0xe1,0xe3 +001334 00003900 DCB 0x00,0x00,0x39,0x00 +001338 026f2439 DCB 0x02,0x6f,0x24,0x39 +00133c 0008c500 DCB 0x00,0x08,0xc5,0x00 +001340 00000000 DCB 0x00,0x00,0x00,0x00 +001344 00003900 DCB 0x00,0x00,0x39,0x00 +001348 026f0039 DCB 0x02,0x6f,0x00,0x39 +00134c 0016c627 DCB 0x00,0x16,0xc6,0x27 +001350 00038403 DCB 0x00,0x03,0x84,0x03 +001354 49000000 DCB 0x49,0x00,0x00,0x00 +001358 0000003f DCB 0x00,0x00,0x00,0x3f +00135c ff3ae400 DCB 0xff,0x3a,0xe4,0x00 +001360 00000000 DCB 0x00,0x00,0x00,0x00 +001364 3900026f DCB 0x39,0x00,0x02,0x6f +001368 15390010 DCB 0x15,0x39,0x00,0x10 +00136c c6021c14 DCB 0xc6,0x02,0x1c,0x14 +001370 02393233 DCB 0x02,0x39,0x32,0x33 +001374 80000003 DCB 0x80,0x00,0x00,0x03 +001378 1ee30000 DCB 0x1e,0xe3,0x00,0x00 +00137c 3900026f DCB 0x39,0x00,0x02,0x6f +001380 24390008 DCB 0x24,0x39,0x00,0x08 +001384 c6000000 DCB 0xc6,0x00,0x00,0x00 +001388 00000000 DCB 0x00,0x00,0x00,0x00 +00138c 3900026f DCB 0x39,0x00,0x02,0x6f +001390 00390016 DCB 0x00,0x39,0x00,0x16 +001394 c72d0003 DCB 0xc7,0x2d,0x00,0x03 +001398 84034900 DCB 0x84,0x03,0x49,0x00 +00139c 003fff34 DCB 0x00,0x3f,0xff,0x34 +0013a0 18000000 DCB 0x18,0x00,0x00,0x00 +0013a4 00800000 DCB 0x00,0x80,0x00,0x00 +0013a8 00003900 DCB 0x00,0x00,0x39,0x00 +0013ac 026f1539 DCB 0x02,0x6f,0x15,0x39 +0013b0 0010c701 DCB 0x00,0x10,0xc7,0x01 +0013b4 fe34021b DCB 0xfe,0x34,0x02,0x1b +0013b8 52335000 DCB 0x52,0x33,0x50,0x00 +0013bc 000ce21d DCB 0x00,0x0c,0xe2,0x1d +0013c0 00003900 DCB 0x00,0x00,0x39,0x00 +0013c4 026f2439 DCB 0x02,0x6f,0x24,0x39 +0013c8 0008c700 DCB 0x00,0x08,0xc7,0x00 +0013cc 00000000 DCB 0x00,0x00,0x00,0x00 +0013d0 00003900 DCB 0x00,0x00,0x39,0x00 +0013d4 026f0039 DCB 0x02,0x6f,0x00,0x39 +0013d8 0016c82b DCB 0x00,0x16,0xc8,0x2b +0013dc 0003c103 DCB 0x00,0x03,0xc1,0x03 +0013e0 49000000 DCB 0x49,0x00,0x00,0x00 +0013e4 00000000 DCB 0x00,0x00,0x00,0x00 +0013e8 000000ff DCB 0x00,0x00,0x00,0xff +0013ec fff3aaf7 DCB 0xff,0xf3,0xaa,0xf7 +0013f0 3900026f DCB 0x39,0x00,0x02,0x6f +0013f4 15390010 DCB 0x15,0x39,0x00,0x10 +0013f8 c8021c33 DCB 0xc8,0x02,0x1c,0x33 +0013fc 02395233 DCB 0x02,0x39,0x52,0x33 +001400 6ffc7d00 DCB 0x6f,0xfc,0x7d,0x00 +001404 1f1d0000 DCB 0x1f,0x1d,0x00,0x00 +001408 3900026f DCB 0x39,0x00,0x02,0x6f +00140c 24390008 DCB 0x24,0x39,0x00,0x08 +001410 c8000000 DCB 0xc8,0x00,0x00,0x00 +001414 00000000 DCB 0x00,0x00,0x00,0x00 +001418 3900026f DCB 0x39,0x00,0x02,0x6f +00141c 00390016 DCB 0x00,0x39,0x00,0x16 +001420 c9000000 DCB 0xc9,0x00,0x00,0x00 +001424 00000000 DCB 0x00,0x00,0x00,0x00 +001428 00000000 DCB 0x00,0x00,0x00,0x00 +00142c 00000000 DCB 0x00,0x00,0x00,0x00 +001430 00000000 DCB 0x00,0x00,0x00,0x00 +001434 00003900 DCB 0x00,0x00,0x39,0x00 +001438 026f1539 DCB 0x02,0x6f,0x15,0x39 +00143c 0010c900 DCB 0x00,0x10,0xc9,0x00 +001440 00000000 DCB 0x00,0x00,0x00,0x00 +001444 00000000 DCB 0x00,0x00,0x00,0x00 +001448 00000000 DCB 0x00,0x00,0x00,0x00 +00144c 00003900 DCB 0x00,0x00,0x39,0x00 +001450 026f2439 DCB 0x02,0x6f,0x24,0x39 +001454 0008c900 DCB 0x00,0x08,0xc9,0x00 +001458 00000000 DCB 0x00,0x00,0x00,0x00 +00145c 00003900 DCB 0x00,0x00,0x39,0x00 +001460 026f0039 DCB 0x02,0x6f,0x00,0x39 +001464 0016ca00 DCB 0x00,0x16,0xca,0x00 +001468 00000000 DCB 0x00,0x00,0x00,0x00 +00146c 00000000 DCB 0x00,0x00,0x00,0x00 +001470 00000000 DCB 0x00,0x00,0x00,0x00 +001474 00000000 DCB 0x00,0x00,0x00,0x00 +001478 00000000 DCB 0x00,0x00,0x00,0x00 +00147c 3900026f DCB 0x39,0x00,0x02,0x6f +001480 15390010 DCB 0x15,0x39,0x00,0x10 +001484 ca000000 DCB 0xca,0x00,0x00,0x00 +001488 00000000 DCB 0x00,0x00,0x00,0x00 +00148c 00000000 DCB 0x00,0x00,0x00,0x00 +001490 00000000 DCB 0x00,0x00,0x00,0x00 +001494 3900026f DCB 0x39,0x00,0x02,0x6f +001498 24390008 DCB 0x24,0x39,0x00,0x08 +00149c ca000000 DCB 0xca,0x00,0x00,0x00 +0014a0 00000000 DCB 0x00,0x00,0x00,0x00 +0014a4 3900026f DCB 0x39,0x00,0x02,0x6f +0014a8 00390016 DCB 0x00,0x39,0x00,0x16 +0014ac cb000000 DCB 0xcb,0x00,0x00,0x00 +0014b0 00000000 DCB 0x00,0x00,0x00,0x00 +0014b4 00000000 DCB 0x00,0x00,0x00,0x00 +0014b8 00000000 DCB 0x00,0x00,0x00,0x00 +0014bc 00000000 DCB 0x00,0x00,0x00,0x00 +0014c0 00003900 DCB 0x00,0x00,0x39,0x00 +0014c4 026f1539 DCB 0x02,0x6f,0x15,0x39 +0014c8 0010cb00 DCB 0x00,0x10,0xcb,0x00 +0014cc 00000000 DCB 0x00,0x00,0x00,0x00 +0014d0 00000000 DCB 0x00,0x00,0x00,0x00 +0014d4 00000000 DCB 0x00,0x00,0x00,0x00 +0014d8 00003900 DCB 0x00,0x00,0x39,0x00 +0014dc 026f2439 DCB 0x02,0x6f,0x24,0x39 +0014e0 0008cb00 DCB 0x00,0x08,0xcb,0x00 +0014e4 00000000 DCB 0x00,0x00,0x00,0x00 +0014e8 00003900 DCB 0x00,0x00,0x39,0x00 +0014ec 026f0039 DCB 0x02,0x6f,0x00,0x39 +0014f0 0016cc00 DCB 0x00,0x16,0xcc,0x00 +0014f4 00000000 DCB 0x00,0x00,0x00,0x00 +0014f8 00000000 DCB 0x00,0x00,0x00,0x00 +0014fc 00000000 DCB 0x00,0x00,0x00,0x00 +001500 00000000 DCB 0x00,0x00,0x00,0x00 +001504 00000000 DCB 0x00,0x00,0x00,0x00 +001508 3900026f DCB 0x39,0x00,0x02,0x6f +00150c 15390010 DCB 0x15,0x39,0x00,0x10 +001510 cc000000 DCB 0xcc,0x00,0x00,0x00 +001514 00000000 DCB 0x00,0x00,0x00,0x00 +001518 00000000 DCB 0x00,0x00,0x00,0x00 +00151c 00000000 DCB 0x00,0x00,0x00,0x00 +001520 3900026f DCB 0x39,0x00,0x02,0x6f +001524 24390008 DCB 0x24,0x39,0x00,0x08 +001528 cc000000 DCB 0xcc,0x00,0x00,0x00 +00152c 00000000 DCB 0x00,0x00,0x00,0x00 +001530 3900026f DCB 0x39,0x00,0x02,0x6f +001534 00390016 DCB 0x00,0x39,0x00,0x16 +001538 cd000000 DCB 0xcd,0x00,0x00,0x00 +00153c 00000000 DCB 0x00,0x00,0x00,0x00 +001540 00000000 DCB 0x00,0x00,0x00,0x00 +001544 00000000 DCB 0x00,0x00,0x00,0x00 +001548 00000000 DCB 0x00,0x00,0x00,0x00 +00154c 00003900 DCB 0x00,0x00,0x39,0x00 +001550 026f1539 DCB 0x02,0x6f,0x15,0x39 +001554 0010cd00 DCB 0x00,0x10,0xcd,0x00 +001558 00000000 DCB 0x00,0x00,0x00,0x00 +00155c 00000000 DCB 0x00,0x00,0x00,0x00 +001560 00000000 DCB 0x00,0x00,0x00,0x00 +001564 00003900 DCB 0x00,0x00,0x39,0x00 +001568 026f2439 DCB 0x02,0x6f,0x24,0x39 +00156c 0008cd00 DCB 0x00,0x08,0xcd,0x00 +001570 00000000 DCB 0x00,0x00,0x00,0x00 +001574 00003900 DCB 0x00,0x00,0x39,0x00 +001578 026f0039 DCB 0x02,0x6f,0x00,0x39 +00157c 0016ce00 DCB 0x00,0x16,0xce,0x00 +001580 00000000 DCB 0x00,0x00,0x00,0x00 +001584 00000000 DCB 0x00,0x00,0x00,0x00 +001588 00000000 DCB 0x00,0x00,0x00,0x00 +00158c 00000000 DCB 0x00,0x00,0x00,0x00 +001590 00000000 DCB 0x00,0x00,0x00,0x00 +001594 3900026f DCB 0x39,0x00,0x02,0x6f +001598 15390010 DCB 0x15,0x39,0x00,0x10 +00159c ce000000 DCB 0xce,0x00,0x00,0x00 +0015a0 00000000 DCB 0x00,0x00,0x00,0x00 +0015a4 00000000 DCB 0x00,0x00,0x00,0x00 +0015a8 00000000 DCB 0x00,0x00,0x00,0x00 +0015ac 3900026f DCB 0x39,0x00,0x02,0x6f +0015b0 24390008 DCB 0x24,0x39,0x00,0x08 +0015b4 ce000000 DCB 0xce,0x00,0x00,0x00 +0015b8 00000000 DCB 0x00,0x00,0x00,0x00 +0015bc 3900026f DCB 0x39,0x00,0x02,0x6f +0015c0 00390016 DCB 0x00,0x39,0x00,0x16 +0015c4 cf000000 DCB 0xcf,0x00,0x00,0x00 +0015c8 00000000 DCB 0x00,0x00,0x00,0x00 +0015cc 00000000 DCB 0x00,0x00,0x00,0x00 +0015d0 00000000 DCB 0x00,0x00,0x00,0x00 +0015d4 00000000 DCB 0x00,0x00,0x00,0x00 +0015d8 00003900 DCB 0x00,0x00,0x39,0x00 +0015dc 026f1539 DCB 0x02,0x6f,0x15,0x39 +0015e0 0010cf00 DCB 0x00,0x10,0xcf,0x00 +0015e4 00000000 DCB 0x00,0x00,0x00,0x00 +0015e8 00000000 DCB 0x00,0x00,0x00,0x00 +0015ec 00000000 DCB 0x00,0x00,0x00,0x00 +0015f0 00003900 DCB 0x00,0x00,0x39,0x00 +0015f4 026f2439 DCB 0x02,0x6f,0x24,0x39 +0015f8 0008cf00 DCB 0x00,0x08,0xcf,0x00 +0015fc 00000000 DCB 0x00,0x00,0x00,0x00 +001600 00003900 DCB 0x00,0x00,0x39,0x00 +001604 026f0039 DCB 0x02,0x6f,0x00,0x39 +001608 0016d000 DCB 0x00,0x16,0xd0,0x00 +00160c 00000000 DCB 0x00,0x00,0x00,0x00 +001610 00000000 DCB 0x00,0x00,0x00,0x00 +001614 00000000 DCB 0x00,0x00,0x00,0x00 +001618 00000000 DCB 0x00,0x00,0x00,0x00 +00161c 00000000 DCB 0x00,0x00,0x00,0x00 +001620 3900026f DCB 0x39,0x00,0x02,0x6f +001624 15390010 DCB 0x15,0x39,0x00,0x10 +001628 d0000000 DCB 0xd0,0x00,0x00,0x00 +00162c 00000000 DCB 0x00,0x00,0x00,0x00 +001630 00000000 DCB 0x00,0x00,0x00,0x00 +001634 00000000 DCB 0x00,0x00,0x00,0x00 +001638 3900026f DCB 0x39,0x00,0x02,0x6f +00163c 24390008 DCB 0x24,0x39,0x00,0x08 +001640 d0000000 DCB 0xd0,0x00,0x00,0x00 +001644 00000000 DCB 0x00,0x00,0x00,0x00 +001648 3900026f DCB 0x39,0x00,0x02,0x6f +00164c 00390016 DCB 0x00,0x39,0x00,0x16 +001650 d1000000 DCB 0xd1,0x00,0x00,0x00 +001654 00000000 DCB 0x00,0x00,0x00,0x00 +001658 00000000 DCB 0x00,0x00,0x00,0x00 +00165c 00000000 DCB 0x00,0x00,0x00,0x00 +001660 00000000 DCB 0x00,0x00,0x00,0x00 +001664 00003900 DCB 0x00,0x00,0x39,0x00 +001668 026f1539 DCB 0x02,0x6f,0x15,0x39 +00166c 0010d100 DCB 0x00,0x10,0xd1,0x00 +001670 00000000 DCB 0x00,0x00,0x00,0x00 +001674 00000000 DCB 0x00,0x00,0x00,0x00 +001678 00000000 DCB 0x00,0x00,0x00,0x00 +00167c 00003900 DCB 0x00,0x00,0x39,0x00 +001680 026f2439 DCB 0x02,0x6f,0x24,0x39 +001684 0008d100 DCB 0x00,0x08,0xd1,0x00 +001688 00000000 DCB 0x00,0x00,0x00,0x00 +00168c 00003900 DCB 0x00,0x00,0x39,0x00 +001690 026f0039 DCB 0x02,0x6f,0x00,0x39 +001694 0016d200 DCB 0x00,0x16,0xd2,0x00 +001698 00000000 DCB 0x00,0x00,0x00,0x00 +00169c 00000000 DCB 0x00,0x00,0x00,0x00 +0016a0 00000000 DCB 0x00,0x00,0x00,0x00 +0016a4 00000000 DCB 0x00,0x00,0x00,0x00 +0016a8 00000000 DCB 0x00,0x00,0x00,0x00 +0016ac 3900026f DCB 0x39,0x00,0x02,0x6f +0016b0 15390010 DCB 0x15,0x39,0x00,0x10 +0016b4 d2000000 DCB 0xd2,0x00,0x00,0x00 +0016b8 00000000 DCB 0x00,0x00,0x00,0x00 +0016bc 00000000 DCB 0x00,0x00,0x00,0x00 +0016c0 00000000 DCB 0x00,0x00,0x00,0x00 +0016c4 3900026f DCB 0x39,0x00,0x02,0x6f +0016c8 24390008 DCB 0x24,0x39,0x00,0x08 +0016cc d2000000 DCB 0xd2,0x00,0x00,0x00 +0016d0 00000000 DCB 0x00,0x00,0x00,0x00 +0016d4 3900026f DCB 0x39,0x00,0x02,0x6f +0016d8 00390016 DCB 0x00,0x39,0x00,0x16 +0016dc d3000000 DCB 0xd3,0x00,0x00,0x00 +0016e0 00000000 DCB 0x00,0x00,0x00,0x00 +0016e4 00000000 DCB 0x00,0x00,0x00,0x00 +0016e8 00000000 DCB 0x00,0x00,0x00,0x00 +0016ec 00000000 DCB 0x00,0x00,0x00,0x00 +0016f0 00003900 DCB 0x00,0x00,0x39,0x00 +0016f4 026f1539 DCB 0x02,0x6f,0x15,0x39 +0016f8 0010d300 DCB 0x00,0x10,0xd3,0x00 +0016fc 00000000 DCB 0x00,0x00,0x00,0x00 +001700 00000000 DCB 0x00,0x00,0x00,0x00 +001704 00000000 DCB 0x00,0x00,0x00,0x00 +001708 00003900 DCB 0x00,0x00,0x39,0x00 +00170c 026f2439 DCB 0x02,0x6f,0x24,0x39 +001710 0008d300 DCB 0x00,0x08,0xd3,0x00 +001714 00000000 DCB 0x00,0x00,0x00,0x00 +001718 00003900 DCB 0x00,0x00,0x39,0x00 +00171c 026f0039 DCB 0x02,0x6f,0x00,0x39 +001720 0016d400 DCB 0x00,0x16,0xd4,0x00 +001724 00000000 DCB 0x00,0x00,0x00,0x00 +001728 00000000 DCB 0x00,0x00,0x00,0x00 +00172c 00000000 DCB 0x00,0x00,0x00,0x00 +001730 00000000 DCB 0x00,0x00,0x00,0x00 +001734 00000000 DCB 0x00,0x00,0x00,0x00 +001738 3900026f DCB 0x39,0x00,0x02,0x6f +00173c 15390010 DCB 0x15,0x39,0x00,0x10 +001740 d4000000 DCB 0xd4,0x00,0x00,0x00 +001744 00000000 DCB 0x00,0x00,0x00,0x00 +001748 00000000 DCB 0x00,0x00,0x00,0x00 +00174c 00000000 DCB 0x00,0x00,0x00,0x00 +001750 3900026f DCB 0x39,0x00,0x02,0x6f +001754 24390008 DCB 0x24,0x39,0x00,0x08 +001758 d4000000 DCB 0xd4,0x00,0x00,0x00 +00175c 00000000 DCB 0x00,0x00,0x00,0x00 +001760 3900026f DCB 0x39,0x00,0x02,0x6f +001764 00390016 DCB 0x00,0x39,0x00,0x16 +001768 d5000000 DCB 0xd5,0x00,0x00,0x00 +00176c 00000000 DCB 0x00,0x00,0x00,0x00 +001770 00000000 DCB 0x00,0x00,0x00,0x00 +001774 00000000 DCB 0x00,0x00,0x00,0x00 +001778 00000000 DCB 0x00,0x00,0x00,0x00 +00177c 00003900 DCB 0x00,0x00,0x39,0x00 +001780 026f1539 DCB 0x02,0x6f,0x15,0x39 +001784 0010d500 DCB 0x00,0x10,0xd5,0x00 +001788 00000000 DCB 0x00,0x00,0x00,0x00 +00178c 00000000 DCB 0x00,0x00,0x00,0x00 +001790 00000000 DCB 0x00,0x00,0x00,0x00 +001794 00003900 DCB 0x00,0x00,0x39,0x00 +001798 026f2439 DCB 0x02,0x6f,0x24,0x39 +00179c 0008d500 DCB 0x00,0x08,0xd5,0x00 +0017a0 00000000 DCB 0x00,0x00,0x00,0x00 +0017a4 00003900 DCB 0x00,0x00,0x39,0x00 +0017a8 026f0039 DCB 0x02,0x6f,0x00,0x39 +0017ac 0016d600 DCB 0x00,0x16,0xd6,0x00 +0017b0 00000000 DCB 0x00,0x00,0x00,0x00 +0017b4 00000000 DCB 0x00,0x00,0x00,0x00 +0017b8 00000000 DCB 0x00,0x00,0x00,0x00 +0017bc 00000000 DCB 0x00,0x00,0x00,0x00 +0017c0 00000000 DCB 0x00,0x00,0x00,0x00 +0017c4 3900026f DCB 0x39,0x00,0x02,0x6f +0017c8 15390010 DCB 0x15,0x39,0x00,0x10 +0017cc d6000000 DCB 0xd6,0x00,0x00,0x00 +0017d0 00000000 DCB 0x00,0x00,0x00,0x00 +0017d4 00000000 DCB 0x00,0x00,0x00,0x00 +0017d8 00000000 DCB 0x00,0x00,0x00,0x00 +0017dc 3900026f DCB 0x39,0x00,0x02,0x6f +0017e0 24390008 DCB 0x24,0x39,0x00,0x08 +0017e4 d6000000 DCB 0xd6,0x00,0x00,0x00 +0017e8 00000000 DCB 0x00,0x00,0x00,0x00 +0017ec 3900026f DCB 0x39,0x00,0x02,0x6f +0017f0 00390016 DCB 0x00,0x39,0x00,0x16 +0017f4 d7000000 DCB 0xd7,0x00,0x00,0x00 +0017f8 00000000 DCB 0x00,0x00,0x00,0x00 +0017fc 00000000 DCB 0x00,0x00,0x00,0x00 +001800 00000000 DCB 0x00,0x00,0x00,0x00 +001804 00000000 DCB 0x00,0x00,0x00,0x00 +001808 00003900 DCB 0x00,0x00,0x39,0x00 +00180c 026f1539 DCB 0x02,0x6f,0x15,0x39 +001810 0010d700 DCB 0x00,0x10,0xd7,0x00 +001814 00000000 DCB 0x00,0x00,0x00,0x00 +001818 00000000 DCB 0x00,0x00,0x00,0x00 +00181c 00000000 DCB 0x00,0x00,0x00,0x00 +001820 00003900 DCB 0x00,0x00,0x39,0x00 +001824 026f2439 DCB 0x02,0x6f,0x24,0x39 +001828 0008d700 DCB 0x00,0x08,0xd7,0x00 +00182c 00000000 DCB 0x00,0x00,0x00,0x00 +001830 00003900 DCB 0x00,0x00,0x39,0x00 +001834 026f0039 DCB 0x02,0x6f,0x00,0x39 +001838 0016d800 DCB 0x00,0x16,0xd8,0x00 +00183c 00000000 DCB 0x00,0x00,0x00,0x00 +001840 00000000 DCB 0x00,0x00,0x00,0x00 +001844 00000000 DCB 0x00,0x00,0x00,0x00 +001848 00000000 DCB 0x00,0x00,0x00,0x00 +00184c 00000000 DCB 0x00,0x00,0x00,0x00 +001850 3900026f DCB 0x39,0x00,0x02,0x6f +001854 15390010 DCB 0x15,0x39,0x00,0x10 +001858 d8000000 DCB 0xd8,0x00,0x00,0x00 +00185c 00000000 DCB 0x00,0x00,0x00,0x00 +001860 00000000 DCB 0x00,0x00,0x00,0x00 +001864 00000000 DCB 0x00,0x00,0x00,0x00 +001868 3900026f DCB 0x39,0x00,0x02,0x6f +00186c 24390008 DCB 0x24,0x39,0x00,0x08 +001870 d8000000 DCB 0xd8,0x00,0x00,0x00 +001874 00000000 DCB 0x00,0x00,0x00,0x00 +001878 3900025f DCB 0x39,0x00,0x02,0x5f +00187c 00390006 DCB 0x00,0x39,0x00,0x06 +001880 f055aa52 DCB 0xf0,0x55,0xaa,0x52 +001884 08083900 DCB 0x08,0x08,0x39,0x00 +001888 11b60ffe DCB 0x11,0xb6,0x0f,0xfe +00188c 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001890 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001894 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001898 0ffe3900 DCB 0x0f,0xfe,0x39,0x00 +00189c 026f1039 DCB 0x02,0x6f,0x10,0x39 +0018a0 0011b60f DCB 0x00,0x11,0xb6,0x0f +0018a4 fe0ffe0f DCB 0xfe,0x0f,0xfe,0x0f +0018a8 fe0ffe0f DCB 0xfe,0x0f,0xfe,0x0f +0018ac fe0ffe0f DCB 0xfe,0x0f,0xfe,0x0f +0018b0 fe0ffe39 DCB 0xfe,0x0f,0xfe,0x39 +0018b4 00026f20 DCB 0x00,0x02,0x6f,0x20 +0018b8 390007b6 DCB 0x39,0x00,0x07,0xb6 +0018bc 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +0018c0 0ffe3900 DCB 0x0f,0xfe,0x39,0x00 +0018c4 11b70800 DCB 0x11,0xb7,0x08,0x00 +0018c8 08000800 DCB 0x08,0x00,0x08,0x00 +0018cc 08000800 DCB 0x08,0x00,0x08,0x00 +0018d0 08000800 DCB 0x08,0x00,0x08,0x00 +0018d4 08003900 DCB 0x08,0x00,0x39,0x00 +0018d8 026f1039 DCB 0x02,0x6f,0x10,0x39 +0018dc 0011b708 DCB 0x00,0x11,0xb7,0x08 +0018e0 00080008 DCB 0x00,0x08,0x00,0x08 +0018e4 00080008 DCB 0x00,0x08,0x00,0x08 +0018e8 00080008 DCB 0x00,0x08,0x00,0x08 +0018ec 00080039 DCB 0x00,0x08,0x00,0x39 +0018f0 00026f20 DCB 0x00,0x02,0x6f,0x20 +0018f4 390007b7 DCB 0x39,0x00,0x07,0xb7 +0018f8 08000800 DCB 0x08,0x00,0x08,0x00 +0018fc 08003900 DCB 0x08,0x00,0x39,0x00 +001900 11b80800 DCB 0x11,0xb8,0x08,0x00 +001904 08000800 DCB 0x08,0x00,0x08,0x00 +001908 08000800 DCB 0x08,0x00,0x08,0x00 +00190c 08000800 DCB 0x08,0x00,0x08,0x00 +001910 08003900 DCB 0x08,0x00,0x39,0x00 +001914 026f1039 DCB 0x02,0x6f,0x10,0x39 +001918 0011b808 DCB 0x00,0x11,0xb8,0x08 +00191c 00080008 DCB 0x00,0x08,0x00,0x08 +001920 00080008 DCB 0x00,0x08,0x00,0x08 +001924 00080008 DCB 0x00,0x08,0x00,0x08 +001928 00080039 DCB 0x00,0x08,0x00,0x39 +00192c 00026f20 DCB 0x00,0x02,0x6f,0x20 +001930 390007b8 DCB 0x39,0x00,0x07,0xb8 +001934 08000800 DCB 0x08,0x00,0x08,0x00 +001938 08003900 DCB 0x08,0x00,0x39,0x00 +00193c 11b90101 DCB 0x11,0xb9,0x01,0x01 +001940 00910038 DCB 0x00,0x91,0x00,0x38 +001944 60048800 DCB 0x60,0x04,0x88,0x00 +001948 b3000000 DCB 0xb3,0x00,0x00,0x00 +00194c 00003900 DCB 0x00,0x00,0x39,0x00 +001950 026f1039 DCB 0x02,0x6f,0x10,0x39 +001954 0011b900 DCB 0x00,0x11,0xb9,0x00 +001958 00000000 DCB 0x00,0x00,0x00,0x00 +00195c 00000004 DCB 0x00,0x00,0x00,0x04 +001960 0011002e DCB 0x00,0x11,0x00,0x2e +001964 00620039 DCB 0x00,0x62,0x00,0x39 +001968 00026f20 DCB 0x00,0x02,0x6f,0x20 +00196c 390011b9 DCB 0x39,0x00,0x11,0xb9 +001970 be020804 DCB 0xbe,0x02,0x08,0x04 +001974 ec07d00a DCB 0xec,0x07,0xd0,0x0a +001978 b40d980f DCB 0xb4,0x0d,0x98,0x0f +00197c ff000000 DCB 0xff,0x00,0x00,0x00 +001980 3900026f DCB 0x39,0x00,0x02,0x6f +001984 30390011 DCB 0x30,0x39,0x00,0x11 +001988 b9000000 DCB 0xb9,0x00,0x00,0x00 +00198c 00000000 DCB 0x00,0x00,0x00,0x00 +001990 00000000 DCB 0x00,0x00,0x00,0x00 +001994 00000000 DCB 0x00,0x00,0x00,0x00 +001998 00390002 DCB 0x00,0x39,0x00,0x02 +00199c 6f403900 DCB 0x6f,0x40,0x39,0x00 +0019a0 11b90200 DCB 0x11,0xb9,0x02,0x00 +0019a4 6900d001 DCB 0x69,0x00,0xd0,0x01 +0019a8 37019e02 DCB 0x37,0x01,0x9e,0x02 +0019ac 05026c02 DCB 0x05,0x02,0x6c,0x02 +0019b0 d3003900 DCB 0xd3,0x00,0x39,0x00 +0019b4 026f5039 DCB 0x02,0x6f,0x50,0x39 +0019b8 0011b900 DCB 0x00,0x11,0xb9,0x00 +0019bc 00000000 DCB 0x00,0x00,0x00,0x00 +0019c0 00000000 DCB 0x00,0x00,0x00,0x00 +0019c4 00000001 DCB 0x00,0x00,0x00,0x01 +0019c8 00130039 DCB 0x00,0x13,0x00,0x39 +0019cc 00026f60 DCB 0x00,0x02,0x6f,0x60 +0019d0 390011b9 DCB 0x39,0x00,0x11,0xb9 +0019d4 4900c301 DCB 0x49,0x00,0xc3,0x01 +0019d8 a0032705 DCB 0xa0,0x03,0x27,0x05 +0019dc 1609910e DCB 0x16,0x09,0x91,0x0e +0019e0 0c0fff0f DCB 0x0c,0x0f,0xff,0x0f +0019e4 3900026f DCB 0x39,0x00,0x02,0x6f +0019e8 70390011 DCB 0x70,0x39,0x00,0x11 +0019ec b9ff0200 DCB 0xb9,0xff,0x02,0x00 +0019f0 00000180 DCB 0x00,0x00,0x01,0x80 +0019f4 80808080 DCB 0x80,0x80,0x80,0x80 +0019f8 80808080 DCB 0x80,0x80,0x80,0x80 +0019fc 80390002 DCB 0x80,0x39,0x00,0x02 +001a00 6f803900 DCB 0x6f,0x80,0x39,0x00 +001a04 11b98080 DCB 0x11,0xb9,0x80,0x80 +001a08 80808080 DCB 0x80,0x80,0x80,0x80 +001a0c 80808080 DCB 0x80,0x80,0x80,0x80 +001a10 80808080 DCB 0x80,0x80,0x80,0x80 +001a14 80803900 DCB 0x80,0x80,0x39,0x00 +001a18 026f9039 DCB 0x02,0x6f,0x90,0x39 +001a1c 0011b980 DCB 0x00,0x11,0xb9,0x80 +001a20 80808080 DCB 0x80,0x80,0x80,0x80 +001a24 80808080 DCB 0x80,0x80,0x80,0x80 +001a28 80808080 DCB 0x80,0x80,0x80,0x80 +001a2c 80808039 DCB 0x80,0x80,0x80,0x39 +001a30 00026fa0 DCB 0x00,0x02,0x6f,0xa0 +001a34 390011b9 DCB 0x39,0x00,0x11,0xb9 +001a38 80808080 DCB 0x80,0x80,0x80,0x80 +001a3c 80808080 DCB 0x80,0x80,0x80,0x80 +001a40 80808080 DCB 0x80,0x80,0x80,0x80 +001a44 80808080 DCB 0x80,0x80,0x80,0x80 +001a48 3900026f DCB 0x39,0x00,0x02,0x6f +001a4c b0390011 DCB 0xb0,0x39,0x00,0x11 +001a50 b9808080 DCB 0xb9,0x80,0x80,0x80 +001a54 80808080 DCB 0x80,0x80,0x80,0x80 +001a58 80808080 DCB 0x80,0x80,0x80,0x80 +001a5c 80808080 DCB 0x80,0x80,0x80,0x80 +001a60 80390002 DCB 0x80,0x39,0x00,0x02 +001a64 6fc03900 DCB 0x6f,0xc0,0x39,0x00 +001a68 11b98080 DCB 0x11,0xb9,0x80,0x80 +001a6c 80808080 DCB 0x80,0x80,0x80,0x80 +001a70 80808080 DCB 0x80,0x80,0x80,0x80 +001a74 80808080 DCB 0x80,0x80,0x80,0x80 +001a78 80803900 DCB 0x80,0x80,0x39,0x00 +001a7c 026fd039 DCB 0x02,0x6f,0xd0,0x39 +001a80 0011b980 DCB 0x00,0x11,0xb9,0x80 +001a84 80808080 DCB 0x80,0x80,0x80,0x80 +001a88 80808080 DCB 0x80,0x80,0x80,0x80 +001a8c 80808080 DCB 0x80,0x80,0x80,0x80 +001a90 80808039 DCB 0x80,0x80,0x80,0x39 +001a94 00026fe0 DCB 0x00,0x02,0x6f,0xe0 +001a98 390011b9 DCB 0x39,0x00,0x11,0xb9 +001a9c 80808080 DCB 0x80,0x80,0x80,0x80 +001aa0 80808080 DCB 0x80,0x80,0x80,0x80 +001aa4 80808080 DCB 0x80,0x80,0x80,0x80 +001aa8 80808080 DCB 0x80,0x80,0x80,0x80 +001aac 3900026f DCB 0x39,0x00,0x02,0x6f +001ab0 f039000e DCB 0xf0,0x39,0x00,0x0e +001ab4 b9808080 DCB 0xb9,0x80,0x80,0x80 +001ab8 80808080 DCB 0x80,0x80,0x80,0x80 +001abc 80808080 DCB 0x80,0x80,0x80,0x80 +001ac0 80803900 DCB 0x80,0x80,0x39,0x00 +001ac4 11ba0200 DCB 0x11,0xba,0x02,0x00 +001ac8 02000200 DCB 0x02,0x00,0x02,0x00 +001acc 02000200 DCB 0x02,0x00,0x02,0x00 +001ad0 02000200 DCB 0x02,0x00,0x02,0x00 +001ad4 02003900 DCB 0x02,0x00,0x39,0x00 +001ad8 026f1039 DCB 0x02,0x6f,0x10,0x39 +001adc 0011ba02 DCB 0x00,0x11,0xba,0x02 +001ae0 00020002 DCB 0x00,0x02,0x00,0x02 +001ae4 00020002 DCB 0x00,0x02,0x00,0x02 +001ae8 00020002 DCB 0x00,0x02,0x00,0x02 +001aec 00020039 DCB 0x00,0x02,0x00,0x39 +001af0 00026f20 DCB 0x00,0x02,0x6f,0x20 +001af4 390011ba DCB 0x39,0x00,0x11,0xba +001af8 02000200 DCB 0x02,0x00,0x02,0x00 +001afc 02000200 DCB 0x02,0x00,0x02,0x00 +001b00 02000200 DCB 0x02,0x00,0x02,0x00 +001b04 02000200 DCB 0x02,0x00,0x02,0x00 +001b08 3900026f DCB 0x39,0x00,0x02,0x6f +001b0c 30390011 DCB 0x30,0x39,0x00,0x11 +001b10 ba020002 DCB 0xba,0x02,0x00,0x02 +001b14 00020002 DCB 0x00,0x02,0x00,0x02 +001b18 00020002 DCB 0x00,0x02,0x00,0x02 +001b1c 00020002 DCB 0x00,0x02,0x00,0x02 +001b20 00390002 DCB 0x00,0x39,0x00,0x02 +001b24 6f403900 DCB 0x6f,0x40,0x39,0x00 +001b28 11ba0200 DCB 0x11,0xba,0x02,0x00 +001b2c 02000200 DCB 0x02,0x00,0x02,0x00 +001b30 02000200 DCB 0x02,0x00,0x02,0x00 +001b34 02000200 DCB 0x02,0x00,0x02,0x00 +001b38 02003900 DCB 0x02,0x00,0x39,0x00 +001b3c 026f5039 DCB 0x02,0x6f,0x50,0x39 +001b40 0011ba02 DCB 0x00,0x11,0xba,0x02 +001b44 00020002 DCB 0x00,0x02,0x00,0x02 +001b48 00020002 DCB 0x00,0x02,0x00,0x02 +001b4c 00020002 DCB 0x00,0x02,0x00,0x02 +001b50 00020039 DCB 0x00,0x02,0x00,0x39 +001b54 00026f60 DCB 0x00,0x02,0x6f,0x60 +001b58 390011ba DCB 0x39,0x00,0x11,0xba +001b5c 02000200 DCB 0x02,0x00,0x02,0x00 +001b60 02000200 DCB 0x02,0x00,0x02,0x00 +001b64 05d10800 DCB 0x05,0xd1,0x08,0x00 +001b68 08000800 DCB 0x08,0x00,0x08,0x00 +001b6c 3900026f DCB 0x39,0x00,0x02,0x6f +001b70 70390011 DCB 0x70,0x39,0x00,0x11 +001b74 ba080008 DCB 0xba,0x08,0x00,0x08 +001b78 00080008 DCB 0x00,0x08,0x00,0x08 +001b7c 00080008 DCB 0x00,0x08,0x00,0x08 +001b80 00080008 DCB 0x00,0x08,0x00,0x08 +001b84 00390002 DCB 0x00,0x39,0x00,0x02 +001b88 6f803900 DCB 0x6f,0x80,0x39,0x00 +001b8c 11ba0800 DCB 0x11,0xba,0x08,0x00 +001b90 053f0736 DCB 0x05,0x3f,0x07,0x36 +001b94 07360736 DCB 0x07,0x36,0x07,0x36 +001b98 07360736 DCB 0x07,0x36,0x07,0x36 +001b9c 07363900 DCB 0x07,0x36,0x39,0x00 +001ba0 026f9039 DCB 0x02,0x6f,0x90,0x39 +001ba4 0011ba07 DCB 0x00,0x11,0xba,0x07 +001ba8 36073608 DCB 0x36,0x07,0x36,0x08 +001bac 00080008 DCB 0x00,0x08,0x00,0x08 +001bb0 00080005 DCB 0x00,0x08,0x00,0x05 +001bb4 3f073639 DCB 0x3f,0x07,0x36,0x39 +001bb8 00026fa0 DCB 0x00,0x02,0x6f,0xa0 +001bbc 390011ba DCB 0x39,0x00,0x11,0xba +001bc0 07360736 DCB 0x07,0x36,0x07,0x36 +001bc4 07360736 DCB 0x07,0x36,0x07,0x36 +001bc8 07360736 DCB 0x07,0x36,0x07,0x36 +001bcc 07360800 DCB 0x07,0x36,0x08,0x00 +001bd0 3900026f DCB 0x39,0x00,0x02,0x6f +001bd4 b0390011 DCB 0xb0,0x39,0x00,0x11 +001bd8 ba080008 DCB 0xba,0x08,0x00,0x08 +001bdc 00080005 DCB 0x00,0x08,0x00,0x05 +001be0 d1080008 DCB 0xd1,0x08,0x00,0x08 +001be4 00080008 DCB 0x00,0x08,0x00,0x08 +001be8 00390002 DCB 0x00,0x39,0x00,0x02 +001bec 6fc03900 DCB 0x6f,0xc0,0x39,0x00 +001bf0 11ba0800 DCB 0x11,0xba,0x08,0x00 +001bf4 08000800 DCB 0x08,0x00,0x08,0x00 +001bf8 08000800 DCB 0x08,0x00,0x08,0x00 +001bfc 08000800 DCB 0x08,0x00,0x08,0x00 +001c00 08003900 DCB 0x08,0x00,0x39,0x00 +001c04 026fd039 DCB 0x02,0x6f,0xd0,0x39 +001c08 0011ba08 DCB 0x00,0x11,0xba,0x08 +001c0c 00080008 DCB 0x00,0x08,0x00,0x08 +001c10 00080008 DCB 0x00,0x08,0x00,0x08 +001c14 00080008 DCB 0x00,0x08,0x00,0x08 +001c18 00080039 DCB 0x00,0x08,0x00,0x39 +001c1c 00026fe0 DCB 0x00,0x02,0x6f,0xe0 +001c20 39000bba DCB 0x39,0x00,0x0b,0xba +001c24 08000800 DCB 0x08,0x00,0x08,0x00 +001c28 08000800 DCB 0x08,0x00,0x08,0x00 +001c2c 08003900 DCB 0x08,0x00,0x39,0x00 +001c30 11bb00c8 DCB 0x11,0xbb,0x00,0xc8 +001c34 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c38 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c3c 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c40 00c83900 DCB 0x00,0xc8,0x39,0x00 +001c44 026f1039 DCB 0x02,0x6f,0x10,0x39 +001c48 0011bb00 DCB 0x00,0x11,0xbb,0x00 +001c4c c8010001 DCB 0xc8,0x01,0x00,0x01 +001c50 00010001 DCB 0x00,0x01,0x00,0x01 +001c54 0000c800 DCB 0x00,0x00,0xc8,0x00 +001c58 c800c839 DCB 0xc8,0x00,0xc8,0x39 +001c5c 00026f20 DCB 0x00,0x02,0x6f,0x20 +001c60 390011bb DCB 0x39,0x00,0x11,0xbb +001c64 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c68 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c6c 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c70 01000100 DCB 0x01,0x00,0x01,0x00 +001c74 3900026f DCB 0x39,0x00,0x02,0x6f +001c78 30390011 DCB 0x30,0x39,0x00,0x11 +001c7c bb010001 DCB 0xbb,0x01,0x00,0x01 +001c80 0000c800 DCB 0x00,0x00,0xc8,0x00 +001c84 c800c800 DCB 0xc8,0x00,0xc8,0x00 +001c88 c800c800 DCB 0xc8,0x00,0xc8,0x00 +001c8c c8390002 DCB 0xc8,0x39,0x00,0x02 +001c90 6f403900 DCB 0x6f,0x40,0x39,0x00 +001c94 11bb00c8 DCB 0x11,0xbb,0x00,0xc8 +001c98 00c800c8 DCB 0x00,0xc8,0x00,0xc8 +001c9c 01000100 DCB 0x01,0x00,0x01,0x00 +001ca0 01000100 DCB 0x01,0x00,0x01,0x00 +001ca4 00c83900 DCB 0x00,0xc8,0x39,0x00 +001ca8 026f5039 DCB 0x02,0x6f,0x50,0x39 +001cac 0011bb00 DCB 0x00,0x11,0xbb,0x00 +001cb0 c800c800 DCB 0xc8,0x00,0xc8,0x00 +001cb4 c800c800 DCB 0xc8,0x00,0xc8,0x00 +001cb8 c800c800 DCB 0xc8,0x00,0xc8,0x00 +001cbc c800c839 DCB 0xc8,0x00,0xc8,0x39 +001cc0 00026f60 DCB 0x00,0x02,0x6f,0x60 +001cc4 390011bb DCB 0x39,0x00,0x11,0xbb +001cc8 01000100 DCB 0x01,0x00,0x01,0x00 +001ccc 01000100 DCB 0x01,0x00,0x01,0x00 +001cd0 01000100 DCB 0x01,0x00,0x01,0x00 +001cd4 01000100 DCB 0x01,0x00,0x01,0x00 +001cd8 3900026f DCB 0x39,0x00,0x02,0x6f +001cdc 70390011 DCB 0x70,0x39,0x00,0x11 +001ce0 bb010001 DCB 0xbb,0x01,0x00,0x01 +001ce4 00010001 DCB 0x00,0x01,0x00,0x01 +001ce8 00010001 DCB 0x00,0x01,0x00,0x01 +001cec 00010001 DCB 0x00,0x01,0x00,0x01 +001cf0 00390002 DCB 0x00,0x39,0x00,0x02 +001cf4 6f803900 DCB 0x6f,0x80,0x39,0x00 +001cf8 11bb0100 DCB 0x11,0xbb,0x01,0x00 +001cfc 08000000 DCB 0x08,0x00,0x00,0x00 +001d00 00000000 DCB 0x00,0x00,0x00,0x00 +001d04 00000000 DCB 0x00,0x00,0x00,0x00 +001d08 00003900 DCB 0x00,0x00,0x39,0x00 +001d0c 026f9039 DCB 0x02,0x6f,0x90,0x39 +001d10 0011bb00 DCB 0x00,0x11,0xbb,0x00 +001d14 00000000 DCB 0x00,0x00,0x00,0x00 +001d18 00000000 DCB 0x00,0x00,0x00,0x00 +001d1c 00000000 DCB 0x00,0x00,0x00,0x00 +001d20 0b090c39 DCB 0x0b,0x09,0x0c,0x39 +001d24 00026fa0 DCB 0x00,0x02,0x6f,0xa0 +001d28 390009bb DCB 0x39,0x00,0x09,0xbb +001d2c 34a05400 DCB 0x34,0xa0,0x54,0x00 +001d30 00000800 DCB 0x00,0x00,0x08,0x00 +001d34 390005e9 DCB 0x39,0x00,0x05,0xe9 +001d38 00000051 DCB 0x00,0x00,0x00,0x51 +001d3c 390008ee DCB 0x39,0x00,0x08,0xee +001d40 05000000 DCB 0x05,0x00,0x00,0x00 +001d44 00000039 DCB 0x00,0x00,0x00,0x39 +001d48 0005ffaa DCB 0x00,0x05,0xff,0xaa +001d4c 55a58039 DCB 0x55,0xa5,0x80,0x39 +001d50 00026f1d DCB 0x00,0x02,0x6f,0x1d +001d54 390002f2 DCB 0x39,0x00,0x02,0xf2 +001d58 05390005 DCB 0x05,0x39,0x00,0x05 +001d5c 3b001400 DCB 0x3b,0x00,0x14,0x00 +001d60 12390002 DCB 0x12,0x39,0x00,0x02 +001d64 03013900 DCB 0x03,0x01,0x39,0x00 +001d68 02900239 DCB 0x02,0x90,0x02,0x39 +001d6c 00139189 DCB 0x00,0x13,0x91,0x89 +001d70 28000cc2 DCB 0x28,0x00,0x0c,0xc2 +001d74 00031c01 DCB 0x00,0x03,0x1c,0x01 +001d78 7e000f08 DCB 0x7e,0x00,0x0f,0x08 +001d7c bb043d10 DCB 0xbb,0x04,0x3d,0x10 +001d80 f0390001 DCB 0xf0,0x39,0x00,0x01 +001d84 2c390005 DCB 0x2c,0x39,0x00,0x05 +001d88 5107ff0f DCB 0x51,0x07,0xff,0x0f +001d8c ff390002 DCB 0xff,0x39,0x00,0x02 +001d90 53203900 DCB 0x53,0x20,0x39,0x00 +001d94 01353900 DCB 0x01,0x35,0x39,0x00 +001d98 052a0000 DCB 0x05,0x2a,0x00,0x00 +001d9c 04373900 DCB 0x04,0x37,0x39,0x00 +001da0 052b0000 DCB 0x05,0x2b,0x00,0x00 +001da4 095f3900 DCB 0x09,0x5f,0x39,0x00 +001da8 022f0139 DCB 0x02,0x2f,0x01,0x39 +001dac 0006f055 DCB 0x00,0x06,0xf0,0x55 +001db0 aa520808 DCB 0xaa,0x52,0x08,0x08 +001db4 390011b6 DCB 0x39,0x00,0x11,0xb6 +001db8 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001dbc 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001dc0 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001dc4 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001dc8 3900026f DCB 0x39,0x00,0x02,0x6f +001dcc 10390011 DCB 0x10,0x39,0x00,0x11 +001dd0 b60ffe0f DCB 0xb6,0x0f,0xfe,0x0f +001dd4 fe0ffe0f DCB 0xfe,0x0f,0xfe,0x0f +001dd8 fe0ffe0f DCB 0xfe,0x0f,0xfe,0x0f +001ddc fe0ffe0f DCB 0xfe,0x0f,0xfe,0x0f +001de0 fe390002 DCB 0xfe,0x39,0x00,0x02 +001de4 6f203900 DCB 0x6f,0x20,0x39,0x00 +001de8 07b60ffe DCB 0x07,0xb6,0x0f,0xfe +001dec 0ffe0ffe DCB 0x0f,0xfe,0x0f,0xfe +001df0 390011b7 DCB 0x39,0x00,0x11,0xb7 +001df4 08000800 DCB 0x08,0x00,0x08,0x00 +001df8 08000800 DCB 0x08,0x00,0x08,0x00 +001dfc 08000800 DCB 0x08,0x00,0x08,0x00 +001e00 08000800 DCB 0x08,0x00,0x08,0x00 +001e04 3900026f DCB 0x39,0x00,0x02,0x6f +001e08 10390011 DCB 0x10,0x39,0x00,0x11 +001e0c b7080008 DCB 0xb7,0x08,0x00,0x08 +001e10 00080008 DCB 0x00,0x08,0x00,0x08 +001e14 00080008 DCB 0x00,0x08,0x00,0x08 +001e18 00080008 DCB 0x00,0x08,0x00,0x08 +001e1c 00390002 DCB 0x00,0x39,0x00,0x02 +001e20 6f203900 DCB 0x6f,0x20,0x39,0x00 +001e24 07b70800 DCB 0x07,0xb7,0x08,0x00 +001e28 08000800 DCB 0x08,0x00,0x08,0x00 +001e2c 390011b8 DCB 0x39,0x00,0x11,0xb8 +001e30 08000800 DCB 0x08,0x00,0x08,0x00 +001e34 08000800 DCB 0x08,0x00,0x08,0x00 +001e38 08000800 DCB 0x08,0x00,0x08,0x00 +001e3c 08000800 DCB 0x08,0x00,0x08,0x00 +001e40 3900026f DCB 0x39,0x00,0x02,0x6f +001e44 10390011 DCB 0x10,0x39,0x00,0x11 +001e48 b8080008 DCB 0xb8,0x08,0x00,0x08 +001e4c 00080008 DCB 0x00,0x08,0x00,0x08 +001e50 00080008 DCB 0x00,0x08,0x00,0x08 +001e54 00080008 DCB 0x00,0x08,0x00,0x08 +001e58 00390002 DCB 0x00,0x39,0x00,0x02 +001e5c 6f203900 DCB 0x6f,0x20,0x39,0x00 +001e60 07b80800 DCB 0x07,0xb8,0x08,0x00 +001e64 08000800 DCB 0x08,0x00,0x08,0x00 +001e68 390011b9 DCB 0x39,0x00,0x11,0xb9 +001e6c 01010091 DCB 0x01,0x01,0x00,0x91 +001e70 00386000 DCB 0x00,0x38,0x60,0x00 +001e74 0000a600 DCB 0x00,0x00,0xa6,0x00 +001e78 00000000 DCB 0x00,0x00,0x00,0x00 +001e7c 3900026f DCB 0x39,0x00,0x02,0x6f +001e80 10390011 DCB 0x10,0x39,0x00,0x11 +001e84 b9000000 DCB 0xb9,0x00,0x00,0x00 +001e88 00010005 DCB 0x00,0x01,0x00,0x05 +001e8c 000c001f DCB 0x00,0x0c,0x00,0x1f +001e90 00440086 DCB 0x00,0x44,0x00,0x86 +001e94 00390002 DCB 0x00,0x39,0x00,0x02 +001e98 6f203900 DCB 0x6f,0x20,0x39,0x00 +001e9c 11b9f501 DCB 0x11,0xb9,0xf5,0x01 +001ea0 b302d704 DCB 0xb3,0x02,0xd7,0x04 +001ea4 1c056106 DCB 0x1c,0x05,0x61,0x06 +001ea8 a607eb00 DCB 0xa6,0x07,0xeb,0x00 +001eac 00003900 DCB 0x00,0x00,0x39,0x00 +001eb0 026f3039 DCB 0x02,0x6f,0x30,0x39 +001eb4 0011b900 DCB 0x00,0x11,0xb9,0x00 +001eb8 00000001 DCB 0x00,0x00,0x00,0x01 +001ebc 00020005 DCB 0x00,0x02,0x00,0x05 +001ec0 000c0018 DCB 0x00,0x0c,0x00,0x18 +001ec4 002c0039 DCB 0x00,0x2c,0x00,0x39 +001ec8 00026f40 DCB 0x00,0x02,0x6f,0x40 +001ecc 390011b9 DCB 0x39,0x00,0x11,0xb9 +001ed0 4f00ad01 DCB 0x4f,0x00,0xad,0x01 +001ed4 2701a102 DCB 0x27,0x01,0xa1,0x02 +001ed8 1b029503 DCB 0x1b,0x02,0x95,0x03 +001edc 0f038900 DCB 0x0f,0x03,0x89,0x00 +001ee0 3900026f DCB 0x39,0x00,0x02,0x6f +001ee4 50390011 DCB 0x50,0x39,0x00,0x11 +001ee8 b9000000 DCB 0xb9,0x00,0x00,0x00 +001eec 00000000 DCB 0x00,0x00,0x00,0x00 +001ef0 00000002 DCB 0x00,0x00,0x00,0x02 +001ef4 000d001d DCB 0x00,0x0d,0x00,0x1d +001ef8 00390002 DCB 0x00,0x39,0x00,0x02 +001efc 6f603900 DCB 0x6f,0x60,0x39,0x00 +001f00 11b94800 DCB 0x11,0xb9,0x48,0x00 +001f04 9d013402 DCB 0x9d,0x01,0x34,0x02 +001f08 3203e405 DCB 0x32,0x03,0xe4,0x05 +001f0c f608f10b DCB 0xf6,0x08,0xf1,0x0b +001f10 ec0e3900 DCB 0xec,0x0e,0x39,0x00 +001f14 026f7039 DCB 0x02,0x6f,0x70,0x39 +001f18 0011b9e7 DCB 0x00,0x11,0xb9,0xe7 +001f1c 03d0b0e0 DCB 0x03,0xd0,0xb0,0xe0 +001f20 0a808082 DCB 0x0a,0x80,0x80,0x82 +001f24 7d7b7977 DCB 0x7d,0x7b,0x79,0x77 +001f28 72708039 DCB 0x72,0x70,0x80,0x39 +001f2c 00026f80 DCB 0x00,0x02,0x6f,0x80 +001f30 390011b9 DCB 0x39,0x00,0x11,0xb9 +001f34 80807d7e DCB 0x80,0x80,0x7d,0x7e +001f38 7b7b7773 DCB 0x7b,0x7b,0x77,0x73 +001f3c 80808281 DCB 0x80,0x80,0x82,0x81 +001f40 807f7e7b DCB 0x80,0x7f,0x7e,0x7b +001f44 3900026f DCB 0x39,0x00,0x02,0x6f +001f48 90390011 DCB 0x90,0x39,0x00,0x11 +001f4c b9788080 DCB 0xb9,0x78,0x80,0x80 +001f50 81828282 DCB 0x81,0x82,0x82,0x82 +001f54 817f7c80 DCB 0x81,0x7f,0x7c,0x80 +001f58 80808386 DCB 0x80,0x80,0x83,0x86 +001f5c 86390002 DCB 0x86,0x39,0x00,0x02 +001f60 6fa03900 DCB 0x6f,0xa0,0x39,0x00 +001f64 11b98581 DCB 0x11,0xb9,0x85,0x81 +001f68 7d808082 DCB 0x7d,0x80,0x80,0x82 +001f6c 81848587 DCB 0x81,0x84,0x85,0x87 +001f70 85888080 DCB 0x85,0x88,0x80,0x80 +001f74 818b3900 DCB 0x81,0x8b,0x39,0x00 +001f78 026fb039 DCB 0x02,0x6f,0xb0,0x39 +001f7c 0011b988 DCB 0x00,0x11,0xb9,0x88 +001f80 8a8c8d8e DCB 0x8a,0x8c,0x8d,0x8e +001f84 80808487 DCB 0x80,0x80,0x84,0x87 +001f88 8a8c8f90 DCB 0x8a,0x8c,0x8f,0x90 +001f8c 91808039 DCB 0x91,0x80,0x80,0x39 +001f90 00026fc0 DCB 0x00,0x02,0x6f,0xc0 +001f94 390011b9 DCB 0x39,0x00,0x11,0xb9 +001f98 84878a8d DCB 0x84,0x87,0x8a,0x8d +001f9c 91919280 DCB 0x91,0x91,0x92,0x80 +001fa0 8085888d DCB 0x80,0x85,0x88,0x8d +001fa4 8f8f9596 DCB 0x8f,0x8f,0x95,0x96 +001fa8 3900026f DCB 0x39,0x00,0x02,0x6f +001fac d0390011 DCB 0xd0,0x39,0x00,0x11 +001fb0 b980807a DCB 0xb9,0x80,0x80,0x7a +001fb4 736e6966 DCB 0x73,0x6e,0x69,0x66 +001fb8 605d8080 DCB 0x60,0x5d,0x80,0x80 +001fbc 80807674 DCB 0x80,0x80,0x76,0x74 +001fc0 70390002 DCB 0x70,0x39,0x00,0x02 +001fc4 6fe03900 DCB 0x6f,0xe0,0x39,0x00 +001fc8 11b96c6a DCB 0x11,0xb9,0x6c,0x6a +001fcc 8080817f DCB 0x80,0x80,0x81,0x7f +001fd0 7f7c7b76 DCB 0x7f,0x7c,0x7b,0x76 +001fd4 73808083 DCB 0x73,0x80,0x80,0x83 +001fd8 83833900 DCB 0x83,0x83,0x39,0x00 +001fdc 026ff039 DCB 0x02,0x6f,0xf0,0x39 +001fe0 000eb982 DCB 0x00,0x0e,0xb9,0x82 +001fe4 827f7c80 DCB 0x82,0x7f,0x7c,0x80 +001fe8 80828485 DCB 0x80,0x82,0x84,0x85 +001fec 84878380 DCB 0x84,0x87,0x83,0x80 +001ff0 390011ba DCB 0x39,0x00,0x11,0xba +001ff4 02000200 DCB 0x02,0x00,0x02,0x00 +001ff8 02000200 DCB 0x02,0x00,0x02,0x00 +001ffc 02000200 DCB 0x02,0x00,0x02,0x00 +002000 02000200 DCB 0x02,0x00,0x02,0x00 +002004 3900026f DCB 0x39,0x00,0x02,0x6f +002008 10390011 DCB 0x10,0x39,0x00,0x11 +00200c ba020002 DCB 0xba,0x02,0x00,0x02 +002010 00020002 DCB 0x00,0x02,0x00,0x02 +002014 00020002 DCB 0x00,0x02,0x00,0x02 +002018 00020002 DCB 0x00,0x02,0x00,0x02 +00201c 00390002 DCB 0x00,0x39,0x00,0x02 +002020 6f203900 DCB 0x6f,0x20,0x39,0x00 +002024 11ba0200 DCB 0x11,0xba,0x02,0x00 +002028 02000200 DCB 0x02,0x00,0x02,0x00 +00202c 02000200 DCB 0x02,0x00,0x02,0x00 +002030 02000200 DCB 0x02,0x00,0x02,0x00 +002034 02003900 DCB 0x02,0x00,0x39,0x00 +002038 026f3039 DCB 0x02,0x6f,0x30,0x39 +00203c 0011ba02 DCB 0x00,0x11,0xba,0x02 +002040 00020002 DCB 0x00,0x02,0x00,0x02 +002044 00020002 DCB 0x00,0x02,0x00,0x02 +002048 00020002 DCB 0x00,0x02,0x00,0x02 +00204c 00020039 DCB 0x00,0x02,0x00,0x39 +002050 00026f40 DCB 0x00,0x02,0x6f,0x40 +002054 390011ba DCB 0x39,0x00,0x11,0xba +002058 02000200 DCB 0x02,0x00,0x02,0x00 +00205c 02000200 DCB 0x02,0x00,0x02,0x00 +002060 02000200 DCB 0x02,0x00,0x02,0x00 +002064 02000200 DCB 0x02,0x00,0x02,0x00 +002068 3900026f DCB 0x39,0x00,0x02,0x6f +00206c 50390011 DCB 0x50,0x39,0x00,0x11 +002070 ba020002 DCB 0xba,0x02,0x00,0x02 +002074 00020002 DCB 0x00,0x02,0x00,0x02 +002078 00020002 DCB 0x00,0x02,0x00,0x02 +00207c 00020002 DCB 0x00,0x02,0x00,0x02 +002080 00390002 DCB 0x00,0x39,0x00,0x02 +002084 6f603900 DCB 0x6f,0x60,0x39,0x00 +002088 11ba0200 DCB 0x11,0xba,0x02,0x00 +00208c 02000200 DCB 0x02,0x00,0x02,0x00 +002090 020005d1 DCB 0x02,0x00,0x05,0xd1 +002094 08000800 DCB 0x08,0x00,0x08,0x00 +002098 08003900 DCB 0x08,0x00,0x39,0x00 +00209c 026f7039 DCB 0x02,0x6f,0x70,0x39 +0020a0 0011ba08 DCB 0x00,0x11,0xba,0x08 +0020a4 00080008 DCB 0x00,0x08,0x00,0x08 +0020a8 00080008 DCB 0x00,0x08,0x00,0x08 +0020ac 00080008 DCB 0x00,0x08,0x00,0x08 +0020b0 00080039 DCB 0x00,0x08,0x00,0x39 +0020b4 00026f80 DCB 0x00,0x02,0x6f,0x80 +0020b8 390011ba DCB 0x39,0x00,0x11,0xba +0020bc 0800053e DCB 0x08,0x00,0x05,0x3e +0020c0 07360736 DCB 0x07,0x36,0x07,0x36 +0020c4 07360736 DCB 0x07,0x36,0x07,0x36 +0020c8 07360736 DCB 0x07,0x36,0x07,0x36 +0020cc 3900026f DCB 0x39,0x00,0x02,0x6f +0020d0 90390011 DCB 0x90,0x39,0x00,0x11 +0020d4 ba073607 DCB 0xba,0x07,0x36,0x07 +0020d8 36080008 DCB 0x36,0x08,0x00,0x08 +0020dc 00080008 DCB 0x00,0x08,0x00,0x08 +0020e0 00053e07 DCB 0x00,0x05,0x3e,0x07 +0020e4 36390002 DCB 0x36,0x39,0x00,0x02 +0020e8 6fa03900 DCB 0x6f,0xa0,0x39,0x00 +0020ec 11ba0736 DCB 0x11,0xba,0x07,0x36 +0020f0 07360736 DCB 0x07,0x36,0x07,0x36 +0020f4 07360736 DCB 0x07,0x36,0x07,0x36 +0020f8 07360736 DCB 0x07,0x36,0x07,0x36 +0020fc 08003900 DCB 0x08,0x00,0x39,0x00 +002100 026fb039 DCB 0x02,0x6f,0xb0,0x39 +002104 0011ba08 DCB 0x00,0x11,0xba,0x08 +002108 00080008 DCB 0x00,0x08,0x00,0x08 +00210c 0005d108 DCB 0x00,0x05,0xd1,0x08 +002110 00080008 DCB 0x00,0x08,0x00,0x08 +002114 00080039 DCB 0x00,0x08,0x00,0x39 +002118 00026fc0 DCB 0x00,0x02,0x6f,0xc0 +00211c 390011ba DCB 0x39,0x00,0x11,0xba +002120 08000800 DCB 0x08,0x00,0x08,0x00 +002124 08000800 DCB 0x08,0x00,0x08,0x00 +002128 08000800 DCB 0x08,0x00,0x08,0x00 +00212c 08000800 DCB 0x08,0x00,0x08,0x00 +002130 3900026f DCB 0x39,0x00,0x02,0x6f +002134 d0390011 DCB 0xd0,0x39,0x00,0x11 +002138 ba080008 DCB 0xba,0x08,0x00,0x08 +00213c 00080008 DCB 0x00,0x08,0x00,0x08 +002140 00080008 DCB 0x00,0x08,0x00,0x08 +002144 00080008 DCB 0x00,0x08,0x00,0x08 +002148 00390002 DCB 0x00,0x39,0x00,0x02 +00214c 6fe03900 DCB 0x6f,0xe0,0x39,0x00 +002150 0bba0800 DCB 0x0b,0xba,0x08,0x00 +002154 08000800 DCB 0x08,0x00,0x08,0x00 +002158 08000800 DCB 0x08,0x00,0x08,0x00 +00215c 390011bb DCB 0x39,0x00,0x11,0xbb +002160 012c012c DCB 0x01,0x2c,0x01,0x2c +002164 012c012c DCB 0x01,0x2c,0x01,0x2c +002168 012c012c DCB 0x01,0x2c,0x01,0x2c +00216c 012c012c DCB 0x01,0x2c,0x01,0x2c +002170 3900026f DCB 0x39,0x00,0x02,0x6f +002174 10390011 DCB 0x10,0x39,0x00,0x11 +002178 bb012c01 DCB 0xbb,0x01,0x2c,0x01 +00217c 00010001 DCB 0x00,0x01,0x00,0x01 +002180 00010001 DCB 0x00,0x01,0x00,0x01 +002184 2c012c01 DCB 0x2c,0x01,0x2c,0x01 +002188 2c390002 DCB 0x2c,0x39,0x00,0x02 +00218c 6f203900 DCB 0x6f,0x20,0x39,0x00 +002190 11bb012c DCB 0x11,0xbb,0x01,0x2c +002194 012c012c DCB 0x01,0x2c,0x01,0x2c +002198 012c012c DCB 0x01,0x2c,0x01,0x2c +00219c 012c0100 DCB 0x01,0x2c,0x01,0x00 +0021a0 01003900 DCB 0x01,0x00,0x39,0x00 +0021a4 026f3039 DCB 0x02,0x6f,0x30,0x39 +0021a8 0011bb01 DCB 0x00,0x11,0xbb,0x01 +0021ac 00010001 DCB 0x00,0x01,0x00,0x01 +0021b0 2c012c01 DCB 0x2c,0x01,0x2c,0x01 +0021b4 2c012c01 DCB 0x2c,0x01,0x2c,0x01 +0021b8 2c012c39 DCB 0x2c,0x01,0x2c,0x39 +0021bc 00026f40 DCB 0x00,0x02,0x6f,0x40 +0021c0 390011bb DCB 0x39,0x00,0x11,0xbb +0021c4 012c012c DCB 0x01,0x2c,0x01,0x2c +0021c8 012c0100 DCB 0x01,0x2c,0x01,0x00 +0021cc 01000100 DCB 0x01,0x00,0x01,0x00 +0021d0 0100012c DCB 0x01,0x00,0x01,0x2c +0021d4 3900026f DCB 0x39,0x00,0x02,0x6f +0021d8 50390011 DCB 0x50,0x39,0x00,0x11 +0021dc bb012c01 DCB 0xbb,0x01,0x2c,0x01 +0021e0 2c012c01 DCB 0x2c,0x01,0x2c,0x01 +0021e4 2c012c01 DCB 0x2c,0x01,0x2c,0x01 +0021e8 2c012c01 DCB 0x2c,0x01,0x2c,0x01 +0021ec 2c390002 DCB 0x2c,0x39,0x00,0x02 +0021f0 6f603900 DCB 0x6f,0x60,0x39,0x00 +0021f4 11bb0100 DCB 0x11,0xbb,0x01,0x00 +0021f8 01000100 DCB 0x01,0x00,0x01,0x00 +0021fc 01000100 DCB 0x01,0x00,0x01,0x00 +002200 01000100 DCB 0x01,0x00,0x01,0x00 +002204 01003900 DCB 0x01,0x00,0x39,0x00 +002208 026f7039 DCB 0x02,0x6f,0x70,0x39 +00220c 0011bb01 DCB 0x00,0x11,0xbb,0x01 +002210 00010001 DCB 0x00,0x01,0x00,0x01 +002214 00010001 DCB 0x00,0x01,0x00,0x01 +002218 00010001 DCB 0x00,0x01,0x00,0x01 +00221c 00010039 DCB 0x00,0x01,0x00,0x39 +002220 00026f80 DCB 0x00,0x02,0x6f,0x80 +002224 390011bb DCB 0x39,0x00,0x11,0xbb +002228 01000800 DCB 0x01,0x00,0x08,0x00 +00222c 00000000 DCB 0x00,0x00,0x00,0x00 +002230 00000000 DCB 0x00,0x00,0x00,0x00 +002234 00000000 DCB 0x00,0x00,0x00,0x00 +002238 3900026f DCB 0x39,0x00,0x02,0x6f +00223c 90390011 DCB 0x90,0x39,0x00,0x11 +002240 bb000000 DCB 0xbb,0x00,0x00,0x00 +002244 00000000 DCB 0x00,0x00,0x00,0x00 +002248 00000000 DCB 0x00,0x00,0x00,0x00 +00224c 00001010 DCB 0x00,0x00,0x10,0x10 +002250 10390002 DCB 0x10,0x39,0x00,0x02 +002254 6fa03900 DCB 0x6f,0xa0,0x39,0x00 +002258 05bb8080 DCB 0x05,0xbb,0x80,0x80 +00225c 80003900 DCB 0x80,0x00,0x39,0x00 +002260 02ee0539 DCB 0x02,0xee,0x05,0x39 +002264 0005ffaa DCB 0x00,0x05,0xff,0xaa +002268 55a58039 DCB 0x55,0xa5,0x80,0x39 +00226c 00026f1d DCB 0x00,0x02,0x6f,0x1d +002270 390002f2 DCB 0x39,0x00,0x02,0xf2 +002274 05390005 DCB 0x05,0x39,0x00,0x05 +002278 3b001400 DCB 0x3b,0x00,0x14,0x00 +00227c 12390002 DCB 0x12,0x39,0x00,0x02 +002280 03013900 DCB 0x03,0x01,0x39,0x00 +002284 02900239 DCB 0x02,0x90,0x02,0x39 +002288 00139189 DCB 0x00,0x13,0x91,0x89 +00228c 28000cc2 DCB 0x28,0x00,0x0c,0xc2 +002290 00031c01 DCB 0x00,0x03,0x1c,0x01 +002294 7e000f08 DCB 0x7e,0x00,0x0f,0x08 +002298 bb043d10 DCB 0xbb,0x04,0x3d,0x10 +00229c f0390001 DCB 0xf0,0x39,0x00,0x01 +0022a0 2c390005 DCB 0x2c,0x39,0x00,0x05 +0022a4 5107ff0f DCB 0x51,0x07,0xff,0x0f +0022a8 ff390002 DCB 0xff,0x39,0x00,0x02 +0022ac 53203900 DCB 0x53,0x20,0x39,0x00 +0022b0 01353900 DCB 0x01,0x35,0x39,0x00 +0022b4 052a0000 DCB 0x05,0x2a,0x00,0x00 +0022b8 04373900 DCB 0x04,0x37,0x39,0x00 +0022bc 052b0000 DCB 0x05,0x2b,0x00,0x00 +0022c0 095f3900 DCB 0x09,0x5f,0x39,0x00 +0022c4 022f0139 DCB 0x02,0x2f,0x01,0x39 +0022c8 0006f055 DCB 0x00,0x06,0xf0,0x55 +0022cc aa520807 DCB 0xaa,0x52,0x08,0x07 +0022d0 39000fc0 DCB 0x39,0x00,0x0f,0xc0 +0022d4 01010000 DCB 0x01,0x01,0x00,0x00 +0022d8 55000000 DCB 0x55,0x00,0x00,0x00 +0022dc 00000000 DCB 0x00,0x00,0x00,0x00 +0022e0 00003900 DCB 0x00,0x00,0x39,0x00 +0022e4 026f0039 DCB 0x02,0x6f,0x00,0x39 +0022e8 0016c921 DCB 0x00,0x16,0xc9,0x21 +0022ec 002a402a DCB 0x00,0x2a,0x40,0x2a +0022f0 4000003f DCB 0x40,0x00,0x00,0x3f +0022f4 ddac003f DCB 0xdd,0xac,0x00,0x3f +0022f8 ddac0080 DCB 0xdd,0xac,0x00,0x80 +0022fc 06f91000 DCB 0x06,0xf9,0x10,0x00 +002300 3900026f DCB 0x39,0x00,0x02,0x6f +002304 15390010 DCB 0x15,0x39,0x00,0x10 +002308 c961b4b0 DCB 0xc9,0x61,0xb4,0xb0 +00230c 721c1833 DCB 0x72,0x1c,0x18,0x33 +002310 e02a400f DCB 0xe0,0x2a,0x40,0x0f +002314 98980000 DCB 0x98,0x98,0x00,0x00 +002318 3900026f DCB 0x39,0x00,0x02,0x6f +00231c 24390008 DCB 0x24,0x39,0x00,0x08 +002320 c9000000 DCB 0xc9,0x00,0x00,0x00 +002324 00000000 DCB 0x00,0x00,0x00,0x00 +002328 3900026f DCB 0x39,0x00,0x02,0x6f +00232c 00390016 DCB 0x00,0x39,0x00,0x16 +002330 ca27002a DCB 0xca,0x27,0x00,0x2a +002334 402a4000 DCB 0x40,0x2a,0x40,0x00 +002338 00000000 DCB 0x00,0x00,0x00,0x00 +00233c 003fddac DCB 0x00,0x3f,0xdd,0xac +002340 00800000 DCB 0x00,0x80,0x00,0x00 +002344 00003900 DCB 0x00,0x00,0x39,0x00 +002348 026f1539 DCB 0x02,0x6f,0x15,0x39 +00234c 0010ca62 DCB 0x00,0x10,0xca,0x62 +002350 1db07285 DCB 0x1d,0xb0,0x72,0x85 +002354 1833e000 DCB 0x18,0x33,0xe0,0x00 +002358 00036898 DCB 0x00,0x03,0x68,0x98 +00235c 00003900 DCB 0x00,0x00,0x39,0x00 +002360 026f2439 DCB 0x02,0x6f,0x24,0x39 +002364 0008ca00 DCB 0x00,0x08,0xca,0x00 +002368 00000000 DCB 0x00,0x00,0x00,0x00 +00236c 00003900 DCB 0x00,0x00,0x39,0x00 +002370 026f0039 DCB 0x02,0x6f,0x00,0x39 +002374 0016cb2d DCB 0x00,0x16,0xcb,0x2d +002378 002a402a DCB 0x00,0x2a,0x40,0x2a +00237c 4000003f DCB 0x40,0x00,0x00,0x3f +002380 ddac0080 DCB 0xdd,0xac,0x00,0x80 +002384 00000000 DCB 0x00,0x00,0x00,0x00 +002388 00000000 DCB 0x00,0x00,0x00,0x00 +00238c 3900026f DCB 0x39,0x00,0x02,0x6f +002390 15390010 DCB 0x15,0x39,0x00,0x10 +002394 cb71b419 DCB 0xcb,0x71,0xb4,0x19 +002398 721c8133 DCB 0x72,0x1c,0x81,0x33 +00239c 9000000c DCB 0x90,0x00,0x00,0x0c +0023a0 98680000 DCB 0x98,0x68,0x00,0x00 +0023a4 3900026f DCB 0x39,0x00,0x02,0x6f +0023a8 24390008 DCB 0x24,0x39,0x00,0x08 +0023ac cb000000 DCB 0xcb,0x00,0x00,0x00 +0023b0 00000000 DCB 0x00,0x00,0x00,0x00 +0023b4 3900026f DCB 0x39,0x00,0x02,0x6f +0023b8 00390016 DCB 0x00,0x39,0x00,0x16 +0023bc cc2b002a DCB 0xcc,0x2b,0x00,0x2a +0023c0 402a4000 DCB 0x40,0x2a,0x40,0x00 +0023c4 00000000 DCB 0x00,0x00,0x00,0x00 +0023c8 00800000 DCB 0x00,0x80,0x00,0x00 +0023cc 007ff906 DCB 0x00,0x7f,0xf9,0x06 +0023d0 f0003900 DCB 0xf0,0x00,0x39,0x00 +0023d4 026f1539 DCB 0x02,0x6f,0x15,0x39 +0023d8 0010cc72 DCB 0x00,0x10,0xcc,0x72 +0023dc 1d197285 DCB 0x1d,0x19,0x72,0x85 +0023e0 81339fd5 DCB 0x81,0x33,0x9f,0xd5 +0023e4 c0006868 DCB 0xc0,0x00,0x68,0x68 +0023e8 00003900 DCB 0x00,0x00,0x39,0x00 +0023ec 026f2439 DCB 0x02,0x6f,0x24,0x39 +0023f0 0008cc00 DCB 0x00,0x08,0xcc,0x00 +0023f4 00000000 DCB 0x00,0x00,0x00,0x00 +0023f8 00003900 DCB 0x00,0x00,0x39,0x00 +0023fc 06f055aa DCB 0x06,0xf0,0x55,0xaa +002400 52080239 DCB 0x52,0x08,0x02,0x39 +002404 00026f08 DCB 0x00,0x02,0x6f,0x08 +002408 390003d0 DCB 0x39,0x00,0x03,0xd0 +00240c 04e43900 DCB 0x04,0xe4,0x39,0x00 +002410 026f0a39 DCB 0x02,0x6f,0x0a,0x39 +002414 0003d00c DCB 0x00,0x03,0xd0,0x0c +002418 60390002 DCB 0x60,0x39,0x00,0x02 +00241c 6f0c3900 DCB 0x6f,0x0c,0x39,0x00 +002420 03d006c0 DCB 0x03,0xd0,0x06,0xc0 +002424 390002d1 DCB 0x39,0x00,0x02,0xd1 +002428 41390002 DCB 0x41,0x39,0x00,0x02 +00242c 6f013900 DCB 0x6f,0x01,0x39,0x00 +002430 02d10039 DCB 0x02,0xd1,0x00,0x39 +002434 00026f02 DCB 0x00,0x02,0x6f,0x02 +002438 390002d1 DCB 0x39,0x00,0x02,0xd1 +00243c 00390002 DCB 0x00,0x39,0x00,0x02 +002440 6f033900 DCB 0x6f,0x03,0x39,0x00 +002444 05d1021e DCB 0x05,0xd1,0x02,0x1e +002448 07193900 DCB 0x07,0x19,0x39,0x00 +00244c 026f0739 DCB 0x02,0x6f,0x07,0x39 +002450 0005d101 DCB 0x00,0x05,0xd1,0x01 +002454 b006b039 DCB 0xb0,0x06,0xb0,0x39 +002458 00026f0b DCB 0x00,0x02,0x6f,0x0b +00245c 390005d1 DCB 0x39,0x00,0x05,0xd1 +002460 02880781 DCB 0x02,0x88,0x07,0x81 +002464 3900026f DCB 0x39,0x00,0x02,0x6f +002468 0f390007 DCB 0x0f,0x39,0x00,0x07 +00246c d13fff20 DCB 0xd1,0x3f,0xff,0x20 +002470 00300039 DCB 0x00,0x30,0x00,0x39 +002474 0006f055 DCB 0x00,0x06,0xf0,0x55 +002478 aa520800 DCB 0xaa,0x52,0x08,0x00 +00247c 3900026f DCB 0x39,0x00,0x02,0x6f +002480 17390003 DCB 0x17,0x39,0x00,0x03 +002484 b207ff39 DCB 0xb2,0x07,0xff,0x39 +002488 00026f1f DCB 0x00,0x02,0x6f,0x1f +00248c 390003b2 DCB 0x39,0x00,0x03,0xb2 +002490 00503900 DCB 0x00,0x50,0x39,0x00 +002494 02880139 DCB 0x02,0x88,0x01,0x39 +002498 00026f01 DCB 0x00,0x02,0x6f,0x01 +00249c 39000588 DCB 0x39,0x00,0x05,0x88 +0024a0 021d0834 DCB 0x02,0x1d,0x08,0x34 +0024a4 390006f0 DCB 0x39,0x00,0x06,0xf0 +0024a8 55aa5208 DCB 0x55,0xaa,0x52,0x08 +0024ac 00390002 DCB 0x00,0x39,0x00,0x02 +0024b0 c077 DCB 0xc0,0x77 + + AREA ||.conststring||, DATA, READONLY, MERGE=1, STRINGS, ALIGN=2 + +000000 5b25735d DCB "[%s] (%04d) ap reset cb!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" +000004 20282530 +000008 34642920 +00000c 61702072 +000010 65736574 +000014 20636221 +000018 21212121 +00001c 21212121 +000020 21212121 +000024 21212121 +000028 21212121 +00002c 21212121 +000030 21212121 +000034 212121 +000037 21212121 DCB "!!!!!!!!!!!!!!!!!!!\n",0 +00003b 21212121 +00003f 21212121 +000043 21212121 +000047 2121210a +00004b 00 + + AREA ||.data||, DATA, ALIGN=2 + + start_display_on +000000 01 DCB 0x01 + g_exit_sleep_mode +000001 00 DCB 0x00 + panel_display_done +000002 00 DCB 0x00 + input_compress_flag +000003 00 DCB 0x00 + enter_hbm_mode_cnt +000004 00 DCB 0x00 + exit_hbm_mode_cnt +000005 00 DCB 0x00 + BL_ADJ_flag +000006 00 DCB 0x00 + phone_off_flag +000007 00 DCB 0x00 + phone_start_flag +000008 00 DCB 0x00 + phone_DisplayOFF_flag +000009 00 DCB 0x00 + hbm_mode +00000a 00 DCB 0x00 + g_need_enter_sleep_mode +00000b 00 DCB 0x00 + panel_mode +00000c 0100 DCB 0x01,0x00 + phone_DisplayOFF_count +00000e 0000 DCW 0x0000 + rd_51_val2 +000010 007f DCW 0x007f + panel_r +000012 0000 DCB 0x00,0x00 + panel_g +000014 0000 DCB 0x00,0x00 + panel_b +000016 0000 DCB 0x00,0x00 + g_rx_ctrl_handle + DCD 0x00000000 + g_tx_ctrl_handle + DCD 0x00000000 + value_reg_df + DCD 0x00000000 + s_heartbeat + DCD 0x00000000 + + AREA ||area_number.25||, DATA, ALIGN=1 + + EXPORTAS ||area_number.25||, ||.data|| + value_reg_b1 +000000 0000 DCW 0x0000 + + AREA ||area_number.26||, DATA, ALIGN=1 + + EXPORTAS ||area_number.26||, ||.data|| + value_reg_ca +000000 0000 DCW 0x0000 + +;*** Start embedded assembler *** + +#line 1 "..\\..\\src\\app\\demo\\ap_demo.c" + AREA ||.rev16_text||, CODE + THUMB + EXPORT |__asm___9_ap_demo_c_c64640cd____REV16| +#line 467 "C:\\Keil_v5\\ARM\\PACK\\ARM\\CMSIS\\5.5.1\\CMSIS\\Core\\Include\\cmsis_armcc.h" +|__asm___9_ap_demo_c_c64640cd____REV16| PROC +#line 468 + + rev16 r0, r0 + bx lr + ENDP + AREA ||.revsh_text||, CODE + THUMB + EXPORT |__asm___9_ap_demo_c_c64640cd____REVSH| +#line 482 +|__asm___9_ap_demo_c_c64640cd____REVSH| PROC +#line 483 + + revsh r0, r0 + bx lr + ENDP + +;*** End embedded assembler *** diff --git a/project/ISP_368/Listings/app_tp_for_custom_s8.txt b/project/ISP_368/Listings/app_tp_for_custom_s8.txt new file mode 100644 index 0000000..bc83b68 --- /dev/null +++ b/project/ISP_368/Listings/app_tp_for_custom_s8.txt @@ -0,0 +1,3479 @@ +; generated by Component: ARM Compiler 5.06 update 6 (build 750) Tool: ArmCC [4d3637] +; commandline ArmCC [--c99 --list --split_sections --debug -c --asm --interleave --gnu -o.\objects\app_tp_for_custom_s8.o --asm_dir=.\Listings\ --list_dir=.\Listings\ --depend=.\objects\app_tp_for_custom_s8.d --cpu=Cortex-M0 --apcs=interwork --diag_suppress=9931 -I..\..\src -I..\..\src\board -I..\..\src\common -I..\..\src\sdk\include -I..\..\src\app\demo -I..\..\src\sdk\include\M0 -I..\..\src\app -I..\..\src\app\module_demo -I..\..\src\app\touch -I..\..\src\app\S8 -I..\..\src\app\S9 -I..\CVWL368 -I.\RTE\_ISP_368 -IC:\Users\ASUS\AppData\Local\Arm\Packs\ARM\CMSIS\5.5.1\CMSIS\Core\Include -IC:\Users\ASUS\AppData\Local\Arm\Packs\ARM\CMSIS\5.5.1\Device\ARM\ARMCM0\Include -D__MICROLIB -D__UVISION_VERSION=528 -D_RTE_ -DARMCM0 -DISP_368 --omf_browse=.\objects\app_tp_for_custom_s8.crf ..\..\src\app\demo\app_tp_for_custom_s8.c] + THUMB + + AREA ||i.EncryptCheckEx||, CODE, READONLY, ALIGN=2 + + EncryptCheckEx PROC +;;;74 +;;;75 uint8_t EncryptCheckEx(uint8_t finger_num, uint8_t k) +000000 b510 PUSH {r4,lr} +;;;76 { +;;;77 if (enctryptCnt > 300) +000002 4b07 LDR r3,|L1.32| +000004 24ff MOVS r4,#0xff +000006 69da LDR r2,[r3,#0x1c] ; enctryptCnt +000008 342d ADDS r4,r4,#0x2d +00000a 42a2 CMP r2,r4 +00000c d807 BHI |L1.30| +;;;78 { +;;;79 return finger_num; +;;;80 } +;;;81 else +;;;82 { +;;;83 if (finger_num >= k) +00000e 4288 CMP r0,r1 +000010 d302 BCC |L1.24| +000012 1c52 ADDS r2,r2,#1 +;;;84 { +;;;85 enctryptCnt++; +000014 61da STR r2,[r3,#0x1c] ; enctryptCnt +000016 e001 B |L1.28| + |L1.24| +;;;86 } +;;;87 else +;;;88 enctryptCnt = 0; +000018 2000 MOVS r0,#0 +00001a 61d8 STR r0,[r3,#0x1c] ; enctryptCnt + |L1.28| +;;;89 return 1; +00001c 2001 MOVS r0,#1 + |L1.30| +;;;90 } +;;;91 } +00001e bd10 POP {r4,pc} +;;;92 #endif + ENDP + + |L1.32| + DCD ||.data|| + + AREA ||i.app_tp_phone_analysis_data||, CODE, READONLY, ALIGN=2 + + app_tp_phone_analysis_data PROC +;;;614 **************************************************************************/ +;;;615 void app_tp_phone_analysis_data(uint8_t *rxbuffer, size_t rxbuffer_size, const uint8_t **txbuffer, size_t *txbuffer_size) +000000 b5f8 PUSH {r3-r7,lr} +;;;616 { +000002 461c MOV r4,r3 +;;;617 #ifdef USE_FOR_SAMSUNG_Note10Lite +;;;618 uint16_t temp_buff =0; +;;;619 temp_buff=(rxbuffer[0]<<8)+rxbuffer[1]; +000004 7807 LDRB r7,[r0,#0] +000006 4615 MOV r5,r2 ;616 +000008 7843 LDRB r3,[r0,#1] +00000a 023a LSLS r2,r7,#8 +00000c 18d2 ADDS r2,r2,r3 +;;;620 +;;;621 if(rxbuffer_size==2) +;;;622 { +;;;623 switch(temp_buff) +;;;624 { +;;;625 case 0x0210: +;;;626 *txbuffer = phone_reg_coord_back; +;;;627 *txbuffer_size = sizeof(phone_reg_coord_back); +;;;628 break; +;;;629 case 0x0211: +;;;630 hal_gpio_set_output_data(IO_PAD_AP_INT,IO_LVL_HIGH); +;;;631 *txbuffer = &phone_reg_coord_back[1]; +;;;632 *txbuffer_size = sizeof(phone_reg_coord_back); +;;;633 if (fingerprint_enable == 0xE0) +00000e 4efc LDR r6,|L2.1024| +000010 b292 UXTH r2,r2 ;619 +000012 2902 CMP r1,#2 ;621 +000014 d016 BEQ |L2.68| +;;;634 fingerprint_enable = 0xEE; +;;;635 break; +;;;636 case 0x0120: +;;;637 *txbuffer = I2C_Ack_arr_0120; +;;;638 *txbuffer_size = sizeof(I2C_Ack_arr_0120); +;;;639 break; +;;;640 case 0x0100: +;;;641 *txbuffer = I2C_Ack_arr_0100; +;;;642 *txbuffer_size = sizeof(I2C_Ack_arr_0100); +;;;643 break; +;;;644 case 0x0204: +;;;645 *txbuffer = I2C_Ack_arr_0204; +;;;646 *txbuffer_size = sizeof(I2C_Ack_arr_0204); +;;;647 break; +;;;648 case 0x0600: +;;;649 if(Flag_0610>0) +;;;650 { +;;;651 *txbuffer = I2C_Ack_arr_0600_01; +;;;652 *txbuffer_size = sizeof(I2C_Ack_arr_0600_01); +;;;653 } +;;;654 else +;;;655 { +;;;656 *txbuffer = I2C_Ack_arr_0600_00; +;;;657 *txbuffer_size = sizeof(I2C_Ack_arr_0600_00); +;;;658 } +;;;659 break; +;;;660 case 0x0A20: +;;;661 if((Flag_0A10==0x01)||(Flag_0A10==0x02)) +;;;662 { +;;;663 *txbuffer = I2C_Ack_arr_0A20_01; +;;;664 *txbuffer_size = sizeof(I2C_Ack_arr_0A20_01); +;;;665 } +;;;666 else if(Flag_0A10==0x03) +;;;667 { +;;;668 *txbuffer = I2C_Ack_arr_0A20_03; +;;;669 *txbuffer_size = sizeof(I2C_Ack_arr_0A20_03); +;;;670 } +;;;671 else +;;;672 { +;;;673 *txbuffer = I2C_Ack_arr_0A20_14; +;;;674 *txbuffer_size = sizeof(I2C_Ack_arr_0A20_14); +;;;675 } +;;;676 break; +;;;677 case 0x0A00: +;;;678 *txbuffer = I2C_Ack_arr_0A00; +;;;679 *txbuffer_size = sizeof(I2C_Ack_arr_0A00); +;;;680 break; +;;;681 case 0x0A28: +;;;682 *txbuffer = I2C_Ack_arr_0A28; +;;;683 *txbuffer_size = sizeof(I2C_Ack_arr_0A28); +;;;684 break; +;;;685 case 0x2000: +;;;686 Flag_2000=1; +;;;687 if(Flag_0A10==0x01) +;;;688 { +;;;689 *txbuffer = I2C_Ack_arr_2000_01; +;;;690 *txbuffer_size = 0x44; +;;;691 } +;;;692 else if(Flag_0A10==0x14) +;;;693 { +;;;694 *txbuffer = I2C_Ack_arr_2000_14; +;;;695 *txbuffer_size = sizeof(I2C_Ack_arr_2000_14); +;;;696 } +;;;697 else if(Flag_0A10==0x1B) +;;;698 { +;;;699 *txbuffer = I2C_Ack_arr_2000_1B; +;;;700 *txbuffer_size = sizeof(I2C_Ack_arr_2000_1B); +;;;701 } +;;;702 else if(Flag_0A10==0x1C) +;;;703 { +;;;704 *txbuffer = I2C_Ack_arr_2000_1C; +;;;705 *txbuffer_size = sizeof(I2C_Ack_arr_2000_1C); +;;;706 } +;;;707 else if(Flag_0A10==0x02) +;;;708 { +;;;709 *txbuffer = I2C_Ack_arr_2000_02; +;;;710 *txbuffer_size = 0x44; +;;;711 } +;;;712 else if(Flag_0A10==0x03) +;;;713 { +;;;714 *txbuffer = I2C_Ack_arr_2000_03; +;;;715 *txbuffer_size = 0x22; +;;;716 } +;;;717 break; +;;;718 case 0x2044: +;;;719 if(Flag_0A10==0x01) +;;;720 { +;;;721 *txbuffer = &I2C_Ack_arr_2000_01[0x44]; +;;;722 *txbuffer_size = 0x44; +;;;723 } +;;;724 else if(Flag_0A10==0x02) +;;;725 { +;;;726 *txbuffer = &I2C_Ack_arr_2000_02[0x44]; +;;;727 *txbuffer_size = 0x44; +;;;728 } +;;;729 else if(Flag_0A10==0x03) +;;;730 { +;;;731 *txbuffer = &I2C_Ack_arr_2000_03[0x44]; +;;;732 *txbuffer_size = 0x22; +;;;733 } +;;;734 break; +;;;735 case 0x2088: +;;;736 if(Flag_0A10==0x01) +;;;737 { +;;;738 *txbuffer = &I2C_Ack_arr_2000_01[0x88]; +;;;739 *txbuffer_size = 0x44; +;;;740 } +;;;741 else if(Flag_0A10==0x02) +;;;742 { +;;;743 *txbuffer = &I2C_Ack_arr_2000_02[0x88]; +;;;744 *txbuffer_size = 0x44; +;;;745 } +;;;746 else if(Flag_0A10==0x03) +;;;747 { +;;;748 *txbuffer = &I2C_Ack_arr_2000_03[0x88]; +;;;749 *txbuffer_size = 0x22; +;;;750 } +;;;751 break; +;;;752 case 0x20CC: +;;;753 if(Flag_0A10==0x01) +;;;754 { +;;;755 *txbuffer = &I2C_Ack_arr_2000_01[0xCC]; +;;;756 *txbuffer_size = 0x44; +;;;757 } +;;;758 else if(Flag_0A10==0x02) +;;;759 { +;;;760 *txbuffer = &I2C_Ack_arr_2000_02[0xCC]; +;;;761 *txbuffer_size = 0x44; +;;;762 } +;;;763 else if(Flag_0A10==0x03) +;;;764 { +;;;765 *txbuffer = &I2C_Ack_arr_2000_03[0xCC]; +;;;766 *txbuffer_size = 0x22; +;;;767 } +;;;768 break; +;;;769 case 0x2110: +;;;770 if(Flag_0A10==0x01) +;;;771 { +;;;772 *txbuffer = &I2C_Ack_arr_2000_01[0x110]; +;;;773 *txbuffer_size = 0x44; +;;;774 } +;;;775 else if(Flag_0A10==0x02) +;;;776 { +;;;777 *txbuffer = &I2C_Ack_arr_2000_02[0x110]; +;;;778 *txbuffer_size = 0x44; +;;;779 } +;;;780 else if(Flag_0A10==0x03) +;;;781 { +;;;782 *txbuffer = &I2C_Ack_arr_2000_03[0x110]; +;;;783 *txbuffer_size = 0x22; +;;;784 } +;;;785 break; +;;;786 case 0x2154: +;;;787 if(Flag_0A10==0x01) +;;;788 { +;;;789 *txbuffer = &I2C_Ack_arr_2000_01[0x154]; +;;;790 *txbuffer_size = 0x44; +;;;791 } +;;;792 else if(Flag_0A10==0x02) +;;;793 { +;;;794 *txbuffer = &I2C_Ack_arr_2000_02[0x154]; +;;;795 *txbuffer_size = 0x44; +;;;796 } +;;;797 else if(Flag_0A10==0x03) +;;;798 { +;;;799 *txbuffer = &I2C_Ack_arr_2000_03[0x154]; +;;;800 *txbuffer_size = 0x44; +;;;801 } +;;;802 break; +;;;803 case 0x2198: +;;;804 if(Flag_0A10==0x01) +;;;805 { +;;;806 *txbuffer = &I2C_Ack_arr_2000_01[0x198]; +;;;807 *txbuffer_size = 0x44; +;;;808 } +;;;809 else if(Flag_0A10==0x02) +;;;810 { +;;;811 *txbuffer = &I2C_Ack_arr_2000_02[0x198]; +;;;812 *txbuffer_size = 0x44; +;;;813 } +;;;814 else if(Flag_0A10==0x03) +;;;815 { +;;;816 *txbuffer = &I2C_Ack_arr_2000_03[0x198]; +;;;817 *txbuffer_size = 0x22; +;;;818 } +;;;819 break; +;;;820 case 0x21DC: +;;;821 if(Flag_0A10==0x01) +;;;822 { +;;;823 *txbuffer = &I2C_Ack_arr_2000_01[0x1DC]; +;;;824 *txbuffer_size = 0x44; +;;;825 } +;;;826 else if(Flag_0A10==0x02) +;;;827 { +;;;828 *txbuffer = &I2C_Ack_arr_2000_02[0x1DC]; +;;;829 *txbuffer_size = 0x44; +;;;830 } +;;;831 else if(Flag_0A10==0x03) +;;;832 { +;;;833 *txbuffer = &I2C_Ack_arr_2000_03[0x1DC]; +;;;834 *txbuffer_size = 0x44; +;;;835 } +;;;836 break; +;;;837 case 0x2220: +;;;838 if(Flag_0A10==0x01) +;;;839 { +;;;840 *txbuffer = &I2C_Ack_arr_2000_01[0x220]; +;;;841 *txbuffer_size = 0x44; +;;;842 } +;;;843 else if(Flag_0A10==0x02) +;;;844 { +;;;845 *txbuffer = &I2C_Ack_arr_2000_02[0x220]; +;;;846 *txbuffer_size = 0x44; +;;;847 } +;;;848 break; +;;;849 case 0x2264: +;;;850 if(Flag_0A10==0x01) +;;;851 { +;;;852 *txbuffer = &I2C_Ack_arr_2000_01[0x264]; +;;;853 *txbuffer_size = 0x44; +;;;854 } +;;;855 else if(Flag_0A10==0x02) +;;;856 { +;;;857 *txbuffer = &I2C_Ack_arr_2000_02[0x264]; +;;;858 *txbuffer_size = 0x44; +;;;859 } +;;;860 break; +;;;861 case 0x22A8: +;;;862 if(Flag_0A10==0x01) +;;;863 { +;;;864 *txbuffer = &I2C_Ack_arr_2000_01[0x2A8]; +;;;865 *txbuffer_size = 0x44; +;;;866 } +;;;867 else if(Flag_0A10==0x02) +;;;868 { +;;;869 *txbuffer = &I2C_Ack_arr_2000_02[0x2A8]; +;;;870 *txbuffer_size = 0x44; +;;;871 } +;;;872 break; +;;;873 case 0x22EC: +;;;874 if(Flag_0A10==0x01) +;;;875 { +;;;876 *txbuffer = &I2C_Ack_arr_2000_01[0x2EC]; +;;;877 *txbuffer_size = 0x44; +;;;878 } +;;;879 else if(Flag_0A10==0x02) +;;;880 { +;;;881 *txbuffer = &I2C_Ack_arr_2000_02[0x2EC]; +;;;882 *txbuffer_size = 0x44; +;;;883 } +;;;884 break; +;;;885 case 0x2330: +;;;886 if(Flag_0A10==0x01) +;;;887 { +;;;888 *txbuffer = &I2C_Ack_arr_2000_01[0x330]; +;;;889 *txbuffer_size = 0x44; +;;;890 } +;;;891 else if(Flag_0A10==0x02) +;;;892 { +;;;893 *txbuffer = &I2C_Ack_arr_2000_02[0x330]; +;;;894 *txbuffer_size = 0x44; +;;;895 } +;;;896 break; +;;;897 case 0x2374: +;;;898 if(Flag_0A10==0x01) +;;;899 { +;;;900 *txbuffer = &I2C_Ack_arr_2000_01[0x374]; +;;;901 *txbuffer_size = 0x44; +;;;902 } +;;;903 else if(Flag_0A10==0x02) +;;;904 { +;;;905 *txbuffer = &I2C_Ack_arr_2000_02[0x374]; +;;;906 *txbuffer_size = 0x44; +;;;907 } +;;;908 break; +;;;909 case 0x23B8: +;;;910 if(Flag_0A10==0x01) +;;;911 { +;;;912 *txbuffer = &I2C_Ack_arr_2000_01[0x3B8]; +;;;913 *txbuffer_size = 0x44; +;;;914 } +;;;915 else if(Flag_0A10==0x02) +;;;916 { +;;;917 *txbuffer = &I2C_Ack_arr_2000_02[0x3B8]; +;;;918 *txbuffer_size = 0x44; +;;;919 } +;;;920 break; +;;;921 case 0x23FC: +;;;922 if(Flag_0A10==0x01) +;;;923 { +;;;924 *txbuffer = &I2C_Ack_arr_2000_01[0x3FC]; +;;;925 *txbuffer_size = 0x44; +;;;926 } +;;;927 else if(Flag_0A10==0x02) +;;;928 { +;;;929 *txbuffer = &I2C_Ack_arr_2000_02[0x3FC]; +;;;930 *txbuffer_size = 0x44; +;;;931 } +;;;932 break; +;;;933 case 0x2022: +;;;934 *txbuffer = &I2C_Ack_arr_2000_03[0x22]; +;;;935 *txbuffer_size = 0x22; +;;;936 break; +;;;937 case 0x2066: +;;;938 *txbuffer = &I2C_Ack_arr_2000_03[0x66]; +;;;939 *txbuffer_size = 0x22; +;;;940 break; +;;;941 case 0x20AA: +;;;942 *txbuffer = &I2C_Ack_arr_2000_03[0xAA]; +;;;943 *txbuffer_size = 0x22; +;;;944 break; +;;;945 case 0x20EE: +;;;946 *txbuffer = &I2C_Ack_arr_2000_03[0xEE]; +;;;947 *txbuffer_size = 0x22; +;;;948 break; +;;;949 case 0x2132: +;;;950 *txbuffer = &I2C_Ack_arr_2000_03[0x132]; +;;;951 *txbuffer_size = 0x22; +;;;952 break; +;;;953 case 0x2176: +;;;954 *txbuffer = &I2C_Ack_arr_2000_03[0x176]; +;;;955 *txbuffer_size = 0x22; +;;;956 break; +;;;957 case 0x21BA: +;;;958 *txbuffer = &I2C_Ack_arr_2000_03[0x1BA]; +;;;959 *txbuffer_size = 0x22; +;;;960 break; +;;;961 case 0x21FE: +;;;962 *txbuffer = &I2C_Ack_arr_2000_03[0xFE]; +;;;963 *txbuffer_size = 0x22; +;;;964 break; +;;;965 case 0xA019: +;;;966 *txbuffer = I2C_Ack_arr_A019; +;;;967 *txbuffer_size = sizeof(I2C_Ack_arr_A019); +;;;968 break; +;;;969 default: +;;;970 break; +;;;971 } +;;;972 } +;;;973 else +;;;974 { +;;;975 if((rxbuffer[0]==0x0A)&&(rxbuffer[1]==0x10)) +000016 2f0a CMP r7,#0xa +000018 d07e BEQ |L2.280| +;;;976 { +;;;977 Flag_0A10=rxbuffer[2]; +;;;978 } +;;;979 else if((rxbuffer[0]==0x06)&&(rxbuffer[1]==0x10)) +00001a 2f06 CMP r7,#6 +00001c d07d BEQ |L2.282| +;;;980 { +;;;981 Flag_2000=0; +;;;982 if (rxbuffer[2] == 0x00) +;;;983 { +;;;984 tp_sleep_in=0; +;;;985 tp_sleep_count=0; +;;;986 } +;;;987 } +;;;988 else if((rxbuffer[0]==0x06)&&(rxbuffer[1]==0x11)) +;;;989 { +;;;990 Flag_0610=rxbuffer[2]; +;;;991 Flag_2000=0; +;;;992 } +;;;993 // else if((rxbuffer[0]==0x06)&&(rxbuffer[1]==0x31)) +;;;994 // { +;;;995 // tp_sleep_in=0; +;;;996 // tp_sleep_count=0; +;;;997 // } +;;;998 // else if((rxbuffer[0]==0x06)&&(rxbuffer[1]==0x33)) +;;;999 // { +;;;1000 // tp_sleep_in=0; +;;;1001 // tp_sleep_count=0; +;;;1002 // } +;;;1003 +;;;1004 // else if((rxbuffer[0]==0xA0)&&(rxbuffer[1]==0x00)&&(rxbuffer[2]==0x30)) +;;;1005 // { +;;;1006 // tp_sleep_in=0; +;;;1007 // tp_sleep_count=0; +;;;1008 // } +;;;1009 else if((rxbuffer[0]==0x06)&&(rxbuffer[1]==0x13)&&(rxbuffer[2]==0x00)) +;;;1010 { +;;;1011 tp_sleep_in=0; +;;;1012 tp_sleep_count=0; +;;;1013 } +;;;1014 else if((rxbuffer[0]==0x06)&&(rxbuffer[1]==0x23)) +;;;1015 { +;;;1016 if(rxbuffer[2]==0x01) +;;;1017 { +;;;1018 Flag_EA_EN=1; +;;;1019 } +;;;1020 else +;;;1021 { +;;;1022 Flag_EA_EN=0; +;;;1023 } +;;;1024 } +;;;1025 else if((rxbuffer[0]==0x0E)&&(rxbuffer[1]==0x4B)&&(rxbuffer[2]==0x02)&&(rxbuffer[3]==0xCA)&&(rxbuffer[4]==0x20)&&(rxbuffer[5]==0x31)) +00001e 2f0e CMP r7,#0xe +000020 d10f BNE |L2.66| +000022 2b4b CMP r3,#0x4b +000024 d10d BNE |L2.66| +000026 7881 LDRB r1,[r0,#2] +000028 2902 CMP r1,#2 +00002a d10a BNE |L2.66| +00002c 78c1 LDRB r1,[r0,#3] +00002e 29ca CMP r1,#0xca +000030 d107 BNE |L2.66| +000032 7901 LDRB r1,[r0,#4] +000034 2920 CMP r1,#0x20 +000036 d104 BNE |L2.66| +000038 7940 LDRB r0,[r0,#5] +00003a 2831 CMP r0,#0x31 +00003c d101 BNE |L2.66| +;;;1026 { +;;;1027 fingerprint_flag=1; +00003e 2001 MOVS r0,#1 +000040 73b0 STRB r0,[r6,#0xe] + |L2.66| +;;;1028 } +;;;1029 } +;;;1030 #endif +;;;1031 } +000042 bdf8 POP {r3-r7,pc} + |L2.68| +000044 4fef LDR r7,|L2.1028| +000046 2044 MOVS r0,#0x44 ;690 +000048 1bd1 SUBS r1,r2,r7 ;623 +00004a 2322 MOVS r3,#0x22 ;715 +00004c 42ba CMP r2,r7 ;623 +00004e d079 BEQ |L2.324| +000050 dc46 BGT |L2.224| +000052 4fed LDR r7,|L2.1032| +000054 1bd1 SUBS r1,r2,r7 ;623 +000056 42ba CMP r2,r7 ;623 +000058 d075 BEQ |L2.326| +00005a dc27 BGT |L2.172| +00005c 48eb LDR r0,|L2.1036| +00005e 1a11 SUBS r1,r2,r0 ;623 +000060 4282 CMP r2,r0 ;623 +000062 d071 BEQ |L2.328| +000064 dc0c BGT |L2.128| +000066 3aff SUBS r2,r2,#0xff ;623 +000068 1e52 SUBS r2,r2,#1 ;623 +00006a d06e BEQ |L2.330| +00006c 2a20 CMP r2,#0x20 ;623 +00006e d06d BEQ |L2.332| +000070 3aff SUBS r2,r2,#0xff ;623 +000072 1f52 SUBS r2,r2,#5 ;623 +000074 d06b BEQ |L2.334| +000076 2a0c CMP r2,#0xc ;623 +000078 d1e3 BNE |L2.66| +00007a 48e1 LDR r0,|L2.1024| +00007c 3020 ADDS r0,r0,#0x20 ;626 +00007e e0f8 B |L2.626| + |L2.128| +000080 48e3 LDR r0,|L2.1040| +000082 1808 ADDS r0,r1,r0 ;623 +000084 d07a BEQ |L2.380| +000086 2101 MOVS r1,#1 ;623 +000088 0289 LSLS r1,r1,#10 ;623 +00008a 1a40 SUBS r0,r0,r1 ;623 +00008c d077 BEQ |L2.382| +00008e 2820 CMP r0,#0x20 ;623 +000090 d1d7 BNE |L2.66| +000092 7ab1 LDRB r1,[r6,#0xa] ;661 ; Flag_0A10 +000094 2007 MOVS r0,#7 ;664 +000096 2901 CMP r1,#1 ;661 +000098 d072 BEQ |L2.384| +00009a 7ab1 LDRB r1,[r6,#0xa] ;661 ; Flag_0A10 +00009c 2902 CMP r1,#2 ;661 +00009e d06f BEQ |L2.384| +0000a0 7ab1 LDRB r1,[r6,#0xa] ;666 ; Flag_0A10 +0000a2 2903 CMP r1,#3 ;666 +0000a4 d06d BEQ |L2.386| +0000a6 49db LDR r1,|L2.1044| + |L2.168| +0000a8 6029 STR r1,[r5,#0] ;663 +0000aa e0e4 B |L2.630| + |L2.172| +0000ac 27b3 MOVS r7,#0xb3 ;623 +0000ae 017f LSLS r7,r7,#5 ;623 +0000b0 1bca SUBS r2,r1,r7 ;623 +0000b2 42b9 CMP r1,r7 ;623 +0000b4 d072 BEQ |L2.412| +0000b6 dc0a BGT |L2.206| +0000b8 4ad7 LDR r2,|L2.1048| +0000ba 1889 ADDS r1,r1,r2 ;623 +0000bc d06f BEQ |L2.414| +0000be 2922 CMP r1,#0x22 ;623 +0000c0 d06e BEQ |L2.416| +0000c2 2944 CMP r1,#0x44 ;623 +0000c4 d06d BEQ |L2.418| +0000c6 2966 CMP r1,#0x66 ;623 +0000c8 d1bb BNE |L2.66| +0000ca 48d4 LDR r0,|L2.1052| +0000cc e023 B |L2.278| + |L2.206| +0000ce 2a22 CMP r2,#0x22 ;623 +0000d0 d068 BEQ |L2.420| +0000d2 2a44 CMP r2,#0x44 ;623 +0000d4 d067 BEQ |L2.422| +0000d6 2a66 CMP r2,#0x66 ;623 +0000d8 d1b3 BNE |L2.66| +0000da 48d0 LDR r0,|L2.1052| +0000dc 3088 ADDS r0,r0,#0x88 ;946 +0000de e01a B |L2.278| + |L2.224| +0000e0 27ff MOVS r7,#0xff ;623 +0000e2 3755 ADDS r7,r7,#0x55 ;623 +0000e4 1bca SUBS r2,r1,r7 ;623 +0000e6 42b9 CMP r1,r7 ;623 +0000e8 d072 BEQ |L2.464| +0000ea dc31 BGT |L2.336| +0000ec 29aa CMP r1,#0xaa ;623 +0000ee d070 BEQ |L2.466| +0000f0 dc17 BGT |L2.290| +0000f2 2922 CMP r1,#0x22 ;623 +0000f4 d06e BEQ |L2.468| +0000f6 2944 CMP r1,#0x44 ;623 +0000f8 d06d BEQ |L2.470| +0000fa 2966 CMP r1,#0x66 ;623 +0000fc d06c BEQ |L2.472| +0000fe 2988 CMP r1,#0x88 ;623 +000100 d19f BNE |L2.66| +000102 7ab1 LDRB r1,[r6,#0xa] ;804 ; Flag_0A10 +000104 2901 CMP r1,#1 ;804 +000106 d068 BEQ |L2.474| +000108 7ab1 LDRB r1,[r6,#0xa] ;809 ; Flag_0A10 +00010a 2902 CMP r1,#2 ;809 +00010c d070 BEQ |L2.496| +00010e 7ab0 LDRB r0,[r6,#0xa] ;814 ; Flag_0A10 +000110 2803 CMP r0,#3 ;814 +000112 d196 BNE |L2.66| +000114 48c2 LDR r0,|L2.1056| + |L2.278| +000116 e001 B |L2.284| + |L2.280| +000118 e1a9 B |L2.1134| + |L2.282| +00011a e1ad B |L2.1144| + |L2.284| +00011c 6028 STR r0,[r5,#0] ;817 +00011e 6023 STR r3,[r4,#0] ;817 + |L2.288| +000120 bdf8 POP {r3-r7,pc} + |L2.290| +000122 29cc CMP r1,#0xcc ;623 +000124 d070 BEQ |L2.520| +000126 29ee CMP r1,#0xee ;623 +000128 d06f BEQ |L2.522| +00012a 39ff SUBS r1,r1,#0xff ;623 +00012c 2911 CMP r1,#0x11 ;623 +00012e d1f7 BNE |L2.288| +000130 7ab1 LDRB r1,[r6,#0xa] ;838 ; Flag_0A10 +000132 2901 CMP r1,#1 ;838 +000134 d06a BEQ |L2.524| +000136 7ab1 LDRB r1,[r6,#0xa] ;843 ; Flag_0A10 +000138 2902 CMP r1,#2 ;843 +00013a d1f1 BNE |L2.288| +00013c 49b9 LDR r1,|L2.1060| + |L2.318| +00013e 2211 MOVS r2,#0x11 ;840 +000140 0152 LSLS r2,r2,#5 ;840 +000142 e180 B |L2.1094| + |L2.324| +000144 e0d7 B |L2.758| + |L2.326| +000146 e06d B |L2.548| + |L2.328| +000148 e02e B |L2.424| + |L2.330| +00014a e047 B |L2.476| + |L2.332| +00014c e03b B |L2.454| + |L2.334| +00014e e04a B |L2.486| + |L2.336| +000150 23ff MOVS r3,#0xff ;623 +000152 3311 ADDS r3,r3,#0x11 ;623 +000154 1ad1 SUBS r1,r2,r3 ;623 +000156 429a CMP r2,r3 ;623 +000158 d07e BEQ |L2.600| +00015a dc13 BGT |L2.388| +00015c 2a44 CMP r2,#0x44 ;623 +00015e d07c BEQ |L2.602| +000160 2a88 CMP r2,#0x88 ;623 +000162 d07b BEQ |L2.604| +000164 2acc CMP r2,#0xcc ;623 +000166 d1db BNE |L2.288| +000168 7ab1 LDRB r1,[r6,#0xa] ;886 ; Flag_0A10 +00016a 2901 CMP r1,#1 ;886 +00016c d077 BEQ |L2.606| +00016e 7ab1 LDRB r1,[r6,#0xa] ;891 ; Flag_0A10 +000170 2902 CMP r1,#2 ;891 +000172 d1d5 BNE |L2.288| +000174 49ab LDR r1,|L2.1060| + |L2.374| +000176 2233 MOVS r2,#0x33 ;888 +000178 0112 LSLS r2,r2,#4 ;888 +00017a e164 B |L2.1094| + |L2.380| +00017c e039 B |L2.498| + |L2.382| +00017e e04c B |L2.538| + |L2.384| +000180 e045 B |L2.526| + |L2.386| +000182 e047 B |L2.532| + |L2.388| +000184 2944 CMP r1,#0x44 ;623 +000186 d06b BEQ |L2.608| +000188 2988 CMP r1,#0x88 ;623 +00018a d06a BEQ |L2.610| +00018c 48a6 LDR r0,|L2.1064| +00018e 42c1 CMN r1,r0 ;623 +000190 d1c6 BNE |L2.288| +000192 48a0 LDR r0,|L2.1044| +000194 3033 ADDS r0,r0,#0x33 ;966 +000196 6028 STR r0,[r5,#0] ;967 +000198 2018 MOVS r0,#0x18 ;967 +00019a e06c B |L2.630| + |L2.412| +00019c e087 B |L2.686| + |L2.414| +00019e e046 B |L2.558| + |L2.416| +0001a0 e155 B |L2.1102| + |L2.418| +0001a2 e072 B |L2.650| + |L2.420| +0001a4 e155 B |L2.1106| + |L2.422| +0001a6 e094 B |L2.722| + |L2.424| +0001a8 2101 MOVS r1,#1 ;630 +0001aa 2002 MOVS r0,#2 ;630 +0001ac f7fffffe BL hal_gpio_set_output_data +0001b0 4893 LDR r0,|L2.1024| +0001b2 3021 ADDS r0,r0,#0x21 ;631 +0001b4 6028 STR r0,[r5,#0] ;632 +0001b6 20c8 MOVS r0,#0xc8 ;632 +0001b8 6020 STR r0,[r4,#0] ;633 +0001ba 7bf0 LDRB r0,[r6,#0xf] ;633 ; fingerprint_enable +0001bc 28e0 CMP r0,#0xe0 ;633 +0001be d1af BNE |L2.288| +0001c0 20ee MOVS r0,#0xee ;634 +0001c2 73f0 STRB r0,[r6,#0xf] ;634 + |L2.452| +0001c4 bdf8 POP {r3-r7,pc} + |L2.454| +0001c6 4893 LDR r0,|L2.1044| +0001c8 1dc0 ADDS r0,r0,#7 ;637 +0001ca 6028 STR r0,[r5,#0] ;638 +0001cc 2008 MOVS r0,#8 ;638 +0001ce e052 B |L2.630| + |L2.464| +0001d0 e0d4 B |L2.892| + |L2.466| +0001d2 e146 B |L2.1122| + |L2.468| +0001d4 e140 B |L2.1112| + |L2.470| +0001d6 e0a1 B |L2.796| + |L2.472| +0001d8 e140 B |L2.1116| + |L2.474| +0001da e0b2 B |L2.834| + |L2.476| +0001dc 488d LDR r0,|L2.1044| +0001de 300f ADDS r0,r0,#0xf ;641 +0001e0 6028 STR r0,[r5,#0] ;642 +0001e2 2010 MOVS r0,#0x10 ;642 +0001e4 e047 B |L2.630| + |L2.486| +0001e6 488b LDR r0,|L2.1044| +0001e8 3812 SUBS r0,r0,#0x12 ;645 +0001ea 6028 STR r0,[r5,#0] ;646 +0001ec 2004 MOVS r0,#4 ;646 +0001ee e042 B |L2.630| + |L2.496| +0001f0 e0aa B |L2.840| + |L2.498| +0001f2 7af0 LDRB r0,[r6,#0xb] ;649 ; Flag_0610 +0001f4 2800 CMP r0,#0 ;649 +0001f6 d002 BEQ |L2.510| +0001f8 4886 LDR r0,|L2.1044| +0001fa 3815 SUBS r0,r0,#0x15 ;651 +0001fc e001 B |L2.514| + |L2.510| +0001fe 4885 LDR r0,|L2.1044| +000200 3816 SUBS r0,r0,#0x16 ;656 + |L2.514| +000202 6028 STR r0,[r5,#0] ;657 +000204 2001 MOVS r0,#1 ;657 +000206 e036 B |L2.630| + |L2.520| +000208 e0a2 B |L2.848| + |L2.522| +00020a e12d B |L2.1128| + |L2.524| +00020c e0b3 B |L2.886| + |L2.526| +00020e 4981 LDR r1,|L2.1044| +000210 390e SUBS r1,r1,#0xe ;663 +000212 e749 B |L2.168| + |L2.532| +000214 497f LDR r1,|L2.1044| +000216 1fc9 SUBS r1,r1,#7 ;668 +000218 e746 B |L2.168| + |L2.538| +00021a 487e LDR r0,|L2.1044| +00021c 3814 SUBS r0,r0,#0x14 ;678 +00021e 6028 STR r0,[r5,#0] ;679 +000220 2002 MOVS r0,#2 ;679 +000222 e028 B |L2.630| + |L2.548| +000224 487b LDR r0,|L2.1044| +000226 301f ADDS r0,r0,#0x1f ;682 +000228 6028 STR r0,[r5,#0] ;683 +00022a 2014 MOVS r0,#0x14 ;683 +00022c e023 B |L2.630| + |L2.558| +00022e 2101 MOVS r1,#1 ;686 +000230 7331 STRB r1,[r6,#0xc] ;686 +000232 7ab1 LDRB r1,[r6,#0xa] ;687 ; Flag_0A10 +000234 2901 CMP r1,#1 ;687 +000236 d018 BEQ |L2.618| +000238 7ab1 LDRB r1,[r6,#0xa] ;692 ; Flag_0A10 +00023a 2914 CMP r1,#0x14 ;692 +00023c d018 BEQ |L2.624| +00023e 7ab1 LDRB r1,[r6,#0xa] ;697 ; Flag_0A10 +000240 291b CMP r1,#0x1b ;697 +000242 d01a BEQ |L2.634| +000244 7ab1 LDRB r1,[r6,#0xa] ;702 ; Flag_0A10 +000246 291c CMP r1,#0x1c ;702 +000248 d01a BEQ |L2.640| +00024a 7ab1 LDRB r1,[r6,#0xa] ;707 ; Flag_0A10 +00024c 2902 CMP r1,#2 ;707 +00024e d01a BEQ |L2.646| +000250 7ab0 LDRB r0,[r6,#0xa] ;712 ; Flag_0A10 +000252 2803 CMP r0,#3 ;712 +000254 d1b6 BNE |L2.452| +000256 e005 B |L2.612| + |L2.600| +000258 e0ba B |L2.976| + |L2.602| +00025a e09c B |L2.918| + |L2.604| +00025c e0a8 B |L2.944| + |L2.606| +00025e e0b4 B |L2.970| + |L2.608| +000260 e0c3 B |L2.1002| + |L2.610| +000262 e0e7 B |L2.1076| + |L2.612| +000264 486d LDR r0,|L2.1052| +000266 3866 SUBS r0,r0,#0x66 ;714 +000268 e755 B |L2.278| + |L2.618| +00026a 496a LDR r1,|L2.1044| +00026c 314b ADDS r1,r1,#0x4b ;689 +00026e e71b B |L2.168| + |L2.624| +000270 486e LDR r0,|L2.1068| + |L2.626| +000272 6028 STR r0,[r5,#0] ;627 +000274 20c8 MOVS r0,#0xc8 ;627 + |L2.630| +000276 6020 STR r0,[r4,#0] ;930 + |L2.632| +000278 bdf8 POP {r3-r7,pc} + |L2.634| +00027a 486c LDR r0,|L2.1068| +00027c 30c8 ADDS r0,r0,#0xc8 ;699 +00027e e7f8 B |L2.626| + |L2.640| +000280 4868 LDR r0,|L2.1060| +000282 38c8 SUBS r0,r0,#0xc8 ;704 +000284 e7f5 B |L2.626| + |L2.646| +000286 4967 LDR r1,|L2.1060| +000288 e70e B |L2.168| + |L2.650| +00028a 7ab1 LDRB r1,[r6,#0xa] ;719 ; Flag_0A10 +00028c 2901 CMP r1,#1 ;719 +00028e d008 BEQ |L2.674| +000290 7ab1 LDRB r1,[r6,#0xa] ;724 ; Flag_0A10 +000292 2902 CMP r1,#2 ;724 +000294 d008 BEQ |L2.680| +000296 7ab0 LDRB r0,[r6,#0xa] ;729 ; Flag_0A10 +000298 2803 CMP r0,#3 ;729 + |L2.666| +00029a d1ed BNE |L2.632| +00029c 485f LDR r0,|L2.1052| +00029e 3822 SUBS r0,r0,#0x22 ;731 +0002a0 e739 B |L2.278| + |L2.674| +0002a2 495c LDR r1,|L2.1044| +0002a4 314b ADDS r1,r1,#0x4b ;721 +0002a6 e000 B |L2.682| + |L2.680| +0002a8 495e LDR r1,|L2.1060| + |L2.682| +0002aa 3144 ADDS r1,r1,#0x44 ;726 +0002ac e6fc B |L2.168| + |L2.686| +0002ae 7ab1 LDRB r1,[r6,#0xa] ;736 ; Flag_0A10 +0002b0 2901 CMP r1,#1 ;736 +0002b2 d008 BEQ |L2.710| +0002b4 7ab1 LDRB r1,[r6,#0xa] ;741 ; Flag_0A10 +0002b6 2902 CMP r1,#2 ;741 +0002b8 d008 BEQ |L2.716| +0002ba 7ab0 LDRB r0,[r6,#0xa] ;746 ; Flag_0A10 +0002bc 2803 CMP r0,#3 ;746 + |L2.702| +0002be d1db BNE |L2.632| +0002c0 4856 LDR r0,|L2.1052| +0002c2 3022 ADDS r0,r0,#0x22 ;748 +0002c4 e727 B |L2.278| + |L2.710| +0002c6 4953 LDR r1,|L2.1044| +0002c8 314b ADDS r1,r1,#0x4b ;738 +0002ca e000 B |L2.718| + |L2.716| +0002cc 4955 LDR r1,|L2.1060| + |L2.718| +0002ce 3188 ADDS r1,r1,#0x88 ;743 +0002d0 e6ea B |L2.168| + |L2.722| +0002d2 7ab1 LDRB r1,[r6,#0xa] ;753 ; Flag_0A10 +0002d4 2901 CMP r1,#1 ;753 +0002d6 d008 BEQ |L2.746| +0002d8 7ab1 LDRB r1,[r6,#0xa] ;758 ; Flag_0A10 +0002da 2902 CMP r1,#2 ;758 +0002dc d008 BEQ |L2.752| +0002de 7ab0 LDRB r0,[r6,#0xa] ;763 ; Flag_0A10 +0002e0 2803 CMP r0,#3 ;763 + |L2.738| +0002e2 d1c9 BNE |L2.632| +0002e4 484d LDR r0,|L2.1052| +0002e6 3066 ADDS r0,r0,#0x66 ;765 +0002e8 e715 B |L2.278| + |L2.746| +0002ea 494a LDR r1,|L2.1044| +0002ec 314b ADDS r1,r1,#0x4b ;755 +0002ee e000 B |L2.754| + |L2.752| +0002f0 494c LDR r1,|L2.1060| + |L2.754| +0002f2 31cc ADDS r1,r1,#0xcc ;760 +0002f4 e6d8 B |L2.168| + |L2.758| +0002f6 7ab1 LDRB r1,[r6,#0xa] ;770 ; Flag_0A10 +0002f8 2901 CMP r1,#1 ;770 +0002fa d008 BEQ |L2.782| +0002fc 7ab1 LDRB r1,[r6,#0xa] ;775 ; Flag_0A10 +0002fe 2902 CMP r1,#2 ;775 +000300 d008 BEQ |L2.788| +000302 7ab0 LDRB r0,[r6,#0xa] ;780 ; Flag_0A10 +000304 2803 CMP r0,#3 ;780 + |L2.774| +000306 d1b7 BNE |L2.632| +000308 4845 LDR r0,|L2.1056| +00030a 3888 SUBS r0,r0,#0x88 ;782 +00030c e703 B |L2.278| + |L2.782| +00030e 4941 LDR r1,|L2.1044| +000310 314b ADDS r1,r1,#0x4b ;772 +000312 e000 B |L2.790| + |L2.788| +000314 4943 LDR r1,|L2.1060| + |L2.790| +000316 31ff ADDS r1,r1,#0xff ;777 +000318 3111 ADDS r1,r1,#0x11 ;777 +00031a e6c5 B |L2.168| + |L2.796| +00031c 7ab1 LDRB r1,[r6,#0xa] ;787 ; Flag_0A10 +00031e 2901 CMP r1,#1 ;787 +000320 d008 BEQ |L2.820| +000322 7ab1 LDRB r1,[r6,#0xa] ;792 ; Flag_0A10 +000324 2902 CMP r1,#2 ;792 +000326 d008 BEQ |L2.826| +000328 7ab1 LDRB r1,[r6,#0xa] ;797 ; Flag_0A10 +00032a 2903 CMP r1,#3 ;797 +00032c d1a4 BNE |L2.632| +00032e 493b LDR r1,|L2.1052| +000330 3966 SUBS r1,r1,#0x66 ;799 +000332 e003 B |L2.828| + |L2.820| +000334 4937 LDR r1,|L2.1044| +000336 314b ADDS r1,r1,#0x4b ;789 +000338 e000 B |L2.828| + |L2.826| +00033a 493a LDR r1,|L2.1060| + |L2.828| +00033c 31ff ADDS r1,r1,#0xff ;794 +00033e 3155 ADDS r1,r1,#0x55 ;794 +000340 e6b2 B |L2.168| + |L2.834| +000342 4934 LDR r1,|L2.1044| +000344 314b ADDS r1,r1,#0x4b ;806 +000346 e000 B |L2.842| + |L2.840| +000348 4936 LDR r1,|L2.1060| + |L2.842| +00034a 31ff ADDS r1,r1,#0xff ;811 +00034c 3199 ADDS r1,r1,#0x99 ;811 +00034e e6ab B |L2.168| + |L2.848| +000350 7ab1 LDRB r1,[r6,#0xa] ;821 ; Flag_0A10 +000352 2901 CMP r1,#1 ;821 +000354 d008 BEQ |L2.872| +000356 7ab1 LDRB r1,[r6,#0xa] ;826 ; Flag_0A10 +000358 2902 CMP r1,#2 ;826 +00035a d008 BEQ |L2.878| +00035c 7ab1 LDRB r1,[r6,#0xa] ;831 ; Flag_0A10 +00035e 2903 CMP r1,#3 ;831 + |L2.864| +000360 d18a BNE |L2.632| +000362 492e LDR r1,|L2.1052| +000364 3966 SUBS r1,r1,#0x66 ;833 +000366 e003 B |L2.880| + |L2.872| +000368 492a LDR r1,|L2.1044| +00036a 314b ADDS r1,r1,#0x4b ;823 +00036c e000 B |L2.880| + |L2.878| +00036e 492d LDR r1,|L2.1060| + |L2.880| +000370 31ff ADDS r1,r1,#0xff ;828 +000372 31dd ADDS r1,r1,#0xdd ;828 +000374 e698 B |L2.168| + |L2.886| +000376 4927 LDR r1,|L2.1044| +000378 314b ADDS r1,r1,#0x4b ;840 +00037a e6e0 B |L2.318| + |L2.892| +00037c 7ab1 LDRB r1,[r6,#0xa] ;850 ; Flag_0A10 +00037e 2901 CMP r1,#1 ;850 +000380 d006 BEQ |L2.912| +000382 7ab1 LDRB r1,[r6,#0xa] ;855 ; Flag_0A10 +000384 2902 CMP r1,#2 ;855 + |L2.902| +000386 d188 BNE |L2.666| +000388 4926 LDR r1,|L2.1060| + |L2.906| +00038a 2299 MOVS r2,#0x99 ;852 +00038c 0092 LSLS r2,r2,#2 ;852 +00038e e05a B |L2.1094| + |L2.912| +000390 4920 LDR r1,|L2.1044| +000392 314b ADDS r1,r1,#0x4b ;852 +000394 e7f9 B |L2.906| + |L2.918| +000396 7ab1 LDRB r1,[r6,#0xa] ;862 ; Flag_0A10 +000398 2901 CMP r1,#1 ;862 +00039a d006 BEQ |L2.938| +00039c 7ab1 LDRB r1,[r6,#0xa] ;867 ; Flag_0A10 +00039e 2902 CMP r1,#2 ;867 +0003a0 d18d BNE |L2.702| +0003a2 4920 LDR r1,|L2.1060| + |L2.932| +0003a4 2255 MOVS r2,#0x55 ;864 +0003a6 00d2 LSLS r2,r2,#3 ;864 +0003a8 e04d B |L2.1094| + |L2.938| +0003aa 491a LDR r1,|L2.1044| +0003ac 314b ADDS r1,r1,#0x4b ;864 +0003ae e7f9 B |L2.932| + |L2.944| +0003b0 7ab1 LDRB r1,[r6,#0xa] ;874 ; Flag_0A10 +0003b2 2901 CMP r1,#1 ;874 +0003b4 d006 BEQ |L2.964| +0003b6 7ab1 LDRB r1,[r6,#0xa] ;879 ; Flag_0A10 +0003b8 2902 CMP r1,#2 ;879 +0003ba d192 BNE |L2.738| +0003bc 4919 LDR r1,|L2.1060| + |L2.958| +0003be 22bb MOVS r2,#0xbb ;876 +0003c0 0092 LSLS r2,r2,#2 ;876 +0003c2 e040 B |L2.1094| + |L2.964| +0003c4 4913 LDR r1,|L2.1044| +0003c6 314b ADDS r1,r1,#0x4b ;876 +0003c8 e7f9 B |L2.958| + |L2.970| +0003ca 4912 LDR r1,|L2.1044| +0003cc 314b ADDS r1,r1,#0x4b ;888 +0003ce e6d2 B |L2.374| + |L2.976| +0003d0 7ab1 LDRB r1,[r6,#0xa] ;898 ; Flag_0A10 +0003d2 2901 CMP r1,#1 ;898 +0003d4 d006 BEQ |L2.996| +0003d6 7ab1 LDRB r1,[r6,#0xa] ;903 ; Flag_0A10 +0003d8 2902 CMP r1,#2 ;903 +0003da d194 BNE |L2.774| +0003dc 4911 LDR r1,|L2.1060| + |L2.990| +0003de 22dd MOVS r2,#0xdd ;900 +0003e0 0092 LSLS r2,r2,#2 ;900 +0003e2 e030 B |L2.1094| + |L2.996| +0003e4 490b LDR r1,|L2.1044| +0003e6 314b ADDS r1,r1,#0x4b ;900 +0003e8 e7f9 B |L2.990| + |L2.1002| +0003ea 7ab1 LDRB r1,[r6,#0xa] ;910 ; Flag_0A10 +0003ec 2901 CMP r1,#1 ;910 +0003ee d01f BEQ |L2.1072| +0003f0 7ab1 LDRB r1,[r6,#0xa] ;915 ; Flag_0A10 +0003f2 2902 CMP r1,#2 ;915 +0003f4 d187 BNE |L2.774| +0003f6 490b LDR r1,|L2.1060| + |L2.1016| +0003f8 2277 MOVS r2,#0x77 ;912 +0003fa 00d2 LSLS r2,r2,#3 ;912 +0003fc e023 B |L2.1094| +0003fe 0000 DCW 0x0000 + |L2.1024| + DCD ||.data|| + |L2.1028| + DCD 0x00002110 + |L2.1032| + DCD 0x00000a28 + |L2.1036| + DCD 0x00000211 + |L2.1040| + DCD 0xfffffc11 + |L2.1044| + DCD ||.constdata||+0x16 + |L2.1048| + DCD 0xffffea28 + |L2.1052| + DCD ||.constdata||+0xb9f + |L2.1056| + DCD ||.constdata||+0xcd1 + |L2.1060| + DCD ||.constdata||+0x6f9 + |L2.1064| + DCD 0xffff835b + |L2.1068| + DCD ||.constdata||+0x4a1 + |L2.1072| +000430 491f LDR r1,|L2.1200| +000432 e7e1 B |L2.1016| + |L2.1076| +000434 7ab1 LDRB r1,[r6,#0xa] ;922 ; Flag_0A10 +000436 2901 CMP r1,#1 ;922 +000438 d007 BEQ |L2.1098| +00043a 7ab1 LDRB r1,[r6,#0xa] ;927 ; Flag_0A10 +00043c 2902 CMP r1,#2 ;927 +00043e d18f BNE |L2.864| +000440 491c LDR r1,|L2.1204| + |L2.1090| +000442 22ff MOVS r2,#0xff ;929 +000444 0092 LSLS r2,r2,#2 ;929 + |L2.1094| +000446 1889 ADDS r1,r1,r2 ;929 +000448 e62e B |L2.168| + |L2.1098| +00044a 4919 LDR r1,|L2.1200| +00044c e7f9 B |L2.1090| + |L2.1102| +00044e 481a LDR r0,|L2.1208| +000450 e661 B |L2.278| + |L2.1106| +000452 4819 LDR r0,|L2.1208| +000454 3088 ADDS r0,r0,#0x88 ;942 +000456 e65e B |L2.278| + |L2.1112| +000458 4818 LDR r0,|L2.1212| +00045a e65c B |L2.278| + |L2.1116| +00045c 4817 LDR r0,|L2.1212| +00045e 3044 ADDS r0,r0,#0x44 ;954 +000460 e659 B |L2.278| + |L2.1122| +000462 4816 LDR r0,|L2.1212| +000464 3088 ADDS r0,r0,#0x88 ;958 +000466 e656 B |L2.278| + |L2.1128| +000468 4814 LDR r0,|L2.1212| +00046a 3834 SUBS r0,r0,#0x34 ;962 +00046c e653 B |L2.278| + |L2.1134| +00046e 2b10 CMP r3,#0x10 ;975 +000470 d189 BNE |L2.902| +000472 7880 LDRB r0,[r0,#2] ;977 +000474 72b0 STRB r0,[r6,#0xa] ;977 + |L2.1142| +000476 bdf8 POP {r3-r7,pc} + |L2.1144| +000478 2100 MOVS r1,#0 +00047a 2b10 CMP r3,#0x10 ;979 +00047c d00a BEQ |L2.1172| +00047e 2b11 CMP r3,#0x11 ;988 +000480 d00f BEQ |L2.1186| +000482 2b13 CMP r3,#0x13 ;1009 +000484 d007 BEQ |L2.1174| +000486 2b23 CMP r3,#0x23 ;1014 +000488 d1f5 BNE |L2.1142| +00048a 7880 LDRB r0,[r0,#2] ;1016 +00048c 2801 CMP r0,#1 ;1016 +00048e d00c BEQ |L2.1194| +000490 71b1 STRB r1,[r6,#6] ;1022 + |L2.1170| +000492 bdf8 POP {r3-r7,pc} + |L2.1172| +000494 7331 STRB r1,[r6,#0xc] ;981 + |L2.1174| +000496 7880 LDRB r0,[r0,#2] ;1009 +000498 2800 CMP r0,#0 ;1009 +00049a d1fa BNE |L2.1170| +00049c 70b1 STRB r1,[r6,#2] ;984 +00049e 70f1 STRB r1,[r6,#3] ;985 +0004a0 bdf8 POP {r3-r7,pc} + |L2.1186| +0004a2 7880 LDRB r0,[r0,#2] ;990 +0004a4 72f0 STRB r0,[r6,#0xb] ;990 +0004a6 7331 STRB r1,[r6,#0xc] ;991 +0004a8 bdf8 POP {r3-r7,pc} + |L2.1194| +0004aa 2001 MOVS r0,#1 ;1018 +0004ac 71b0 STRB r0,[r6,#6] ;1018 +0004ae bdf8 POP {r3-r7,pc} +;;;1032 + ENDP + + |L2.1200| + DCD ||.constdata||+0x61 + |L2.1204| + DCD ||.constdata||+0x6f9 + |L2.1208| + DCD ||.constdata||+0xb5b + |L2.1212| + DCD ||.constdata||+0xc6b + + AREA ||i.app_tp_screen_analysis_const||, CODE, READONLY, ALIGN=2 + + app_tp_screen_analysis_const PROC +;;;226 **************************************************************************/ +;;;227 uint8_t app_tp_screen_analysis_const(uint8_t transfer_now, uint8_t *rxbuffer, size_t data_size) +000000 b510 PUSH {r4,lr} +;;;228 { +;;;229 static uint8_t app_tp_count = 0; +;;;230 +;;;231 app_tp_count++; +000002 4b0c LDR r3,|L3.52| +000004 7c1a LDRB r2,[r3,#0x10] ; app_tp_count +000006 1c52 ADDS r2,r2,#1 +000008 b2d2 UXTB r2,r2 +00000a 741a STRB r2,[r3,#0x10] +;;;232 if (app_tp_count > 20) //初始化不成功,重新reset screen +00000c 2a14 CMP r2,#0x14 +00000e d904 BLS |L3.26| +;;;233 { +;;;234 app_tp_count = 0; +000010 2000 MOVS r0,#0 +000012 7418 STRB r0,[r3,#0x10] +;;;235 app_tp_screen_init(); +000014 f7fffffe BL app_tp_screen_init +;;;236 return 0; +000018 e007 B |L3.42| + |L3.26| +;;;237 } +;;;238 +;;;239 if (transfer_now == 0) +00001a 2800 CMP r0,#0 +00001c d002 BEQ |L3.36| +00001e 1c40 ADDS r0,r0,#1 +;;;240 { +;;;241 if (rxbuffer[2] == 0x03) +;;;242 { +;;;243 // TAU_LOGD("TD TP init done\n"); +;;;244 return 1; +;;;245 } +;;;246 else +;;;247 { +;;;248 // TAU_LOGD("TD TP return false [%d]\n", rxbuffer[2]); +;;;249 return 0; +;;;250 } +;;;251 } +;;;252 +;;;253 return transfer_now + 1; +000020 b2c0 UXTB r0,r0 +;;;254 } +000022 bd10 POP {r4,pc} + |L3.36| +000024 7888 LDRB r0,[r1,#2] ;241 +000026 2803 CMP r0,#3 ;241 +000028 d001 BEQ |L3.46| + |L3.42| +00002a 2000 MOVS r0,#0 ;249 +00002c bd10 POP {r4,pc} + |L3.46| +00002e 2001 MOVS r0,#1 ;244 +000030 bd10 POP {r4,pc} +;;;255 + ENDP + +000032 0000 DCW 0x0000 + |L3.52| + DCD ||.data|| + + AREA ||i.app_tp_screen_analysis_int||, CODE, READONLY, ALIGN=2 + + app_tp_screen_analysis_int PROC +;;;264 **************************************************************************/ +;;;265 uint8_t app_tp_screen_analysis_int(uint8_t transfer_now, uint8_t *rxbuffer, size_t data_size) +000000 b5f7 PUSH {r0-r2,r4-r7,lr} +;;;266 { +;;;267 #ifdef USE_FOR_SAMSUNG_Note10Lite +;;;268 uint8_t ii,i,j,k,temp_len; +;;;269 uint8_t temp_flag,temp,touchnum,cur_touchnum; +;;;270 uint8_t temp_8,touch_id; +;;;271 uint16_t temp16; +;;;272 uint32_t xx, yy, zz; +;;;273 +;;;274 send_point =0; +000002 2000 MOVS r0,#0 +000004 49fd LDR r1,|L4.1020| +000006 b084 SUB sp,sp,#0x10 ;266 +000008 7348 STRB r0,[r1,#0xd] +;;;275 cur_touchnum=0; +;;;276 #if 1 +;;;277 temp_8= 0; +;;;278 temp_len=0; +00000a 4606 MOV r6,r0 +;;;279 touchnum=0; +;;;280 touchnum=rxbuffer[7]; +00000c 9000 STR r0,[sp,#0] +00000e 9805 LDR r0,[sp,#0x14] +000010 79c0 LDRB r0,[r0,#7] +;;;281 +;;;282 if(touchnum>0x10) +000012 2810 CMP r0,#0x10 +000014 d900 BLS |L4.24| +;;;283 touchnum=0; +000016 2000 MOVS r0,#0 + |L4.24| +000018 1c40 ADDS r0,r0,#1 +;;;284 #if EncryptCheck_EN +;;;285 touchnum = EncryptCheckEx(touchnum+1, 4); +00001a b2c0 UXTB r0,r0 +00001c 2104 MOVS r1,#4 +00001e f7fffffe BL EncryptCheckEx +000022 1e40 SUBS r0,r0,#1 +;;;286 touchnum--; +000024 b2c1 UXTB r1,r0 +;;;287 // if (touchnum > 1) +;;;288 // { +;;;289 // TAU_LOGD("Enc"); +;;;290 // } +;;;291 #endif +;;;292 +;;;293 for(ii =0; ii<(touchnum+1); ii++) +000026 2000 MOVS r0,#0 +000028 1c49 ADDS r1,r1,#1 +00002a 468c MOV r12,r1 ;285 +00002c e01c B |L4.104| + |L4.46| +;;;294 { +;;;295 temp_8= rxbuffer[ii*8+0]&0xf0; +00002e 9905 LDR r1,[sp,#0x14] +000030 00c2 LSLS r2,r0,#3 +000032 5c89 LDRB r1,[r1,r2] +000034 0909 LSRS r1,r1,#4 +000036 0109 LSLS r1,r1,#4 +;;;296 if((temp_8==0x20)||(temp_8==0x10)) +000038 2920 CMP r1,#0x20 +00003a d001 BEQ |L4.64| +00003c 2910 CMP r1,#0x10 +00003e d109 BNE |L4.84| + |L4.64| +;;;297 { +;;;298 temp_len++; +;;;299 send_point++; +000040 4bee LDR r3,|L4.1020| +000042 1c76 ADDS r6,r6,#1 ;296 +000044 7b5a LDRB r2,[r3,#0xd] ; send_point +000046 b2f6 UXTB r6,r6 ;298 +000048 1c52 ADDS r2,r2,#1 +00004a 735a STRB r2,[r3,#0xd] +;;;300 cur_touchnum++; +00004c 9a00 LDR r2,[sp,#0] +00004e 1c52 ADDS r2,r2,#1 +000050 b2d2 UXTB r2,r2 +000052 9200 STR r2,[sp,#0] + |L4.84| +;;;301 } +;;;302 if(temp_8==0x30) +000054 2930 CMP r1,#0x30 +000056 d105 BNE |L4.100| +000058 1c76 ADDS r6,r6,#1 +;;;303 { +;;;304 temp_len++; +;;;305 cur_touchnum++; +00005a 9900 LDR r1,[sp,#0] +00005c b2f6 UXTB r6,r6 ;304 +00005e 1c49 ADDS r1,r1,#1 +000060 b2c9 UXTB r1,r1 +000062 9100 STR r1,[sp,#0] + |L4.100| +000064 1c40 ADDS r0,r0,#1 +000066 b2c0 UXTB r0,r0 ;293 + |L4.104| +000068 4560 CMP r0,r12 ;293 +00006a d3e0 BCC |L4.46| +;;;306 } +;;;307 } +;;;308 if(temp_len>0) +;;;309 { +;;;310 temp_len--; +;;;311 } +;;;312 phone_reg_coord_back[0] = cur_touchnum; +00006c 49e3 LDR r1,|L4.1020| +00006e 9800 LDR r0,[sp,#0] +000070 3120 ADDS r1,r1,#0x20 +000072 7008 STRB r0,[r1,#0] +;;;313 k=0; +000074 2600 MOVS r6,#0 +;;;314 +;;;315 // TAU_LOGD("send_point=%d fingerprint_enable=%d fingerprint_flag=%d tp_sleep_in=%d temp=%d [%d, %d]", send_point, fingerprint_enable, fingerprint_flag, tp_sleep_in, temp, xx, yy); +;;;316 for(ii =0; ii>4)&0x0f); +;;;323 zz = rxbuffer[8*ii+5]; +;;;324 touch_id=rxbuffer[8*ii+1]>>4; +;;;325 xx = xx * 4096 / OUTPUT_WIDTH_VALUE; +;;;326 if(xx >4095) +;;;327 xx =4095; +;;;328 yy = yy * 4096 / OUTPUT_HEIGHT_VALUE; +;;;329 if(yy >4095) +;;;330 yy =4095; +;;;331 +;;;332 if(Flag_EA_EN) +;;;333 { +;;;334 if(yy<800) +;;;335 { +;;;336 Flag_touch_count++; +;;;337 } +;;;338 if((Flag_touch_count>1)&&(Flag_blacklight_EN==0)) +;;;339 { +;;;340 Flag_blacklight_EN=1; +;;;341 } +;;;342 } +;;;343 +;;;344 +;;;345 if(temp == 0x10) +;;;346 { +;;;347 phone_reg_coord_back[16 * k + 1] = 0x45 + (touch_id * 4); //45 press C5 leave 85 move +;;;348 tp_sleep_clk_count = 0; +;;;349 } +;;;350 else +;;;351 { +;;;352 phone_reg_coord_back[16 * k + 1] = 0x85 + (touch_id * 4); +;;;353 } +;;;354 phone_reg_coord_back[16*k+2] = (uint8_t)((xx>>4) & 0xFF); //x 高八位 +;;;355 phone_reg_coord_back[16*k+3] = (uint8_t)((yy>>4) & 0xFF); //y 高八位 +;;;356 phone_reg_coord_back[16*k+4] = ((xx & 0x0F) << 4) | (yy & 0x0F); //bit0-bit3:y低四位;bit4-bit7:x低四位; +;;;357 phone_reg_coord_back[16*k+5] = 0x0A; +;;;358 phone_reg_coord_back[16*k+6] = 0x04; +;;;359 phone_reg_coord_back[16*k+7] = zz; +;;;360 phone_reg_coord_back[16*k+8] = 0x00; +;;;361 phone_reg_coord_back[16*k+9] = 0x00; +;;;362 phone_reg_coord_back[16*k+10] = 0x99; +;;;363 phone_reg_coord_back[16*k+11] = 0x00; +;;;364 phone_reg_coord_back[16*k+12] = 0x00; +;;;365 phone_reg_coord_back[16*k+13] = 0x00; +;;;366 phone_reg_coord_back[16*k+14] = 0x00; +;;;367 phone_reg_coord_back[16*k+15] = 0x00; +;;;368 phone_reg_coord_back[16*k+16] = 0x00; +;;;369 k++; +;;;370 +;;;371 #ifdef ADD_FINGERPRINT_FUNC +;;;372 if((temp==0x20)&&(fingerprint_enable==0)&&(send_point==1)&&(fingerprint_flag==1)) +;;;373 { +;;;374 if( (xx>FINGER_X_MIN) &&(xxFINGER_Y_MIN) &&(yy>4)&0x0f); +0001e8 7903 LDRB r3,[r0,#4] +;;;399 zz = rxbuffer[8*ii+5]; +;;;400 touch_id=rxbuffer[8*ii+1]>>4; +0001ea 7840 LDRB r0,[r0,#1] +0001ec 011c LSLS r4,r3,#4 ;398 +0001ee 0909 LSRS r1,r1,#4 ;398 +0001f0 430c ORRS r4,r4,r1 ;398 +0001f2 0900 LSRS r0,r0,#4 +;;;401 xx = xx * 4096 / OUTPUT_WIDTH_VALUE; +0001f4 9001 STR r0,[sp,#4] +0001f6 2187 MOVS r1,#0x87 +0001f8 0310 LSLS r0,r2,#12 +0001fa 00c9 LSLS r1,r1,#3 +0001fc f7fffffe BL __aeabi_uidivmod +;;;402 if(xx >4095) +000200 497f LDR r1,|L4.1024| +000202 4605 MOV r5,r0 ;401 +000204 4288 CMP r0,r1 +000206 d900 BLS |L4.522| +;;;403 xx =4095; +000208 460d MOV r5,r1 + |L4.522| +;;;404 yy = yy * 4096 / OUTPUT_HEIGHT_VALUE; +00020a 214b MOVS r1,#0x4b +00020c 0320 LSLS r0,r4,#12 +00020e 0149 LSLS r1,r1,#5 +000210 f7fffffe BL __aeabi_uidivmod +000214 4604 MOV r4,r0 +;;;405 if(yy >4095) +000216 487a LDR r0,|L4.1024| +000218 4284 CMP r4,r0 +00021a d900 BLS |L4.542| +;;;406 yy =4095; +00021c 4604 MOV r4,r0 + |L4.542| +;;;407 phone_reg_coord_back[16*k+1] = 0xC5+(touch_id*4); +00021e 9801 LDR r0,[sp,#4] +000220 0132 LSLS r2,r6,#4 +000222 0081 LSLS r1,r0,#2 +000224 4875 LDR r0,|L4.1020| +000226 31c5 ADDS r1,r1,#0xc5 +000228 3020 ADDS r0,r0,#0x20 +00022a 1810 ADDS r0,r2,r0 +00022c 7041 STRB r1,[r0,#1] +;;;408 phone_reg_coord_back[16*k+2] = (uint8_t)((xx>>4) & 0xFF); //x 高八位 +00022e 0929 LSRS r1,r5,#4 +000230 7081 STRB r1,[r0,#2] +;;;409 phone_reg_coord_back[16*k+3] = (uint8_t)((yy>>4) & 0xFF); //y 高八位 +000232 0921 LSRS r1,r4,#4 +000234 70c1 STRB r1,[r0,#3] +;;;410 phone_reg_coord_back[16*k+4] = ((xx & 0x0F) << 4) | (yy & 0x0F); //bit0-bit3:y低四位;bit4-bit7:x低四位; +000236 0722 LSLS r2,r4,#28 +000238 0129 LSLS r1,r5,#4 +00023a 0f12 LSRS r2,r2,#28 +00023c 4311 ORRS r1,r1,r2 +00023e 7101 STRB r1,[r0,#4] +;;;411 phone_reg_coord_back[16*k+5] = 0x00; +000240 2100 MOVS r1,#0 +000242 7141 STRB r1,[r0,#5] +;;;412 phone_reg_coord_back[16*k+6] = 0x00; +000244 7181 STRB r1,[r0,#6] +;;;413 phone_reg_coord_back[16*k+7] = 0x00; +000246 71c1 STRB r1,[r0,#7] +;;;414 phone_reg_coord_back[16*k+8] = 0x00; +000248 7201 STRB r1,[r0,#8] +;;;415 phone_reg_coord_back[16*k+9] = 0x00; +00024a 7241 STRB r1,[r0,#9] +;;;416 phone_reg_coord_back[16*k+10] = 0x00; +00024c 7281 STRB r1,[r0,#0xa] +;;;417 phone_reg_coord_back[16*k+11] = 0x00; +00024e 72c1 STRB r1,[r0,#0xb] +;;;418 phone_reg_coord_back[16*k+12] = 0x00; +000250 7301 STRB r1,[r0,#0xc] +;;;419 phone_reg_coord_back[16*k+13] = 0x00; +000252 7341 STRB r1,[r0,#0xd] +;;;420 phone_reg_coord_back[16*k+14] = 0x00; +000254 7381 STRB r1,[r0,#0xe] +;;;421 phone_reg_coord_back[16*k+15] = 0x00; +000256 73c1 STRB r1,[r0,#0xf] +;;;422 phone_reg_coord_back[16*k+16] = 0x00; +000258 1c76 ADDS r6,r6,#1 +00025a 7401 STRB r1,[r0,#0x10] +;;;423 k++; +00025c b2f6 UXTB r6,r6 + |L4.606| +00025e 9802 LDR r0,[sp,#8] ;316 +000260 1c40 ADDS r0,r0,#1 ;316 +000262 b2c0 UXTB r0,r0 ;316 + |L4.612| +000264 9900 LDR r1,[sp,#0] ;316 +000266 9002 STR r0,[sp,#8] ;316 +000268 4288 CMP r0,r1 ;316 +00026a d200 BCS |L4.622| +00026c e705 B |L4.122| + |L4.622| +;;;424 // TAU_LOGD("2 temp=%d", temp); +;;;425 // fingerprint_enable=0; +;;;426 } +;;;427 // TAU_LOGD("send_point=%d fingerprint_enable=%d fingerprint_flag=%d tp_sleep_in=%d temp=%d [%d, %d]", send_point, fingerprint_enable, fingerprint_flag, tp_sleep_in, temp, xx, yy); +;;;428 } +;;;429 #endif +;;;430 +;;;431 // if((send_point>0)&&(Flag_EA_EN)) +;;;432 // { +;;;433 // Flag_touch_count = 0; +;;;434 // for(ii =0; ii>4)&0x0f); +;;;437 // if(yy<800) +;;;438 // { +;;;439 // Flag_touch_count++; +;;;440 // } +;;;441 // } +;;;442 // if((Flag_touch_count>1)&&(Flag_blacklight_EN==0)) +;;;443 // { +;;;444 // Flag_blacklight_EN=1; +;;;445 // } +;;;446 // } +;;;447 +;;;448 #ifdef ENABLE_TP_SLEEP +;;;449 if(tp_sleep_in) +00026e 4e63 LDR r6,|L4.1020| +000270 78b0 LDRB r0,[r6,#2] ; tp_sleep_in +000272 2800 CMP r0,#0 +000274 d07e BEQ |L4.884| +;;;450 { +;;;451 #ifdef ADD_FINGERPRINT_FUNC +;;;452 if(send_point==1) +000276 7b70 LDRB r0,[r6,#0xd] ; send_point +000278 2801 CMP r0,#1 +00027a d002 BEQ |L4.642| +;;;453 { +;;;454 if( (xx>FINGER_X_MIN) &&(xxFINGER_Y_MIN) &&(yy1) +00027c 2800 CMP r0,#0 +00027e d042 BEQ |L4.774| + |L4.640| +000280 e0f0 B |L4.1124| + |L4.642| +000282 4860 LDR r0,|L4.1028| +000284 1829 ADDS r1,r5,r0 ;454 +000286 20ff MOVS r0,#0xff ;454 +000288 30cc ADDS r0,r0,#0xcc ;454 +00028a 4281 CMP r1,r0 ;454 +00028c d2f8 BCS |L4.640| +00028e 485e LDR r0,|L4.1032| +000290 4284 CMP r4,r0 ;454 +000292 d9f5 BLS |L4.640| +000294 485a LDR r0,|L4.1024| +000296 38eb SUBS r0,r0,#0xeb ;454 +000298 4284 CMP r4,r0 ;454 +00029a d2f1 BCS |L4.640| +00029c 7bf0 LDRB r0,[r6,#0xf] ;456 ; fingerprint_enable +00029e 28ee CMP r0,#0xee ;456 +0002a0 d21a BCS |L4.728| +0002a2 4856 LDR r0,|L4.1020| +0002a4 218c MOVS r1,#0x8c ;458 +0002a6 3020 ADDS r0,r0,#0x20 ;458 +0002a8 7001 STRB r1,[r0,#0] ;458 +0002aa 21f1 MOVS r1,#0xf1 ;459 +0002ac 7041 STRB r1,[r0,#1] ;459 +0002ae 2102 MOVS r1,#2 ;460 +0002b0 7081 STRB r1,[r0,#2] ;460 +0002b2 214e MOVS r1,#0x4e ;461 +0002b4 70c1 STRB r1,[r0,#3] ;461 +0002b6 2100 MOVS r1,#0 ;462 +0002b8 7101 STRB r1,[r0,#4] ;462 +0002ba 2221 MOVS r2,#0x21 ;463 +0002bc 7142 STRB r2,[r0,#5] ;463 +0002be 2285 MOVS r2,#0x85 ;464 +0002c0 7182 STRB r2,[r0,#6] ;464 +0002c2 2230 MOVS r2,#0x30 ;465 +0002c4 71c2 STRB r2,[r0,#7] ;465 +0002c6 7201 STRB r1,[r0,#8] ;466 +0002c8 7241 STRB r1,[r0,#9] ;467 +0002ca 7281 STRB r1,[r0,#0xa] ;468 +0002cc 21fe MOVS r1,#0xfe ;469 +0002ce 72c1 STRB r1,[r0,#0xb] ;469 +0002d0 2122 MOVS r1,#0x22 ;470 +0002d2 7301 STRB r1,[r0,#0xc] ;470 +0002d4 20e0 MOVS r0,#0xe0 ;471 +0002d6 e040 B |L4.858| + |L4.728| +0002d8 28ef CMP r0,#0xef ;475 +0002da d27d BCS |L4.984| +0002dc 4847 LDR r0,|L4.1020| +0002de 2182 MOVS r1,#0x82 ;477 +0002e0 3020 ADDS r0,r0,#0x20 ;477 +0002e2 7001 STRB r1,[r0,#0] ;477 +0002e4 2109 MOVS r1,#9 ;478 +0002e6 7041 STRB r1,[r0,#1] ;478 +0002e8 2104 MOVS r1,#4 ;479 +0002ea 7081 STRB r1,[r0,#2] ;479 +0002ec 2100 MOVS r1,#0 ;480 +0002ee 70c1 STRB r1,[r0,#3] ;480 +0002f0 7101 STRB r1,[r0,#4] ;481 +0002f2 7141 STRB r1,[r0,#5] ;482 +0002f4 7181 STRB r1,[r0,#6] ;483 +0002f6 71c1 STRB r1,[r0,#7] ;484 +0002f8 7201 STRB r1,[r0,#8] ;485 +0002fa 7241 STRB r1,[r0,#9] ;486 +0002fc 7281 STRB r1,[r0,#0xa] ;487 +0002fe 72c1 STRB r1,[r0,#0xb] ;488 +000300 7301 STRB r1,[r0,#0xc] ;489 +000302 20ef MOVS r0,#0xef ;490 +000304 e029 B |L4.858| + |L4.774| +000306 7bf0 LDRB r0,[r6,#0xf] ; fingerprint_enable +000308 2801 CMP r0,#1 +00030a d92e BLS |L4.874| +;;;497 { +;;;498 if( (xx>FINGER_X_MIN) &&(xxFINGER_Y_MIN) &&(yy>4)&0x0f); +00036e 4823 LDR r0,|L4.1020| +000370 3020 ADDS r0,r0,#0x20 +000372 e000 B |L4.886| + |L4.884| +000374 e070 B |L4.1112| + |L4.886| +000376 7902 LDRB r2,[r0,#4] ; phone_reg_coord_back +000378 7881 LDRB r1,[r0,#2] ; phone_reg_coord_back +00037a 0913 LSRS r3,r2,#4 +00037c 0109 LSLS r1,r1,#4 +00037e 18c9 ADDS r1,r1,r3 +000380 82b1 STRH r1,[r6,#0x14] +;;;524 u16CoordY = (phone_reg_coord_back[3]<<4)+(phone_reg_coord_back[4]&0x0f); +000382 78c3 LDRB r3,[r0,#3] ; phone_reg_coord_back +000384 0712 LSLS r2,r2,#28 +000386 011b LSLS r3,r3,#4 +000388 0f12 LSRS r2,r2,#28 +00038a 189a ADDS r2,r3,r2 +00038c 8272 STRH r2,[r6,#0x12] +;;;525 if((tp_sleep_count>5)&&(tp_sleep_count<60)) //((rxbuffer[0]&0xf0)==0x30)) +00038e 78f3 LDRB r3,[r6,#3] ; tp_sleep_count +000390 1f9b SUBS r3,r3,#6 +000392 2b36 CMP r3,#0x36 +000394 d23a BCS |L4.1036| +;;;526 { +;;;527 if (u16CoordX > u16CoordX_back) +000396 8b33 LDRH r3,[r6,#0x18] ; u16CoordX_back +000398 4299 CMP r1,r3 +00039a d901 BLS |L4.928| +;;;528 u16CoordX_back = u16CoordX-u16CoordX_back; +00039c 1ac9 SUBS r1,r1,r3 +00039e e000 B |L4.930| + |L4.928| +;;;529 else +;;;530 u16CoordX_back = u16CoordX_back-u16CoordX; +0003a0 1a59 SUBS r1,r3,r1 + |L4.930| +0003a2 8331 STRH r1,[r6,#0x18] +;;;531 +;;;532 if (u16CoordY > u16CoordY_back) +0003a4 8af1 LDRH r1,[r6,#0x16] ; u16CoordY_back +0003a6 428a CMP r2,r1 +0003a8 d901 BLS |L4.942| +;;;533 u16CoordY_back = u16CoordY-u16CoordY_back; +0003aa 1a51 SUBS r1,r2,r1 +0003ac e000 B |L4.944| + |L4.942| +;;;534 else +;;;535 u16CoordY_back = u16CoordY_back-u16CoordY; +0003ae 1a89 SUBS r1,r1,r2 + |L4.944| +0003b0 82f1 STRH r1,[r6,#0x16] +;;;536 +;;;537 if ( (u16CoordX_back < 360) && (u16CoordY_back < 360)) //设置两次触点的范围 +0003b2 8b32 LDRH r2,[r6,#0x18] ; u16CoordX_back +0003b4 21ff MOVS r1,#0xff +0003b6 3169 ADDS r1,r1,#0x69 +0003b8 428a CMP r2,r1 +0003ba d245 BCS |L4.1096| +0003bc 8af2 LDRH r2,[r6,#0x16] ; u16CoordY_back +0003be 428a CMP r2,r1 +0003c0 d242 BCS |L4.1096| +;;;538 { +;;;539 //TAU_LOGD("tp_sleep_in!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! \n"); +;;;540 phone_reg_coord_back[0]=0x8C; +0003c2 218c MOVS r1,#0x8c +0003c4 7001 STRB r1,[r0,#0] +;;;541 phone_reg_coord_back[1]=0xF1; +0003c6 21f1 MOVS r1,#0xf1 +0003c8 7041 STRB r1,[r0,#1] +;;;542 phone_reg_coord_back[2]=0x02; +0003ca 2102 MOVS r1,#2 +0003cc 7081 STRB r1,[r0,#2] +;;;543 phone_reg_coord_back[3]=0x46; +0003ce 2146 MOVS r1,#0x46 +0003d0 70c1 STRB r1,[r0,#3] +;;;544 phone_reg_coord_back[4]=0x01; +0003d2 2201 MOVS r2,#1 +0003d4 7102 STRB r2,[r0,#4] +;;;545 phone_reg_coord_back[8]=0x26; +0003d6 e000 B |L4.986| + |L4.984| +0003d8 e044 B |L4.1124| + |L4.986| +0003da 2126 MOVS r1,#0x26 +0003dc 7201 STRB r1,[r0,#8] +;;;546 phone_reg_coord_back[9]=0x53; +0003de 2153 MOVS r1,#0x53 +0003e0 7241 STRB r1,[r0,#9] +;;;547 phone_reg_coord_back[11]=0x1A; +0003e2 211a MOVS r1,#0x1a +0003e4 72c1 STRB r1,[r0,#0xb] +;;;548 phone_reg_coord_back[12]=0x00; +0003e6 2100 MOVS r1,#0 +0003e8 7301 STRB r1,[r0,#0xc] +;;;549 phone_reg_coord_back[13]=0x00; +0003ea 7341 STRB r1,[r0,#0xd] +;;;550 phone_reg_coord_back[14]=0x00; +0003ec 7381 STRB r1,[r0,#0xe] +;;;551 phone_reg_coord_back[15]=0xFE; +0003ee 21fe MOVS r1,#0xfe +0003f0 73c1 STRB r1,[r0,#0xf] +;;;552 phone_reg_coord_back[16]=0x22; +0003f2 2122 MOVS r1,#0x22 +0003f4 7401 STRB r1,[r0,#0x10] +;;;553 sleep_double_EN=1; +0003f6 7172 STRB r2,[r6,#5] +;;;554 hal_gpio_set_output_data(g_phone_output_int_pad, IO_LVL_LOW); +0003f8 e022 B |L4.1088| +0003fa 0000 DCW 0x0000 + |L4.1020| + DCD ||.data|| + |L4.1024| + DCD 0x00000fff + |L4.1028| + DCD 0xfffff90b + |L4.1032| + DCD 0x00000d48 + |L4.1036| +;;;555 } +;;;556 } +;;;557 +;;;558 //单击显示休眠时钟 +;;;559 else if (3> 4); +000008 4e0c LDR r6,|L1.60| +00000a e011 B |L1.48| + |L1.12| +00000c 7823 LDRB r3,[r4,#0] ;155 +;;;157 wCRC = wCRCTalbeAbs[((chChar >> 4) ^ wCRC) & 15] ^ (wCRC >> 4); +00000e 1c52 ADDS r2,r2,#1 +000010 461d MOV r5,r3 ;155 +000012 4045 EORS r5,r5,r0 ;156 +000014 072d LSLS r5,r5,#28 ;156 +000016 0eed LSRS r5,r5,#27 ;156 +000018 5b75 LDRH r5,[r6,r5] ;156 +00001a 0900 LSRS r0,r0,#4 ;156 +00001c 4045 EORS r5,r5,r0 ;156 +00001e 0918 LSRS r0,r3,#4 +000020 4068 EORS r0,r0,r5 +000022 0700 LSLS r0,r0,#28 +000024 0ec0 LSRS r0,r0,#27 +000026 5a30 LDRH r0,[r6,r0] +000028 092b LSRS r3,r5,#4 +00002a 4058 EORS r0,r0,r3 +00002c b292 UXTH r2,r2 ;153 +00002e 1c64 ADDS r4,r4,#1 ;153 + |L1.48| +000030 428a CMP r2,r1 ;153 +000032 d3eb BCC |L1.12| +;;;158 } +;;;159 +;;;160 return wCRC; +;;;161 } +000034 bd70 POP {r4-r6,pc} +;;;162 + ENDP + +000036 0000 DCW 0x0000 + |L1.56| + DCD 0x0000ffff + |L1.60| + DCD ||.constdata|| + + AREA ||i.ap_get_tp_calibration_status_01||, CODE, READONLY, ALIGN=2 + + ap_get_tp_calibration_status_01 PROC +;;;271 +;;;272 bool ap_get_tp_calibration_status_01(hal_dsi_rx_ctrl_handle_t *handler, uint8_t param) +000000 b508 PUSH {r3,lr} +;;;273 { +;;;274 // if( param == 0x5A ) +;;;275 { +;;;276 if(s_calibration_correct_flag) // 校准成功 +000002 4906 LDR r1,|L2.28| +000004 7849 LDRB r1,[r1,#1] ; s_calibration_correct_flag +000006 2900 CMP r1,#0 +000008 d000 BEQ |L2.12| +;;;277 { +;;;278 hal_dsi_rx_ctrl_send_ack_cmd(handler, +00000a 215a MOVS r1,#0x5a + |L2.12| +;;;279 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, //xxx +;;;280 DSI_VC_0, +;;;281 1,ST_TP_CALIBRATION_SUCCESS); +;;;282 } +;;;283 else // 校准失败 +;;;284 { +;;;285 hal_dsi_rx_ctrl_send_ack_cmd(handler, +00000c 9100 STR r1,[sp,#0] +00000e 2301 MOVS r3,#1 +000010 2200 MOVS r2,#0 +000012 2121 MOVS r1,#0x21 +000014 f7fffffe BL hal_dsi_rx_ctrl_send_ack_cmd +;;;286 DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, //xxx +;;;287 DSI_VC_0, +;;;288 1,0x00); +;;;289 } +;;;290 } +;;;291 +;;;292 return true; +000018 2001 MOVS r0,#1 +;;;293 } +00001a bd08 POP {r3,pc} +;;;294 + ENDP + + |L2.28| + DCD ||.data|| + + AREA ||i.ap_set_tp_calibration_04||, CODE, READONLY, ALIGN=2 + + REQUIRE _printf_pre_padding + REQUIRE _printf_percent + REQUIRE _printf_flags + REQUIRE _printf_widthprec + REQUIRE _printf_x + REQUIRE _printf_longlong_hex + ap_set_tp_calibration_04 PROC +;;;170 +;;;171 bool ap_set_tp_calibration_04(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +000000 b570 PUSH {r4-r6,lr} +;;;172 { +000002 b088 SUB sp,sp,#0x20 +000004 460d MOV r5,r1 +;;;173 uint8_t i,crch,crcl,command,param[30] = {0}; +000006 2120 MOVS r1,#0x20 +000008 4668 MOV r0,sp +00000a f7fffffe BL __aeabi_memclr4 +;;;174 unsigned short crc; +;;;175 +;;;176 // 计算CRC值 +;;;177 for(i=0;iparam_length;i++) +00000e 2400 MOVS r4,#0 +000010 466e MOV r6,sp ;173 +000012 e00a B |L3.42| + |L3.20| +;;;178 { +;;;179 param[i+1] = dcs_packet->packet_param[i]; +000014 68e8 LDR r0,[r5,#0xc] +000016 1931 ADDS r1,r6,r4 +000018 5d00 LDRB r0,[r0,r4] +00001a 7048 STRB r0,[r1,#1] +;;;180 printf("%02x ",dcs_packet->packet_param[i]); +00001c 68e8 LDR r0,[r5,#0xc] +00001e 5d01 LDRB r1,[r0,r4] +000020 a01a ADR r0,|L3.140| +000022 f7fffffe BL __2printf +000026 1c64 ADDS r4,r4,#1 +000028 b2e4 UXTB r4,r4 ;177 + |L3.42| +00002a 68a8 LDR r0,[r5,#8] ;177 +00002c 42a0 CMP r0,r4 ;177 +00002e d8f1 BHI |L3.20| +;;;181 } +;;;182 +;;;183 param[0] = 0x04; +000030 2004 MOVS r0,#4 +000032 4669 MOV r1,sp +000034 7008 STRB r0,[r1,#0] +;;;184 crc = CRC16_2(param,dcs_packet->param_length-1); +000036 8928 LDRH r0,[r5,#8] +000038 1e40 SUBS r0,r0,#1 +00003a b281 UXTH r1,r0 +00003c 4668 MOV r0,sp +00003e f7fffffe BL CRC16_2 +;;;185 crch = (crc>>8); +;;;186 crcl = crc; +;;;187 +;;;188 // CRC校验判断 +;;;189 // if(crch == dcs_packet->packet_param[dcs_packet->param_length-2] && crcl == dcs_packet->packet_param[dcs_packet->param_length-1]) +;;;190 { +;;;191 command = param[3]; +000042 4669 MOV r1,sp +000044 78c8 LDRB r0,[r1,#3] +000046 2200 MOVS r2,#0 +;;;192 switch(command) +;;;193 { +;;;194 case CMD_TP_CABLIBRATION: // Touch校准 +;;;195 if( (param[4] == 0x01) && (param[5] == 0x01) && (param[6] == 0x01) ) +000048 2301 MOVS r3,#1 +;;;196 { +;;;197 s_calibration_flag = true; +00004a 4912 LDR r1,|L3.148| +00004c 282a CMP r0,#0x2a +00004e d10d BNE |L3.108| +000050 4668 MOV r0,sp ;195 +000052 7900 LDRB r0,[r0,#4] ;195 +000054 2801 CMP r0,#1 ;195 +000056 d109 BNE |L3.108| +000058 4668 MOV r0,sp ;195 +00005a 7940 LDRB r0,[r0,#5] ;195 +00005c 2801 CMP r0,#1 ;195 +00005e d105 BNE |L3.108| +000060 4668 MOV r0,sp ;195 +000062 7980 LDRB r0,[r0,#6] ;195 +000064 2801 CMP r0,#1 ;195 +000066 d101 BNE |L3.108| +000068 700b STRB r3,[r1,#0] +;;;198 s_calibration_correct_flag = false; +00006a 704a STRB r2,[r1,#1] + |L3.108| +;;;199 +;;;200 } +;;;201 /* if( (param[4] == 0xA5) && (param[5] == 0x5A) && (param[6] == 0xA5) ) +;;;202 { +;;;203 if(s_calibration_correct_flag) // 校准成功 +;;;204 { +;;;205 hal_dsi_rx_ctrl_send_ack_cmd(handler, +;;;206 DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx +;;;207 DSI_VC_0, +;;;208 0x7, 0x04,0x02,0x07,0x2A,ST_TP_CALIBRATION_SUCCESS,0x00,0x00); +;;;209 printf("cali. send ok "); +;;;210 } +;;;211 else // 校准失败 +;;;212 { +;;;213 hal_dsi_rx_ctrl_send_ack_cmd(handler, +;;;214 DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx +;;;215 DSI_VC_0, +;;;216 0x7, 0x04,0x02,0x07,0x2A,0x00,0x00,0x00); +;;;217 } +;;;218 printf("%02x ",s_calibration_correct_flag); +;;;219 } +;;;220 */ +;;;221 break; +;;;222 case CMD_SET_IMAGE_RGB: // Image RGB发送 +;;;223 break; +;;;224 case CMD_SEND_COMMAND: // Command Send +;;;225 break; +;;;226 case CMD_WRITE_GAMMA: // Gamma校正写入 +;;;227 break; +;;;228 case CMD_START_GAMMA: +;;;229 break; +;;;230 default: +;;;231 break; +;;;232 } +;;;233 } +;;;234 +;;;235 // 兼容旧版本tp calibration +;;;236 if( (dcs_packet->packet_param[0] == 0x01) && (dcs_packet->packet_param[1] == 0x01) && (dcs_packet->packet_param[2] == 0x01) ) +00006c 68e8 LDR r0,[r5,#0xc] +00006e 7804 LDRB r4,[r0,#0] +000070 2c01 CMP r4,#1 +000072 d107 BNE |L3.132| +000074 7844 LDRB r4,[r0,#1] +000076 2c01 CMP r4,#1 +000078 d104 BNE |L3.132| +00007a 7880 LDRB r0,[r0,#2] +00007c 2801 CMP r0,#1 +00007e d101 BNE |L3.132| +;;;237 { +;;;238 s_calibration_flag = true; +000080 700b STRB r3,[r1,#0] +;;;239 s_calibration_correct_flag = false; +000082 704a STRB r2,[r1,#1] + |L3.132| +;;;240 } +;;;241 /* +;;;242 if( (dcs_packet->packet_param[0] == 0xA5) && (dcs_packet->packet_param[1] == 0x5A) && (dcs_packet->packet_param[2] == 0xA5) ) +;;;243 { +;;;244 if(s_calibration_correct_flag) // 校准成功 +;;;245 { +;;;246 hal_dsi_rx_ctrl_send_ack_cmd(handler, +;;;247 DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx +;;;248 DSI_VC_0, +;;;249 0x7, 0x04,0x02,0x07,0x2A,ST_TP_CALIBRATION_SUCCESS,0x00,0x00); +;;;250 } +;;;251 else // 校准失败 +;;;252 { +;;;253 hal_dsi_rx_ctrl_send_ack_cmd(handler, +;;;254 DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx +;;;255 DSI_VC_0, +;;;256 0x7, 0x04,0x02,0x07,0x2A,0x00,0x00,0x00); +;;;257 } +;;;258 } +;;;259 */ +;;;260 return true; +000084 2001 MOVS r0,#1 +;;;261 } +000086 b008 ADD sp,sp,#0x20 +000088 bd70 POP {r4-r6,pc} +;;;262 + ENDP + +00008a 0000 DCW 0x0000 + |L3.140| +00008c 25303278 DCB "%02x ",0 +000090 2000 +000092 00 DCB 0 +000093 00 DCB 0 + |L3.148| + DCD ||.data|| + + AREA ||i.ap_tp_st_touch_calibration||, CODE, READONLY, ALIGN=2 + + ap_tp_st_touch_calibration PROC +;;;104 +;;;105 void ap_tp_st_touch_calibration(void) +000000 b510 PUSH {r4,lr} +;;;106 { +;;;107 // app_tp_m_write(st_touch_tp_tuning_reset, sizeof(st_touch_tp_tuning_reset)); // System Reset +;;;108 // while(!hal_i2c_m_transfer_complate()); +;;;109 // delayMs(10); +;;;110 app_tp_m_write(st_touch_tp_tuning_FpnlInit, sizeof(st_touch_tp_tuning_FpnlInit)); // FPnl Init +000002 2103 MOVS r1,#3 +000004 4829 LDR r0,|L4.172| +000006 f7fffffe BL app_tp_m_write + |L4.10| +;;;111 while(!hal_i2c_m_transfer_complate()); +00000a f7fffffe BL hal_i2c_m_transfer_complate +00000e 2800 CMP r0,#0 +000010 d0fb BEQ |L4.10| +;;;112 delayMs(1); +000012 2001 MOVS r0,#1 +000014 f7fffffe BL delayMs +;;;113 app_tp_m_write(st_touch_tp_tuning_PnlInit, sizeof(st_touch_tp_tuning_PnlInit)); // Pnl Init +000018 4824 LDR r0,|L4.172| +00001a 2103 MOVS r1,#3 +00001c 1cc0 ADDS r0,r0,#3 +00001e f7fffffe BL app_tp_m_write + |L4.34| +;;;114 while(!hal_i2c_m_transfer_complate()); +000022 f7fffffe BL hal_i2c_m_transfer_complate +000026 2800 CMP r0,#0 +000028 d0fb BEQ |L4.34| +;;;115 delayMs(1); +00002a 2001 MOVS r0,#1 +00002c f7fffffe BL delayMs +;;;116 app_tp_m_write(st_touch_tp_tuning_TuneM, sizeof(st_touch_tp_tuning_TuneM)); // TuneM +000030 481e LDR r0,|L4.172| +000032 2104 MOVS r1,#4 +000034 3015 ADDS r0,r0,#0x15 +000036 f7fffffe BL app_tp_m_write + |L4.58| +;;;117 while(!hal_i2c_m_transfer_complate()); +00003a f7fffffe BL hal_i2c_m_transfer_complate +00003e 2800 CMP r0,#0 +000040 d0fb BEQ |L4.58| +;;;118 delayMs(1); +000042 2001 MOVS r0,#1 +000044 f7fffffe BL delayMs +;;;119 app_tp_m_write(st_touch_tp_tuning_TuneS, sizeof(st_touch_tp_tuning_TuneS)); // TuneS +000048 4818 LDR r0,|L4.172| +00004a 2104 MOVS r1,#4 +00004c 3019 ADDS r0,r0,#0x19 +00004e f7fffffe BL app_tp_m_write + |L4.82| +;;;120 while(!hal_i2c_m_transfer_complate()); +000052 f7fffffe BL hal_i2c_m_transfer_complate +000056 2800 CMP r0,#0 +000058 d0fb BEQ |L4.82| +;;;121 delayMs(1); +00005a 2001 MOVS r0,#1 +00005c f7fffffe BL delayMs +;;;122 app_tp_m_write(st_touch_tp_tuning_SvCfg, sizeof(st_touch_tp_tuning_SvCfg)); // SvCfg +000060 4812 LDR r0,|L4.172| +000062 2103 MOVS r1,#3 +000064 1d80 ADDS r0,r0,#6 +000066 f7fffffe BL app_tp_m_write + |L4.106| +;;;123 while(!hal_i2c_m_transfer_complate()); +00006a f7fffffe BL hal_i2c_m_transfer_complate +00006e 2800 CMP r0,#0 +000070 d0fb BEQ |L4.106| +;;;124 delayMs(1); +000072 2001 MOVS r0,#1 +000074 f7fffffe BL delayMs +;;;125 app_tp_m_write(st_touch_tp_tuning_SvCx, sizeof(st_touch_tp_tuning_SvCx)); // SvCx +000078 480c LDR r0,|L4.172| +00007a 2103 MOVS r1,#3 +00007c 3009 ADDS r0,r0,#9 +00007e f7fffffe BL app_tp_m_write + |L4.130| +;;;126 while(!hal_i2c_m_transfer_complate()); +000082 f7fffffe BL hal_i2c_m_transfer_complate +000086 2800 CMP r0,#0 +000088 d0fb BEQ |L4.130| +;;;127 delayMs(1); +00008a 2001 MOVS r0,#1 +00008c f7fffffe BL delayMs +;;;128 app_tp_m_write(st_touch_tp_tuning_SvPnl, sizeof(st_touch_tp_tuning_SvPnl)); // SvPnl +000090 4806 LDR r0,|L4.172| +000092 2103 MOVS r1,#3 +000094 300c ADDS r0,r0,#0xc +000096 f7fffffe BL app_tp_m_write + |L4.154| +;;;129 while(!hal_i2c_m_transfer_complate()); +00009a f7fffffe BL hal_i2c_m_transfer_complate +00009e 2800 CMP r0,#0 +0000a0 d0fb BEQ |L4.154| +;;;130 delayMs(1); +0000a2 2001 MOVS r0,#1 +0000a4 f7fffffe BL delayMs +;;;131 } +0000a8 bd10 POP {r4,pc} +;;;132 + ENDP + +0000aa 0000 DCW 0x0000 + |L4.172| + DCD ||.data||+0xb + + AREA ||i.ap_tp_st_touch_error_handler_F3||, CODE, READONLY, ALIGN=1 + + ap_tp_st_touch_error_handler_F3 PROC +;;;541 +;;;542 void ap_tp_st_touch_error_handler_F3(uint8_t* screendata) +000000 b510 PUSH {r4,lr} +;;;543 { +;;;544 // 收到 TP 异常回复 0xF3 0x02 0x00 0x00 0x00 0x00 0x00 0x00 +;;;545 if(screendata[0] == 0xF3 && screendata[1] == 0x02 && screendata[2] == 0x00) +000002 7801 LDRB r1,[r0,#0] +000004 29f3 CMP r1,#0xf3 +000006 d107 BNE |L5.24| +000008 7841 LDRB r1,[r0,#1] +00000a 2902 CMP r1,#2 +00000c d104 BNE |L5.24| +00000e 7880 LDRB r0,[r0,#2] +000010 2800 CMP r0,#0 +000012 d101 BNE |L5.24| +;;;546 { +;;;547 ap_tp_st_touch_software_reset(); +000014 f7fffffe BL ap_tp_st_touch_software_reset + |L5.24| +;;;548 } +;;;549 } +000018 bd10 POP {r4,pc} +;;;550 + ENDP + + + AREA ||i.ap_tp_st_touch_error_handler_FF||, CODE, READONLY, ALIGN=1 + + ap_tp_st_touch_error_handler_FF PROC +;;;558 +;;;559 void ap_tp_st_touch_error_handler_FF(uint8_t* screendata) +000000 b510 PUSH {r4,lr} +;;;560 { +;;;561 // 收到 TP 异常回复 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF +;;;562 if(screendata[1] == 0xFF && screendata[2] == 0xFF&& screendata[3] == 0xFF&&screendata[4] == 0xFF) +000002 7841 LDRB r1,[r0,#1] +000004 29ff CMP r1,#0xff +000006 d10a BNE |L6.30| +000008 7881 LDRB r1,[r0,#2] +00000a 29ff CMP r1,#0xff +00000c d107 BNE |L6.30| +00000e 78c1 LDRB r1,[r0,#3] +000010 29ff CMP r1,#0xff +000012 d104 BNE |L6.30| +000014 7900 LDRB r0,[r0,#4] +000016 28ff CMP r0,#0xff +000018 d101 BNE |L6.30| +;;;563 { +;;;564 ap_tp_st_touch_software_reset(); +00001a f7fffffe BL ap_tp_st_touch_software_reset + |L6.30| +;;;565 } +;;;566 } +00001e bd10 POP {r4,pc} +;;;567 + ENDP + + + AREA ||i.ap_tp_st_touch_get_calibration_success_mark||, CODE, READONLY, ALIGN=2 + + ap_tp_st_touch_get_calibration_success_mark PROC +;;;58 +;;;59 void ap_tp_st_touch_get_calibration_success_mark(void) +000000 b500 PUSH {lr} +;;;60 { +;;;61 uint8_t cali_send_buff[6] = {0xFA,0x20,0x01,0x00,0x00,0x00}; +000002 a025 ADR r0,|L7.152| +000004 c803 LDM r0,{r0,r1} +000006 b08d SUB sp,sp,#0x34 ;60 +;;;62 uint8_t cali_send_buff1[3] = {0xA4,0x06,0x01}; +000008 910b STR r1,[sp,#0x2c] +00000a 900a STR r0,[sp,#0x28] +00000c a024 ADR r0,|L7.160| +00000e 6800 LDR r0,[r0,#0] +;;;63 uint8_t cali_read_buff[40] = {0}; +000010 900c STR r0,[sp,#0x30] +000012 2128 MOVS r1,#0x28 +000014 4668 MOV r0,sp +000016 f7fffffe BL __aeabi_memclr4 +;;;64 uint8_t i = 0; +;;;65 +;;;66 app_tp_m_read(cali_send_buff, 5, cali_read_buff, 4); +00001a 2304 MOVS r3,#4 +00001c 466a MOV r2,sp +00001e 2105 MOVS r1,#5 +000020 a80a ADD r0,sp,#0x28 +000022 f7fffffe BL app_tp_m_read + |L7.38| +;;;67 while(!hal_i2c_m_transfer_complate()); +000026 f7fffffe BL hal_i2c_m_transfer_complate +00002a 2800 CMP r0,#0 +00002c d0fb BEQ |L7.38| +;;;68 delayMs(1); +00002e 2001 MOVS r0,#1 +000030 f7fffffe BL delayMs +;;;69 +;;;70 app_tp_m_write(cali_send_buff1, 3); +000034 2103 MOVS r1,#3 +000036 a80c ADD r0,sp,#0x30 +000038 f7fffffe BL app_tp_m_write + |L7.60| +;;;71 while(!hal_i2c_m_transfer_complate()); +00003c f7fffffe BL hal_i2c_m_transfer_complate +000040 2800 CMP r0,#0 +000042 d0fb BEQ |L7.60| +;;;72 delayMs(1); +000044 2001 MOVS r0,#1 +000046 f7fffffe BL delayMs +;;;73 +;;;74 app_tp_m_read(cali_send_buff, 5, cali_read_buff, 4); +00004a 2304 MOVS r3,#4 +00004c 466a MOV r2,sp +00004e 2105 MOVS r1,#5 +000050 a80a ADD r0,sp,#0x28 +000052 f7fffffe BL app_tp_m_read + |L7.86| +;;;75 while(!hal_i2c_m_transfer_complate()); +000056 f7fffffe BL hal_i2c_m_transfer_complate +00005a 2800 CMP r0,#0 +00005c d0fb BEQ |L7.86| +;;;76 delayMs(1); +00005e 2001 MOVS r0,#1 +000060 f7fffffe BL delayMs +;;;77 +;;;78 app_tp_m_read(cali_send_buff, 5, cali_read_buff, 32); +000064 2320 MOVS r3,#0x20 +000066 466a MOV r2,sp +000068 2105 MOVS r1,#5 +00006a a80a ADD r0,sp,#0x28 +00006c f7fffffe BL app_tp_m_read + |L7.112| +;;;79 while(!hal_i2c_m_transfer_complate()); +000070 f7fffffe BL hal_i2c_m_transfer_complate +000074 2800 CMP r0,#0 +000076 d0fb BEQ |L7.112| +;;;80 +;;;81 if((cali_read_buff[20] == 0xFF) && (cali_read_buff[21] == 0xFF)) +000078 4668 MOV r0,sp +00007a 7d01 LDRB r1,[r0,#0x14] +;;;82 { +;;;83 s_calibration_correct_flag = ST_TP_CALIBRATION_SUCCESS; // 校准成功 +00007c 4809 LDR r0,|L7.164| +00007e 29ff CMP r1,#0xff ;81 +000080 d103 BNE |L7.138| +000082 4669 MOV r1,sp ;81 +000084 7d49 LDRB r1,[r1,#0x15] ;81 +000086 29ff CMP r1,#0xff ;81 +000088 d003 BEQ |L7.146| + |L7.138| +;;;84 } +;;;85 else +;;;86 { +;;;87 s_calibration_correct_flag = 0x00; // 校准失败 +00008a 2100 MOVS r1,#0 + |L7.140| +00008c 7041 STRB r1,[r0,#1] ;83 +;;;88 } +;;;89 /* +;;;90 for(i=0;i<32;i++) +;;;91 { +;;;92 printf("%02x ",cali_read_buff[i]); +;;;93 } +;;;94 */ +;;;95 } +00008e b00d ADD sp,sp,#0x34 +000090 bd00 POP {pc} + |L7.146| +000092 215a MOVS r1,#0x5a ;83 +000094 e7fa B |L7.140| +;;;96 + ENDP + +000096 0000 DCW 0x0000 + |L7.152| +000098 fa200100 DCB 250," ",1,0 +00009c 00 DCB 0 +00009d 00 DCB 0 +00009e 00 DCB 0 +00009f 00 DCB 0 + |L7.160| +0000a0 a4060100 DCB 164,6,1,0 + |L7.164| + DCD ||.data|| + + AREA ||i.ap_tp_st_touch_hardware_reset||, CODE, READONLY, ALIGN=2 + + ap_tp_st_touch_hardware_reset PROC +;;;413 **************************************************************************/ +;;;414 void ap_tp_st_touch_hardware_reset(void) +000000 b510 PUSH {r4,lr} +;;;415 { +;;;416 TAU_LOGD("st_touch_hardware_reset \n"); +000002 22ff MOVS r2,#0xff +000004 32a1 ADDS r2,r2,#0xa1 +000006 a121 ADR r1,|L8.140| +000008 a022 ADR r0,|L8.148| +00000a f7fffffe BL LOG_printf +;;;417 ap_tp_st_touch_simulate_finger_release_event(); +00000e f7fffffe BL ap_tp_st_touch_simulate_finger_release_event +;;;418 ap_tp_st_touch_scan_point_init(); +000012 f7fffffe BL ap_tp_st_touch_scan_point_init +;;;419 hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_HIGH); +000016 4c29 LDR r4,|L8.188| +000018 2101 MOVS r1,#1 +00001a 7820 LDRB r0,[r4,#0] ; g_screen_input_rst_pad +00001c f7fffffe BL hal_gpio_set_output_data +;;;420 delayMs(2); +000020 2002 MOVS r0,#2 +000022 f7fffffe BL delayMs +;;;421 hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_LOW); +000026 2100 MOVS r1,#0 +000028 7820 LDRB r0,[r4,#0] ; g_screen_input_rst_pad +00002a f7fffffe BL hal_gpio_set_output_data +;;;422 delayMs(2); +00002e 2002 MOVS r0,#2 +000030 f7fffffe BL delayMs +;;;423 hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_HIGH); +000034 2101 MOVS r1,#1 +000036 7820 LDRB r0,[r4,#0] ; g_screen_input_rst_pad +000038 f7fffffe BL hal_gpio_set_output_data +;;;424 delayMs(2); +00003c 2002 MOVS r0,#2 +00003e f7fffffe BL delayMs +;;;425 +;;;426 app_tp_m_write(st_touch_tp_tuning_clearfifo, sizeof(st_touch_tp_tuning_clearfifo));//0xA4,0x00,0x01} +000042 2103 MOVS r1,#3 +000044 481e LDR r0,|L8.192| +000046 f7fffffe BL app_tp_m_write + |L8.74| +;;;427 while(!hal_i2c_m_transfer_complate()); +00004a f7fffffe BL hal_i2c_m_transfer_complate +00004e 2800 CMP r0,#0 +000050 d0fb BEQ |L8.74| +;;;428 delayMs(5); +000052 2005 MOVS r0,#5 +000054 f7fffffe BL delayMs +;;;429 app_tp_m_write(st_touch_init_sensor_off, sizeof(st_touch_init_sensor_off));//0xA0,0x00,0x00 +000058 4819 LDR r0,|L8.192| +00005a 2103 MOVS r1,#3 +00005c 3818 SUBS r0,r0,#0x18 +00005e f7fffffe BL app_tp_m_write + |L8.98| +;;;430 while(!hal_i2c_m_transfer_complate()); +000062 f7fffffe BL hal_i2c_m_transfer_complate +000066 2800 CMP r0,#0 +000068 d0fb BEQ |L8.98| +;;;431 delayMs(5); +00006a 2005 MOVS r0,#5 +00006c f7fffffe BL delayMs +;;;432 app_tp_m_write(st_touch_init_sensor_on, sizeof(st_touch_init_sensor_on));//0xA0,0x00,0x01 +000070 4813 LDR r0,|L8.192| +000072 2103 MOVS r1,#3 +000074 3815 SUBS r0,r0,#0x15 +000076 f7fffffe BL app_tp_m_write + |L8.122| +;;;433 while(!hal_i2c_m_transfer_complate()); +00007a f7fffffe BL hal_i2c_m_transfer_complate +00007e 2800 CMP r0,#0 +000080 d0fb BEQ |L8.122| +;;;434 delayMs(5); +000082 2005 MOVS r0,#5 +000084 f7fffffe BL delayMs +;;;435 } +000088 bd10 POP {r4,pc} +;;;436 + ENDP + +00008a 0000 DCW 0x0000 + |L8.140| +00008c 7461755f DCB "tau_log",0 +000090 6c6f6700 + |L8.148| +000094 5b25735d DCB "[%s] (%04d) st_touch_hardware_reset \n",0 +000098 20282530 +00009c 34642920 +0000a0 73745f74 +0000a4 6f756368 +0000a8 5f686172 +0000ac 64776172 +0000b0 655f7265 +0000b4 73657420 +0000b8 0a00 +0000ba 00 DCB 0 +0000bb 00 DCB 0 + |L8.188| + DCD g_screen_input_rst_pad + |L8.192| + DCD ||.data||+0x1a + + AREA ||i.ap_tp_st_touch_scan_point_init||, CODE, READONLY, ALIGN=2 + + ap_tp_st_touch_scan_point_init PROC +;;;337 +;;;338 void ap_tp_st_touch_scan_point_init(void) +000000 2000 MOVS r0,#0 +;;;339 { +;;;340 uint8_t i=0; +;;;341 +;;;342 for(i=0;i>4)+1; +;;;453 i+=7; +;;;454 +;;;455 if(eventdata == 0x13) // 按下事件 +;;;456 { +;;;457 for(j=0;j0)) // 释放事件 +000046 2c33 CMP r4,#0x33 +000048 d005 BEQ |L10.86| +00004a e019 B |L10.128| + |L10.76| +00004c 54b3 STRB r3,[r6,r2] ;472 +00004e 79b2 LDRB r2,[r6,#6] ;473 ; tp_scan_data +000050 1c52 ADDS r2,r2,#1 ;473 +000052 71b2 STRB r2,[r6,#6] ;473 +000054 e7f7 B |L10.70| + |L10.86| +000056 79b2 LDRB r2,[r6,#6] ; tp_scan_data +000058 2a00 CMP r2,#0 +00005a d017 BEQ |L10.140| +;;;482 { +;;;483 for(j=0;j0) // 有残留点 +;;;524 { +;;;525 printf("release finger %2d\n",tp_scan_data.tp_read_point_counter); +;;;526 tp_scan_data.tp_read_point_counter = 0; +;;;527 ap_tp_st_touch_simulate_finger_release_event(); +;;;528 } +;;;529 ap_tp_st_touch_scan_point_init(); +;;;530 } +;;;531 } +;;;532 } +000016 bd10 POP {r4,pc} + |L11.24| +000018 79a1 LDRB r1,[r4,#6] ;523 ; tp_scan_data +00001a 2900 CMP r1,#0 ;523 +00001c d006 BEQ |L11.44| +00001e a007 ADR r0,|L11.60| +000020 f7fffffe BL __2printf +000024 2000 MOVS r0,#0 ;526 +000026 71a0 STRB r0,[r4,#6] ;526 +000028 f7fffffe BL ap_tp_st_touch_simulate_finger_release_event + |L11.44| +00002c f7fffffe BL ap_tp_st_touch_scan_point_init +000030 bd10 POP {r4,pc} +;;;533 + ENDP + +000032 0000 DCW 0x0000 + |L11.52| + DCD ||.bss|| + |L11.56| + DCD 0x00001999 + |L11.60| +00003c 72656c65 DCB "release finger %2d\n",0 +000040 61736520 +000044 66696e67 +000048 65722025 +00004c 32640a00 + + AREA ||i.ap_tp_st_touch_simulate_finger_release_event||, CODE, READONLY, ALIGN=2 + + ap_tp_st_touch_simulate_finger_release_event PROC +;;;357 +;;;358 void ap_tp_st_touch_simulate_finger_release_event(void) +000000 b51c PUSH {r2-r4,lr} +;;;359 { +;;;360 uint8_t i,temp=0,ap_tp_release_buf[8] = {0x33,0x01,0x00,0x00,0x00,0x00,0x00,0x00}; +000002 a00a ADR r0,|L12.44| +000004 c803 LDM r0,{r0,r1} +;;;361 +;;;362 for(i=0;i<5;i++) +000006 2400 MOVS r4,#0 +000008 9101 STR r1,[sp,#4] +00000a 9000 STR r0,[sp,#0] + |L12.12| +;;;363 { +;;;364 temp = i; +;;;365 ap_tp_release_buf[1] = (temp<<4)|0x01; +00000c 0120 LSLS r0,r4,#4 +00000e 4669 MOV r1,sp +000010 1c40 ADDS r0,r0,#1 +000012 7048 STRB r0,[r1,#1] +;;;366 +;;;367 app_tp_screen_analysis_int(0, ap_tp_release_buf,8); +000014 2208 MOVS r2,#8 +000016 2000 MOVS r0,#0 +000018 f7fffffe BL app_tp_screen_analysis_int +;;;368 +;;;369 delayMs(6); +00001c 2006 MOVS r0,#6 +00001e f7fffffe BL delayMs +000022 1c64 ADDS r4,r4,#1 +000024 b2e4 UXTB r4,r4 ;362 +000026 2c05 CMP r4,#5 ;362 +000028 d3f0 BCC |L12.12| +;;;370 } +;;;371 } +00002a bd1c POP {r2-r4,pc} +;;;372 + ENDP + + |L12.44| +00002c 330100 DCB "3",1,0 +00002f 00 DCB 0 +000030 00 DCB 0 +000031 00 DCB 0 +000032 00 DCB 0 +000033 00 DCB 0 + + AREA ||i.ap_tp_st_touch_software_reset||, CODE, READONLY, ALIGN=2 + + ap_tp_st_touch_software_reset PROC +;;;380 +;;;381 void ap_tp_st_touch_software_reset(void) +000000 b510 PUSH {r4,lr} +;;;382 { +;;;383 TAU_LOGD("st_touch_software_reset \n"); +000002 22ff MOVS r2,#0xff +000004 3280 ADDS r2,r2,#0x80 +000006 a11c ADR r1,|L13.120| +000008 a01d ADR r0,|L13.128| +00000a f7fffffe BL LOG_printf +;;;384 ap_tp_st_touch_simulate_finger_release_event(); +00000e f7fffffe BL ap_tp_st_touch_simulate_finger_release_event +;;;385 ap_tp_st_touch_scan_point_init(); +000012 f7fffffe BL ap_tp_st_touch_scan_point_init +;;;386 +;;;387 app_tp_m_write(st_touch_tp_tuning_clkreset, sizeof(st_touch_tp_tuning_clkreset)); // clk reset +000016 2103 MOVS r1,#3 +000018 4823 LDR r0,|L13.168| +00001a f7fffffe BL app_tp_m_write + |L13.30| +;;;388 while(!hal_i2c_m_transfer_complate()); +00001e f7fffffe BL hal_i2c_m_transfer_complate +000022 2800 CMP r0,#0 +000024 d0fb BEQ |L13.30| +;;;389 delayMs(5); +000026 2005 MOVS r0,#5 +000028 f7fffffe BL delayMs +;;;390 +;;;391 app_tp_m_write(st_touch_tp_tuning_reset, sizeof(st_touch_tp_tuning_reset)); // System Reset A4 00 00 +00002c 481e LDR r0,|L13.168| +00002e 2103 MOVS r1,#3 +000030 3815 SUBS r0,r0,#0x15 +000032 f7fffffe BL app_tp_m_write + |L13.54| +;;;392 while(!hal_i2c_m_transfer_complate()); +000036 f7fffffe BL hal_i2c_m_transfer_complate +00003a 2800 CMP r0,#0 +00003c d0fb BEQ |L13.54| +;;;393 delayMs(5); +00003e 2005 MOVS r0,#5 +000040 f7fffffe BL delayMs +;;;394 +;;;395 app_tp_m_write(st_touch_tp_tuning_clearfifo, sizeof(st_touch_tp_tuning_clearfifo));//0xA4,0x00,0x01 +000044 4818 LDR r0,|L13.168| +000046 2103 MOVS r1,#3 +000048 1ec0 SUBS r0,r0,#3 +00004a f7fffffe BL app_tp_m_write + |L13.78| +;;;396 while(!hal_i2c_m_transfer_complate()); +00004e f7fffffe BL hal_i2c_m_transfer_complate +000052 2800 CMP r0,#0 +000054 d0fb BEQ |L13.78| +;;;397 delayMs(5); +000056 2005 MOVS r0,#5 +000058 f7fffffe BL delayMs +;;;398 +;;;399 app_tp_m_write(st_touch_init_sensor_on, sizeof(st_touch_init_sensor_on));//0xA0,0x00,0x01 +00005c 4812 LDR r0,|L13.168| +00005e 2103 MOVS r1,#3 +000060 3818 SUBS r0,r0,#0x18 +000062 f7fffffe BL app_tp_m_write + |L13.102| +;;;400 while(!hal_i2c_m_transfer_complate()); +000066 f7fffffe BL hal_i2c_m_transfer_complate +00006a 2800 CMP r0,#0 +00006c d0fb BEQ |L13.102| +;;;401 delayMs(5); +00006e 2005 MOVS r0,#5 +000070 f7fffffe BL delayMs +;;;402 +;;;403 // app_tp_screen_reset(); +;;;404 } +000074 bd10 POP {r4,pc} +;;;405 + ENDP + +000076 0000 DCW 0x0000 + |L13.120| +000078 7461755f DCB "tau_log",0 +00007c 6c6f6700 + |L13.128| +000080 5b25735d DCB "[%s] (%04d) st_touch_software_reset \n",0 +000084 20282530 +000088 34642920 +00008c 73745f74 +000090 6f756368 +000094 5f736f66 +000098 74776172 +00009c 655f7265 +0000a0 73657420 +0000a4 0a00 +0000a6 00 DCB 0 +0000a7 00 DCB 0 + |L13.168| + DCD ||.data||+0x1d + + AREA ||i.app_tp_calibration_exec||, CODE, READONLY, ALIGN=2 + + app_tp_calibration_exec PROC +;;;302 +;;;303 void app_tp_calibration_exec(void) +000000 b5f8 PUSH {r3-r7,lr} +;;;304 { +;;;305 uint8_t i = 0; +;;;306 +;;;307 if(s_calibration_flag) +000002 4d13 LDR r5,|L14.80| +000004 2400 MOVS r4,#0 ;305 +000006 7828 LDRB r0,[r5,#0] ; s_calibration_flag +000008 2800 CMP r0,#0 +00000a d018 BEQ |L14.62| +;;;308 { +;;;309 s_calibration_flag = false; +00000c 2000 MOVS r0,#0 +00000e 7028 STRB r0,[r5,#0] +;;;310 for(i=0;i<2;i++) +;;;311 { +;;;312 ap_tp_st_touch_calibration(); +;;;313 delayMs(4000); +000010 267d MOVS r6,#0x7d +;;;314 ap_tp_st_touch_get_calibration_success_mark(); +;;;315 if(s_calibration_correct_flag == ST_TP_CALIBRATION_SUCCESS) +;;;316 { +;;;317 TAU_LOGD("calibration successful \n"); +;;;318 break; +;;;319 } +;;;320 else +;;;321 { +;;;322 TAU_LOGD("calibration failure \n"); +000012 27ff MOVS r7,#0xff +000014 0176 LSLS r6,r6,#5 ;313 +000016 3743 ADDS r7,r7,#0x43 + |L14.24| +000018 f7fffffe BL ap_tp_st_touch_calibration +00001c 4630 MOV r0,r6 ;313 +00001e f7fffffe BL delayMs +000022 f7fffffe BL ap_tp_st_touch_get_calibration_success_mark +000026 7868 LDRB r0,[r5,#1] ;315 ; s_calibration_correct_flag +000028 285a CMP r0,#0x5a ;315 +00002a d009 BEQ |L14.64| +00002c 463a MOV r2,r7 +00002e a109 ADR r1,|L14.84| +000030 a00a ADR r0,|L14.92| +000032 f7fffffe BL LOG_printf +000036 1c64 ADDS r4,r4,#1 +000038 b2e4 UXTB r4,r4 ;310 +00003a 2c02 CMP r4,#2 ;310 +00003c d3ec BCC |L14.24| + |L14.62| +;;;323 } +;;;324 } +;;;325 +;;;326 } +;;;327 } +00003e bdf8 POP {r3-r7,pc} + |L14.64| +000040 22ff MOVS r2,#0xff ;317 +000042 323e ADDS r2,r2,#0x3e ;317 +000044 a103 ADR r1,|L14.84| +000046 a00e ADR r0,|L14.128| +000048 f7fffffe BL LOG_printf +00004c bdf8 POP {r3-r7,pc} +;;;328 + ENDP + +00004e 0000 DCW 0x0000 + |L14.80| + DCD ||.data|| + |L14.84| +000054 7461755f DCB "tau_log",0 +000058 6c6f6700 + |L14.92| +00005c 5b25735d DCB "[%s] (%04d) calibration failure \n",0 +000060 20282530 +000064 34642920 +000068 63616c69 +00006c 62726174 +000070 696f6e20 +000074 6661696c +000078 75726520 +00007c 0a00 +00007e 00 DCB 0 +00007f 00 DCB 0 + |L14.128| +000080 5b25735d DCB "[%s] (%04d) calibration successful \n",0 +000084 20282530 +000088 34642920 +00008c 63616c69 +000090 62726174 +000094 696f6e20 +000098 73756363 +00009c 65737366 +0000a0 756c200a +0000a4 00 +0000a5 00 DCB 0 +0000a6 00 DCB 0 +0000a7 00 DCB 0 + + AREA ||.bss||, DATA, NOINIT, ALIGN=2 + + tp_scan_data + % 12 + + AREA ||.constdata||, DATA, READONLY, ALIGN=1 + + wCRCTalbeAbs +000000 0000cc01 DCW 0x0000,0xcc01 +000004 d8011400 DCW 0xd801,0x1400 +000008 f0013c00 DCW 0xf001,0x3c00 +00000c 2800e401 DCW 0x2800,0xe401 +000010 a0016c00 DCW 0xa001,0x6c00 +000014 7800b401 DCW 0x7800,0xb401 +000018 50009c01 DCW 0x5000,0x9c01 +00001c 88014400 DCW 0x8801,0x4400 + + AREA ||.data||, DATA, ALIGN=0 + + s_calibration_flag +000000 00 DCB 0x00 + s_calibration_correct_flag +000001 00 DCB 0x00 + st_touch_init_sensor_off +000002 a000 DCB 0xa0,0x00 +000004 00 DCB 0x00 + st_touch_init_sensor_on +000005 a00001 DCB 0xa0,0x00,0x01 + st_touch_tp_tuning_reset +000008 a40000 DCB 0xa4,0x00,0x00 + st_touch_tp_tuning_FpnlInit +00000b a4 DCB 0xa4 +00000c 0003 DCB 0x00,0x03 + st_touch_tp_tuning_PnlInit +00000e a400 DCB 0xa4,0x00 +000010 02 DCB 0x02 + st_touch_tp_tuning_SvCfg +000011 a40501 DCB 0xa4,0x05,0x01 + st_touch_tp_tuning_SvCx +000014 a40502 DCB 0xa4,0x05,0x02 + st_touch_tp_tuning_SvPnl +000017 a4 DCB 0xa4 +000018 0504 DCB 0x05,0x04 + st_touch_tp_tuning_clearfifo +00001a a400 DCB 0xa4,0x00 +00001c 01 DCB 0x01 + st_touch_tp_tuning_clkreset +00001d a40005 DCB 0xa4,0x00,0x05 + st_touch_tp_tuning_TuneM +000020 a4031300 DCB 0xa4,0x03,0x13,0x00 + st_touch_tp_tuning_TuneS +000024 a4030c00 DCB 0xa4,0x03,0x0c,0x00 + +;*** Start embedded assembler *** + +#line 1 "..\\..\\src\\app\\demo\\app_tp_st_touch.c" + AREA ||.rev16_text||, CODE + THUMB + EXPORT |__asm___17_app_tp_st_touch_c_0c52f749____REV16| +#line 467 "C:\\Keil_v5\\ARM\\PACK\\ARM\\CMSIS\\5.5.1\\CMSIS\\Core\\Include\\cmsis_armcc.h" +|__asm___17_app_tp_st_touch_c_0c52f749____REV16| PROC +#line 468 + + rev16 r0, r0 + bx lr + ENDP + AREA ||.revsh_text||, CODE + THUMB + EXPORT |__asm___17_app_tp_st_touch_c_0c52f749____REVSH| +#line 482 +|__asm___17_app_tp_st_touch_c_0c52f749____REVSH| PROC +#line 483 + + revsh r0, r0 + bx lr + ENDP + +;*** End embedded assembler *** diff --git a/project/ISP_368/Listings/app_tp_transfer.txt b/project/ISP_368/Listings/app_tp_transfer.txt new file mode 100644 index 0000000..8c4c7d6 --- /dev/null +++ b/project/ISP_368/Listings/app_tp_transfer.txt @@ -0,0 +1,1297 @@ +; generated by Component: ARM Compiler 5.06 update 6 (build 750) Tool: ArmCC [4d3637] +; commandline ArmCC [--c99 --list --split_sections --debug -c --asm --interleave --gnu -o.\objects\app_tp_transfer.o --asm_dir=.\Listings\ --list_dir=.\Listings\ --depend=.\objects\app_tp_transfer.d --cpu=Cortex-M0 --apcs=interwork --diag_suppress=9931 -I..\..\src -I..\..\src\board -I..\..\src\common -I..\..\src\sdk\include -I..\..\src\app\demo -I..\..\src\sdk\include\M0 -I..\..\src\app -I..\..\src\app\module_demo -I..\..\src\app\touch -I..\..\src\app\S8 -I..\..\src\app\S9 -I..\CVWL368 -I.\RTE\_ISP_368 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\CMSIS\Core\Include -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\Device\ARM\ARMCM0\Include -D__MICROLIB -D__UVISION_VERSION=528 -D_RTE_ -DARMCM0 -DISP_368 --omf_browse=.\objects\app_tp_transfer.crf ..\..\src\app\demo\app_tp_transfer.c] + THUMB + + AREA ||i.S20_Start_init||, CODE, READONLY, ALIGN=2 + + S20_Start_init PROC +;;;437 +;;;438 void S20_Start_init(void) +000000 b5f8 PUSH {r3-r7,lr} +;;;439 { +;;;440 uint8_t len=0; +;;;441 uint8_t temp=0; +;;;442 uint8_t temp_start_flag=0; +;;;443 // if(phone_start_flag==1) +;;;444 { +;;;445 app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); +000002 4d4c LDR r5,|L1.308| +000004 2600 MOVS r6,#0 ;442 +000006 2308 MOVS r3,#8 +000008 4a4b LDR r2,|L1.312| +00000a 2101 MOVS r1,#1 +00000c 6828 LDR r0,[r5,#0] ; screen_reg_int_data +00000e f7fffffe BL app_tp_m_read + |L1.18| +;;;446 while(!hal_i2c_m_transfer_complate()); +000012 f7fffffe BL hal_i2c_m_transfer_complate +000016 2800 CMP r0,#0 +000018 d0fb BEQ |L1.18| +;;;447 delayMs(2); +00001a 2002 MOVS r0,#2 +00001c f7fffffe BL delayMs +;;;448 while(!hal_gpio_get_input_data(g_screen_input_int_pad)) +000020 4c46 LDR r4,|L1.316| +000022 e00c B |L1.62| + |L1.36| +;;;449 { +;;;450 app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); +000024 2308 MOVS r3,#8 +000026 4a44 LDR r2,|L1.312| +000028 2101 MOVS r1,#1 +00002a 6828 LDR r0,[r5,#0] ; screen_reg_int_data +00002c f7fffffe BL app_tp_m_read + |L1.48| +;;;451 while(!hal_i2c_m_transfer_complate()); +000030 f7fffffe BL hal_i2c_m_transfer_complate +000034 2800 CMP r0,#0 +000036 d0fb BEQ |L1.48| +;;;452 delayMs(2); +000038 2002 MOVS r0,#2 +00003a f7fffffe BL delayMs + |L1.62| +00003e 7820 LDRB r0,[r4,#0] ;448 ; g_screen_input_int_pad +000040 f7fffffe BL hal_gpio_get_input_data +000044 2800 CMP r0,#0 ;448 +000046 d0ed BEQ |L1.36| +;;;453 } +;;;454 temp=s_screen_read_buffer[0]&0xf0; +000048 4f3b LDR r7,|L1.312| +00004a 7838 LDRB r0,[r7,#0] ; s_screen_read_buffer +00004c 0900 LSRS r0,r0,#4 +00004e 0100 LSLS r0,r0,#4 +;;;455 if((temp==0x10)||(temp==0x20)||(temp==0x30)) +000050 2810 CMP r0,#0x10 +000052 d04c BEQ |L1.238| +000054 2820 CMP r0,#0x20 +000056 d04a BEQ |L1.238| +000058 2830 CMP r0,#0x30 +00005a d048 BEQ |L1.238| +;;;456 { +;;;457 temp_start_flag=1; +;;;458 } +;;;459 if(temp_start_flag==0) +00005c 2e00 CMP r6,#0 +00005e d146 BNE |L1.238| +;;;460 { +;;;461 app_tp_m_write(MI10_PRO_screen_init_data1, sizeof(MI10_PRO_screen_init_data1));//0xA0,0x00,0x01 +000060 2103 MOVS r1,#3 +000062 4837 LDR r0,|L1.320| +000064 f7fffffe BL app_tp_m_write + |L1.104| +;;;462 while(!hal_i2c_m_transfer_complate()); +000068 f7fffffe BL hal_i2c_m_transfer_complate +00006c 2800 CMP r0,#0 +00006e d0fb BEQ |L1.104| +;;;463 delayMs(1); +000070 2001 MOVS r0,#1 +000072 f7fffffe BL delayMs +;;;464 app_tp_m_write(MI10_PRO_screen_init_data2, sizeof(MI10_PRO_screen_init_data2));//0xA2,0x03,0x00,0x00,0x00,0x03 +000076 4832 LDR r0,|L1.320| +000078 2106 MOVS r1,#6 +00007a 3020 ADDS r0,r0,#0x20 +00007c f7fffffe BL app_tp_m_write + |L1.128| +;;;465 while(!hal_i2c_m_transfer_complate()); +000080 f7fffffe BL hal_i2c_m_transfer_complate +000084 2800 CMP r0,#0 +000086 d0fb BEQ |L1.128| +;;;466 delayMs(1); +000088 2001 MOVS r0,#1 +00008a f7fffffe BL delayMs +;;;467 app_tp_m_write(MI10_PRO_screen_init_data3, sizeof(MI10_PRO_screen_init_data3));//0xA2,0x02,0x00 +00008e 482c LDR r0,|L1.320| +000090 2103 MOVS r1,#3 +000092 1cc0 ADDS r0,r0,#3 +000094 f7fffffe BL app_tp_m_write + |L1.152| +;;;468 while(!hal_i2c_m_transfer_complate()); +000098 f7fffffe BL hal_i2c_m_transfer_complate +00009c 2800 CMP r0,#0 +00009e d0fb BEQ |L1.152| +;;;469 delayMs(1); +0000a0 2001 MOVS r0,#1 +0000a2 f7fffffe BL delayMs +;;;470 app_tp_m_write(MI10_PRO_screen_init_data4, sizeof(MI10_PRO_screen_init_data4));//0xC0,0x07,0x01 +0000a6 4826 LDR r0,|L1.320| +0000a8 2103 MOVS r1,#3 +0000aa 1d80 ADDS r0,r0,#6 +0000ac f7fffffe BL app_tp_m_write + |L1.176| +;;;471 while(!hal_i2c_m_transfer_complate()); +0000b0 f7fffffe BL hal_i2c_m_transfer_complate +0000b4 2800 CMP r0,#0 +0000b6 d0fb BEQ |L1.176| +;;;472 delayMs(1); +0000b8 2001 MOVS r0,#1 +0000ba f7fffffe BL delayMs +;;;473 app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); +0000be 2308 MOVS r3,#8 +0000c0 4a1d LDR r2,|L1.312| +0000c2 2101 MOVS r1,#1 +0000c4 6828 LDR r0,[r5,#0] ; screen_reg_int_data +0000c6 f7fffffe BL app_tp_m_read + |L1.202| +;;;474 while(!hal_i2c_m_transfer_complate()); +0000ca f7fffffe BL hal_i2c_m_transfer_complate +0000ce 2800 CMP r0,#0 +0000d0 d0fb BEQ |L1.202| +;;;475 if(s_screen_read_buffer[7]>0) +0000d2 79f8 LDRB r0,[r7,#7] ; s_screen_read_buffer +0000d4 2800 CMP r0,#0 +0000d6 d00a BEQ |L1.238| +;;;476 { +;;;477 len=s_screen_read_buffer[7]*8; +0000d8 06c0 LSLS r0,r0,#27 +0000da 0e03 LSRS r3,r0,#24 +;;;478 app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, len); +0000dc 4a16 LDR r2,|L1.312| +0000de 2101 MOVS r1,#1 +0000e0 6828 LDR r0,[r5,#0] ; screen_reg_int_data +0000e2 f7fffffe BL app_tp_m_read + |L1.230| +;;;479 while(!hal_i2c_m_transfer_complate()); +0000e6 f7fffffe BL hal_i2c_m_transfer_complate +0000ea 2800 CMP r0,#0 +0000ec d0fb BEQ |L1.230| + |L1.238| +;;;480 } +;;;481 } +;;;482 #endif +;;;483 if(hal_gpio_get_input_data(g_screen_input_int_pad)) +0000ee 7820 LDRB r0,[r4,#0] ; g_screen_input_int_pad +0000f0 f7fffffe BL hal_gpio_get_input_data +0000f4 2800 CMP r0,#0 +0000f6 d01b BEQ |L1.304| +;;;484 { +;;;485 s_screen_init_complate = true; +0000f8 4911 LDR r1,|L1.320| +0000fa 2001 MOVS r0,#1 +0000fc 3908 SUBS r1,r1,#8 +0000fe 7108 STRB r0,[r1,#4] +000100 4601 MOV r1,r0 +000102 2200 MOVS r2,#0 +000104 7820 LDRB r0,[r4,#0] ; g_screen_input_int_pad +000106 f7fffffe BL hal_gpio_set_pull_state +00010a 2100 MOVS r1,#0 +00010c 7820 LDRB r0,[r4,#0] ; g_screen_input_int_pad +00010e f7fffffe BL hal_gpio_ctrl_eint +000112 2103 MOVS r1,#3 +000114 7820 LDRB r0,[r4,#0] ; g_screen_input_int_pad +000116 f7fffffe BL hal_gpio_init_eint +00011a 490a LDR r1,|L1.324| +00011c 7820 LDRB r0,[r4,#0] ; g_screen_input_int_pad +00011e f7fffffe BL hal_gpio_reg_eint_cb +000122 2101 MOVS r1,#1 +000124 7820 LDRB r0,[r4,#0] ; g_screen_input_int_pad +000126 f7fffffe BL hal_gpio_ctrl_eint +;;;486 app_tp_screen_int_init(); +;;;487 phone_start_flag=0; +00012a 4907 LDR r1,|L1.328| +00012c 2000 MOVS r0,#0 +00012e 7008 STRB r0,[r1,#0] + |L1.304| +;;;488 } +;;;489 } +;;;490 } +000130 bdf8 POP {r3-r7,pc} +;;;491 + ENDP + +000132 0000 DCW 0x0000 + |L1.308| + DCD screen_reg_int_data + |L1.312| + DCD ||.bss|| + |L1.316| + DCD g_screen_input_int_pad + |L1.320| + DCD ||.data||+0x8 + |L1.324| + DCD app_tp_screen_int_callback + |L1.328| + DCD phone_start_flag + + AREA ||i.ap_tp_calibration||, CODE, READONLY, ALIGN=2 + + ap_tp_calibration PROC +;;;610 +;;;611 void ap_tp_calibration(void) +000000 b510 PUSH {r4,lr} +;;;612 { +;;;613 // app_tp_m_write(MI10_PRO_TP_Tuning_data1, sizeof(MI10_PRO_TP_Tuning_data1)); // System Reset +;;;614 // while(!hal_i2c_m_transfer_complate()); +;;;615 // delayMs(10); +;;;616 app_tp_m_write(MI10_PRO_TP_Tuning_data2, sizeof(MI10_PRO_TP_Tuning_data2)); // FPnl Init +000002 2103 MOVS r1,#3 +000004 4829 LDR r0,|L2.172| +000006 f7fffffe BL app_tp_m_write + |L2.10| +;;;617 while(!hal_i2c_m_transfer_complate()); +00000a f7fffffe BL hal_i2c_m_transfer_complate +00000e 2800 CMP r0,#0 +000010 d0fb BEQ |L2.10| +;;;618 delayMs(1); +000012 2001 MOVS r0,#1 +000014 f7fffffe BL delayMs +;;;619 app_tp_m_write(MI10_PRO_TP_Tuning_data3, sizeof(MI10_PRO_TP_Tuning_data3)); // Pnl Init +000018 4824 LDR r0,|L2.172| +00001a 2103 MOVS r1,#3 +00001c 1cc0 ADDS r0,r0,#3 +00001e f7fffffe BL app_tp_m_write + |L2.34| +;;;620 while(!hal_i2c_m_transfer_complate()); +000022 f7fffffe BL hal_i2c_m_transfer_complate +000026 2800 CMP r0,#0 +000028 d0fb BEQ |L2.34| +;;;621 delayMs(1); +00002a 2001 MOVS r0,#1 +00002c f7fffffe BL delayMs +;;;622 app_tp_m_write(MI10_PRO_TP_Tuning_data4, sizeof(MI10_PRO_TP_Tuning_data4)); // TuneM +000030 481e LDR r0,|L2.172| +000032 2104 MOVS r1,#4 +000034 300f ADDS r0,r0,#0xf +000036 f7fffffe BL app_tp_m_write + |L2.58| +;;;623 while(!hal_i2c_m_transfer_complate()); +00003a f7fffffe BL hal_i2c_m_transfer_complate +00003e 2800 CMP r0,#0 +000040 d0fb BEQ |L2.58| +;;;624 delayMs(1); +000042 2001 MOVS r0,#1 +000044 f7fffffe BL delayMs +;;;625 app_tp_m_write(MI10_PRO_TP_Tuning_data5, sizeof(MI10_PRO_TP_Tuning_data5)); // TuneS +000048 4818 LDR r0,|L2.172| +00004a 2104 MOVS r1,#4 +00004c 3013 ADDS r0,r0,#0x13 +00004e f7fffffe BL app_tp_m_write + |L2.82| +;;;626 while(!hal_i2c_m_transfer_complate()); +000052 f7fffffe BL hal_i2c_m_transfer_complate +000056 2800 CMP r0,#0 +000058 d0fb BEQ |L2.82| +;;;627 delayMs(1); +00005a 2001 MOVS r0,#1 +00005c f7fffffe BL delayMs +;;;628 app_tp_m_write(MI10_PRO_TP_Tuning_data6, sizeof(MI10_PRO_TP_Tuning_data6)); // SvCfg +000060 4812 LDR r0,|L2.172| +000062 2103 MOVS r1,#3 +000064 1d80 ADDS r0,r0,#6 +000066 f7fffffe BL app_tp_m_write + |L2.106| +;;;629 while(!hal_i2c_m_transfer_complate()); +00006a f7fffffe BL hal_i2c_m_transfer_complate +00006e 2800 CMP r0,#0 +000070 d0fb BEQ |L2.106| +;;;630 delayMs(1); +000072 2001 MOVS r0,#1 +000074 f7fffffe BL delayMs +;;;631 app_tp_m_write(MI10_PRO_TP_Tuning_data7, sizeof(MI10_PRO_TP_Tuning_data7)); // SvCx +000078 480c LDR r0,|L2.172| +00007a 2103 MOVS r1,#3 +00007c 3009 ADDS r0,r0,#9 +00007e f7fffffe BL app_tp_m_write + |L2.130| +;;;632 while(!hal_i2c_m_transfer_complate()); +000082 f7fffffe BL hal_i2c_m_transfer_complate +000086 2800 CMP r0,#0 +000088 d0fb BEQ |L2.130| +;;;633 delayMs(1); +00008a 2001 MOVS r0,#1 +00008c f7fffffe BL delayMs +;;;634 app_tp_m_write(MI10_PRO_TP_Tuning_data8, sizeof(MI10_PRO_TP_Tuning_data8)); // SvPnl +000090 4806 LDR r0,|L2.172| +000092 2103 MOVS r1,#3 +000094 300c ADDS r0,r0,#0xc +000096 f7fffffe BL app_tp_m_write + |L2.154| +;;;635 while(!hal_i2c_m_transfer_complate()); +00009a f7fffffe BL hal_i2c_m_transfer_complate +00009e 2800 CMP r0,#0 +0000a0 d0fb BEQ |L2.154| +;;;636 delayMs(1); +0000a2 2001 MOVS r0,#1 +0000a4 f7fffffe BL delayMs +;;;637 } +0000a8 bd10 POP {r4,pc} +;;;638 + ENDP + +0000aa 0000 DCW 0x0000 + |L2.172| + DCD ||.data||+0x11 + + AREA ||i.app_tp_I2C_init||, CODE, READONLY, ALIGN=2 + + app_tp_I2C_init PROC +;;;172 +;;;173 void app_tp_I2C_init(void) +000000 b510 PUSH {r4,lr} +;;;174 { +;;;175 hal_i2c_s_init(CHIP_I2C_ADDRESS, CHIP_I2C_ADDR_BITS); +000002 2107 MOVS r1,#7 +000004 2048 MOVS r0,#0x48 +000006 f7fffffe BL hal_i2c_s_init +;;;176 hal_i2c_s_set_transfer(app_tp_i2cs_callback); +00000a 4804 LDR r0,|L3.28| +00000c f7fffffe BL hal_i2c_s_set_transfer +;;;177 hal_i2c_s_nonblocking_read(s_phone_read_buffer, BUFFER_SIZE_MAX); //先配置接收 buffer +000010 21c8 MOVS r1,#0xc8 +000012 4803 LDR r0,|L3.32| +000014 f7fffffe BL hal_i2c_s_nonblocking_read +;;;178 } +000018 bd10 POP {r4,pc} +;;;179 + ENDP + +00001a 0000 DCW 0x0000 + |L3.28| + DCD app_tp_i2cs_callback + |L3.32| + DCD ||.bss||+0xc8 + + AREA ||i.app_tp_i2cs_callback||, CODE, READONLY, ALIGN=2 + + app_tp_i2cs_callback PROC +;;;366 //recieve_num为接收到的指令个数 +;;;367 static void app_tp_i2cs_callback(e_i2c_s_int_status int_status, size_t recieve_num) +000000 b57c PUSH {r2-r6,lr} +000002 2400 MOVS r4,#0 +;;;368 { +000004 4605 MOV r5,r0 +000006 9400 STR r4,[sp,#0] +000008 2900 CMP r1,#0 +00000a d004 BEQ |L4.22| +00000c 466b MOV r3,sp +00000e aa01 ADD r2,sp,#4 +000010 481d LDR r0,|L4.136| +000012 f7fffffe BL app_tp_phone_analysis_data + |L4.22| +000016 21c8 MOVS r1,#0xc8 +000018 481b LDR r0,|L4.136| +00001a f7fffffe BL app_tp_s_read +00001e 9900 LDR r1,[sp,#0] +000020 2900 CMP r1,#0 +000022 d002 BEQ |L4.42| +000024 9801 LDR r0,[sp,#4] +000026 f7fffffe BL app_tp_s_write + |L4.42| +;;;369 #if 0 // 1: test +;;;370 if (int_status >2) +;;;371 { +;;;372 s_phone_read_buffer[2]=int_status; +;;;373 s_phone_read_buffer[3]=recieve_num; +;;;374 app_tp_m_write(s_phone_read_buffer, 4); +;;;375 } +;;;376 #endif +;;;377 +;;;378 app_tp_transfer_phone(recieve_num); +;;;379 if((s_phone_read_buffer[0]==0x02)&&(s_phone_read_buffer[1]==0x11)&&(int_status==I2C_S_INT_STOP)&&(send_point==0)&&(fingerprint_enable==1)) +00002a 4817 LDR r0,|L4.136| +00002c 7801 LDRB r1,[r0,#0] ; s_phone_read_buffer +00002e 2902 CMP r1,#2 +000030 d129 BNE |L4.134| +000032 7840 LDRB r0,[r0,#1] ; s_phone_read_buffer +000034 2811 CMP r0,#0x11 +000036 d126 BNE |L4.134| +000038 2d02 CMP r5,#2 +00003a d124 BNE |L4.134| +00003c 4813 LDR r0,|L4.140| +00003e 7800 LDRB r0,[r0,#0] ; send_point +000040 2800 CMP r0,#0 +000042 d120 BNE |L4.134| +000044 4d12 LDR r5,|L4.144| +000046 7828 LDRB r0,[r5,#0] ; fingerprint_enable +000048 2801 CMP r0,#1 +00004a d11c BNE |L4.134| +;;;380 { +;;;381 hal_gpio_set_output_data(g_phone_output_int_pad, IO_LVL_LOW); +00004c 4811 LDR r0,|L4.148| +00004e 2100 MOVS r1,#0 +000050 7800 LDRB r0,[r0,#0] ; g_phone_output_int_pad +000052 f7fffffe BL hal_gpio_set_output_data +;;;382 phone_reg_coord_back[0] = 0x8C; +000056 4810 LDR r0,|L4.152| +000058 218c MOVS r1,#0x8c +00005a 7001 STRB r1,[r0,#0] +;;;383 phone_reg_coord_back[1] = 0xF1; +00005c 21f1 MOVS r1,#0xf1 +00005e 7041 STRB r1,[r0,#1] +;;;384 phone_reg_coord_back[2] = 0x02; +000060 2102 MOVS r1,#2 +000062 7081 STRB r1,[r0,#2] +;;;385 phone_reg_coord_back[3] = 0x4E; +000064 224e MOVS r2,#0x4e +000066 70c2 STRB r2,[r0,#3] +;;;386 phone_reg_coord_back[4] = 0x02; +000068 7101 STRB r1,[r0,#4] +;;;387 phone_reg_coord_back[5] = 0x21; +00006a 2121 MOVS r1,#0x21 +00006c 7141 STRB r1,[r0,#5] +;;;388 phone_reg_coord_back[6] = 0x85; +00006e 2185 MOVS r1,#0x85 +000070 7181 STRB r1,[r0,#6] +;;;389 phone_reg_coord_back[7] = 0x30; +000072 2130 MOVS r1,#0x30 +000074 71c1 STRB r1,[r0,#7] +;;;390 phone_reg_coord_back[8] = 0x00; +000076 7204 STRB r4,[r0,#8] +;;;391 phone_reg_coord_back[9] = 0x00; +000078 7244 STRB r4,[r0,#9] +;;;392 phone_reg_coord_back[10] = 0x00; +00007a 7284 STRB r4,[r0,#0xa] +;;;393 phone_reg_coord_back[11] = 0xFE; +00007c 21fe MOVS r1,#0xfe +00007e 72c1 STRB r1,[r0,#0xb] +;;;394 phone_reg_coord_back[12] = 0x22; +000080 2122 MOVS r1,#0x22 +000082 7301 STRB r1,[r0,#0xc] +;;;395 fingerprint_enable=0; +000084 702c STRB r4,[r5,#0] + |L4.134| +;;;396 } +;;;397 // else if (int_status==I2C_S_INT_STOP) +;;;398 // { +;;;399 // TAU_LOGD("s_phone_read_buffer[0]=0x%x, s_phone_read_buffer[1]=0x%x send_point=%d, fingerprint_enable=%d", s_phone_read_buffer[0], s_phone_read_buffer[1], send_point, fingerprint_enable); +;;;400 // } +;;;401 } +000086 bd7c POP {r2-r6,pc} +;;;402 #endif + ENDP + + |L4.136| + DCD ||.bss||+0xc8 + |L4.140| + DCD send_point + |L4.144| + DCD fingerprint_enable + |L4.148| + DCD g_phone_output_int_pad + |L4.152| + DCD phone_reg_coord_back + + AREA ||i.app_tp_init||, CODE, READONLY, ALIGN=2 + + app_tp_init PROC +;;;189 **************************************************************************/ +;;;190 void app_tp_init(void) +000000 b510 PUSH {r4,lr} +;;;191 { +;;;192 #ifdef DISABLE_TDDI_I2C_FUNCTION +;;;193 hal_gpio_init_output(g_phone_output_int_pad, IO_LVL_HIGH); //配置phone报点输出中断IO口 +;;;194 hal_gpio_init_output(g_screen_input_rst_pad, IO_LVL_HIGH); //配置模组TP RESET +;;;195 +;;;196 hal_gpio_set_mode(IO_PAD_TD_SPIM_CLK,IO_MODE_I2C1_SCL); +;;;197 hal_gpio_set_mode(IO_PAD_TD_SPIM_CSN,IO_MODE_I2C1_SDA); +;;;198 +;;;199 return; +;;;200 #else +;;;201 hal_gpio_set_pull_state(IO_PAD_TD_SPIM_CLK, ENABLE, DISABLE); +000002 2200 MOVS r2,#0 +000004 2101 MOVS r1,#1 +000006 2018 MOVS r0,#0x18 +000008 f7fffffe BL hal_gpio_set_pull_state +;;;202 hal_gpio_set_pull_state(IO_PAD_TD_SPIM_CSN, ENABLE, DISABLE); +00000c 2200 MOVS r2,#0 +00000e 2101 MOVS r1,#1 +000010 2019 MOVS r0,#0x19 +000012 f7fffffe BL hal_gpio_set_pull_state +;;;203 #endif +;;;204 +;;;205 app_tp_screen_init(); //初始化手机复位的IO口 +000016 f7fffffe BL app_tp_screen_init +;;;206 //app_tp_screen_int_init(); //配置screen中断输入引脚 +;;;207 #ifdef G_PHONE_INT_DEFAULT_LOW +;;;208 hal_gpio_init_output(g_phone_output_int_pad, IO_LVL_LOW); //配置phone报点输出中断IO口 +;;;209 #else +;;;210 hal_gpio_init_output(g_phone_output_int_pad, IO_LVL_HIGH); //配置phone报点输出中断IO口 +00001a 4807 LDR r0,|L5.56| +00001c 2101 MOVS r1,#1 +00001e 7800 LDRB r0,[r0,#0] ; g_phone_output_int_pad +000020 f7fffffe BL hal_gpio_init_output +;;;211 #endif +;;;212 hal_gpio_init_input(g_screen_input_int_pad); +000024 4805 LDR r0,|L5.60| +000026 7800 LDRB r0,[r0,#0] ; g_screen_input_int_pad +000028 f7fffffe BL hal_gpio_init_input +;;;213 // hal_gpio_init_output(g_screen_input_rst_pad, IO_LVL_HIGH); //配置模组TP RESET +;;;214 +;;;215 #if SCREEN_MASTER_TRANSFER_I2C +;;;216 hal_i2c_m_dma_init(SCREEN_I2C_ADDRESS, SCREEN_I2C_ADDR_BITS, I2C_MASTER_SPEED); +00002c 4a04 LDR r2,|L5.64| +00002e 2107 MOVS r1,#7 +000030 2049 MOVS r0,#0x49 +000032 f7fffffe BL hal_i2c_m_dma_init +;;;217 #elif SCREEN_MASTER_TRANSFER_SPI +;;;218 hal_spi_m_dma_init(SPI_MASTER_SPEED, SCREEN_SPI_CPHA, SCREEN_SPI_CPOL); +;;;219 #endif +;;;220 +;;;221 #if PHONE_SLAVE_TRANSFER_I2C +;;;222 // hal_i2c_s_init(CHIP_I2C_ADDRESS, CHIP_I2C_ADDR_BITS); +;;;223 // hal_i2c_s_set_transfer(app_tp_i2cs_callback); +;;;224 // hal_i2c_s_nonblocking_read(s_phone_read_buffer, BUFFER_SIZE_MAX); //先配置接收 buffer +;;;225 #elif PHONE_SLAVE_TRANSFER_SPI +;;;226 hal_spi_slave_init(PHONE_SPI_CPHA, PHONE_SPI_CPOL, true); // 初始化spi以及dma +;;;227 hal_spi_slave_register_callback(app_tp_spis_callback); // 注册回调 +;;;228 hal_spi_slave_auto_transfer_abort(); // 停止传输 +;;;229 hal_spi_slave_flush_fifo(); // Flush FIFO +;;;230 +;;;231 /* 每个packet自动接收, circle mode 为false, 即收到buffer max size数据后buffer不再更新, packet完成后调用回调 */ +;;;232 hal_spi_slave_set_auto_rx_buffer(s_phone_read_buffer, BUFFER_SIZE_MAX, false); // 设置auto rx buffer +;;;233 hal_spi_slave_set_auto_tx_buffer(phone_reg_const_data[0].write_back, phone_reg_const_data[0].write_back_size, false); // 配置TX BUFFER +;;;234 +;;;235 hal_spi_slave_enable(); // 启动spis +;;;236 hal_spi_slave_auto_transfer_start(); // 启动rx自动接收 +;;;237 #endif +;;;238 } +000036 bd10 POP {r4,pc} +;;;239 + ENDP + + |L5.56| + DCD g_phone_output_int_pad + |L5.60| + DCD g_screen_input_int_pad + |L5.64| + DCD 0x000c3500 + + AREA ||i.app_tp_m_read||, CODE, READONLY, ALIGN=1 + + app_tp_m_read PROC +;;;304 **************************************************************************/ +;;;305 void app_tp_m_read(const uint8_t *cmd, size_t cmd_size, uint8_t *data_buffer, size_t data_size) +000000 b5f8 PUSH {r3-r7,lr} +;;;306 { +000002 4606 MOV r6,r0 +;;;307 #if SCREEN_MASTER_TRANSFER_I2C +;;;308 uint8_t i = 0; +000004 2400 MOVS r4,#0 +;;;309 uint32_t address = 0; +000006 4620 MOV r0,r4 +000008 e005 B |L6.22| + |L6.10| +;;;310 +;;;311 for (i = 0; i < cmd_size; i++) //先将要发送的数据整合到 address +;;;312 { +;;;313 address |= (uint32_t)cmd[i] << i * 8; +00000a 5d35 LDRB r5,[r6,r4] +00000c 00e7 LSLS r7,r4,#3 +00000e 40bd LSLS r5,r5,r7 +000010 4328 ORRS r0,r0,r5 +000012 1c64 ADDS r4,r4,#1 +000014 b2e4 UXTB r4,r4 ;311 + |L6.22| +000016 428c CMP r4,r1 ;311 +000018 d3f7 BCC |L6.10| +;;;314 } +;;;315 hal_i2c_m_dma_read(address, cmd_size, data_buffer, data_size); +00001a f7fffffe BL hal_i2c_m_dma_read +;;;316 #elif SCREEN_MASTER_TRANSFER_SPI +;;;317 hal_spi_m_dma_read(cmd, cmd_size, data_buffer, data_size); +;;;318 #endif +;;;319 } +00001e bdf8 POP {r3-r7,pc} +;;;320 + ENDP + + + AREA ||i.app_tp_m_transfer_complate||, CODE, READONLY, ALIGN=1 + + app_tp_m_transfer_complate PROC +;;;247 **************************************************************************/ +;;;248 bool app_tp_m_transfer_complate(void) +000000 b510 PUSH {r4,lr} +;;;249 { +;;;250 #if SCREEN_MASTER_TRANSFER_I2C +;;;251 return hal_i2c_m_transfer_complate(); +000002 f7fffffe BL hal_i2c_m_transfer_complate +;;;252 #elif SCREEN_MASTER_TRANSFER_SPI +;;;253 return hal_spi_m_get_transfer_complate(); +;;;254 #else +;;;255 return true; +;;;256 #endif +;;;257 } +000006 bd10 POP {r4,pc} +;;;258 + ENDP + + + AREA ||i.app_tp_m_write||, CODE, READONLY, ALIGN=1 + + app_tp_m_write PROC +;;;284 **************************************************************************/ +;;;285 void app_tp_m_write(const uint8_t *txbuffer, size_t buffer_size) +000000 b510 PUSH {r4,lr} +;;;286 { +;;;287 #if SCREEN_MASTER_TRANSFER_I2C +;;;288 hal_i2c_m_dma_write(txbuffer, buffer_size); +000002 f7fffffe BL hal_i2c_m_dma_write +;;;289 #elif SCREEN_MASTER_TRANSFER_SPI +;;;290 hal_spi_m_dma_write(txbuffer, buffer_size); +;;;291 s_spim_write = true; +;;;292 #endif +;;;293 } +000006 bd10 POP {r4,pc} +;;;294 + ENDP + + + AREA ||i.app_tp_phone_clear_reset_on||, CODE, READONLY, ALIGN=2 + + app_tp_phone_clear_reset_on PROC +;;;778 **************************************************************************/ +;;;779 void app_tp_phone_clear_reset_on(void) +000000 4901 LDR r1,|L9.8| +;;;780 { +;;;781 s_phone_reset_flag = false; +000002 2000 MOVS r0,#0 +000004 7088 STRB r0,[r1,#2] +;;;782 } +000006 4770 BX lr +;;;783 + ENDP + + |L9.8| + DCD ||.data|| + + AREA ||i.app_tp_phone_reset_on||, CODE, READONLY, ALIGN=2 + + app_tp_phone_reset_on PROC +;;;766 **************************************************************************/ +;;;767 bool app_tp_phone_reset_on(void) +000000 4801 LDR r0,|L10.8| +;;;768 { +;;;769 return s_phone_reset_flag; +000002 7880 LDRB r0,[r0,#2] ; s_phone_reset_flag +;;;770 } +000004 4770 BX lr +;;;771 + ENDP + +000006 0000 DCW 0x0000 + |L10.8| + DCD ||.data|| + + AREA ||i.app_tp_s_read||, CODE, READONLY, ALIGN=1 + + app_tp_s_read PROC +;;;349 **************************************************************************/ +;;;350 void app_tp_s_read(void *rxBuffer, size_t data_size) +000000 b510 PUSH {r4,lr} +;;;351 { +;;;352 #if PHONE_SLAVE_TRANSFER_I2C +;;;353 hal_i2c_s_nonblocking_read(rxBuffer, data_size); +000002 f7fffffe BL hal_i2c_s_nonblocking_read +;;;354 #endif +;;;355 } +000006 bd10 POP {r4,pc} +;;;356 + ENDP + + + AREA ||i.app_tp_s_transfer_complate||, CODE, READONLY, ALIGN=1 + + app_tp_s_transfer_complate PROC +;;;265 **************************************************************************/ +;;;266 bool app_tp_s_transfer_complate(void) +000000 b510 PUSH {r4,lr} +;;;267 { +;;;268 #if SCREEN_MASTER_TRANSFER_I2C +;;;269 return hal_i2c_s_write_complate() && hal_i2c_s_read_complate(); +000002 f7fffffe BL hal_i2c_s_write_complate +000006 2800 CMP r0,#0 +000008 d005 BEQ |L12.22| +00000a f7fffffe BL hal_i2c_s_read_complate +00000e 2800 CMP r0,#0 +000010 d001 BEQ |L12.22| +000012 2001 MOVS r0,#1 +;;;270 #elif SCREEN_MASTER_TRANSFER_SPI +;;;271 return !hal_spi_slave_busy(); +;;;272 #else +;;;273 return true; +;;;274 #endif +;;;275 } +000014 bd10 POP {r4,pc} + |L12.22| +000016 2000 MOVS r0,#0 ;269 +000018 bd10 POP {r4,pc} +;;;276 + ENDP + + + AREA ||i.app_tp_s_write||, CODE, READONLY, ALIGN=1 + + app_tp_s_write PROC +;;;328 **************************************************************************/ +;;;329 void app_tp_s_write(const uint8_t *txbuffer, size_t buffer_size) +000000 b510 PUSH {r4,lr} +;;;330 { +;;;331 #if PHONE_SLAVE_TRANSFER_I2C +;;;332 hal_i2c_s_dma_write(txbuffer, buffer_size); +000002 f7fffffe BL hal_i2c_s_dma_write +;;;333 #elif PHONE_SLAVE_TRANSFER_SPI +;;;334 //while (hal_spi_slave_busy()); +;;;335 hal_spi_slave_auto_transfer_abort(); +;;;336 hal_spi_slave_flush_fifo(); +;;;337 hal_spi_slave_set_auto_tx_buffer(txbuffer, buffer_size, true); +;;;338 hal_spi_slave_auto_transfer_start(); +;;;339 #endif +;;;340 } +000006 bd10 POP {r4,pc} +;;;341 + ENDP + + + AREA ||i.app_tp_screen_init||, CODE, READONLY, ALIGN=2 + + app_tp_screen_init PROC +;;;163 **************************************************************************/ +;;;164 void app_tp_screen_init(void) +000000 b510 PUSH {r4,lr} +;;;165 { +;;;166 hal_gpio_init_output(g_screen_input_rst_pad, IO_LVL_HIGH); +000002 4c0a LDR r4,|L14.44| +000004 2101 MOVS r1,#1 +000006 7820 LDRB r0,[r4,#0] ; g_screen_input_rst_pad +000008 f7fffffe BL hal_gpio_init_output +;;;167 delayUs(200); +00000c 20c8 MOVS r0,#0xc8 +00000e f7fffffe BL delayUs +;;;168 hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_LOW); +000012 2100 MOVS r1,#0 +000014 7820 LDRB r0,[r4,#0] ; g_screen_input_rst_pad +000016 f7fffffe BL hal_gpio_set_output_data +;;;169 delayUs(200); +00001a 20c8 MOVS r0,#0xc8 +00001c f7fffffe BL delayUs +;;;170 hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_HIGH); +000020 2101 MOVS r1,#1 +000022 7820 LDRB r0,[r4,#0] ; g_screen_input_rst_pad +000024 f7fffffe BL hal_gpio_set_output_data +;;;171 } +000028 bd10 POP {r4,pc} +;;;172 + ENDP + +00002a 0000 DCW 0x0000 + |L14.44| + DCD g_screen_input_rst_pad + + AREA ||i.app_tp_screen_int_callback||, CODE, READONLY, ALIGN=2 + + app_tp_screen_int_callback PROC +;;;81 **************************************************************************/ +;;;82 static void app_tp_screen_int_callback(void *data) +000000 4901 LDR r1,|L15.8| +;;;83 { +;;;84 s_screen_int_flag = true; +000002 2001 MOVS r0,#1 +000004 7048 STRB r0,[r1,#1] +;;;85 } +000006 4770 BX lr +;;;86 + ENDP + + |L15.8| + DCD ||.data|| + + AREA ||i.app_tp_transfer_screen_const||, CODE, READONLY, ALIGN=2 + + app_tp_transfer_screen_const PROC +;;;502 **************************************************************************/ +;;;503 static void app_tp_transfer_screen_const(void) +000000 b510 PUSH {r4,lr} +000002 f7fffffe BL hal_i2c_m_transfer_complate +;;;504 { +;;;505 // static bool screen_const_transfer_buffer_ready = true; //发送 buffer 是否已准备好 +;;;506 uint8_t ii; +;;;507 // uint8_t len=0; +;;;508 /**** 1. 判断当前状态通信已结束, 状态通信已结束,并且开机初始化流程还未走完****/ +;;;509 #if 0 // test +;;;510 uint8_t test_master_read_buffer[10] = {0x08, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}; +;;;511 uint8_t write_buffer[10] = {0x04, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}; +;;;512 +;;;513 // for (ii =0x20; ii<0x7F; ii++) +;;;514 { +;;;515 //hal_i2c_m_dma_init(ii, SCREEN_I2C_ADDR_BITS); +;;;516 //delayMs(100); +;;;517 if (hal_i2c_m_dma_write(write_buffer, 1)) +;;;518 { +;;;519 //break; +;;;520 } +;;;521 while(!hal_i2c_m_transfer_complate()); +;;;522 hal_i2c_m_dma_read(test_master_read_buffer, 1, test_master_read_buffer, 2); +;;;523 } +;;;524 #endif +;;;525 +;;;526 +;;;527 if (app_tp_m_transfer_complate() && (s_screen_const_transfer_count < screen_reg_start_data_size)) +000006 2800 CMP r0,#0 +000008 d012 BEQ |L16.48| +00000a 4c0a LDR r4,|L16.52| +00000c 490a LDR r1,|L16.56| +00000e 7960 LDRB r0,[r4,#5] ; s_screen_const_transfer_count +000010 7809 LDRB r1,[r1,#0] ; screen_reg_start_data_size +000012 4288 CMP r0,r1 +000014 d20c BCS |L16.48| +;;;528 { +;;;529 if (s_spim_write) //SPI 写数据后需要把接收FIFO的数据读出,不然会影响下一次读取 +000016 7820 LDRB r0,[r4,#0] ; s_spim_write +000018 2800 CMP r0,#0 +00001a d003 BEQ |L16.36| +;;;530 { +;;;531 hal_spi_m_clear_rxfifo(); +00001c f7fffffe BL hal_spi_m_clear_rxfifo +;;;532 s_spim_write = false; +000020 2000 MOVS r0,#0 +000022 7020 STRB r0,[r4,#0] + |L16.36| +;;;533 } +;;;534 +;;;535 #if 1 +;;;536 +;;;537 // #ifndef USE_FOR_SUMSUNG_S20 +;;;538 // for (ii =0; ii= screen_reg_start_data_size) +;;;595 { +;;;596 s_screen_init_complate = true; +;;;597 } +;;;598 } +;;;599 #endif +;;;600 } +;;;601 } +000030 bd10 POP {r4,pc} +;;;602 + ENDP + +000032 0000 DCW 0x0000 + |L16.52| + DCD ||.data|| + |L16.56| + DCD screen_reg_start_data_size + |L16.60| + DCD phone_start_flag + + AREA ||i.app_tp_transfer_screen_int||, CODE, READONLY, ALIGN=2 + + app_tp_transfer_screen_int PROC +;;;666 **************************************************************************/ +;;;667 void app_tp_transfer_screen_int(void) +000000 b5f8 PUSH {r3-r7,lr} +;;;668 { +;;;669 uint8_t len=0,number=0; +;;;670 uint8_t temp_len=0; +;;;671 +;;;672 bool screen_gpio_int = false; +;;;673 static uint8_t screen_int_transfer_count = 0; //记录当前通信到哪一步 +;;;674 static bool screen_int_transfer_buffer_ready = true; //发送 buffer 是否已准备好 +;;;675 // static uint8_t test_flag = 0; +;;;676 // s_screen_init_complate=false;//为了在线烧录,特意将码片设置为不下发数据,而是FT8719与敦泰的工具通讯 +;;;677 if (!s_screen_init_complate) //TP 初始化还未完成,则先进行初始化操作 +000002 4d3e LDR r5,|L17.252| +000004 2700 MOVS r7,#0 ;670 +000006 7928 LDRB r0,[r5,#4] ; s_screen_init_complate +000008 2800 CMP r0,#0 +00000a d003 BEQ |L17.20| +;;;678 { +;;;679 app_tp_transfer_screen_const(); +;;;680 return; +;;;681 } +;;;682 +;;;683 +;;;684 /**** 1. 判断 screen 是否发出中断信号 ****/ +;;;685 // s_screen_int_flag: 中断信号标志位 +;;;686 // app_tp_screen_int_lvl_low : SPI 长时间通信时,偶尔会出现cs拉高导致通信异常卡死,该标志位用于解决卡死的问题 +;;;687 screen_gpio_int = (s_screen_int_flag || app_tp_screen_int_lvl_low()); +00000c 7868 LDRB r0,[r5,#1] ; s_screen_int_flag +00000e 2800 CMP r0,#0 +000010 d10b BNE |L17.42| +000012 e002 B |L17.26| + |L17.20| +000014 f7fffffe BL app_tp_transfer_screen_const + |L17.24| +;;;688 if (screen_gpio_int) +;;;689 { +;;;690 s_screen_int_flag = false; +;;;691 +;;;692 app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); +;;;693 while(!hal_i2c_m_transfer_complate()); +;;;694 if(s_screen_read_buffer[7]>0) +;;;695 { +;;;696 len=s_screen_read_buffer[7]*8; +;;;697 app_tp_m_read(screen_reg_int_data[0].buffer, 1, &s_screen_read_buffer[8], len); +;;;698 while(!hal_i2c_m_transfer_complate()); +;;;699 temp_len=len+7; +;;;700 } +;;;701 if(s_screen_read_buffer[temp_len]>0) +;;;702 { +;;;703 len=s_screen_read_buffer[7]*8; +;;;704 app_tp_m_read(screen_reg_int_data[0].buffer, 1, &s_screen_read_buffer[temp_len+1], len); +;;;705 while(!hal_i2c_m_transfer_complate()); +;;;706 } +;;;707 delayUs(100); +;;;708 +;;;709 while(!hal_gpio_get_input_data(g_screen_input_int_pad)) +;;;710 { +;;;711 app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); +;;;712 while(!hal_i2c_m_transfer_complate()); +;;;713 delayUs(100); +;;;714 if(s_screen_read_buffer[7]>0) +;;;715 { +;;;716 len=s_screen_read_buffer[7]*8; +;;;717 app_tp_m_read(screen_reg_int_data[0].buffer, 1, &s_screen_read_buffer[8], len); +;;;718 while(!hal_i2c_m_transfer_complate()); +;;;719 delayUs(100); +;;;720 } +;;;721 } +;;;722 +;;;723 screen_int_transfer_buffer_ready = true; +;;;724 screen_int_transfer_count = app_tp_screen_analysis_int(screen_int_transfer_count, s_screen_read_buffer,screen_reg_int_data[2].rxbuffer_size); +;;;725 screen_int_transfer_count = 0; +;;;726 s_screen_int_transfer_status = false; +;;;727 } +;;;728 } +000018 bdf8 POP {r3-r7,pc} + |L17.26| +00001a 4839 LDR r0,|L17.256| +00001c 7800 LDRB r0,[r0,#0] ; g_screen_input_int_pad +00001e f7fffffe BL hal_gpio_get_input_data +000022 2800 CMP r0,#0 +000024 d001 BEQ |L17.42| +000026 2000 MOVS r0,#0 ;687 +000028 e000 B |L17.44| + |L17.42| +00002a 2001 MOVS r0,#1 ;687 + |L17.44| +00002c 2800 CMP r0,#0 ;688 +00002e d0f3 BEQ |L17.24| +000030 2000 MOVS r0,#0 ;690 +000032 4c34 LDR r4,|L17.260| +000034 7068 STRB r0,[r5,#1] ;690 +000036 2308 MOVS r3,#8 ;692 +000038 4a33 LDR r2,|L17.264| +00003a 2101 MOVS r1,#1 ;692 +00003c 6820 LDR r0,[r4,#0] ;692 ; screen_reg_int_data +00003e f7fffffe BL app_tp_m_read + |L17.66| +000042 f7fffffe BL hal_i2c_m_transfer_complate +000046 2800 CMP r0,#0 ;693 +000048 d0fb BEQ |L17.66| +00004a 4e2f LDR r6,|L17.264| +00004c 4631 MOV r1,r6 ;692 +00004e 79f0 LDRB r0,[r6,#7] ;694 ; s_screen_read_buffer +000050 3108 ADDS r1,r1,#8 ;692 +000052 9100 STR r1,[sp,#0] ;694 +000054 2800 CMP r0,#0 ;694 +000056 d00d BEQ |L17.116| +000058 06c0 LSLS r0,r0,#27 ;696 +00005a 0e07 LSRS r7,r0,#24 ;696 +00005c 460a MOV r2,r1 ;697 +00005e 463b MOV r3,r7 ;697 +000060 2101 MOVS r1,#1 ;697 +000062 6820 LDR r0,[r4,#0] ;697 ; screen_reg_int_data +000064 f7fffffe BL app_tp_m_read + |L17.104| +000068 f7fffffe BL hal_i2c_m_transfer_complate +00006c 2800 CMP r0,#0 ;698 +00006e d0fb BEQ |L17.104| +000070 1dff ADDS r7,r7,#7 ;698 +000072 b2ff UXTB r7,r7 ;699 + |L17.116| +000074 5df0 LDRB r0,[r6,r7] ;701 +000076 2800 CMP r0,#0 ;701 +000078 d00c BEQ |L17.148| +00007a 79f0 LDRB r0,[r6,#7] ;703 ; s_screen_read_buffer +00007c 19f2 ADDS r2,r6,r7 ;704 +00007e 06c0 LSLS r0,r0,#27 ;703 +000080 0e03 LSRS r3,r0,#24 ;703 +000082 2101 MOVS r1,#1 ;704 +000084 1c52 ADDS r2,r2,#1 ;704 +000086 6820 LDR r0,[r4,#0] ;704 ; screen_reg_int_data +000088 f7fffffe BL app_tp_m_read + |L17.140| +00008c f7fffffe BL hal_i2c_m_transfer_complate +000090 2800 CMP r0,#0 ;705 +000092 d0fb BEQ |L17.140| + |L17.148| +000094 2064 MOVS r0,#0x64 ;707 +000096 f7fffffe BL delayUs +00009a 4f19 LDR r7,|L17.256| +00009c e01d B |L17.218| + |L17.158| +00009e 2308 MOVS r3,#8 ;711 +0000a0 4a19 LDR r2,|L17.264| +0000a2 2101 MOVS r1,#1 ;711 +0000a4 6820 LDR r0,[r4,#0] ;711 ; screen_reg_int_data +0000a6 f7fffffe BL app_tp_m_read + |L17.170| +0000aa f7fffffe BL hal_i2c_m_transfer_complate +0000ae 2800 CMP r0,#0 ;712 +0000b0 d0fb BEQ |L17.170| +0000b2 2064 MOVS r0,#0x64 ;713 +0000b4 f7fffffe BL delayUs +0000b8 79f0 LDRB r0,[r6,#7] ;714 ; s_screen_read_buffer +0000ba 2800 CMP r0,#0 ;714 +0000bc d00d BEQ |L17.218| +0000be 06c0 LSLS r0,r0,#27 ;716 +0000c0 0e03 LSRS r3,r0,#24 ;716 +0000c2 6820 LDR r0,[r4,#0] ;717 ; screen_reg_int_data +0000c4 2101 MOVS r1,#1 ;717 +0000c6 9a00 LDR r2,[sp,#0] ;717 +0000c8 f7fffffe BL app_tp_m_read + |L17.204| +0000cc f7fffffe BL hal_i2c_m_transfer_complate +0000d0 2800 CMP r0,#0 ;718 +0000d2 d0fb BEQ |L17.204| +0000d4 2064 MOVS r0,#0x64 ;719 +0000d6 f7fffffe BL delayUs + |L17.218| +0000da 7838 LDRB r0,[r7,#0] ;709 ; g_screen_input_int_pad +0000dc f7fffffe BL hal_gpio_get_input_data +0000e0 2800 CMP r0,#0 ;709 +0000e2 d0dc BEQ |L17.158| +0000e4 2001 MOVS r0,#1 ;723 +0000e6 71e8 STRB r0,[r5,#7] ;723 +0000e8 4907 LDR r1,|L17.264| +0000ea 79a8 LDRB r0,[r5,#6] ;724 ; screen_int_transfer_count +0000ec 6aa2 LDR r2,[r4,#0x28] ;724 ; screen_reg_int_data +0000ee f7fffffe BL app_tp_screen_analysis_int +0000f2 2000 MOVS r0,#0 ;725 +0000f4 71a8 STRB r0,[r5,#6] ;725 +0000f6 70e8 STRB r0,[r5,#3] ;726 +0000f8 bdf8 POP {r3-r7,pc} +;;;729 + ENDP + +0000fa 0000 DCW 0x0000 + |L17.252| + DCD ||.data|| + |L17.256| + DCD g_screen_input_int_pad + |L17.260| + DCD screen_reg_int_data + |L17.264| + DCD ||.bss|| + + AREA ||i.app_tp_transfer_screen_start||, CODE, READONLY, ALIGN=2 + + app_tp_transfer_screen_start PROC +;;;646 **************************************************************************/ +;;;647 void app_tp_transfer_screen_start(void) +000000 b570 PUSH {r4-r6,lr} +;;;648 { +;;;649 // s_screen_init_complate = false; +;;;650 s_screen_const_transfer_count = 0; +000002 4c03 LDR r4,|L18.16| +000004 2500 MOVS r5,#0 +000006 7165 STRB r5,[r4,#5] +;;;651 // app_tp_screen_init(); +;;;652 #ifndef DISABLE_I2C_INIT_CODE +;;;653 app_tp_transfer_screen_const(); +000008 f7fffffe BL app_tp_transfer_screen_const +;;;654 #endif +;;;655 s_screen_int_flag = false; +00000c 7065 STRB r5,[r4,#1] +;;;656 } +00000e bd70 POP {r4-r6,pc} +;;;657 + ENDP + + |L18.16| + DCD ||.data|| + + AREA ||.bss||, DATA, NOINIT, ALIGN=0 + + s_screen_read_buffer + % 200 + s_phone_read_buffer + % 200 + + AREA ||.data||, DATA, ALIGN=0 + + s_spim_write +000000 00 DCB 0x00 + s_screen_int_flag +000001 00 DCB 0x00 + s_phone_reset_flag +000002 00 DCB 0x00 + s_screen_int_transfer_status +000003 00 DCB 0x00 + s_screen_init_complate +000004 00 DCB 0x00 + s_screen_const_transfer_count +000005 ff DCB 0xff + screen_int_transfer_count +000006 00 DCB 0x00 + screen_int_transfer_buffer_ready +000007 01 DCB 0x01 + MI10_PRO_screen_init_data1 +000008 a00001 DCB 0xa0,0x00,0x01 + MI10_PRO_screen_init_data3 +00000b a2 DCB 0xa2 +00000c 0200 DCB 0x02,0x00 + MI10_PRO_screen_init_data4 +00000e c007 DCB 0xc0,0x07 +000010 01 DCB 0x01 + MI10_PRO_TP_Tuning_data2 +000011 a40003 DCB 0xa4,0x00,0x03 + MI10_PRO_TP_Tuning_data3 +000014 a40002 DCB 0xa4,0x00,0x02 + MI10_PRO_TP_Tuning_data6 +000017 a4 DCB 0xa4 +000018 0501 DCB 0x05,0x01 + MI10_PRO_TP_Tuning_data7 +00001a a405 DCB 0xa4,0x05 +00001c 02 DCB 0x02 + MI10_PRO_TP_Tuning_data8 +00001d a40504 DCB 0xa4,0x05,0x04 + MI10_PRO_TP_Tuning_data4 +000020 a4031300 DCB 0xa4,0x03,0x13,0x00 + MI10_PRO_TP_Tuning_data5 +000024 a4030c00 DCB 0xa4,0x03,0x0c,0x00 + MI10_PRO_screen_init_data2 +000028 a2030000 DCB 0xa2,0x03,0x00,0x00 +00002c 0003 DCB 0x00,0x03 + + AREA ||area_number.23||, DATA, ALIGN=0 + + EXPORTAS ||area_number.23||, ||.data|| + MI10_PRO_screen_init_data5 +000000 a40670 DCB 0xa4,0x06,0x70 + + AREA ||area_number.24||, DATA, ALIGN=0 + + EXPORTAS ||area_number.24||, ||.data|| + MI10_PRO_screen_init_data6 +000000 a60000 DCB 0xa6,0x00,0x00 + + AREA ||area_number.25||, DATA, ALIGN=0 + + EXPORTAS ||area_number.25||, ||.data|| + MI10_PRO_screen_init_data7 +000000 fa200000 DCB 0xfa,0x20,0x00,0x00 +000004 78 DCB 0x78 + + AREA ||area_number.26||, DATA, ALIGN=0 + + EXPORTAS ||area_number.26||, ||.data|| + MI10_PRO_screen_init_data8 +000000 a2032000 DCB 0xa2,0x03,0x20,0x00 +000004 0000 DCB 0x00,0x00 + + AREA ||area_number.27||, DATA, ALIGN=0 + + EXPORTAS ||area_number.27||, ||.data|| + MI10_PRO_screen_init_data9 +000000 a001 DCB 0xa0,0x01 + + AREA ||area_number.28||, DATA, ALIGN=0 + + EXPORTAS ||area_number.28||, ||.data|| + MI10_PRO_screen_init_data10 +000000 a00000 DCB 0xa0,0x00,0x00 + + AREA ||area_number.29||, DATA, ALIGN=0 + + EXPORTAS ||area_number.29||, ||.data|| + read_point +000000 00 DCB 0x00 + + AREA ||area_number.30||, DATA, ALIGN=0 + + EXPORTAS ||area_number.30||, ||.data|| + s_screen_number +000000 0000 DCB 0x00,0x00 + + AREA ||area_number.31||, DATA, ALIGN=0 + + EXPORTAS ||area_number.31||, ||.data|| + s_screen_temp +000000 0000 DCB 0x00,0x00 + +;*** Start embedded assembler *** + +#line 1 "..\\..\\src\\app\\demo\\app_tp_transfer.c" + AREA ||.rev16_text||, CODE + THUMB + EXPORT |__asm___17_app_tp_transfer_c_e672c05a____REV16| +#line 467 "C:\\Keil_v5\\ARM\\PACK\\ARM\\CMSIS\\5.5.1\\CMSIS\\Core\\Include\\cmsis_armcc.h" +|__asm___17_app_tp_transfer_c_e672c05a____REV16| PROC +#line 468 + + rev16 r0, r0 + bx lr + ENDP + AREA ||.revsh_text||, CODE + THUMB + EXPORT |__asm___17_app_tp_transfer_c_e672c05a____REVSH| +#line 482 +|__asm___17_app_tp_transfer_c_e672c05a____REVSH| PROC +#line 483 + + revsh r0, r0 + bx lr + ENDP + +;*** End embedded assembler *** diff --git a/project/ISP_368/Listings/board.txt b/project/ISP_368/Listings/board.txt new file mode 100644 index 0000000..d775036 --- /dev/null +++ b/project/ISP_368/Listings/board.txt @@ -0,0 +1,63 @@ +; generated by Component: ARM Compiler 5.06 update 6 (build 750) Tool: ArmCC [4d3637] +; commandline ArmCC [--c99 --list --split_sections --debug -c --asm --interleave --gnu -o.\objects\board.o --asm_dir=.\Listings\ --list_dir=.\Listings\ --depend=.\objects\board.d --cpu=Cortex-M0 --apcs=interwork --diag_suppress=9931 -I..\..\src -I..\..\src\board -I..\..\src\common -I..\..\src\sdk\include -I..\..\src\app\demo -I..\..\src\sdk\include\M0 -I..\..\src\app -I..\..\src\app\module_demo -I..\..\src\app\touch -I..\..\src\app\S8 -I..\..\src\app\S9 -I..\CVWL368 -I.\RTE\_ISP_368 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\CMSIS\Core\Include -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\Device\ARM\ARMCM0\Include -D__MICROLIB -D__UVISION_VERSION=528 -D_RTE_ -DARMCM0 -DISP_368 --omf_browse=.\objects\board.crf ..\..\src\board\board.c] + THUMB + + AREA ||i.board_Init||, CODE, READONLY, ALIGN=2 + + board_Init PROC +;;;13 +;;;14 void board_Init(void) +000000 b510 PUSH {r4,lr} +;;;15 { +;;;16 hal_system_init(SYSTEM_CLOCK); +000002 4807 LDR r0,|L1.32| +000004 f7fffffe BL hal_system_init +;;;17 hal_system_enable_systick(1); +000008 2001 MOVS r0,#1 +00000a f7fffffe BL hal_system_enable_systick +;;;18 #if !EDA_MODE +;;;19 hal_system_init_console(115200); +00000e 20e1 MOVS r0,#0xe1 +000010 0240 LSLS r0,r0,#9 +000012 f7fffffe BL hal_system_init_console +;;;20 #endif +;;;21 #if defined(ISP_568) || defined(ISP_368) +;;;22 /* 浠嶦FUSE璇诲彇DPHY鏍″噯鍊煎苟璁剧疆 */ +;;;23 hal_system_set_phy_calibration(true); +000016 2001 MOVS r0,#1 +000018 f7fffffe BL hal_system_set_phy_calibration +;;;24 #endif +;;;25 } +00001c bd10 POP {r4,pc} +;;;26 + ENDP + +00001e 0000 DCW 0x0000 + |L1.32| + DCD 0x04c4b400 + +;*** Start embedded assembler *** + +#line 1 "..\\..\\src\\board\\board.c" + AREA ||.rev16_text||, CODE + THUMB + EXPORT |__asm___7_board_c_bcd01269____REV16| +#line 467 "C:\\Keil_v5\\ARM\\PACK\\ARM\\CMSIS\\5.5.1\\CMSIS\\Core\\Include\\cmsis_armcc.h" +|__asm___7_board_c_bcd01269____REV16| PROC +#line 468 + + rev16 r0, r0 + bx lr + ENDP + AREA ||.revsh_text||, CODE + THUMB + EXPORT |__asm___7_board_c_bcd01269____REVSH| +#line 482 +|__asm___7_board_c_bcd01269____REVSH| PROC +#line 483 + + revsh r0, r0 + bx lr + ENDP + +;*** End embedded assembler *** diff --git a/project/ISP_368/Listings/main.txt b/project/ISP_368/Listings/main.txt new file mode 100644 index 0000000..013d351 --- /dev/null +++ b/project/ISP_368/Listings/main.txt @@ -0,0 +1,55 @@ +; generated by Component: ARM Compiler 5.06 update 6 (build 750) Tool: ArmCC [4d3637] +; commandline ArmCC [--c99 --list --split_sections --debug -c --asm --interleave --gnu -o.\objects\main.o --asm_dir=.\Listings\ --list_dir=.\Listings\ --depend=.\objects\main.d --cpu=Cortex-M0 --apcs=interwork --diag_suppress=9931 -I..\..\src -I..\..\src\board -I..\..\src\common -I..\..\src\sdk\include -I..\..\src\app\demo -I..\..\src\sdk\include\M0 -I..\..\src\app -I..\..\src\app\module_demo -I..\..\src\app\touch -I..\..\src\app\S8 -I..\..\src\app\S9 -I..\CVWL368 -I.\RTE\_ISP_368 -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\CMSIS\Core\Include -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.5.1\Device\ARM\ARMCM0\Include -D__MICROLIB -D__UVISION_VERSION=528 -D_RTE_ -DARMCM0 -DISP_368 --omf_browse=.\objects\main.crf ..\..\src\app\main.c] + THUMB + + AREA ||i.main||, CODE, READONLY, ALIGN=1 + + main PROC +;;;13 +;;;14 int main() +000000 f7fffffe BL board_Init +;;;15 { +;;;16 // hal_system_init(); +;;;17 board_Init(); +;;;18 +;;;19 while (1) +;;;20 { +;;;21 #if _DEMO_S8_EN +;;;22 ap_demo(); +000004 f7fffffe BL ap_demo + |L1.8| +;;;23 #endif +;;;24 while (1); +000008 e7fe B |L1.8| +;;;25 } +;;;26 } + ENDP + + +;*** Start embedded assembler *** + +#line 1 "..\\..\\src\\app\\main.c" + AREA ||.rev16_text||, CODE + THUMB + EXPORT |__asm___6_main_c_main____REV16| +#line 467 "C:\\Keil_v5\\ARM\\PACK\\ARM\\CMSIS\\5.5.1\\CMSIS\\Core\\Include\\cmsis_armcc.h" +|__asm___6_main_c_main____REV16| PROC +#line 468 + + rev16 r0, r0 + bx lr + ENDP + AREA ||.revsh_text||, CODE + THUMB + EXPORT |__asm___6_main_c_main____REVSH| +#line 482 +|__asm___6_main_c_main____REVSH| PROC +#line 483 + + revsh r0, r0 + bx lr + ENDP + +;*** End embedded assembler *** + + __ARM_use_no_argv EQU 0 diff --git a/project/ISP_368/Objects/ISP368_N10Lite_CSOT667.bin b/project/ISP_368/Objects/ISP368_N10Lite_CSOT667.bin new file mode 100644 index 0000000000000000000000000000000000000000..1658a72af12d3145bc5e8c1b361202d30f65e673 GIT binary patch literal 60968 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 LfX?qEaY$tMF$PNz&`fabI;)O36#Plw@a8 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 literal 0 HcmV?d00001 diff --git a/project/ISP_368/RTE/_ISP_368/RTE_Components.h b/project/ISP_368/RTE/_ISP_368/RTE_Components.h new file mode 100644 index 0000000..9bd4b37 --- /dev/null +++ b/project/ISP_368/RTE/_ISP_368/RTE_Components.h @@ -0,0 +1,21 @@ + +/* + * Auto generated Run-Time-Environment Configuration File + * *** Do not modify ! *** + * + * Project: 'ISP_368' + * Target: 'ISP_368' + */ + +#ifndef RTE_COMPONENTS_H +#define RTE_COMPONENTS_H + + +/* + * Define the Device Header File: + */ +#define CMSIS_device_header "ARMCM0.h" + + + +#endif /* RTE_COMPONENTS_H */ diff --git a/src/app/demo/ap_demo.c b/src/app/demo/ap_demo.c new file mode 100644 index 0000000..aea1750 --- /dev/null +++ b/src/app/demo/ap_demo.c @@ -0,0 +1,2601 @@ +/******************************************************************************* +* +* File: s8_demo.c +* Description: 系统测试文件 +* Version: V0.1 +* Date: 2020-02-22 +* Author: Tempest + *******************************************************************************/ + +#include "ap_demo.h" +#include "ArmCM0.h" +#include "tau_device_datatype.h" +#include "tau_log.h" +#include "tau_operations.h" +#include "tau_common.h" +#include "tau_delay.h" +#include "hal_dsi_rx_ctrl.h" +#include "hal_dsi_tx_ctrl.h" +#include "hal_swire.h" +#include "hal_timer.h" +#include "hal_system.h" +#include "hal_gpio.h" +#include "hal_pwm.h" +#include "app_tp_transfer.h" +#include "app_tp_st_touch.h" + + +#ifdef LOG_TAG + #undef LOG_TAG +#endif + +#define LOG_TAG "N10Lite_NT37701" +#define SHARE_FLASH_MODE 0 + + +//手机MIPI数据信息 +/* 输入分辨率 */ +#define INPUT_WIDTH 1080 +#define INPUT_HEIGHT 2400 +/* 输入 MIPI lane rate,video mode需要正确配置,cmd mode可随便配置 */ +#define INPUT_MIPI_LANE_RATE 1100000000//1200000000 //898000000// 1180000000 +/* 输入图像格式 */ +#define INPUT_COLOR_MODE DSI_RGB888 +/* 输出数据格式(DSI_DATA_CMD_MODE , DSI_DATA_VIDEO_MODE) */ +#define INPUT_DATA_MODE DSI_DATA_CMD_MODE +/* 输入mipi lane数量(DSI_RX_LANE_x x为1-4) */ +#define INPUT_MIPI_LANE_NUM DSI_LANE_4 +/* 输入为video mode 时数据格式 */ +#define INPUT_VIDEO_MODEL DSI_NONBURST_EVENT +/* 输入虚拟通道(0-3) */ +#define INPUT_VC DSI_VC_0 +/* 输入的帧率(60/90/120/144Hz) */ +#define INPUT_FRAME_RATE DSI_FRAME_RATE_60HZ +/* 输入数据是否DSC压缩 */ +#define INPUT_COMPRESS false + +#if AMOLED_NT37701_CSOT667 + /* 输出分辨率配置 */ + #define OUTPUT_WIDTH 1080 + #define OUTPUT_HEIGHT 2400 + /* 输出虚拟通道(0-3) */ + #define OUTPUT_VC DSI_VC_0 + /* 输出mipi lane数量(DSI_RX_LANE_x x为1-4) */ + #define OUTPUT_LANE_NUMBER DSI_LANE_4 + /* 输出为video mode 的数据格式 */ + #define OUTPUT_VIDEO_MODEL DSI_NONBURST_EVENT + /* 输出 VSA */ + #define OUTPUT_VSA 12//8 + /* 输出 VBP */ + #define OUTPUT_VBP 8 + /* 输出 VBP */ + #define OUTPUT_VFP 56 + /* 输出 VSA */ + #define OUTPUT_HSA 8 + /* 输出 HBP */ + #define OUTPUT_HBP 12 + /* 输出 HFP */ + #define OUTPUT_HFP 120 + /* 初始化模式命令传输类型 */ + #define _CMD_TYPE DSI_CMD_TX_LP //0-HS,1-LP; + #define TX_FRAME_RATE 60 +#endif + +#define SWIRE_TIMER TIMER_NUM1 +#define TE_TIMER TIMER_NUM2 + +#define CUS_SCLD_FILTER false + +/******************************************************/ +static hal_dsi_rx_ctrl_handle_t *g_rx_ctrl_handle = NULL; +static hal_dsi_tx_ctrl_handle_t *g_tx_ctrl_handle = NULL; + +/* 默认false,初始化屏标志位,屏端使用TP1.8V,AC 初始化屏需要等TP1.8V有电 */ +#if 0//def USE_FOR_SUMSUNG_S10 +static volatile bool start_display_on = false; +#else +static volatile bool start_display_on = true; +#endif +static bool g_exit_sleep_mode = false; + +/* 屏初始化完成标志位 */ +static volatile bool panel_display_done = false; +static volatile bool g_resolution_change = false; + +static bool swire_flag = false; +static bool input_compress_flag = INPUT_COMPRESS; + +static uint8_t swire_num=38; //38 // 14-->ELVSS -4.1v test BOARD +static uint8_t swire_num_bak=38; +static uint8_t enter_hbm_mode_cnt = 0; +static uint8_t exit_hbm_mode_cnt = 0; +static volatile bool BL_ADJ_flag = false; + +#define SWIRE_MAX_NUM 20 + +static uint8_t phone_off_flag = 0; //电话熄屏FLAG。=1熄屏 +static uint32_t loop_count =0; +static uint8_t send_29_flag =0; // 初始化和主机的29指令,取后面1个。解决开机花屏问题。 + +#define ADD_TP_CALIBRATION 1 +#define AUTO_CAL_TP 0 +#define RUN_TEST 0 + +#if ADD_TP_CALIBRATION +static volatile bool g_calibration_flag = false; +#endif + +#if AUTO_CAL_TP +static uint8_t g_cal_cnt = 0; +#endif + +#ifdef USE_FOR_SAMSUNG_Note10Lite +extern uint8_t Flag_blacklight_EN; +extern uint8_t tp_sleep_in; +extern uint8_t tp_sleep_count; +extern uint8_t tp_sleep_clk_count; +uint8_t phone_start_flag = 0; +uint16_t phone_DisplayOFF_count=0; +uint8_t phone_DisplayOFF_flag=0; +#endif + + +#ifdef ADD_FINGERPRINT_FUNC +extern uint8_t fingerprint_flag; +#endif +static uint8_t hbm_mode =0; // 1: 高亮模式 +uint16_t rd_51_val2 = 0x7F; + +extern void Gpio_swire_output(uint8_t flag, uint8_t num); + +#define ENABLE_TP_WAKE_UP true +#if ENABLE_TP_WAKE_UP +static bool g_need_enter_sleep_mode = false; +static void ap_reset_cb(void *data) +{ + /* 切换电源 */ + // hal_gpio_set_output_data_ex(POWER_IO_B, IO_LVL_HIGH, POWER_IO_A, IO_LVL_LOW); + /* 打开VCC供电 */ + TAU_LOGD("ap reset cb!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n"); + hal_system_set_pvd(true); + hal_system_set_vcc(true); + NVIC_SystemReset(); +} +#endif + +////#define NEW_ACK_CMD_FUNC //For s9+ test. change LIB + +static bool ap_dcs_read(uint8_t data_type, uint8_t dcs_cmd, uint8_t param) +{ + uint32_t return_size = hal_dsi_rx_ctrl_get_max_ret_size(g_rx_ctrl_handle); +// TAU_LOGD("r[%x] [%d]--", dcs_cmd, return_size); + + //------------ + if (dcs_cmd == 0x04) + { + phone_DisplayOFF_flag=1; + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_LONG_RESPONSE, + DSI_VC_0, + 3, 0x80,0x00,0x00); + } + else if (dcs_cmd == 0x0F) + { + phone_DisplayOFF_flag=0; + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, + DSI_VC_0, + 1, 0x80); + } + else if (dcs_cmd == 0xEA) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_2B, + DSI_VC_0, + 2, 0x00, 0x00); + } + else if (dcs_cmd == 0x0A) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, + DSI_VC_0, + 1, 0x9f); + } + else if (dcs_cmd == 0x0E) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, + DSI_VC_0, + 1, 0x80); + } + else if (dcs_cmd == 0x05) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, + DSI_VC_0, + 1, 0x00); + } + else if (dcs_cmd == 0xEE) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, + DSI_VC_0, + 1, 0x00); + } + //---- + else if (dcs_cmd == 0xA1) + { + if (return_size == 11) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_LONG_RESPONSE, + DSI_VC_0, + 11, + 0x0B,0xEB,0x0C,0x98,0x91,0x14,0x00,0x38,0x10,0x08,0x32); + } + else if (return_size == 31) + { + phone_DisplayOFF_flag=1; + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_LONG_RESPONSE, + DSI_VC_0, + 31, + 0x0B,0xEB,0x0C,0x98,0x91,0x14,0x00,0x38,0x10,0x08,0x32,0x10,0x01,0x01,0xB5,0x41, + 0x32,0x55,0x4B,0x31,0x53,0x4A,0x31,0x33,0x37,0x43,0x42,0x43,0x30,0x35,0x37); + } + else + { + TAU_LOGD("r[%x] [%d] err!!!!!!", dcs_cmd, return_size); + } + } + else if (dcs_cmd == 0xD6) + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_LONG_RESPONSE, + DSI_VC_0, + 5, + 0x47,0xCE,0xB0,0xF1,0xEE); + } + else if (dcs_cmd == 0x01) + { + ap_get_tp_calibration_status_01(g_rx_ctrl_handle,param); + } + else + { + hal_dsi_rx_ctrl_send_ack_cmd(g_rx_ctrl_handle, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, + DSI_VC_0, + 1, 0); + TAU_LOGD("r[%x] [%d] err!!!!!!", dcs_cmd, return_size); + } + + return true; +} + + +/* PPS update callback 用于分辨率切换case */ +static bool pps_update_handle(uint8_t *pps, uint8_t size, uint32_t pic_width, uint32_t pic_height) +{ + /* AVDD 上电, 用于解决息屏开屏PPS不更新问题 */ + // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); +// hal_dsi_rx_ctrl_set_sw_tear_mode(g_rx_ctrl_handle); + + //TAU_LOGD("PPS compress_en=[%d]\n", input_compress_flag); + if (!input_compress_flag) + { + g_rx_ctrl_handle->compress_en = true; + input_compress_flag = true; + //hal_dsi_rx_ctrl_restart(g_rx_ctrl_handle); + hal_dsi_rx_ctrl_toggle_resolution(g_rx_ctrl_handle); + //TAU_LOGD("toggle rx ctrl\n"); + } + + if (pic_width != g_rx_ctrl_handle->base_info.src_w || pic_height != g_rx_ctrl_handle->base_info.src_h) + { + /* PPS Update 且分辨率发生变化 */ + g_rx_ctrl_handle->base_info.src_w = pic_width; + g_rx_ctrl_handle->base_info.src_h = pic_height; + + /* 注意部分基板更新PPS前不发 Compression Mode Command的情况 */ + if (pic_width >720) + { + g_tx_ctrl_handle->base_info.src_w = pic_width; + g_tx_ctrl_handle->base_info.src_h = pic_height; + } + // hal_dsi_rx_ctrl_pre_init_pps(g_rx_ctrl_handle, pps, 128); + hal_dsi_rx_ctrl_toggle_resolution(g_rx_ctrl_handle); +// hal_dsi_rx_ctrl_set_auto_hw_filter(g_rx_ctrl_handle, true); +// TAU_LOGD("resolution update w[%d] h[%d] compress[%d]\n", pic_width, pic_height, g_rx_ctrl_handle->compress_en); + } +// hal_dsi_rx_ctrl_set_hw_tear_mode(g_rx_ctrl_handle); + // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); + + TAU_LOGD("PPS Update"); + return true; +} + +static bool ap_set_display_on(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + TAU_LOGD("disp on"); +// if(send_29_flag) +// hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x29); +// send_29_flag++; + + return true; +} + +static bool ap_set_display_off(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ +// TAU_LOGD("disp off"); +//// hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_LOW); + +// Gpio_swire_output(0, 0); +// hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x28); +// send_29_flag = 0; +// hal_swire_open(DISABLE); + + + hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x28); + TAU_LOGD("disp off"); + return true; +} + + +static bool ap_set_enter_sleep_mode(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + hal_dsi_rx_ctrl_set_sw_tear_mode(g_rx_ctrl_handle); + Gpio_swire_output(0, 0); + delayMs(50); + hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x10); + hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_LOW); + TAU_LOGD("enter sleep mode"); + +#if ENABLE_TP_WAKE_UP + g_need_enter_sleep_mode = true; +#endif + g_exit_sleep_mode = false; + + return true; +} + +static bool ap_set_exit_sleep_mode(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + TAU_LOGD("exit sleep mode"); + g_exit_sleep_mode = true; + + /* AVDD 上电, 用于解决息屏开屏PPS不更新问题 */ + // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); + return true; +} + +/***************************************************************************** +*GPIO发送swire波形 +*flag: =0, SWIRE=0; =1,仅发送SWIRE信号; =2, 先置高再发SWIRE信号 +*num: 发几个脉冲 +*注意FLAG=1时无GPIO初始化!!!!!! +*****************************************************************************/ +void Gpio_swire_output(uint8_t flag, uint8_t num) +{ + uint8_t ii; + + if (flag) + { + if (flag ==2) + { + hal_gpio_init_output(IO_PAD_ADCIN, IO_LVL_HIGH); + //hal_gpio_set_output_data(IO_PAD_ADCIN, IO_LVL_HIGH); + delayMs(2); + } + for (ii =0; ii< num; ii++) + { + hal_gpio_set_output_data(IO_PAD_ADCIN, IO_LVL_LOW); + delayUs(10); + hal_gpio_set_output_data(IO_PAD_ADCIN, IO_LVL_HIGH); + delayUs(9); + } + } + else + { + hal_gpio_init_output(IO_PAD_ADCIN, IO_LVL_LOW); + } +} + + +/* 调整背光B1回调 g_cus_rx_dcs_execute_table 里配置为异步执行,CA同理*/ + +uint16_t value_reg_b1 =0; +uint16_t value_reg_ca =0; +static uint32_t value_reg_b1_bk1 =0; +static uint32_t value_reg_b1_bk2 =0; +static uint32_t value_reg_ca_bak =0; +//static uint32_t value_reg_b5 =0; +static uint32_t value_reg_df =0; +static uint8_t value_blue =0; +static uint8_t blue_flag =0; +static uint32_t value_reg_62 =0; +static uint32_t value_reg_63 =0; +static uint8_t finger_flag =0; + +#if 1 //护眼设置 +#define BLUE_MAX 0xF0 //蓝光最大值 +#define BLUE_MIN 0x86 //蓝光最小值 +#define BLUE_STEP 10 //蓝光等级数-1 +#endif + +#ifdef USE_FOR_SUMSUNG_S10 +uint16_t value_reg_b1_bak =0; +#define USE_BL_ADJ5 +#endif + +#ifdef USE_FOR_SUMSUNG_S9PLUS +uint16_t value_reg_b1_bak =0; +#define USE_BL_ADJ4 +#endif + +#ifdef USE_FOR_SUMSUNG_S8PLUS +//#define USE_BL_ADJ2 //调光方法2. 用CA和B1寄存器 +#define USE_BL_ADJ3 +#endif + +#ifdef USE_BL_ADJ2 +static uint8_t bl_mode =0; //有2种不同模式。CA值不同(1种CA范围在0x80~0x100, 1种CA范围在-6~0X100, +#define SWIRE_0X600_NUM (SWIRE_MAX_NUM+8) //这里先定义好分段位置的SWIRE值。2段的最大和最小值都要是这个,保证连续。 +#endif + +#ifdef USE_BL_ADJ3 +static uint8_t bl_mode3 =0; //有2种不同模式。CA值不同( =0的CA范围在0x80~0x100,=1的CA范围在-6~0X100) +#endif + +static uint8_t R60_Parma_backup = 0x00; +static bool ap_update_frame_rate(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ +#if 0 + static uint8_t frame_rate = 100; + if (frame_rate != dcs_packet->packet_param[0]) + { + frame_rate = dcs_packet->packet_param[0]; + if (frame_rate == 0x00) + { + hal_dsi_rx_ctrl_set_tear_mode_ex(g_rx_ctrl_handle, SYNC_LINE, TE_HW_MODE); + } + else + { + //0x08 120Hz + hal_dsi_rx_ctrl_set_tear_mode_ex(g_rx_ctrl_handle, SYNC_LINE, TE_SOFT_120HZ_MODE); + } + //TAU_LOGD("frame_rate:%02x", frame_rate); + } +#else + if (R60_Parma_backup != dcs_packet->packet_param[0]) + { + R60_Parma_backup = dcs_packet->packet_param[0]; + if (R60_Parma_backup == 0x08) + { + hal_dsi_rx_ctrl_set_tear_mode_ex(g_rx_ctrl_handle, g_rx_ctrl_handle->base_info.src_h, TE_SOFT_120HZ_MODE); + } + else + { + hal_dsi_rx_ctrl_set_tear_mode_ex(g_rx_ctrl_handle, g_rx_ctrl_handle->base_info.src_h, TE_HW_MODE); + //hal_dsi_rx_ctrl_set_tear_mode_ex(g_rx_ctrl_handle,2000,TE_SOFT_120HZ_MODE); + } + } +#endif + + return true; +} + + +static bool ap_set_backlight_51(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + uint16_t rd_51_val; // 0x0003~0x03FF(1020) [0x65处有跳变,中间还有一段跳变] ==> 0x007F~0x06FF(1664) //0x007F~0x07FF(1920) + + rd_51_val = dcs_packet->packet_param[0]; + rd_51_val <<=8; + rd_51_val |= dcs_packet->packet_param[1]; + + if (hbm_mode ==0) + { + rd_51_val2 = (rd_51_val-0x03)*1664/1020+0x7F; + if (rd_51_val2 < 0x220 && rd_51_val2 > 0x1B3) + { + rd_51_val2 = 0x1B3; + } + } + BL_ADJ_flag = true; + + return true; +} + +static bool ap_INPUT_COMPRESS(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + uint8_t reg_c2_par1=0; + uint8_t reg_c2_par2=0; + + //A525M Generic Long Write (29) 000A C2 1B 41 B0 0E 00 3C 5A 00 00 + reg_c2_par1 = dcs_packet->packet_param[0]; + reg_c2_par2 = dcs_packet->packet_param[1]; + + TAU_LOGD("C5 compress_en=[%d] [0x%x][0x%x]", g_rx_ctrl_handle->compress_en, reg_c2_par1, reg_c2_par2); + if(reg_c2_par1==0x53) // + { + //INPUT_COMPRESS_flag =true; +// TAU_LOGD("INPUT_COMPRESS_flag!!!!!"); + g_rx_ctrl_handle->compress_en = true; + hal_dsi_rx_ctrl_toggle_resolution(g_rx_ctrl_handle); + } + return true; +} + + + +static bool ap_get_reg_ca(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + value_reg_ca = (dcs_packet->packet_param[0] << 8) + dcs_packet->packet_param[1]; + //TAU_LOGD("CA[%x]", value_reg_ca); + + return true; +} + + +#ifdef ADD_PANEL_DISPLAY_MODE +uint8_t panel_mode =1; // DF寄存器第1个参数。00:护眼开,01:护眼关,11:其它3种(影院/照片/基本.目前没区分) +uint16_t panel_r,panel_g,panel_b; // 记录RGB参数值 +#define RATIO_VALUE 2 //优化系数 +#endif + +static bool ap_get_reg_df(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + ccm_coef_t ccm; + ccm.coef_c00 = 255; + ccm.coef_c01 = 0; + ccm.coef_c02 = 0; + ccm.coef_c10 = 0; + ccm.coef_c11 = 255; + ccm.coef_c12 = 0; + ccm.coef_c20 = 0; + ccm.coef_c21 = 0; + ccm.coef_c22 = 255; + +#ifdef ADD_PANEL_DISPLAY_MODE + value_reg_df = (dcs_packet->packet_param[35] << 8) + dcs_packet->packet_param[33]; + panel_mode = dcs_packet->packet_param[0]; + panel_r =dcs_packet->packet_param[49]; + panel_g =dcs_packet->packet_param[51]; + panel_b =dcs_packet->packet_param[53]; + // TAU_LOGD("value_reg_df[%4x],panel_mode[%4x],panel_r[%4x],panel_g[%4x],panel_b[%4x]", value_reg_df,panel_mode,panel_r,panel_g,panel_b); + + if (panel_mode ==00) + { + //护眼模式 + #ifdef USE_FOR_A71_BLUE_MODE + //panel_r =256-RATIO_VALUE*(0xFF-panel_r); + //panel_g =256-RATIO_VALUE*(0xFF-panel_g); + //panel_b =256-RATIO_VALUE*(0xFF-panel_b); + // hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle,panel_r,panel_g,panel_b); + ccm.coef_c00 = panel_r; + ccm.coef_c11 = panel_g; + ccm.coef_c22 = panel_b; + hal_dsi_tx_ctrl_set_ccm(ccm); + + #else + value_reg_df =value_reg_df&0xFF; + switch(value_reg_df) + { + case 0xC1: + case 0xC3: + value_blue = BLUE_MIN; + break; + + case 0xCF: + case 0xD0: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)/BLUE_STEP; + break; + + case 0xD8: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*2/BLUE_STEP; + break; + + case 0xDE: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*3/BLUE_STEP; + break; + + case 0xE4: + case 0xE5: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*4/BLUE_STEP; + break; + + case 0xE9: + case 0xEA: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*5/BLUE_STEP; + break; + + case 0xED: + case 0xEE: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*6/BLUE_STEP; + break; + + case 0xF1: + case 0xF2: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*7/BLUE_STEP; + break; + + case 0xF4: + case 0xF5: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*8/BLUE_STEP; + break; + + case 0xF7: + case 0xF8: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*9/BLUE_STEP; + break; + + case 0xFA: + value_blue = BLUE_MAX; + break; + + default: + case 0xFF: + value_blue = 0; + break; + + } + hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle,256,256,256); + hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); + + #endif + + } + else + { + #ifndef USE_FOR_A71_BLUE_MODE + value_blue =0; + hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); //护眼模式关s8+/s9+ + #endif + + //做一下运算,让效果更加明显。这个估计要根据客户要求细调 + if(panel_r == 0xFF && panel_g == 0xFC && panel_b == 0xF6) // + { + // CCM1 + // ccm.coef_c00 = 250; + // ccm.coef_c11 = 240; + // ccm.coef_c22 = 220; + // CCM2B + ccm.coef_c00 = 225; + ccm.coef_c11 = 220; + ccm.coef_c22 = 205; + // CCM2A + // ccm.coef_c00 = 172; + // ccm.coef_c11 = 180; + // ccm.coef_c22 = 180; + // CCM3 + // ccm.coef_c00 = 230; + // ccm.coef_c11 = 230; + // ccm.coef_c22 = 200; + hal_dsi_tx_ctrl_set_ccm(ccm); + // TAU_LOGD("value_reg_df[%2x]",ccm.coef_c00); + } + else + { + panel_r =256-RATIO_VALUE*(0xFF-panel_r); + panel_g =256-RATIO_VALUE*(0xFF-panel_g); + panel_b =256-RATIO_VALUE*(0xFF-panel_b); + // hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle,panel_r,panel_g,panel_b); + + ccm.coef_c00 = panel_r; + ccm.coef_c11 = panel_g; + ccm.coef_c22 = panel_b; + hal_dsi_tx_ctrl_set_ccm(ccm); + } + } + +#ifndef USE_FOR_A71_BLUE_MODE + if (blue_flag==0) + { + blue_flag =1; + delayMs(20); + hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); + } +#endif + +#else + value_reg_df = (dcs_packet->packet_param[35] << 8) + dcs_packet->packet_param[33]; + + value_reg_df =value_reg_df&0xFF; + switch(value_reg_df) + { + case 0xC1: + case 0xC3: + value_blue = BLUE_MIN; + break; + + case 0xCF: + case 0xD0: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)/BLUE_STEP; + break; + + case 0xD8: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*2/BLUE_STEP; + break; + + case 0xDE: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*3/BLUE_STEP; + break; + + case 0xE4: + case 0xE5: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*4/BLUE_STEP; + break; + + case 0xE9: + case 0xEA: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*5/BLUE_STEP; + break; + + case 0xED: + case 0xEE: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*6/BLUE_STEP; + break; + + case 0xF1: + case 0xF2: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*7/BLUE_STEP; + break; + + case 0xF4: + case 0xF5: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*8/BLUE_STEP; + break; + + case 0xF7: + case 0xF8: + value_blue = BLUE_MIN+(BLUE_MAX-BLUE_MIN)*9/BLUE_STEP; + break; + + case 0xFA: + value_blue = BLUE_MAX; + break; + + default: + case 0xFF: + value_blue = 0; + break; + + } + + //TAU_LOGD("df[%4x]", value_reg_df); + hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); + if (blue_flag==0) + { + blue_flag =1; + delayMs(20); + hal_dsi_tx_ctrl_write_cmd(0x15, 0, 2, 0x84, value_blue); + } +#endif + + return true; +} + + +static void soft_te_timer_cb(void *data) +{ + /* + S8 的屏接的是TP1.8V, AC 启动后需要等到TP1.8 起来后再初始化屏, 所以在TP 起来前需要通过软件产生TE给手机,避免手机卡死 + */ + if (panel_display_done == false) + { + hal_dsi_rx_ctrl_gen_a_tear_signal(g_rx_ctrl_handle); + hal_timer_start(TE_TIMER, 17, soft_te_timer_cb, NULL); + } + else + { + hal_dsi_rx_ctrl_set_hw_tear_mode(g_rx_ctrl_handle); + } +} + +static void soft_te_timer_init() +{ + TAU_LOGD("soft_te_timer_init"); + hal_dsi_rx_ctrl_set_sw_tear_mode(g_rx_ctrl_handle); + hal_timer_init(TE_TIMER); + hal_timer_start(TE_TIMER, 1, soft_te_timer_cb, NULL); +} + +static bool ap_set_tear_on(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + if (panel_display_done == true) + { + hal_dsi_rx_ctrl_set_hw_tear_mode(g_rx_ctrl_handle); + } + else + { + soft_te_timer_init(); + } + TAU_LOGD("ap_set_tear_on"); + return true; +} + +static bool ap_set_pps_9e(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + TAU_LOGD("9E"); + // hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_LOW); + // hal_swire_open(DISABLE); + return true; +} + + +static bool ap_get_reg_53(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + if (dcs_packet->packet_param[0] ==0xE0) + { + #ifdef ADD_FINGERPRINT_FUNC + fingerprint_flag =1; + #endif + hbm_mode = 1; + enter_hbm_mode_cnt=0; +// hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x53, 0XE0); +// hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x53, 0X28); + } + else + { + #ifdef ADD_FINGERPRINT_FUNC + fingerprint_flag =0; + #endif + hbm_mode = 0; + exit_hbm_mode_cnt=0; + +// if (dcs_packet->packet_param[0] == 0x28) +// hbm_mode_cnt = 10; +// else +// hbm_mode_cnt = 0; +// hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x53, 0X20); + } + +// TAU_LOGD("value_reg_53[0x%x], Len[%d] hbm_mode=%d", dcs_packet->packet_param[0],dcs_packet->param_length, hbm_mode); + + return true; +} + +//static bool ap_get_reg_55(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +//{ +// TAU_LOGD("value_reg_55[0x%x], Len[%d]", dcs_packet->packet_param[0],dcs_packet->param_length); +// +// return true; +//} + + +static bool ap_get_reg_7A(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + uint8_t mode; + uint32_t pk_length; + + pk_length = dcs_packet->param_length; +// TAU_LOGD("value_reg_7A[0x%x], Len[%d]", dcs_packet->packet_param[0], pk_length); + + if (pk_length == 1) + { + mode = dcs_packet->packet_param[0]; + if (mode == 0x21) + { + //HBM Mode2 / FPS Enable + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 4, 0x87,0x1F,0xF8,0x05); + } + else if (mode == 0x23) + { + //HBM Mode2 / FPS Disable + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x6F,0x02); + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x87,0x04); + } + //FPR ON + // 0x39, 0, 4, 0x87,0x13,0xFF,0x05, + // //FPR OFF + // 0x39, 0, 2, 0x6F,0x02, + // 0x39, 0, 2, 0x87,0x04, + } + return true; +} + + +static bool ap_set_backlight_B1(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + uint8_t value_b1 =0; + + value_b1 = dcs_packet->packet_param[0]; +// TAU_LOGD("B1[%x] len[%d]", value_b1, dcs_packet->param_length); + + return true; +} + +/* 客制化DCS command 处理函数表格 */ +static const hal_dcs_execute_entry_t g_cus_rx_dcs_execute_table[] = +{ + {DCS_SET_DISPLAY_ON, ap_set_display_on, true}, + {DCS_SET_DISPLAY_OFF, ap_set_display_off, true}, + {0xDF, ap_get_reg_df, false}, //蓝光 + {0x51, ap_set_backlight_51, false}, + {0x53, ap_get_reg_53, false}, +// {0x55, ap_get_reg_55, false}, + {0x7A, ap_get_reg_7A, false}, +// {0x60, ap_update_frame_rate, true},//暂时没发现120HZ的开关——SU/20230222 +// {0xC5, ap_INPUT_COMPRESS, false}, +#if ADD_TP_CALIBRATION + // TP calibration + {0x04, ap_set_tp_calibration_04, true}, +#endif + {DCS_ENTER_SLEEP_MODE, ap_set_enter_sleep_mode, true}, + {DCS_EXIT_SLEEP_MODE, ap_set_exit_sleep_mode, true}, + {0, NULL, false} //{0,NULL,false} 数组最后一个固定成员,作为table结尾的判断标准 +}; + + +static void tx_panel_reset(void) +{ +#ifdef USE_WL518_INTERNAL_FLASH + hal_system_share_flash_mode(true);//*******************************************是否需要flash,打开的话,不需要FLASH,直接将BIN文件烧录给518,如果关闭则需要外接FLASH +#endif + + hal_dsi_tx_ctrl_panel_reset_pin(IO_LVL_HIGH); + delayMs(10); //10ms + hal_dsi_tx_ctrl_panel_reset_pin(IO_LVL_LOW); + delayMs(10); //10ms + hal_dsi_tx_ctrl_panel_reset_pin(IO_LVL_HIGH); + delayMs(10); +} + + +#ifdef PANEL_INIT_CODE_ARRAY +static void send_panel_init_code(uint32_t size, uint8_t * data) +{ + uint32_t data_offeset = 0; + uint8_t data_type; + uint8_t vc; + uint8_t data_size; + uint8_t * p_data; + + while(data_offeset < size) + { + data_type = data[data_offeset]; + vc = data[data_offeset + 1]; + data_size = data[data_offeset + 2]; + p_data = &data[data_offeset + 3]; + hal_dsi_tx_ctrl_write_array_cmd(data_type, vc, data_size, p_data); + data_offeset = data_offeset + data_size + 3; + delayUs(50); + } +} + +const uint8_t panel_init_code[] = +{ + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x00, + 0x39, 0, 9, 0xBA,0x02,0x79,0x00,0x14,0x03,0x9C,0x00,0x01, + 0x39, 0, 2, 0x6F,0x08, + 0x39, 0, 9, 0xBA,0x01,0xAF,0x00,0x14,0x00,0x1C,0x00,0x00, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 8, 0xBA,0x01,0x66,0x00,0x14,0x00,0x1C,0x00, + 0x39, 0, 9, 0xBB,0x02,0x79,0x00,0x14,0x03,0x9C,0x00,0x21, + 0x39, 0, 2, 0xB5,0x84, + 0x39, 0, 2, 0x6F,0x06, + 0x39, 0, 4, 0xB5,0x2B,0x0C,0x33, + 0x39, 0, 2, 0x6F,0x0B, + 0x39, 0, 4, 0xB5,0x2B,0x23,0x33, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 6, 0xB5,0x0C,0x0C,0x0C,0x0C,0x0C, + 0x39, 0, 2, 0x6F,0x01, + 0x39, 0, 2, 0xB6,0x19, + 0x39, 0, 19, 0xB7,0x99,0x99,0x99,0x99,0x99,0x99,0x87,0x65,0x43,0x32,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x13, + 0x39, 0, 13, 0xB7,0x00,0x00,0x01,0x13,0x78,0x89,0x9A,0xAB,0xBC,0xCD,0xDE,0xEF, + 0x39, 0, 2, 0x6F,0x1F, + 0x39, 0, 25, 0xB7,0x08,0x31,0x66,0x8F,0xF5,0xC1,0xC2,0x33,0xFF,0x7F,0xFF,0x7F,0xFF,0x7F,0xFF,0x7F,0xFF,0x7F,0xFF,0x7F,0xFF,0x7F,0xFF,0xFF, + 0x39, 0, 3, 0xB2,0x98,0x60, + 0x39, 0, 2, 0x6F,0x09, + 0x39, 0, 2, 0xB2,0x40, + 0x39, 0, 2, 0x6F,0x0F, + 0x39, 0, 9, 0xB2,0x20,0x20,0x21,0xC2,0x21,0xC2,0x2F,0xFF, + 0x39, 0, 13, 0xB3,0x00,0x08,0x00,0x1C,0x00,0x1C,0x00,0x3C,0x00,0x3C,0x00,0x70, + 0x39, 0, 2, 0x6F,0x0C, + 0x39, 0, 13, 0xB3,0x00,0x70,0x00,0xC8,0x00,0xC8,0x01,0x48,0x01,0x48,0x01,0xAD, + 0x39, 0, 2, 0x6F,0x18, + 0x39, 0, 13, 0xB3,0x01,0xAD,0x01,0xC2,0x01,0xC2,0x01,0xC2,0x07,0xFF,0x0F,0xFF, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 9, 0xB3,0x01,0x55,0x08,0xCC,0x08,0xCC,0x0F,0xFF, + 0x39, 0, 2, 0x6F,0x2C, + 0x39, 0, 15, 0xB3,0x09,0x90,0x08,0xDC,0x08,0x70,0x08,0x70,0x07,0xC8,0x07,0xC8,0x06,0xB8, + 0x39, 0, 2, 0x6F,0x3A, + 0x39, 0, 13, 0xB3,0x06,0xB8,0x04,0xE8,0x04,0xE8,0x02,0x48,0x02,0x48,0x00,0x38, + 0x39, 0, 2, 0x6F,0x46, + 0x39, 0, 13, 0xB3,0x00,0x38,0x00,0x38,0x00,0x38,0x00,0x38,0x00,0x38,0x00,0x38, + 0x39, 0, 15, 0xB4,0x0D,0x10,0x0C,0x1C,0x0B,0x88,0x0B,0x88,0x0A,0xA0,0x0A,0xA0,0x09,0x28, + 0x39, 0, 2, 0x6F,0x0E, + 0x39, 0, 13, 0xB4,0x09,0x28,0x06,0xB0,0x06,0xB0,0x03,0x18,0x03,0x18,0x00,0x48, + 0x39, 0, 2, 0x6F,0x1A, + 0x39, 0, 13, 0xB4,0x00,0x48,0x00,0x48,0x00,0x48,0x00,0x48,0x00,0x48,0x00,0x48, + 0x39, 0, 2, 0x6F,0x26, + 0x39, 0, 11, 0xB4,0x0D,0x10,0x00,0x48,0x00,0x48,0x00,0x48,0x00,0x48, + 0x39, 0, 2, 0x6F,0x30, + 0x39, 0, 15, 0xB4,0x09,0x90,0x08,0xDC,0x08,0x70,0x08,0x70,0x07,0xC8,0x07,0xC8,0x06,0xB8, + 0x39, 0, 2, 0x6F,0x3E, + 0x39, 0, 13, 0xB4,0x06,0xB8,0x04,0xE8,0x04,0xE8,0x02,0x48,0x02,0x48,0x00,0x38, + 0x39, 0, 2, 0x6F,0x4A, + 0x39, 0, 13, 0xB4,0x00,0x38,0x00,0x38,0x00,0x38,0x00,0x38,0x00,0x38,0x00,0x38, + 0x39, 0, 2, 0x6F,0xAC, + 0x39, 0, 21, 0xB2,0x0F,0xFF,0x0F,0xFF,0x08,0x09,0x08,0x6C,0x08,0xCA,0x09,0x24,0x09,0x79,0x09,0xCB,0x0A,0x1A,0x0A,0x66, + 0x39, 0, 2, 0x6F,0xC0, + 0x39, 0, 21, 0xB2,0x0A,0xB0,0x0A,0xF7,0x0B,0x3D,0x0B,0x80,0x0B,0xC1,0x0C,0x01,0x0C,0x40,0x0C,0x7C,0x0C,0xB8,0x0C,0xF2, + 0x39, 0, 2, 0x6F,0xD4, + 0x39, 0, 21, 0xB2,0x0D,0x2B,0x0D,0x63,0x0D,0x9A,0x0D,0xCF,0x0E,0x04,0x0E,0x38,0x0E,0x6B,0x0E,0x9D,0x0E,0xCF,0x0E,0xFF, + 0x39, 0, 2, 0x6F,0xE8, + 0x39, 0, 11, 0xB2,0x0F,0x2F,0x0F,0x5E,0x0F,0x8D,0x0F,0xBB,0x0F,0xFF, + 0x39, 0, 2, 0x6F,0x52, + 0x39, 0, 21, 0xB3,0x01,0xC2,0x01,0xC3,0x01,0xF5,0x02,0x27,0x02,0x59,0x02,0x8B,0x02,0xBD,0x02,0xEF,0x03,0x21,0x03,0x53, + 0x39, 0, 2, 0x6F,0x66, + 0x39, 0, 21, 0xB3,0x03,0x84,0x03,0xB6,0x03,0xE8,0x04,0x1A,0x04,0x4C,0x04,0x7E,0x04,0xB0,0x04,0xE2,0x05,0x14,0x05,0x46, + 0x39, 0, 2, 0x6F,0x7A, + 0x39, 0, 21, 0xB3,0x05,0x78,0x05,0xA9,0x05,0xDB,0x06,0x0D,0x06,0x3F,0x06,0x71,0x06,0xA3,0x06,0xD5,0x07,0x07,0x07,0x39, + 0x39, 0, 2, 0x6F,0x8E, + 0x39, 0, 9, 0xB3,0x07,0x6B,0x07,0x9D,0x07,0xCE,0x07,0xFF, + 0x39, 0, 3, 0xB9,0x00,0x96, + 0x39, 0, 3, 0xBD,0x04,0xB0, + 0x39, 0, 4, 0xC0,0x76,0xF3,0xC1, + 0x39, 0, 2, 0x6F,0x08, + 0x39, 0, 2, 0xC0,0x40, + 0x39, 0, 2, 0x6F,0x09, + 0x39, 0, 3, 0xC0,0x20,0x20, + 0x39, 0, 2, 0x6F,0x02, + 0x39, 0, 7, 0xC1,0x24,0x86,0x00,0x57,0x00,0x45, + 0x39, 0, 2, 0x6F,0x0A, + 0x39, 0, 3, 0xC1,0x00,0x86, + 0x39, 0, 2, 0xC5,0x05, + 0x39, 0, 2, 0x6F,0x08, + 0x39, 0, 2, 0xC3,0x00, + 0x39, 0, 15, 0xC6,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, + 0x39, 0, 2, 0xCA,0x12, + 0x39, 0, 2, 0xB9,0x00, + 0x39, 0, 5, 0xBE,0x0E,0x0B,0x14,0x13, + 0x39, 0, 2, 0x6F,0x05, + 0x39, 0, 2, 0xBE,0x8A, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x00, + 0x39, 0, 2, 0x6F,0x2A, + 0x39, 0, 2, 0xD9,0x43, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x01, + 0x39, 0, 11, 0xB5,0x00,0xB0,0x00,0x98,0x00,0x98,0x00,0xB0,0x00,0x98, + 0x39, 0, 11, 0xB6,0x01,0x38,0x00,0xD0,0x00,0xD0,0x01,0x38,0x00,0xD0, + 0x39, 0, 13, 0xC2,0x00,0xB0,0x01,0x38,0x00,0xB0,0x01,0x38,0x00,0xB0,0x01,0x38, + 0x39, 0, 3, 0xB0,0x04,0x04, + 0x39, 0, 3, 0xB3,0x13,0x13, + 0x39, 0, 7, 0xB7,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B, + 0x39, 0, 3, 0xB1,0x08,0x08, + 0x39, 0, 3, 0xB4,0x13,0x13, + 0x39, 0, 8, 0xB8,0x46,0x46,0x46,0x46,0x46,0x46,0x46, + 0x39, 0, 29, 0xB9,0x00,0x1F,0x00,0x00,0x00,0x1F,0x00,0x00,0x1F,0x00,0x00,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 6, 0xBB,0x03,0x94,0x00,0x19,0x3C, + 0x39, 0, 2, 0x6F,0x05, + 0x39, 0, 20, 0xBB,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x39, 0, 2, 0x6F,0x18, + 0x39, 0, 20, 0xBB,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x39, 0, 2, 0x6F,0x2B, + 0x39, 0, 20, 0xBB,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x39, 0, 2, 0x6F,0x3E, + 0x39, 0, 20, 0xBB,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x1B,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x39, 0, 5, 0xBA,0x10,0x10,0x10,0x10, + 0x39, 0, 3, 0xC4,0x80,0x03, + 0x39, 0, 2, 0xC7,0x01, + 0x39, 0, 3, 0xCD,0x05,0x81, + 0x39, 0, 2, 0xCF,0x1D, + 0x39, 0, 2, 0x6F,0x01, + 0x39, 0, 5, 0xCE,0x00,0x01,0x00,0x00, + 0x39, 0, 2, 0x6F,0x09, + 0x39, 0, 2, 0xD2,0x00, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 2, 0xD8,0x0C, + 0x39, 0, 2, 0xD9,0xAB, + 0x39, 0, 2, 0xD1,0x07, + 0x39, 0, 2, 0x6F,0x02, + 0x39, 0, 2, 0xD1,0x06, + 0x39, 0, 2, 0x6F,0x05, + 0x39, 0, 2, 0xD1,0x06, + 0x39, 0, 3, 0xD6,0x00,0x40, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x02, + 0x39, 0, 25, 0xB9,0x00,0x04,0x00,0x0C,0x00,0x14,0x00,0x1C,0x00,0x2C,0x00,0x3C,0x00,0x4C,0x00,0x5C,0x00,0x7C,0x00,0x9C,0x00,0xBC,0x00,0xDC, + 0x39, 0, 25, 0xBA,0x00,0xFC,0x01,0x3C,0x01,0x7C,0x01,0xBC,0x01,0xFC,0x02,0x7C,0x02,0xFC,0x03,0x7C,0x03,0xBC,0x03,0xDC,0x03,0xFC,0x03,0xFF, + 0x39, 0, 2, 0xBC,0x11, + 0x39, 0, 17, 0xBD,0x96,0x00,0x69,0x00,0x00,0x96,0x00,0x69,0xBB,0x44,0x44,0xBB,0xEE,0x11,0x11,0xEE, + 0x39, 0, 2, 0xC1,0x02, + 0x39, 0, 9, 0xC2,0x19,0x00,0x91,0x00,0x19,0x00,0x91,0x00, + 0x39, 0, 3, 0xC0,0x00,0x00, + 0x39, 0, 2, 0xCE,0x01, + 0x39, 0, 2, 0xCC,0x00, + +#if 0 + ///////////#1_gamma.txt/////////////// + + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xCC, 0x30, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xBF, 0x09, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x3C, 0x02, 0x8A, 0x02, 0xD8, 0x03, 0x19, 0x03, 0x99, 0x04, 0x02, 0x04, 0x58, 0x04, 0xAC, + 0x39, 0, 19, 0xB1, 0x05, 0x37, 0x05, 0xA7, 0x06, 0x15, 0x06, 0x6F, 0x06, 0xC7, 0x07, 0x5D, 0x07, 0xE1, 0x08, 0x5E, 0x08, 0xD2, + 0x39, 0, 15, 0xB2, 0x09, 0xB8, 0x0A, 0x91, 0x0B, 0x68, 0x0B, 0xD7, 0x0C, 0x12, 0x0C, 0x4A, 0x0C, 0x4A, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x01, 0xB0, 0x02, 0x29, 0x02, 0x75, 0x02, 0xB7, 0x03, 0x38, 0x03, 0x98, 0x03, 0xE4, 0x04, 0x2E, + 0x39, 0, 19, 0xB4, 0x04, 0xA4, 0x05, 0x05, 0x05, 0x65, 0x05, 0xB3, 0x06, 0x00, 0x06, 0x7F, 0x06, 0xF5, 0x07, 0x60, 0x07, 0xC1, + 0x39, 0, 15, 0xB5, 0x08, 0x80, 0x09, 0x33, 0x09, 0xE4, 0x0A, 0x38, 0x0A, 0x61, 0x0A, 0x8C, 0x0A, 0x8C, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x01, 0xE6, 0x02, 0x6C, 0x02, 0xDC, 0x03, 0x31, 0x03, 0xD7, 0x04, 0x53, 0x04, 0xB4, 0x05, 0x14, + 0x39, 0, 19, 0xB7, 0x05, 0xA4, 0x06, 0x1A, 0x06, 0x8E, 0x06, 0xEF, 0x07, 0x4E, 0x07, 0xEC, 0x08, 0x7D, 0x09, 0x03, 0x09, 0x83, + 0x39, 0, 15, 0xB8, 0x0A, 0x7F, 0x0B, 0x79, 0x0C, 0x72, 0x0C, 0xFB, 0x0D, 0x42, 0x0D, 0x8E, 0x0D, 0x8E, + 0x39, 0, 2, 0xBF, 0x08, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x90, 0x02, 0xCC, 0x03, 0x08, 0x03, 0x40, 0x03, 0xAD, 0x04, 0x04, 0x04, 0x59, 0x04, 0x9D, + 0x39, 0, 19, 0xB1, 0x05, 0x22, 0x05, 0x8D, 0x05, 0xEB, 0x06, 0x47, 0x06, 0x96, 0x07, 0x1B, 0x07, 0x9F, 0x08, 0x0F, 0x08, 0x7D, + 0x39, 0, 15, 0xB2, 0x09, 0x42, 0x0A, 0x05, 0x0A, 0xBF, 0x0B, 0x1B, 0x0B, 0x4C, 0x0B, 0x7C, 0x0B, 0x7C, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x26, 0x02, 0x6E, 0x02, 0x9B, 0x02, 0xD0, 0x03, 0x37, 0x03, 0x86, 0x03, 0xD4, 0x04, 0x0F, + 0x39, 0, 19, 0xB4, 0x04, 0x81, 0x04, 0xDF, 0x05, 0x2F, 0x05, 0x7E, 0x05, 0xC1, 0x06, 0x36, 0x06, 0xA9, 0x07, 0x0B, 0x07, 0x6C, + 0x39, 0, 15, 0xB5, 0x08, 0x10, 0x08, 0xB2, 0x09, 0x4E, 0x09, 0x9A, 0x09, 0xC0, 0x09, 0xE7, 0x09, 0xE7, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x45, 0x02, 0xA6, 0x02, 0xF7, 0x03, 0x44, 0x03, 0xDB, 0x04, 0x45, 0x04, 0xAE, 0x04, 0xF9, + 0x39, 0, 19, 0xB7, 0x05, 0x8C, 0x06, 0x02, 0x06, 0x64, 0x06, 0xC4, 0x07, 0x16, 0x07, 0xA3, 0x08, 0x2F, 0x08, 0xAC, 0x09, 0x27, + 0x39, 0, 15, 0xB8, 0x0A, 0x00, 0x0A, 0xD8, 0x0B, 0xAD, 0x0C, 0x16, 0x0C, 0x4D, 0x0C, 0x87, 0x0C, 0x87, + 0x39, 0, 2, 0xBF, 0x07, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x76, 0x02, 0x92, 0x02, 0xAE, 0x02, 0xCA, 0x03, 0x06, 0x03, 0x45, 0x03, 0x7C, 0x03, 0xAF, + 0x39, 0, 19, 0xB1, 0x04, 0x0F, 0x04, 0x5F, 0x04, 0xAD, 0x04, 0xF1, 0x05, 0x2E, 0x05, 0x97, 0x05, 0xF8, 0x06, 0x4F, 0x06, 0x9E, + 0x39, 0, 15, 0xB2, 0x07, 0x2A, 0x07, 0xA6, 0x08, 0x19, 0x08, 0x4E, 0x08, 0x68, 0x08, 0x82, 0x08, 0x82, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x24, 0x02, 0x42, 0x02, 0x60, 0x02, 0x73, 0x02, 0x9F, 0x02, 0xD4, 0x03, 0x08, 0x03, 0x3A, + 0x39, 0, 19, 0xB4, 0x03, 0x8E, 0x03, 0xD6, 0x04, 0x1C, 0x04, 0x55, 0x04, 0x8A, 0x04, 0xE8, 0x05, 0x3B, 0x05, 0x85, 0x05, 0xCC, + 0x39, 0, 15, 0xB5, 0x06, 0x43, 0x06, 0xAF, 0x07, 0x12, 0x07, 0x41, 0x07, 0x57, 0x07, 0x6C, 0x07, 0x6C, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x39, 0x02, 0x64, 0x02, 0x8F, 0x02, 0xB3, 0x03, 0x04, 0x03, 0x58, 0x03, 0xA2, 0x03, 0xE4, + 0x39, 0, 19, 0xB7, 0x04, 0x57, 0x04, 0xB5, 0x05, 0x0D, 0x05, 0x55, 0x05, 0x97, 0x06, 0x0A, 0x06, 0x70, 0x06, 0xC9, 0x07, 0x21, + 0x39, 0, 15, 0xB8, 0x07, 0xB2, 0x08, 0x38, 0x08, 0xB3, 0x08, 0xED, 0x09, 0x0A, 0x09, 0x26, 0x09, 0x26, + 0x39, 0, 2, 0xBF, 0x06, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x6D, 0x02, 0x8B, 0x02, 0xA9, 0x02, 0xC7, 0x03, 0x03, 0x03, 0x3C, 0x03, 0x74, 0x03, 0xA8, + 0x39, 0, 19, 0xB1, 0x04, 0x05, 0x04, 0x53, 0x04, 0xA0, 0x04, 0xE3, 0x05, 0x1B, 0x05, 0x87, 0x05, 0xEB, 0x06, 0x40, 0x06, 0x94, + 0x39, 0, 15, 0xB2, 0x07, 0x1E, 0x07, 0x98, 0x08, 0x06, 0x08, 0x3D, 0x08, 0x57, 0x08, 0x72, 0x08, 0x72, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x29, 0x02, 0x44, 0x02, 0x5F, 0x02, 0x70, 0x02, 0x9C, 0x02, 0xD0, 0x03, 0x03, 0x03, 0x36, + 0x39, 0, 19, 0xB4, 0x03, 0x87, 0x03, 0xCB, 0x04, 0x0D, 0x04, 0x48, 0x04, 0x79, 0x04, 0xD9, 0x05, 0x2F, 0x05, 0x78, 0x05, 0xBF, + 0x39, 0, 15, 0xB5, 0x06, 0x37, 0x06, 0xA1, 0x07, 0x02, 0x07, 0x31, 0x07, 0x47, 0x07, 0x5D, 0x07, 0x5D, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x39, 0x02, 0x63, 0x02, 0x8D, 0x02, 0xB0, 0x03, 0x00, 0x03, 0x4D, 0x03, 0x98, 0x03, 0xDE, + 0x39, 0, 19, 0xB7, 0x04, 0x4D, 0x04, 0xA6, 0x04, 0xFE, 0x05, 0x45, 0x05, 0x82, 0x05, 0xF9, 0x06, 0x62, 0x06, 0xBC, 0x07, 0x15, + 0x39, 0, 15, 0xB8, 0x07, 0xA5, 0x08, 0x28, 0x08, 0x9F, 0x08, 0xDA, 0x08, 0xF6, 0x09, 0x11, 0x09, 0x11, + 0x39, 0, 2, 0xBF, 0x05, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x98, 0x02, 0xAE, 0x02, 0xC4, 0x02, 0xDA, 0x03, 0x10, 0x03, 0x44, 0x03, 0x77, 0x03, 0xA8, + 0x39, 0, 19, 0xB1, 0x04, 0x07, 0x04, 0x5C, 0x04, 0xA5, 0x04, 0xE6, 0x05, 0x1B, 0x05, 0x81, 0x05, 0xE5, 0x06, 0x36, 0x06, 0x86, + 0x39, 0, 15, 0xB2, 0x07, 0x12, 0x07, 0x89, 0x07, 0xF7, 0x08, 0x2D, 0x08, 0x48, 0x08, 0x60, 0x08, 0x60, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x41, 0x02, 0x59, 0x02, 0x71, 0x02, 0x80, 0x02, 0xA7, 0x02, 0xD6, 0x03, 0x03, 0x03, 0x30, + 0x39, 0, 19, 0xB4, 0x03, 0x87, 0x03, 0xD2, 0x04, 0x11, 0x04, 0x4B, 0x04, 0x7D, 0x04, 0xD5, 0x05, 0x2B, 0x05, 0x72, 0x05, 0xB7, + 0x39, 0, 15, 0xB5, 0x06, 0x2F, 0x06, 0x98, 0x06, 0xF7, 0x07, 0x25, 0x07, 0x3C, 0x07, 0x51, 0x07, 0x51, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x54, 0x02, 0x79, 0x02, 0x9E, 0x02, 0xBD, 0x03, 0x06, 0x03, 0x4E, 0x03, 0x94, 0x03, 0xD2, + 0x39, 0, 19, 0xB7, 0x04, 0x4B, 0x04, 0xAD, 0x04, 0xFF, 0x05, 0x48, 0x05, 0x84, 0x05, 0xF1, 0x06, 0x5D, 0x06, 0xB4, 0x07, 0x09, + 0x39, 0, 15, 0xB8, 0x07, 0x9C, 0x08, 0x1D, 0x08, 0x92, 0x08, 0xCB, 0x08, 0xE7, 0x09, 0x02, 0x09, 0x02, + 0x39, 0, 2, 0xBF, 0x04, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0xA2, 0x02, 0xB9, 0x02, 0xD0, 0x02, 0xE7, 0x03, 0x18, 0x03, 0x4B, 0x03, 0x7D, 0x03, 0xB2, + 0x39, 0, 19, 0xB1, 0x04, 0x03, 0x04, 0x53, 0x04, 0x95, 0x04, 0xD6, 0x05, 0x11, 0x05, 0x7A, 0x05, 0xDC, 0x06, 0x2D, 0x06, 0x7D, + 0x39, 0, 15, 0xB2, 0x07, 0x01, 0x07, 0x77, 0x07, 0xE4, 0x08, 0x18, 0x08, 0x31, 0x08, 0x49, 0x08, 0x49, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x65, 0x02, 0x79, 0x02, 0x8D, 0x02, 0x9A, 0x02, 0xC0, 0x02, 0xEC, 0x03, 0x16, 0x03, 0x45, + 0x39, 0, 19, 0xB4, 0x03, 0x90, 0x03, 0xDA, 0x04, 0x15, 0x04, 0x4E, 0x04, 0x83, 0x04, 0xDF, 0x05, 0x31, 0x05, 0x77, 0x05, 0xBB, + 0x39, 0, 15, 0xB5, 0x06, 0x31, 0x06, 0x98, 0x06, 0xF7, 0x07, 0x23, 0x07, 0x38, 0x07, 0x4C, 0x07, 0x4C, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x7A, 0x02, 0x96, 0x02, 0xB2, 0x02, 0xCA, 0x03, 0x10, 0x03, 0x55, 0x03, 0x99, 0x03, 0xDC, + 0x39, 0, 19, 0xB7, 0x04, 0x40, 0x04, 0xA2, 0x04, 0xEE, 0x05, 0x38, 0x05, 0x79, 0x05, 0xEE, 0x06, 0x54, 0x06, 0xA9, 0x06, 0xFC, + 0x39, 0, 15, 0xB8, 0x07, 0x8A, 0x08, 0x09, 0x08, 0x80, 0x08, 0xB8, 0x08, 0xD2, 0x08, 0xEC, 0x08, 0xEC, + 0x39, 0, 2, 0xBF, 0x03, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0xEA, 0x02, 0xFB, 0x03, 0x0C, 0x03, 0x1D, 0x03, 0x40, 0x03, 0x6C, 0x03, 0x96, 0x03, 0xBE, + 0x39, 0, 19, 0xB1, 0x04, 0x0D, 0x04, 0x52, 0x04, 0x91, 0x04, 0xCF, 0x05, 0x06, 0x05, 0x6A, 0x05, 0xC3, 0x06, 0x13, 0x06, 0x62, + 0x39, 0, 15, 0xB2, 0x06, 0xE5, 0x07, 0x59, 0x07, 0xC0, 0x07, 0xF2, 0x08, 0x0A, 0x08, 0x21, 0x08, 0x21, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x95, 0x02, 0xAA, 0x02, 0xBF, 0x02, 0xD4, 0x02, 0xEF, 0x03, 0x11, 0x03, 0x34, 0x03, 0x55, + 0x39, 0, 19, 0xB4, 0x03, 0x9E, 0x03, 0xDD, 0x04, 0x15, 0x04, 0x4B, 0x04, 0x7D, 0x04, 0xD5, 0x05, 0x21, 0x05, 0x66, 0x05, 0xAA, + 0x39, 0, 15, 0xB5, 0x06, 0x19, 0x06, 0x7D, 0x06, 0xD7, 0x07, 0x03, 0x07, 0x17, 0x07, 0x2B, 0x07, 0x2B, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0xA4, 0x02, 0xC2, 0x02, 0xE0, 0x02, 0xFE, 0x03, 0x31, 0x03, 0x6C, 0x03, 0xA3, 0x03, 0xD8, + 0x39, 0, 19, 0xB7, 0x04, 0x40, 0x04, 0x95, 0x04, 0xE0, 0x05, 0x29, 0x05, 0x69, 0x05, 0xD8, 0x06, 0x38, 0x06, 0x8E, 0x06, 0xE2, + 0x39, 0, 15, 0xB8, 0x07, 0x6D, 0x07, 0xE8, 0x08, 0x58, 0x08, 0x8E, 0x08, 0xA8, 0x08, 0xC1, 0x08, 0xC1, + 0x39, 0, 2, 0xBF, 0x02, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x24, 0x03, 0x34, 0x03, 0x44, 0x03, 0x54, 0x03, 0x74, 0x03, 0x94, 0x03, 0xB4, 0x03, 0xD3, + 0x39, 0, 19, 0xB1, 0x04, 0x16, 0x04, 0x53, 0x04, 0x8B, 0x04, 0xC1, 0x04, 0xF2, 0x05, 0x51, 0x05, 0xA7, 0x05, 0xF2, 0x06, 0x3E, + 0x39, 0, 15, 0xB2, 0x06, 0xB9, 0x07, 0x26, 0x07, 0x8E, 0x07, 0xBE, 0x07, 0xD4, 0x07, 0xEA, 0x07, 0xEA, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xB7, 0x02, 0xCD, 0x02, 0xE3, 0x02, 0xF9, 0x03, 0x25, 0x03, 0x41, 0x03, 0x5B, 0x03, 0x74, + 0x39, 0, 19, 0xB4, 0x03, 0xAD, 0x03, 0xE8, 0x04, 0x19, 0x04, 0x49, 0x04, 0x73, 0x04, 0xC4, 0x05, 0x11, 0x05, 0x50, 0x05, 0x8C, + 0x39, 0, 15, 0xB5, 0x05, 0xF9, 0x06, 0x57, 0x06, 0xAE, 0x06, 0xD7, 0x06, 0xEA, 0x06, 0xFD, 0x06, 0xFD, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0xC9, 0x02, 0xE5, 0x03, 0x01, 0x03, 0x1D, 0x03, 0x56, 0x03, 0x86, 0x03, 0xB3, 0x03, 0xDE, + 0x39, 0, 19, 0xB7, 0x04, 0x37, 0x04, 0x8A, 0x04, 0xCF, 0x05, 0x12, 0x05, 0x4A, 0x05, 0xB8, 0x06, 0x1A, 0x06, 0x6B, 0x06, 0xB9, + 0x39, 0, 15, 0xB8, 0x07, 0x3F, 0x07, 0xB6, 0x08, 0x23, 0x08, 0x56, 0x08, 0x6E, 0x08, 0x86, 0x08, 0x86, + 0x39, 0, 2, 0xBF, 0x01, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x6F, 0x03, 0x7A, 0x03, 0x85, 0x03, 0x90, 0x03, 0xA7, 0x03, 0xBE, 0x03, 0xD5, 0x03, 0xEE, + 0x39, 0, 19, 0xB1, 0x04, 0x1E, 0x04, 0x4F, 0x04, 0x7E, 0x04, 0xAD, 0x04, 0xD8, 0x05, 0x2A, 0x05, 0x71, 0x05, 0xB7, 0x05, 0xFA, + 0x39, 0, 15, 0xB2, 0x06, 0x70, 0x06, 0xDB, 0x07, 0x38, 0x07, 0x65, 0x07, 0x7B, 0x07, 0x8F, 0x07, 0x8F, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x20, 0x03, 0x2D, 0x03, 0x3A, 0x03, 0x47, 0x03, 0x62, 0x03, 0x7D, 0x03, 0x8E, 0x03, 0xA2, + 0x39, 0, 19, 0xB4, 0x03, 0xC7, 0x03, 0xEE, 0x04, 0x17, 0x04, 0x3E, 0x04, 0x64, 0x04, 0xAC, 0x04, 0xE9, 0x05, 0x24, 0x05, 0x5B, + 0x39, 0, 15, 0xB5, 0x05, 0xBD, 0x06, 0x17, 0x06, 0x66, 0x06, 0x8C, 0x06, 0x9F, 0x06, 0xB1, 0x06, 0xB1, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x2E, 0x03, 0x40, 0x03, 0x52, 0x03, 0x64, 0x03, 0x88, 0x03, 0xAC, 0x03, 0xCA, 0x03, 0xED, + 0x39, 0, 19, 0xB7, 0x04, 0x2F, 0x04, 0x6D, 0x04, 0xAD, 0x04, 0xE8, 0x05, 0x1D, 0x05, 0x83, 0x05, 0xD5, 0x06, 0x25, 0x06, 0x6F, + 0x39, 0, 15, 0xB8, 0x06, 0xF0, 0x07, 0x63, 0x07, 0xC5, 0x07, 0xF5, 0x08, 0x0D, 0x08, 0x23, 0x08, 0x23, + 0x39, 0, 2, 0xBF, 0x00, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xBE, 0x03, 0xC4, 0x03, 0xCA, 0x03, 0xD0, 0x03, 0xDD, 0x03, 0xEA, 0x03, 0xF7, 0x04, 0x04, + 0x39, 0, 19, 0xB1, 0x04, 0x1F, 0x04, 0x3C, 0x04, 0x58, 0x04, 0x77, 0x04, 0x94, 0x04, 0xCD, 0x05, 0x03, 0x05, 0x37, 0x05, 0x69, + 0x39, 0, 15, 0xB2, 0x05, 0xC6, 0x06, 0x18, 0x06, 0x69, 0x06, 0x8F, 0x06, 0xA1, 0x06, 0xB5, 0x06, 0xB5, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x83, 0x03, 0x8A, 0x03, 0x91, 0x03, 0x98, 0x03, 0xA6, 0x03, 0xB4, 0x03, 0xC2, 0x03, 0xD0, + 0x39, 0, 19, 0xB4, 0x03, 0xE2, 0x03, 0xF8, 0x04, 0x0D, 0x04, 0x26, 0x04, 0x3C, 0x04, 0x6A, 0x04, 0x96, 0x04, 0xC1, 0x04, 0xEB, + 0x39, 0, 15, 0xB5, 0x05, 0x39, 0x05, 0x7D, 0x05, 0xBF, 0x05, 0xDF, 0x05, 0xED, 0x05, 0xFD, 0x05, 0xFD, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x81, 0x03, 0x8B, 0x03, 0x95, 0x03, 0x9F, 0x03, 0xB4, 0x03, 0xC9, 0x03, 0xDE, 0x03, 0xF3, + 0x39, 0, 19, 0xB7, 0x04, 0x16, 0x04, 0x3E, 0x04, 0x67, 0x04, 0x8F, 0x04, 0xB3, 0x04, 0xFE, 0x05, 0x43, 0x05, 0x83, 0x05, 0xC1, + 0x39, 0, 15, 0xB8, 0x06, 0x2F, 0x06, 0x8B, 0x06, 0xE5, 0x07, 0x0F, 0x07, 0x22, 0x07, 0x35, 0x07, 0x35, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xBF, 0x19, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x26, 0x02, 0x64, 0x02, 0xA2, 0x02, 0xDB, 0x03, 0x4A, 0x03, 0xB1, 0x04, 0x04, 0x04, 0x55, + 0x39, 0, 19, 0xB1, 0x04, 0xD8, 0x05, 0x46, 0x05, 0xB3, 0x06, 0x0B, 0x06, 0x61, 0x06, 0xFC, 0x07, 0x7F, 0x07, 0xFB, 0x08, 0x6F, + 0x39, 0, 15, 0xB2, 0x09, 0x55, 0x0A, 0x31, 0x0B, 0x0B, 0x0B, 0x7E, 0x0B, 0xBA, 0x0B, 0xF3, 0x0B, 0xF3, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x01, 0xC0, 0x02, 0x1B, 0x02, 0x54, 0x02, 0x89, 0x02, 0xF1, 0x03, 0x4D, 0x03, 0x94, 0x03, 0xDA, + 0x39, 0, 19, 0xB4, 0x04, 0x4F, 0x04, 0xAD, 0x05, 0x0A, 0x05, 0x56, 0x05, 0xA1, 0x06, 0x28, 0x06, 0x98, 0x07, 0x03, 0x07, 0x64, + 0x39, 0, 15, 0xB5, 0x08, 0x24, 0x08, 0xD7, 0x09, 0x88, 0x09, 0xE1, 0x0A, 0x0B, 0x0A, 0x35, 0x0A, 0x35, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x01, 0xF3, 0x02, 0x57, 0x02, 0xAB, 0x02, 0xF5, 0x03, 0x86, 0x04, 0x00, 0x04, 0x5D, 0x04, 0xB8, + 0x39, 0, 19, 0xB7, 0x05, 0x4A, 0x05, 0xBD, 0x06, 0x2F, 0x06, 0x8D, 0x06, 0xE9, 0x07, 0x92, 0x08, 0x1B, 0x08, 0xA1, 0x09, 0x20, + 0x39, 0, 15, 0xB8, 0x0A, 0x1B, 0x0B, 0x1B, 0x0C, 0x1A, 0x0C, 0xA6, 0x0C, 0xF3, 0x0D, 0x44, 0x0D, 0x44, + 0x39, 0, 2, 0xBF, 0x18, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x97, 0x02, 0xC2, 0x02, 0xED, 0x03, 0x18, 0x03, 0x6C, 0x03, 0xBA, 0x04, 0x07, 0x04, 0x48, + 0x39, 0, 19, 0xB1, 0x04, 0xC7, 0x05, 0x31, 0x05, 0x8E, 0x05, 0xE9, 0x06, 0x37, 0x06, 0xBA, 0x07, 0x3B, 0x07, 0xAB, 0x08, 0x1A, + 0x39, 0, 15, 0xB2, 0x08, 0xE1, 0x09, 0xA6, 0x0A, 0x62, 0x0A, 0xBE, 0x0A, 0xED, 0x0B, 0x20, 0x0B, 0x20, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x47, 0x02, 0x77, 0x02, 0x95, 0x02, 0xBA, 0x03, 0x00, 0x03, 0x43, 0x03, 0x84, 0x03, 0xBD, + 0x39, 0, 19, 0xB4, 0x04, 0x2B, 0x04, 0x87, 0x04, 0xD7, 0x05, 0x26, 0x05, 0x68, 0x05, 0xDA, 0x06, 0x4A, 0x06, 0xAB, 0x07, 0x0B, + 0x39, 0, 15, 0xB5, 0x07, 0xAF, 0x08, 0x52, 0x08, 0xEC, 0x09, 0x38, 0x09, 0x60, 0x09, 0x88, 0x09, 0x88, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x60, 0x02, 0xA5, 0x02, 0xDF, 0x03, 0x1C, 0x03, 0x92, 0x03, 0xF2, 0x04, 0x51, 0x04, 0x9B, + 0x39, 0, 19, 0xB7, 0x05, 0x2C, 0x05, 0x9F, 0x06, 0x02, 0x06, 0x64, 0x06, 0xB7, 0x07, 0x44, 0x07, 0xCF, 0x08, 0x48, 0x08, 0xBF, + 0x39, 0, 15, 0xB8, 0x09, 0x9A, 0x0A, 0x74, 0x0B, 0x51, 0x0B, 0xBE, 0x0B, 0xF5, 0x0C, 0x30, 0x0C, 0x30, + 0x39, 0, 2, 0xBF, 0x17, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x8B, 0x02, 0x9B, 0x02, 0xAB, 0x02, 0xBB, 0x02, 0xE6, 0x03, 0x16, 0x03, 0x44, 0x03, 0x72, + 0x39, 0, 19, 0xB1, 0x03, 0xC0, 0x04, 0x0C, 0x04, 0x53, 0x04, 0x93, 0x04, 0xCC, 0x05, 0x36, 0x05, 0x97, 0x05, 0xEA, 0x06, 0x3A, + 0x39, 0, 15, 0xB2, 0x06, 0xC6, 0x07, 0x44, 0x07, 0xB6, 0x07, 0xE9, 0x08, 0x04, 0x08, 0x1E, 0x08, 0x1E, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x3B, 0x02, 0x51, 0x02, 0x67, 0x02, 0x75, 0x02, 0x92, 0x02, 0xB8, 0x02, 0xDD, 0x03, 0x03, + 0x39, 0, 19, 0xB4, 0x03, 0x47, 0x03, 0x88, 0x03, 0xC4, 0x03, 0xFE, 0x04, 0x2E, 0x04, 0x8B, 0x04, 0xE0, 0x05, 0x2A, 0x05, 0x6C, + 0x39, 0, 15, 0xB5, 0x05, 0xE5, 0x06, 0x4C, 0x06, 0xB0, 0x06, 0xDF, 0x06, 0xF6, 0x07, 0x0C, 0x07, 0x0C, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x55, 0x02, 0x73, 0x02, 0x91, 0x02, 0xAA, 0x02, 0xE3, 0x03, 0x27, 0x03, 0x65, 0x03, 0xA0, + 0x39, 0, 19, 0xB7, 0x04, 0x02, 0x04, 0x5C, 0x04, 0xAC, 0x04, 0xF5, 0x05, 0x34, 0x05, 0xA6, 0x06, 0x0F, 0x06, 0x69, 0x06, 0xBC, + 0x39, 0, 15, 0xB8, 0x07, 0x51, 0x07, 0xD4, 0x08, 0x4F, 0x08, 0x88, 0x08, 0xA6, 0x08, 0xC2, 0x08, 0xC2, + 0x39, 0, 2, 0xBF, 0x16, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0x8E, 0x02, 0x9D, 0x02, 0xAC, 0x02, 0xBB, 0x02, 0xE4, 0x03, 0x11, 0x03, 0x3D, 0x03, 0x68, + 0x39, 0, 19, 0xB1, 0x03, 0xC1, 0x04, 0x08, 0x04, 0x4E, 0x04, 0x8D, 0x04, 0xC3, 0x05, 0x2D, 0x05, 0x8B, 0x05, 0xDC, 0x06, 0x2B, + 0x39, 0, 15, 0xB2, 0x06, 0xB5, 0x07, 0x31, 0x07, 0xA3, 0x07, 0xD8, 0x07, 0xF1, 0x08, 0x0C, 0x08, 0x0C, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x3F, 0x02, 0x53, 0x02, 0x67, 0x02, 0x74, 0x02, 0x91, 0x02, 0xB5, 0x02, 0xD7, 0x02, 0xFB, + 0x39, 0, 19, 0xB4, 0x03, 0x46, 0x03, 0x84, 0x03, 0xC1, 0x03, 0xF8, 0x04, 0x27, 0x04, 0x81, 0x04, 0xD2, 0x05, 0x18, 0x05, 0x5D, + 0x39, 0, 15, 0xB5, 0x05, 0xD6, 0x06, 0x40, 0x06, 0xA3, 0x06, 0xD1, 0x06, 0xE6, 0x06, 0xFD, 0x06, 0xFD, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x58, 0x02, 0x74, 0x02, 0x90, 0x02, 0xA8, 0x02, 0xE1, 0x03, 0x1F, 0x03, 0x5B, 0x03, 0x93, + 0x39, 0, 19, 0xB7, 0x04, 0x01, 0x04, 0x55, 0x04, 0xA7, 0x04, 0xEE, 0x05, 0x28, 0x05, 0x9A, 0x05, 0xFF, 0x06, 0x55, 0x06, 0xA9, + 0x39, 0, 15, 0xB8, 0x07, 0x3F, 0x07, 0xC2, 0x08, 0x3E, 0x08, 0x77, 0x08, 0x92, 0x08, 0xAF, 0x08, 0xAF, + 0x39, 0, 2, 0xBF, 0x15, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0xA9, 0x02, 0xB8, 0x02, 0xC7, 0x02, 0xD6, 0x02, 0xF7, 0x03, 0x22, 0x03, 0x4C, 0x03, 0x73, + 0x39, 0, 19, 0xB1, 0x03, 0xBF, 0x04, 0x04, 0x04, 0x49, 0x04, 0x88, 0x04, 0xBF, 0x05, 0x22, 0x05, 0x83, 0x05, 0xD4, 0x06, 0x23, + 0x39, 0, 15, 0xB2, 0x06, 0xAE, 0x07, 0x28, 0x07, 0x94, 0x07, 0xC8, 0x07, 0xE4, 0x07, 0xFD, 0x07, 0xFD, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x52, 0x02, 0x66, 0x02, 0x7A, 0x02, 0x87, 0x02, 0x9F, 0x02, 0xBF, 0x02, 0xDD, 0x03, 0x01, + 0x39, 0, 19, 0xB4, 0x03, 0x45, 0x03, 0x86, 0x03, 0xBF, 0x03, 0xF4, 0x04, 0x27, 0x04, 0x7C, 0x04, 0xD0, 0x05, 0x15, 0x05, 0x58, + 0x39, 0, 15, 0xB5, 0x05, 0xD1, 0x06, 0x38, 0x06, 0x97, 0x06, 0xC5, 0x06, 0xDB, 0x06, 0xF1, 0x06, 0xF1, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x75, 0x02, 0x8F, 0x02, 0xA9, 0x02, 0xBF, 0x02, 0xEE, 0x03, 0x29, 0x03, 0x62, 0x03, 0x96, + 0x39, 0, 19, 0xB7, 0x03, 0xFC, 0x04, 0x54, 0x04, 0xA2, 0x04, 0xE6, 0x05, 0x26, 0x05, 0x90, 0x05, 0xF9, 0x06, 0x4F, 0x06, 0xA3, + 0x39, 0, 15, 0xB8, 0x07, 0x37, 0x07, 0xB9, 0x08, 0x2F, 0x08, 0x69, 0x08, 0x84, 0x08, 0x9F, 0x08, 0x9F, + 0x39, 0, 2, 0xBF, 0x14, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0xBE, 0x02, 0xC9, 0x02, 0xD4, 0x02, 0xDF, 0x03, 0x00, 0x03, 0x25, 0x03, 0x49, 0x03, 0x6F, + 0x39, 0, 19, 0xB1, 0x03, 0xBA, 0x04, 0x04, 0x04, 0x44, 0x04, 0x82, 0x04, 0xBA, 0x05, 0x20, 0x05, 0x79, 0x05, 0xC9, 0x06, 0x18, + 0x39, 0, 15, 0xB2, 0x06, 0x9E, 0x07, 0x15, 0x07, 0x82, 0x07, 0xB6, 0x07, 0xCE, 0x07, 0xE5, 0x07, 0xE5, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x6B, 0x02, 0x7E, 0x02, 0x91, 0x02, 0x9D, 0x02, 0xB5, 0x02, 0xD5, 0x02, 0xF3, 0x03, 0x10, + 0x39, 0, 19, 0xB4, 0x03, 0x52, 0x03, 0x93, 0x03, 0xCB, 0x04, 0x01, 0x04, 0x33, 0x04, 0x8A, 0x04, 0xD3, 0x05, 0x18, 0x05, 0x5B, + 0x39, 0, 15, 0xB5, 0x05, 0xCF, 0x06, 0x36, 0x06, 0x95, 0x06, 0xC1, 0x06, 0xD6, 0x06, 0xEA, 0x06, 0xEA, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x8B, 0x02, 0xA3, 0x02, 0xBB, 0x02, 0xCF, 0x02, 0xFA, 0x03, 0x30, 0x03, 0x64, 0x03, 0x95, + 0x39, 0, 19, 0xB7, 0x03, 0xF3, 0x04, 0x50, 0x04, 0x99, 0x04, 0xE1, 0x05, 0x22, 0x05, 0x92, 0x05, 0xEF, 0x06, 0x43, 0x06, 0x95, + 0x39, 0, 15, 0xB8, 0x07, 0x25, 0x07, 0xA7, 0x08, 0x1E, 0x08, 0x56, 0x08, 0x70, 0x08, 0x89, 0x08, 0x89, + 0x39, 0, 2, 0xBF, 0x13, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0xF5, 0x03, 0x01, 0x03, 0x0D, 0x03, 0x19, 0x03, 0x32, 0x03, 0x50, 0x03, 0x6F, 0x03, 0x8D, + 0x39, 0, 19, 0xB1, 0x03, 0xCC, 0x04, 0x0B, 0x04, 0x45, 0x04, 0x7D, 0x04, 0xB1, 0x05, 0x15, 0x05, 0x6A, 0x05, 0xB4, 0x05, 0xFD, + 0x39, 0, 15, 0xB2, 0x06, 0x82, 0x06, 0xF8, 0x07, 0x5F, 0x07, 0x91, 0x07, 0xA9, 0x07, 0xBF, 0x07, 0xBF, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xA6, 0x02, 0xB7, 0x02, 0xC8, 0x02, 0xD9, 0x02, 0xEF, 0x03, 0x05, 0x03, 0x1F, 0x03, 0x38, + 0x39, 0, 19, 0xB4, 0x03, 0x6C, 0x03, 0xA1, 0x03, 0xD4, 0x04, 0x05, 0x04, 0x30, 0x04, 0x86, 0x04, 0xCF, 0x05, 0x10, 0x05, 0x4F, + 0x39, 0, 15, 0xB5, 0x05, 0xBF, 0x06, 0x20, 0x06, 0x7A, 0x06, 0xA5, 0x06, 0xB9, 0x06, 0xCC, 0x06, 0xCC, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0xC9, 0x02, 0xDE, 0x02, 0xF3, 0x03, 0x08, 0x03, 0x2C, 0x03, 0x55, 0x03, 0x81, 0x03, 0xAC, + 0x39, 0, 19, 0xB7, 0x03, 0xFD, 0x04, 0x4C, 0x04, 0x91, 0x04, 0xD5, 0x05, 0x10, 0x05, 0x80, 0x05, 0xDF, 0x06, 0x2F, 0x06, 0x7D, + 0x39, 0, 15, 0xB8, 0x07, 0x0C, 0x07, 0x8A, 0x07, 0xF9, 0x08, 0x2F, 0x08, 0x48, 0x08, 0x61, 0x08, 0x61, + 0x39, 0, 2, 0xBF, 0x12, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x33, 0x03, 0x3E, 0x03, 0x49, 0x03, 0x54, 0x03, 0x6A, 0x03, 0x80, 0x03, 0x97, 0x03, 0xAD, + 0x39, 0, 19, 0xB1, 0x03, 0xE1, 0x04, 0x13, 0x04, 0x47, 0x04, 0x79, 0x04, 0xA6, 0x04, 0xFE, 0x05, 0x4E, 0x05, 0x99, 0x05, 0xDE, + 0x39, 0, 15, 0xB2, 0x06, 0x58, 0x06, 0xC7, 0x07, 0x2B, 0x07, 0x5B, 0x07, 0x71, 0x07, 0x88, 0x07, 0x88, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xE6, 0x02, 0xF4, 0x03, 0x02, 0x03, 0x10, 0x03, 0x2C, 0x03, 0x3E, 0x03, 0x51, 0x03, 0x62, + 0x39, 0, 19, 0xB4, 0x03, 0x8D, 0x03, 0xB5, 0x03, 0xE1, 0x04, 0x0C, 0x04, 0x33, 0x04, 0x7D, 0x04, 0xBF, 0x04, 0xFD, 0x05, 0x37, + 0x39, 0, 15, 0xB5, 0x05, 0x9E, 0x05, 0xFB, 0x06, 0x50, 0x06, 0x79, 0x06, 0x8C, 0x06, 0xA0, 0x06, 0xA0, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x0C, 0x03, 0x1D, 0x03, 0x2E, 0x03, 0x3F, 0x03, 0x61, 0x03, 0x7E, 0x03, 0x9F, 0x03, 0xBE, + 0x39, 0, 19, 0xB7, 0x04, 0x05, 0x04, 0x44, 0x04, 0x85, 0x04, 0xC5, 0x04, 0xFA, 0x05, 0x62, 0x05, 0xBC, 0x06, 0x0F, 0x06, 0x5C, + 0x39, 0, 15, 0xB8, 0x06, 0xE0, 0x07, 0x57, 0x07, 0xC1, 0x07, 0xF4, 0x08, 0x0C, 0x08, 0x26, 0x08, 0x26, + 0x39, 0, 2, 0xBF, 0x11, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x7E, 0x03, 0x86, 0x03, 0x8E, 0x03, 0x96, 0x03, 0xA7, 0x03, 0xB8, 0x03, 0xC9, 0x03, 0xDC, + 0x39, 0, 19, 0xB1, 0x03, 0xFE, 0x04, 0x24, 0x04, 0x4A, 0x04, 0x6F, 0x04, 0x96, 0x04, 0xE2, 0x05, 0x24, 0x05, 0x64, 0x05, 0xA2, + 0x39, 0, 15, 0xB2, 0x06, 0x12, 0x06, 0x78, 0x06, 0xD4, 0x07, 0x01, 0x07, 0x17, 0x07, 0x2B, 0x07, 0x2B, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x29, 0x03, 0x35, 0x03, 0x41, 0x03, 0x4D, 0x03, 0x65, 0x03, 0x7D, 0x03, 0x8C, 0x03, 0x9B, + 0x39, 0, 19, 0xB4, 0x03, 0xB7, 0x03, 0xD3, 0x03, 0xF2, 0x04, 0x14, 0x04, 0x34, 0x04, 0x72, 0x04, 0xA8, 0x04, 0xDD, 0x05, 0x10, + 0x39, 0, 15, 0xB5, 0x05, 0x6D, 0x05, 0xC0, 0x06, 0x0D, 0x06, 0x32, 0x06, 0x44, 0x06, 0x55, 0x06, 0x55, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x45, 0x03, 0x54, 0x03, 0x63, 0x03, 0x72, 0x03, 0x91, 0x03, 0xB0, 0x03, 0xCA, 0x03, 0xE3, + 0x39, 0, 19, 0xB7, 0x04, 0x13, 0x04, 0x45, 0x04, 0x78, 0x04, 0xAA, 0x04, 0xDA, 0x05, 0x37, 0x05, 0x85, 0x05, 0xD1, 0x06, 0x16, + 0x39, 0, 15, 0xB8, 0x06, 0x91, 0x07, 0x01, 0x07, 0x64, 0x07, 0x94, 0x07, 0xAB, 0x07, 0xC1, 0x07, 0xC1, + 0x39, 0, 2, 0xBF, 0x10, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xE6, 0x03, 0xE9, 0x03, 0xEC, 0x03, 0xEF, 0x03, 0xF6, 0x03, 0xFD, 0x04, 0x04, 0x04, 0x0B, + 0x39, 0, 19, 0xB1, 0x04, 0x1A, 0x04, 0x2D, 0x04, 0x45, 0x04, 0x59, 0x04, 0x6E, 0x04, 0x9E, 0x04, 0xCC, 0x04, 0xF8, 0x05, 0x22, + 0x39, 0, 15, 0xB2, 0x05, 0x78, 0x05, 0xC5, 0x06, 0x11, 0x06, 0x36, 0x06, 0x47, 0x06, 0x56, 0x06, 0x56, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x8D, 0x03, 0x93, 0x03, 0x99, 0x03, 0x9F, 0x03, 0xAC, 0x03, 0xB9, 0x03, 0xC6, 0x03, 0xD3, + 0x39, 0, 19, 0xB4, 0x03, 0xE4, 0x03, 0xF5, 0x04, 0x06, 0x04, 0x17, 0x04, 0x28, 0x04, 0x4E, 0x04, 0x72, 0x04, 0x96, 0x04, 0xB9, + 0x39, 0, 15, 0xB5, 0x04, 0xFC, 0x05, 0x3A, 0x05, 0x77, 0x05, 0x94, 0x05, 0xA1, 0x05, 0xAF, 0x05, 0xAF, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0xB3, 0x03, 0xBA, 0x03, 0xC1, 0x03, 0xC8, 0x03, 0xD7, 0x03, 0xE6, 0x03, 0xF5, 0x04, 0x04, + 0x39, 0, 19, 0xB7, 0x04, 0x1D, 0x04, 0x37, 0x04, 0x56, 0x04, 0x74, 0x04, 0x92, 0x04, 0xD1, 0x05, 0x0B, 0x05, 0x43, 0x05, 0x79, + 0x39, 0, 15, 0xB8, 0x05, 0xDD, 0x06, 0x35, 0x06, 0x8B, 0x06, 0xB3, 0x06, 0xC5, 0x06, 0xD9, 0x06, 0xD9, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xBF, 0x42, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xB0, 0x03, 0xDA, 0x04, 0x04, 0x04, 0x2E, 0x04, 0x77, 0x04, 0xB8, 0x04, 0xF8, 0x05, 0x33, + 0x39, 0, 19, 0xB1, 0x05, 0xA6, 0x06, 0x06, 0x06, 0x64, 0x06, 0xB6, 0x06, 0xFF, 0x07, 0x8D, 0x08, 0x03, 0x08, 0x69, 0x08, 0xCD, + 0x39, 0, 15, 0xB2, 0x09, 0x7A, 0x0A, 0x10, 0x0A, 0x94, 0x0A, 0xCF, 0x0A, 0xEE, 0x0B, 0x0C, 0x0B, 0x0C, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x06, 0x03, 0x2A, 0x03, 0x4E, 0x03, 0x65, 0x03, 0x97, 0x03, 0xDB, 0x04, 0x1E, 0x04, 0x5A, + 0x39, 0, 19, 0xB4, 0x04, 0xCF, 0x05, 0x25, 0x05, 0x79, 0x05, 0xC3, 0x06, 0x03, 0x06, 0x80, 0x06, 0xE1, 0x07, 0x3B, 0x07, 0x93, + 0x39, 0, 15, 0xB5, 0x08, 0x27, 0x08, 0xA5, 0x09, 0x1A, 0x09, 0x4C, 0x09, 0x67, 0x09, 0x80, 0x09, 0x80, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x3D, 0x03, 0x76, 0x03, 0xAF, 0x03, 0xDF, 0x04, 0x41, 0x04, 0xA4, 0x05, 0x06, 0x05, 0x55, + 0x39, 0, 19, 0xB7, 0x05, 0xF1, 0x06, 0x63, 0x06, 0xD4, 0x07, 0x2D, 0x07, 0x7D, 0x08, 0x1B, 0x08, 0x95, 0x09, 0x00, 0x09, 0x6A, + 0x39, 0, 15, 0xB8, 0x0A, 0x1E, 0x0A, 0xBE, 0x0B, 0x51, 0x0B, 0x93, 0x0B, 0xB7, 0x0B, 0xD9, 0x0B, 0xD9, + 0x39, 0, 2, 0xBF, 0x41, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x02, 0xCF, 0x03, 0xCB, 0x03, 0xEB, 0x04, 0x0B, 0x04, 0x47, 0x04, 0x7E, 0x04, 0xCC, 0x04, 0xFD, + 0x39, 0, 19, 0xB1, 0x05, 0x2A, 0x05, 0x78, 0x05, 0xC9, 0x06, 0x12, 0x06, 0x99, 0x06, 0xE1, 0x07, 0x30, 0x07, 0x9A, 0x07, 0xF4, + 0x39, 0, 15, 0xB2, 0x08, 0x44, 0x08, 0xE8, 0x09, 0xAD, 0x09, 0xE6, 0x0A, 0x03, 0x0A, 0x1D, 0x0A, 0x20, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x4E, 0x03, 0x1D, 0x03, 0x39, 0x03, 0x52, 0x03, 0x76, 0x03, 0x9E, 0x03, 0xF0, 0x04, 0x23, + 0x39, 0, 19, 0xB4, 0x04, 0x50, 0x04, 0xA0, 0x04, 0xEE, 0x05, 0x2F, 0x05, 0xA9, 0x05, 0xE9, 0x06, 0x2E, 0x06, 0x8B, 0x06, 0xD5, + 0x39, 0, 15, 0xB5, 0x07, 0x1A, 0x07, 0xAA, 0x08, 0x52, 0x08, 0x82, 0x08, 0x9A, 0x08, 0xB1, 0x08, 0xB3, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x78, 0x03, 0x62, 0x03, 0x8D, 0x03, 0xB7, 0x04, 0x01, 0x04, 0x4C, 0x04, 0xC3, 0x05, 0x0C, + 0x39, 0, 19, 0xB7, 0x05, 0x48, 0x05, 0xB3, 0x06, 0x1A, 0x06, 0x71, 0x07, 0x0E, 0x07, 0x5C, 0x07, 0xB4, 0x08, 0x28, 0x08, 0x85, + 0x39, 0, 15, 0xB8, 0x08, 0xD9, 0x09, 0x86, 0x0A, 0x54, 0x0A, 0x91, 0x0A, 0xB0, 0x0A, 0xCD, 0x0A, 0xD0, + 0x39, 0, 2, 0xBF, 0x40, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xCD, 0x03, 0xD2, 0x03, 0xD7, 0x03, 0xDC, 0x03, 0xF4, 0x04, 0x10, 0x04, 0x2A, 0x04, 0x42, + 0x39, 0, 19, 0xB1, 0x04, 0x6F, 0x04, 0x99, 0x04, 0xC1, 0x04, 0xF0, 0x05, 0x17, 0x05, 0x62, 0x05, 0xAB, 0x05, 0xED, 0x06, 0x2E, + 0x39, 0, 15, 0xB2, 0x06, 0x9C, 0x06, 0xFE, 0x07, 0x5C, 0x07, 0x8C, 0x07, 0xA0, 0x07, 0xB2, 0x07, 0xB2, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x2F, 0x03, 0x37, 0x03, 0x3F, 0x03, 0x44, 0x03, 0x4B, 0x03, 0x54, 0x03, 0x5B, 0x03, 0x6D, + 0x39, 0, 19, 0xB4, 0x03, 0x8F, 0x03, 0xB8, 0x03, 0xE0, 0x04, 0x0E, 0x04, 0x38, 0x04, 0x8A, 0x04, 0xCF, 0x05, 0x0D, 0x05, 0x49, + 0x39, 0, 15, 0xB5, 0x05, 0xAF, 0x06, 0x06, 0x06, 0x56, 0x06, 0x79, 0x06, 0x8C, 0x06, 0x9E, 0x06, 0x9E, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x72, 0x03, 0x78, 0x03, 0x7E, 0x03, 0x83, 0x03, 0x9B, 0x03, 0xB6, 0x03, 0xCF, 0x03, 0xF0, + 0x39, 0, 19, 0xB7, 0x04, 0x30, 0x04, 0x70, 0x04, 0xAE, 0x04, 0xF1, 0x05, 0x27, 0x05, 0x91, 0x05, 0xEF, 0x06, 0x3F, 0x06, 0x8D, + 0x39, 0, 15, 0xB8, 0x07, 0x11, 0x07, 0x80, 0x07, 0xE1, 0x08, 0x11, 0x08, 0x28, 0x08, 0x3D, 0x08, 0x3D, + 0x39, 0, 2, 0xCE, 0x01, + 0x39, 0, 2, 0xCC, 0x00, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 25, 0xB9, 0x00, 0x04, 0x00, 0x0C, 0x00, 0x14, 0x00, 0x1C, 0x00, 0x2C, 0x00, 0x3C, 0x00, 0x5C, 0x00, 0x7C, 0x00, 0x9C, 0x00, 0xBC, 0x00, 0xDC, 0x00, 0xFC, + 0x39, 0, 25, 0xBA, 0x01, 0x3C, 0x01, 0x7C, 0x01, 0xBC, 0x01, 0xFC, 0x02, 0x3C, 0x02, 0x7C, 0x02, 0xFC, 0x03, 0x7C, 0x03, 0xBC, 0x03, 0xDC, 0x03, 0xFC, 0x03, 0xFF, + + /////////#1_gamma.txt end/////////// +#else +#if 0 + // V3 + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xCC, 0x30, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xBF, 0x09, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x01, 0xF6, 0x02, 0x1F, 0x02, 0xB0, 0x03, 0x53, 0x03, 0xC8, 0x04, 0x34, 0x04, 0x95, 0x05, 0x25, + 0x39, 0, 19, 0xB1, 0x05, 0xA7, 0x06, 0x11, 0x06, 0x70, 0x06, 0xCA, 0x07, 0x6B, 0x08, 0x04, 0x08, 0x93, 0x09, 0x19, 0x09, 0x9E, + 0x39, 0, 15, 0xB2, 0x0A, 0x1B, 0x0A, 0x94, 0x0B, 0x0C, 0x0B, 0x84, 0x0C, 0x04, 0x0D, 0x04, 0x0D, 0x07, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x01, 0x96, 0x01, 0xB4, 0x02, 0x10, 0x02, 0x89, 0x02, 0xED, 0x03, 0x51, 0x03, 0xAA, 0x04, 0x32, + 0x39, 0, 19, 0xB4, 0x04, 0xAE, 0x05, 0x15, 0x05, 0x71, 0x05, 0xC8, 0x06, 0x5E, 0x06, 0xE5, 0x07, 0x62, 0x07, 0xD6, 0x08, 0x45, + 0x39, 0, 15, 0xB5, 0x08, 0xB2, 0x09, 0x1B, 0x09, 0x83, 0x09, 0xEE, 0x0A, 0x5D, 0x0B, 0x3C, 0x0B, 0x42, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0xA4, 0x02, 0xD3, 0x03, 0x6F, 0x04, 0x1F, 0x04, 0x9F, 0x05, 0x14, 0x05, 0x7C, 0x06, 0x18, + 0x39, 0, 19, 0xB7, 0x06, 0xA5, 0x07, 0x17, 0x07, 0x7E, 0x07, 0xE0, 0x08, 0x91, 0x09, 0x34, 0x09, 0xCD, 0x0A, 0x5D, 0x0A, 0xEC, + 0x39, 0, 15, 0xB8, 0x0B, 0x79, 0x0C, 0x02, 0x0C, 0x8A, 0x0D, 0x19, 0x0D, 0xB0, 0x0E, 0xDF, 0x0E, 0xE2, + 0x39, 0, 2, 0xBF, 0x08, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x01, 0x85, 0x01, 0xDE, 0x02, 0x7F, 0x02, 0xFD, 0x03, 0x74, 0x03, 0xD1, 0x04, 0x29, 0x04, 0xA8, + 0x39, 0, 19, 0xB1, 0x05, 0x2D, 0x05, 0x96, 0x05, 0xEF, 0x06, 0x41, 0x06, 0xD6, 0x07, 0x6B, 0x07, 0xE9, 0x08, 0x5F, 0x08, 0xD4, + 0x39, 0, 15, 0xB2, 0x09, 0x3F, 0x09, 0xA8, 0x0A, 0x0E, 0x0A, 0x5F, 0x0A, 0xD7, 0x0B, 0xA0, 0x0B, 0xA1, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x01, 0x3C, 0x01, 0x55, 0x01, 0xC9, 0x02, 0x34, 0x02, 0x9F, 0x02, 0xF6, 0x03, 0x46, 0x03, 0xCD, + 0x39, 0, 19, 0xB4, 0x04, 0x3F, 0x04, 0xA6, 0x05, 0x00, 0x05, 0x48, 0x05, 0xDE, 0x06, 0x5E, 0x06, 0xCF, 0x07, 0x39, 0x07, 0x9C, + 0x39, 0, 15, 0xB5, 0x07, 0xFD, 0x08, 0x55, 0x08, 0xAF, 0x09, 0x0A, 0x09, 0x5C, 0x0A, 0x07, 0x0A, 0x0D, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x12, 0x02, 0xA1, 0x03, 0x3A, 0x03, 0xC2, 0x04, 0x43, 0x04, 0xA9, 0x05, 0x07, 0x05, 0x99, + 0x39, 0, 19, 0xB7, 0x06, 0x21, 0x06, 0x93, 0x06, 0xF2, 0x07, 0x4B, 0x07, 0xED, 0x08, 0x8F, 0x09, 0x15, 0x09, 0x8E, 0x0A, 0x10, + 0x39, 0, 15, 0xB8, 0x0A, 0x89, 0x0A, 0xFB, 0x0B, 0x6D, 0x0B, 0xDC, 0x0C, 0x51, 0x0D, 0x34, 0x0D, 0x35, + 0x39, 0, 2, 0xBF, 0x07, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x01, 0x6F, 0x01, 0xBE, 0x02, 0x29, 0x02, 0x93, 0x02, 0xEB, 0x03, 0x3F, 0x03, 0x8B, 0x04, 0x09, + 0x39, 0, 19, 0xB1, 0x04, 0x6A, 0x04, 0xC4, 0x05, 0x20, 0x05, 0x6C, 0x05, 0xEE, 0x06, 0x67, 0x06, 0xC7, 0x07, 0x2C, 0x07, 0x8D, + 0x39, 0, 15, 0xB2, 0x07, 0xE5, 0x08, 0x37, 0x08, 0x89, 0x08, 0xDA, 0x09, 0x24, 0x09, 0xB6, 0x09, 0xB8, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x01, 0x21, 0x01, 0x48, 0x01, 0x8B, 0x01, 0xDA, 0x02, 0x25, 0x02, 0x6F, 0x02, 0xB4, 0x03, 0x29, + 0x39, 0, 19, 0xB4, 0x03, 0x8B, 0x03, 0xE5, 0x04, 0x35, 0x04, 0x7E, 0x04, 0xFF, 0x05, 0x71, 0x05, 0xCE, 0x06, 0x28, 0x06, 0x7D, + 0x39, 0, 15, 0xB5, 0x06, 0xCB, 0x07, 0x15, 0x07, 0x5C, 0x07, 0xA1, 0x07, 0xE5, 0x08, 0x61, 0x08, 0x63, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x0C, 0x02, 0x8B, 0x02, 0xE8, 0x03, 0x50, 0x03, 0xAE, 0x04, 0x09, 0x04, 0x5C, 0x04, 0xE5, + 0x39, 0, 19, 0xB7, 0x05, 0x52, 0x05, 0xB5, 0x06, 0x14, 0x06, 0x65, 0x06, 0xF1, 0x07, 0x74, 0x07, 0xDD, 0x08, 0x4B, 0x08, 0xB4, + 0x39, 0, 15, 0xB8, 0x09, 0x11, 0x09, 0x65, 0x09, 0xBD, 0x0A, 0x16, 0x0A, 0x6A, 0x0B, 0x0B, 0x0B, 0x0D, + 0x39, 0, 2, 0xBF, 0x06, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x00, 0xE1, 0x01, 0x00, 0x01, 0x31, 0x01, 0xA3, 0x01, 0xE6, 0x02, 0x4B, 0x02, 0x93, 0x03, 0x01, + 0x39, 0, 19, 0xB1, 0x03, 0x5F, 0x03, 0xDD, 0x04, 0x21, 0x04, 0x60, 0x04, 0xE9, 0x05, 0x6F, 0x05, 0xC8, 0x06, 0x26, 0x06, 0x77, + 0x39, 0, 15, 0xB2, 0x06, 0xC0, 0x07, 0x0C, 0x07, 0x48, 0x07, 0x8A, 0x07, 0xCA, 0x08, 0x40, 0x08, 0x41, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0xAA, 0x00, 0xF4, 0x01, 0x4E, 0x01, 0x96, 0x01, 0xFE, + 0x39, 0, 19, 0xB4, 0x02, 0x66, 0x02, 0xDC, 0x03, 0x1C, 0x03, 0x64, 0x03, 0xEA, 0x04, 0x6A, 0x04, 0xBB, 0x05, 0x19, 0x05, 0x64, + 0x39, 0, 15, 0xB5, 0x05, 0xAD, 0x05, 0xF2, 0x06, 0x2C, 0x06, 0x6A, 0x06, 0xA4, 0x07, 0x12, 0x07, 0x13, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x17, 0x02, 0x1A, 0x02, 0x45, 0x02, 0x9A, 0x02, 0xDD, 0x03, 0x3C, 0x03, 0x83, 0x03, 0xF3, + 0x39, 0, 19, 0xB7, 0x04, 0x5D, 0x04, 0xD8, 0x05, 0x20, 0x05, 0x68, 0x05, 0xFA, 0x06, 0x7A, 0x06, 0xD7, 0x07, 0x38, 0x07, 0x91, + 0x39, 0, 15, 0xB8, 0x07, 0xDB, 0x08, 0x28, 0x08, 0x6A, 0x08, 0xB2, 0x08, 0xF8, 0x09, 0x73, 0x09, 0x76, + 0x39, 0, 2, 0xBF, 0x05, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x00, 0xEB, 0x01, 0x84, 0x01, 0xB9, 0x01, 0xFE, 0x02, 0x5B, 0x02, 0xA6, 0x02, 0xC4, 0x03, 0x49, + 0x39, 0, 19, 0xB1, 0x03, 0xB1, 0x03, 0xEF, 0x04, 0x4D, 0x04, 0x95, 0x05, 0x20, 0x05, 0x72, 0x05, 0xD6, 0x06, 0x26, 0x06, 0x77, + 0x39, 0, 15, 0xB2, 0x06, 0xCC, 0x07, 0x0C, 0x07, 0x51, 0x07, 0x89, 0x07, 0xCA, 0x08, 0x42, 0x08, 0x43, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x00, 0x05, 0x00, 0xE3, 0x01, 0x38, 0x01, 0x5D, 0x01, 0xAA, 0x01, 0xE5, 0x02, 0x04, 0x02, 0x75, + 0x39, 0, 19, 0xB4, 0x02, 0xD6, 0x03, 0x13, 0x03, 0x6B, 0x03, 0xAF, 0x04, 0x2F, 0x04, 0x8B, 0x04, 0xE1, 0x05, 0x2E, 0x05, 0x7C, + 0x39, 0, 15, 0xB5, 0x05, 0xC7, 0x05, 0xFE, 0x06, 0x38, 0x06, 0x7B, 0x06, 0xAD, 0x07, 0x14, 0x07, 0x16, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x21, 0x02, 0x77, 0x02, 0x9C, 0x02, 0xD4, 0x03, 0x30, 0x03, 0x79, 0x03, 0x9D, 0x04, 0x27, + 0x39, 0, 19, 0xB7, 0x04, 0x96, 0x04, 0xDA, 0x05, 0x3E, 0x05, 0x82, 0x06, 0x18, 0x06, 0x7A, 0x06, 0xD9, 0x07, 0x38, 0x07, 0x91, + 0x39, 0, 15, 0xB8, 0x07, 0xE7, 0x08, 0x28, 0x08, 0x6D, 0x08, 0xB6, 0x08, 0xF8, 0x09, 0x75, 0x09, 0x78, + 0x39, 0, 2, 0xBF, 0x04, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x01, 0x8A, 0x01, 0xA0, 0x01, 0xCC, 0x01, 0xF3, 0x02, 0x2C, 0x02, 0x65, 0x02, 0x97, 0x02, 0xEF, + 0x39, 0, 19, 0xB1, 0x03, 0x43, 0x03, 0x8C, 0x03, 0xD5, 0x04, 0x0A, 0x04, 0x71, 0x04, 0xD8, 0x05, 0x28, 0x05, 0x78, 0x05, 0xBA, + 0x39, 0, 15, 0xB2, 0x05, 0xF7, 0x06, 0x36, 0x06, 0x75, 0x06, 0xA8, 0x06, 0xDB, 0x07, 0x3C, 0x07, 0x3D, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x01, 0x1F, 0x01, 0x2F, 0x01, 0x4F, 0x01, 0x6A, 0x01, 0x93, 0x01, 0xBD, 0x01, 0xE7, 0x02, 0x30, + 0x39, 0, 19, 0xB4, 0x02, 0x73, 0x02, 0xB6, 0x02, 0xF9, 0x03, 0x2D, 0x03, 0x91, 0x03, 0xF5, 0x04, 0x40, 0x04, 0x8A, 0x04, 0xC6, + 0x39, 0, 15, 0xB5, 0x05, 0x02, 0x05, 0x3F, 0x05, 0x7C, 0x05, 0xAD, 0x05, 0xDE, 0x06, 0x2E, 0x06, 0x2F, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0x8F, 0x02, 0x9F, 0x02, 0xC0, 0x02, 0xDC, 0x03, 0x0E, 0x03, 0x42, 0x03, 0x76, 0x03, 0xD3, + 0x39, 0, 19, 0xB7, 0x04, 0x26, 0x04, 0x75, 0x04, 0xC1, 0x04, 0xFE, 0x05, 0x6C, 0x05, 0xD8, 0x06, 0x2A, 0x06, 0x7B, 0x06, 0xBE, + 0x39, 0, 15, 0xB8, 0x07, 0x01, 0x07, 0x46, 0x07, 0x8B, 0x07, 0xC4, 0x07, 0xFD, 0x08, 0x5E, 0x08, 0x5F, + 0x39, 0, 2, 0xBF, 0x03, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xA0, 0x01, 0xBE, 0x01, 0xE2, 0x02, 0x00, 0x02, 0x17, 0x02, 0x52, + 0x39, 0, 19, 0xB1, 0x02, 0x8A, 0x02, 0xC9, 0x02, 0xF9, 0x03, 0x2B, 0x03, 0x92, 0x03, 0xDF, 0x04, 0x2A, 0x04, 0x72, 0x04, 0xA9, + 0x39, 0, 15, 0xB2, 0x04, 0xDA, 0x05, 0x1A, 0x05, 0x44, 0x05, 0x7B, 0x05, 0xA5, 0x05, 0xF4, 0x05, 0xF5, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x45, 0x01, 0x63, 0x01, 0x7B, 0x01, 0x87, 0x01, 0xB2, + 0x39, 0, 19, 0xB4, 0x01, 0xDC, 0x02, 0x0C, 0x02, 0x34, 0x02, 0x5F, 0x02, 0xBA, 0x03, 0x02, 0x03, 0x49, 0x03, 0x89, 0x03, 0xC8, + 0x39, 0, 15, 0xB5, 0x03, 0xF7, 0x04, 0x30, 0x04, 0x5D, 0x04, 0x85, 0x04, 0xB3, 0x05, 0x02, 0x05, 0x03, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x9F, 0x02, 0xB8, 0x02, 0xD7, 0x02, 0xF1, 0x03, 0x03, 0x03, 0x37, + 0x39, 0, 19, 0xB7, 0x03, 0x6A, 0x03, 0xA6, 0x03, 0xD8, 0x04, 0x0D, 0x04, 0x7B, 0x04, 0xCD, 0x05, 0x1C, 0x05, 0x65, 0x05, 0xA5, + 0x39, 0, 15, 0xB8, 0x05, 0xD6, 0x06, 0x1B, 0x06, 0x47, 0x06, 0x7B, 0x06, 0xA6, 0x07, 0x05, 0x07, 0x07, + 0x39, 0, 2, 0xBF, 0x02, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x8F, 0x01, 0xA1, 0x01, 0xA2, 0x01, 0xB2, 0x01, 0xC0, 0x01, 0xDC, + 0x39, 0, 19, 0xB1, 0x01, 0xEB, 0x02, 0x02, 0x02, 0x1C, 0x02, 0x33, 0x02, 0x6B, 0x02, 0x9B, 0x02, 0xD1, 0x02, 0xFC, 0x03, 0x28, + 0x39, 0, 15, 0xB2, 0x03, 0x57, 0x03, 0x7A, 0x03, 0xA4, 0x03, 0xBF, 0x03, 0xE2, 0x04, 0x20, 0x04, 0x2A, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1D, 0x01, 0x30, 0x01, 0x33, 0x01, 0x3F, 0x01, 0x4A, 0x01, 0x57, + 0x39, 0, 19, 0xB4, 0x01, 0x6A, 0x01, 0x7A, 0x01, 0x8C, 0x01, 0x9A, 0x01, 0xC3, 0x01, 0xE9, 0x02, 0x14, 0x02, 0x3A, 0x02, 0x5D, + 0x39, 0, 15, 0xB5, 0x02, 0x86, 0x02, 0xA4, 0x02, 0xCB, 0x02, 0xE9, 0x03, 0x07, 0x03, 0x43, 0x03, 0x4A, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x4F, 0x02, 0x75, 0x02, 0x9B, 0x02, 0xB1, 0x02, 0xBD, 0x02, 0xCD, + 0x39, 0, 19, 0xB7, 0x02, 0xE0, 0x02, 0xF4, 0x03, 0x0B, 0x03, 0x1E, 0x03, 0x50, 0x03, 0x7C, 0x03, 0xB0, 0x03, 0xDD, 0x04, 0x0C, + 0x39, 0, 15, 0xB8, 0x04, 0x3D, 0x04, 0x62, 0x04, 0x8F, 0x04, 0xAC, 0x04, 0xCF, 0x05, 0x11, 0x05, 0x1C, + 0x39, 0, 2, 0xBF, 0x01, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 15, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 15, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 15, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 2, 0xBF, 0x00, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 15, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 15, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 19, 0xB7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 15, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 2, 0xCE, 0x01, + 0x39, 0, 2, 0xCC, 0x00, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 25, 0xB9, 0x00, 0x04, 0x00, 0x0C, 0x00, 0x1C, 0x00, 0x2C, 0x00, 0x3C, 0x00, 0x4C, 0x00, 0x5C, 0x00, 0x7C, 0x00, 0x9C, 0x00, 0xBC, 0x00, 0xDC, 0x00, 0xFC, + 0x39, 0, 25, 0xBA, 0x01, 0x3C, 0x01, 0x7C, 0x01, 0xBC, 0x01, 0xFC, 0x02, 0x3C, 0x02, 0x7C, 0x02, 0xBC, 0x02, 0xFC, 0x03, 0x3C, 0x03, 0x7C, 0x03, 0xFC, 0x03, 0xFF, + +#else + //By Gamma Update//20230529 + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xCC, 0x30, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 2, 0xBF, 0x09, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x51, 0x03, 0x84, 0x03, 0xFA, 0x04, 0x55, 0x04, 0xA8, 0x05, 0x02, 0x05, 0x5D, 0x05, 0xDF, + 0x39, 0, 19, 0xB1, 0x06, 0x46, 0x06, 0xA0, 0x06, 0xEF, 0x07, 0x3E, 0x07, 0xCB, 0x08, 0x46, 0x08, 0xC1, 0x09, 0x30, 0x09, 0x9A, + 0x39, 0, 15, 0xB2, 0x09, 0xFB, 0x0A, 0x54, 0x0A, 0xA6, 0x0B, 0x03, 0x0B, 0x5C, 0x0F, 0xFC, 0x0F, 0xFD, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xD6, 0x03, 0x09, 0x03, 0x77, 0x03, 0xD2, 0x04, 0x1F, 0x04, 0x6D, 0x04, 0xC0, 0x05, 0x2F, + 0x39, 0, 19, 0xB4, 0x05, 0x8C, 0x05, 0xDD, 0x06, 0x23, 0x06, 0x69, 0x06, 0xE3, 0x07, 0x4A, 0x07, 0xB0, 0x08, 0x09, 0x08, 0x5D, + 0x39, 0, 15, 0xB5, 0x08, 0xAD, 0x08, 0xFA, 0x09, 0x40, 0x09, 0x8C, 0x09, 0xCC, 0x0F, 0xFC, 0x0F, 0xFD, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0xF9, 0x03, 0x48, 0x03, 0xF7, 0x04, 0x7B, 0x04, 0xE6, 0x05, 0x51, 0x05, 0xBC, 0x06, 0x4B, + 0x39, 0, 19, 0xB7, 0x06, 0xBE, 0x07, 0x24, 0x07, 0x79, 0x07, 0xCD, 0x08, 0x63, 0x08, 0xE6, 0x09, 0x69, 0x09, 0xE4, 0x0A, 0x5B, + 0x39, 0, 15, 0xB8, 0x0A, 0xCE, 0x0B, 0x39, 0x0B, 0x9D, 0x0C, 0x0C, 0x0C, 0x80, 0x0F, 0xFC, 0x0F, 0xFD, + 0x39, 0, 2, 0xBF, 0x08, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x52, 0x03, 0x69, 0x03, 0xD7, 0x04, 0x2B, 0x04, 0x75, 0x04, 0xBA, 0x05, 0x05, 0x05, 0x8A, + 0x39, 0, 19, 0xB1, 0x05, 0xF1, 0x06, 0x47, 0x06, 0x92, 0x06, 0xD5, 0x07, 0x5E, 0x07, 0xD3, 0x08, 0x42, 0x08, 0xA7, 0x09, 0x00, + 0x39, 0, 15, 0xB2, 0x09, 0x61, 0x09, 0xB9, 0x0A, 0x09, 0x0A, 0x53, 0x0A, 0xA5, 0x0B, 0x31, 0x0B, 0x32, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xD1, 0x03, 0x02, 0x03, 0x55, 0x03, 0xA8, 0x03, 0xEF, 0x04, 0x2F, 0x04, 0x70, 0x04, 0xE7, + 0x39, 0, 19, 0xB4, 0x05, 0x40, 0x05, 0x8D, 0x05, 0xD0, 0x06, 0x0D, 0x06, 0x82, 0x06, 0xE7, 0x07, 0x41, 0x07, 0x95, 0x07, 0xE6, + 0x39, 0, 15, 0xB5, 0x08, 0x2C, 0x08, 0x74, 0x08, 0xBA, 0x08, 0xFA, 0x09, 0x32, 0x09, 0xAC, 0x09, 0xAD, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x10, 0x03, 0x2C, 0x03, 0xC3, 0x04, 0x3E, 0x04, 0xA2, 0x04, 0xFB, 0x05, 0x54, 0x05, 0xEE, + 0x39, 0, 19, 0xB7, 0x06, 0x5C, 0x06, 0xBF, 0x07, 0x13, 0x07, 0x5D, 0x07, 0xEE, 0x08, 0x6B, 0x08, 0xE1, 0x09, 0x4C, 0x09, 0xB2, + 0x39, 0, 15, 0xB8, 0x0A, 0x19, 0x0A, 0x7D, 0x0A, 0xDC, 0x0B, 0x35, 0x0B, 0x82, 0x0C, 0x43, 0x0C, 0x44, + 0x39, 0, 2, 0xBF, 0x07, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x39, 0x03, 0x51, 0x03, 0x64, 0x03, 0xA1, 0x03, 0xD8, 0x04, 0x08, 0x04, 0x30, 0x04, 0x7F, + 0x39, 0, 19, 0xB1, 0x04, 0xC5, 0x05, 0x0F, 0x05, 0x52, 0x05, 0x92, 0x05, 0xF8, 0x06, 0x4E, 0x06, 0x98, 0x06, 0xDC, 0x07, 0x21, + 0x39, 0, 15, 0xB2, 0x07, 0x64, 0x07, 0x9F, 0x07, 0xDA, 0x08, 0x11, 0x08, 0x4A, 0x08, 0xAD, 0x08, 0xAF, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xA0, 0x02, 0xD6, 0x03, 0x08, 0x03, 0x2C, 0x03, 0x5A, 0x03, 0x87, 0x03, 0xAE, 0x03, 0xF8, + 0x39, 0, 19, 0xB4, 0x04, 0x39, 0x04, 0x79, 0x04, 0xB5, 0x04, 0xEE, 0x05, 0x47, 0x05, 0x93, 0x05, 0xD6, 0x06, 0x13, 0x06, 0x4E, + 0x39, 0, 15, 0xB5, 0x06, 0x88, 0x06, 0xBA, 0x06, 0xEC, 0x07, 0x1A, 0x07, 0x47, 0x07, 0x9B, 0x07, 0x9C, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x02, 0xFE, 0x03, 0x10, 0x03, 0x3E, 0x03, 0x86, 0x03, 0xD3, 0x04, 0x11, 0x04, 0x4C, 0x04, 0xB0, + 0x39, 0, 19, 0xB7, 0x05, 0x09, 0x05, 0x60, 0x05, 0xAD, 0x05, 0xF7, 0x06, 0x64, 0x06, 0xC7, 0x07, 0x1A, 0x07, 0x64, 0x07, 0xAD, + 0x39, 0, 15, 0xB8, 0x07, 0xF5, 0x08, 0x34, 0x08, 0x72, 0x08, 0xAD, 0x08, 0xEA, 0x09, 0x53, 0x09, 0x55, + 0x39, 0, 2, 0xBF, 0x06, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x3A, 0x03, 0x50, 0x03, 0x63, 0x03, 0x9D, 0x03, 0xD3, 0x04, 0x03, 0x04, 0x2A, 0x04, 0x78, + 0x39, 0, 19, 0xB1, 0x04, 0xBE, 0x05, 0x06, 0x05, 0x48, 0x05, 0x87, 0x05, 0xEC, 0x06, 0x43, 0x06, 0x8D, 0x06, 0xD0, 0x07, 0x14, + 0x39, 0, 15, 0xB2, 0x07, 0x56, 0x07, 0x91, 0x07, 0xCB, 0x08, 0x02, 0x08, 0x39, 0x08, 0x9C, 0x08, 0x9E, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0x9B, 0x02, 0xD4, 0x03, 0x06, 0x03, 0x2A, 0x03, 0x56, 0x03, 0x82, 0x03, 0xA8, 0x03, 0xF1, + 0x39, 0, 19, 0xB4, 0x04, 0x32, 0x04, 0x71, 0x04, 0xAC, 0x04, 0xE4, 0x05, 0x3E, 0x05, 0x89, 0x05, 0xCC, 0x06, 0x09, 0x06, 0x43, + 0x39, 0, 15, 0xB5, 0x06, 0x7C, 0x06, 0xAE, 0x06, 0xDF, 0x07, 0x0D, 0x07, 0x3A, 0x07, 0x8D, 0x07, 0x8F, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x01, 0x03, 0x0F, 0x03, 0x3C, 0x03, 0x82, 0x03, 0xCD, 0x04, 0x0B, 0x04, 0x45, 0x04, 0xA8, + 0x39, 0, 19, 0xB7, 0x05, 0x03, 0x05, 0x55, 0x05, 0xA2, 0x05, 0xEA, 0x06, 0x58, 0x06, 0xBA, 0x07, 0x0E, 0x07, 0x57, 0x07, 0x9F, + 0x39, 0, 15, 0xB8, 0x07, 0xE6, 0x08, 0x25, 0x08, 0x62, 0x08, 0x9D, 0x08, 0xD8, 0x09, 0x41, 0x09, 0x43, + 0x39, 0, 2, 0xBF, 0x05, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x58, 0x03, 0x67, 0x03, 0x6C, 0x03, 0x9D, 0x03, 0xD5, 0x04, 0x03, 0x04, 0x2B, 0x04, 0x78, + 0x39, 0, 19, 0xB1, 0x04, 0xBE, 0x05, 0x06, 0x05, 0x48, 0x05, 0x87, 0x05, 0xEC, 0x06, 0x43, 0x06, 0x8D, 0x06, 0xD0, 0x07, 0x14, + 0x39, 0, 15, 0xB2, 0x07, 0x56, 0x07, 0x91, 0x07, 0xCB, 0x08, 0x01, 0x08, 0x38, 0x08, 0x93, 0x08, 0x95, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xAA, 0x02, 0xED, 0x03, 0x19, 0x03, 0x31, 0x03, 0x5B, 0x03, 0x85, 0x03, 0xA9, 0x03, 0xF1, + 0x39, 0, 19, 0xB4, 0x04, 0x32, 0x04, 0x71, 0x04, 0xAC, 0x04, 0xE4, 0x05, 0x3E, 0x05, 0x89, 0x05, 0xCC, 0x06, 0x09, 0x06, 0x43, + 0x39, 0, 15, 0xB5, 0x06, 0x7C, 0x06, 0xAE, 0x06, 0xDF, 0x07, 0x0C, 0x07, 0x35, 0x07, 0x86, 0x07, 0x88, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x1F, 0x03, 0x3B, 0x03, 0x45, 0x03, 0x82, 0x03, 0xCA, 0x04, 0x0B, 0x04, 0x45, 0x04, 0xA8, + 0x39, 0, 19, 0xB7, 0x05, 0x03, 0x05, 0x55, 0x05, 0xA2, 0x05, 0xEA, 0x06, 0x58, 0x06, 0xBA, 0x07, 0x0E, 0x07, 0x57, 0x07, 0x9F, + 0x39, 0, 15, 0xB8, 0x07, 0xE6, 0x08, 0x25, 0x08, 0x62, 0x08, 0x9C, 0x08, 0xD3, 0x09, 0x3A, 0x09, 0x3C, + 0x39, 0, 2, 0xBF, 0x04, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0x7C, 0x03, 0x7F, 0x03, 0x80, 0x03, 0xAB, 0x03, 0xD5, 0x04, 0x06, 0x04, 0x30, 0x04, 0x7D, + 0x39, 0, 19, 0xB1, 0x04, 0xC2, 0x05, 0x06, 0x05, 0x48, 0x05, 0x70, 0x05, 0xDB, 0x06, 0x2E, 0x06, 0x80, 0x06, 0xC4, 0x07, 0x07, + 0x39, 0, 15, 0xB2, 0x07, 0x45, 0x07, 0x83, 0x07, 0xAF, 0x07, 0xE1, 0x08, 0x14, 0x08, 0x73, 0x08, 0x74, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x02, 0xBC, 0x03, 0x14, 0x03, 0x45, 0x03, 0x59, 0x03, 0x75, 0x03, 0x9D, 0x03, 0xC3, 0x04, 0x08, + 0x39, 0, 19, 0xB4, 0x04, 0x48, 0x04, 0x86, 0x04, 0xBF, 0x04, 0xE4, 0x05, 0x3E, 0x05, 0x89, 0x05, 0xCC, 0x06, 0x09, 0x06, 0x43, + 0x39, 0, 15, 0xB5, 0x06, 0x7C, 0x06, 0xAB, 0x06, 0xD5, 0x07, 0x02, 0x07, 0x30, 0x07, 0x7E, 0x07, 0x7F, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x43, 0x03, 0x5B, 0x03, 0x5C, 0x03, 0x90, 0x03, 0xCA, 0x04, 0x0B, 0x04, 0x45, 0x04, 0xA8, + 0x39, 0, 19, 0xB7, 0x05, 0x03, 0x05, 0x55, 0x05, 0xA2, 0x05, 0xD5, 0x06, 0x48, 0x06, 0x9F, 0x06, 0xFE, 0x07, 0x4A, 0x07, 0x92, + 0x39, 0, 15, 0xB8, 0x07, 0xD8, 0x08, 0x16, 0x08, 0x4D, 0x08, 0x85, 0x08, 0xC0, 0x09, 0x27, 0x09, 0x28, + 0x39, 0, 2, 0xBF, 0x03, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xA9, 0x03, 0xB4, 0x03, 0xC2, 0x03, 0xDE, 0x04, 0x07, 0x04, 0x1B, 0x04, 0x4C, 0x04, 0x89, + 0x39, 0, 19, 0xB1, 0x04, 0xCC, 0x05, 0x05, 0x05, 0x40, 0x05, 0x71, 0x05, 0xC5, 0x06, 0x1B, 0x06, 0x6D, 0x06, 0xA9, 0x06, 0xE7, + 0x39, 0, 15, 0xB2, 0x07, 0x22, 0x07, 0x55, 0x07, 0x92, 0x07, 0xC0, 0x07, 0xEF, 0x08, 0x4C, 0x08, 0x4D, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x24, 0x03, 0x5D, 0x03, 0x83, 0x03, 0x9E, 0x03, 0xB5, 0x03, 0xCC, 0x03, 0xEF, 0x04, 0x1E, + 0x39, 0, 19, 0xB4, 0x04, 0x57, 0x04, 0x86, 0x04, 0xBF, 0x04, 0xE4, 0x05, 0x30, 0x05, 0x78, 0x05, 0xBE, 0x05, 0xF0, 0x06, 0x2B, + 0x39, 0, 15, 0xB5, 0x06, 0x62, 0x06, 0x8A, 0x06, 0xBD, 0x06, 0xE6, 0x07, 0x0E, 0x07, 0x58, 0x07, 0x59, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0x85, 0x03, 0x99, 0x03, 0xA6, 0x03, 0xC5, 0x03, 0xF6, 0x04, 0x1D, 0x04, 0x5E, 0x04, 0xA8, + 0x39, 0, 19, 0xB7, 0x05, 0x03, 0x05, 0x45, 0x05, 0x93, 0x05, 0xC9, 0x06, 0x2D, 0x06, 0x8B, 0x06, 0xE3, 0x07, 0x25, 0x07, 0x72, + 0x39, 0, 15, 0xB8, 0x07, 0xB5, 0x07, 0xE8, 0x08, 0x29, 0x08, 0x5F, 0x08, 0x90, 0x08, 0xF6, 0x08, 0xF7, + 0x39, 0, 2, 0xBF, 0x02, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xEF, 0x03, 0xF0, 0x04, 0x04, 0x04, 0x17, 0x04, 0x26, 0x04, 0x4F, 0x04, 0x5D, 0x04, 0xA3, + 0x39, 0, 19, 0xB1, 0x04, 0xD8, 0x05, 0x0B, 0x05, 0x44, 0x05, 0x6D, 0x05, 0xC1, 0x06, 0x10, 0x06, 0x5E, 0x06, 0x98, 0x06, 0xDB, + 0x39, 0, 15, 0xB2, 0x07, 0x11, 0x07, 0x4B, 0x07, 0x79, 0x07, 0xA5, 0x07, 0xD0, 0x08, 0x32, 0x08, 0x33, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0x58, 0x03, 0xB2, 0x03, 0xCE, 0x03, 0xE7, 0x04, 0x01, 0x04, 0x0D, 0x04, 0x1A, 0x04, 0x48, + 0x39, 0, 19, 0xB4, 0x04, 0x70, 0x04, 0x99, 0x04, 0xC9, 0x04, 0xE9, 0x05, 0x30, 0x05, 0x78, 0x05, 0xB7, 0x05, 0xEF, 0x06, 0x1F, + 0x39, 0, 15, 0xB5, 0x06, 0x4F, 0x06, 0x80, 0x06, 0xAB, 0x06, 0xD3, 0x06, 0xF9, 0x07, 0x42, 0x07, 0x43, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0xD0, 0x03, 0xD6, 0x03, 0xEB, 0x03, 0xFF, 0x04, 0x21, 0x04, 0x4E, 0x04, 0x67, 0x04, 0xC2, + 0x39, 0, 19, 0xB7, 0x05, 0x03, 0x05, 0x41, 0x05, 0x85, 0x05, 0xBB, 0x06, 0x1C, 0x06, 0x7B, 0x06, 0xD2, 0x07, 0x1A, 0x07, 0x5C, + 0x39, 0, 15, 0xB8, 0x07, 0x98, 0x07, 0xD6, 0x08, 0x10, 0x08, 0x44, 0x08, 0x71, 0x08, 0xD2, 0x08, 0xD3, + 0x39, 0, 2, 0xBF, 0x01, + 0x39, 0, 19, 0xB0, 0x00, 0x00, 0x03, 0xF8, 0x04, 0x41, 0x04, 0x42, 0x04, 0x4F, 0x04, 0x5E, 0x04, 0x72, 0x04, 0x8D, 0x04, 0xAC, + 0x39, 0, 19, 0xB1, 0x04, 0xDB, 0x05, 0x09, 0x05, 0x2F, 0x05, 0x56, 0x05, 0xA2, 0x05, 0xE9, 0x06, 0x23, 0x06, 0x5F, 0x06, 0x93, + 0x39, 0, 15, 0xB2, 0x06, 0xCA, 0x06, 0xFB, 0x07, 0x24, 0x07, 0x58, 0x07, 0x81, 0x07, 0xD0, 0x07, 0xD1, + 0x39, 0, 19, 0xB3, 0x00, 0x00, 0x03, 0xEF, 0x03, 0xF0, 0x04, 0x1B, 0x04, 0x2A, 0x04, 0x3D, 0x04, 0x4C, 0x04, 0x53, 0x04, 0x72, + 0x39, 0, 19, 0xB4, 0x04, 0x8A, 0x04, 0xA8, 0x04, 0xC9, 0x04, 0xE6, 0x05, 0x22, 0x05, 0x5E, 0x05, 0x92, 0x05, 0xC6, 0x05, 0xF0, + 0x39, 0, 15, 0xB5, 0x06, 0x1B, 0x06, 0x49, 0x06, 0x68, 0x06, 0x92, 0x06, 0xBB, 0x06, 0xFC, 0x06, 0xFD, + 0x39, 0, 19, 0xB6, 0x00, 0x00, 0x03, 0xD9, 0x04, 0x30, 0x04, 0x31, 0x04, 0x3C, 0x04, 0x4C, 0x04, 0x61, 0x04, 0x82, 0x04, 0xC2, + 0x39, 0, 19, 0xB7, 0x04, 0xF6, 0x05, 0x27, 0x05, 0x5C, 0x05, 0x8F, 0x05, 0xEF, 0x06, 0x46, 0x06, 0x90, 0x06, 0xD6, 0x07, 0x11, + 0x39, 0, 15, 0xB8, 0x07, 0x4D, 0x07, 0x84, 0x07, 0xAD, 0x07, 0xE1, 0x08, 0x15, 0x08, 0x74, 0x08, 0x75, + 0x39, 0, 2, 0xBF, 0x00, + 0x39, 0, 19, 0xB0, 0x00, 0x57, 0x04, 0x53, 0x04, 0x5C, 0x04, 0x6F, 0x04, 0x7E, 0x04, 0x89, 0x04, 0x94, 0x04, 0x9F, 0x04, 0xB6, + 0x39, 0, 19, 0xB1, 0x04, 0xCF, 0x04, 0xEA, 0x05, 0x07, 0x05, 0x24, 0x05, 0x57, 0x05, 0x83, 0x05, 0xAF, 0x05, 0xDB, 0x06, 0x07, + 0x39, 0, 15, 0xB2, 0x06, 0x2B, 0x06, 0x51, 0x06, 0x76, 0x06, 0x9B, 0x06, 0xBF, 0x06, 0xFF, 0x07, 0x00, + 0x39, 0, 19, 0xB3, 0x00, 0x6A, 0x04, 0x66, 0x04, 0x6D, 0x04, 0x7B, 0x04, 0x85, 0x04, 0x8A, 0x04, 0x8F, 0x04, 0x94, 0x04, 0x9E, + 0x39, 0, 19, 0xB4, 0x04, 0xA9, 0x04, 0xB5, 0x04, 0xC4, 0x04, 0xD5, 0x04, 0xFE, 0x05, 0x20, 0x05, 0x42, 0x05, 0x64, 0x05, 0x86, + 0x39, 0, 15, 0xB5, 0x05, 0xA6, 0x05, 0xC6, 0x05, 0xE3, 0x06, 0x00, 0x06, 0x1A, 0x06, 0x4E, 0x06, 0x4F, + 0x39, 0, 19, 0xB6, 0x00, 0x3F, 0x04, 0x3B, 0x04, 0x45, 0x04, 0x5A, 0x04, 0x6B, 0x04, 0x78, 0x04, 0x85, 0x04, 0x92, 0x04, 0xAC, + 0x39, 0, 19, 0xB7, 0x04, 0xC8, 0x04, 0xE6, 0x05, 0x0A, 0x05, 0x32, 0x05, 0x83, 0x05, 0xB9, 0x05, 0xEF, 0x06, 0x25, 0x06, 0x5B, + 0x39, 0, 15, 0xB8, 0x06, 0x91, 0x06, 0xBC, 0x06, 0xE4, 0x07, 0x0C, 0x07, 0x33, 0x07, 0x82, 0x07, 0x84, +//By Gamma Update Echo + 0x39, 0, 2, 0xCE, 0x01, + 0x39, 0, 2, 0xCC, 0x00, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x02, + 0x39, 0, 25, 0xB9, 0x00, 0x04, 0x00, 0x0C, 0x00, 0x1C, 0x00, 0x2C, 0x00, 0x3C, 0x00, 0x4C, 0x00, 0x5C, 0x00, 0x7C, 0x00, 0x9C, 0x00, 0xBC, 0x00, 0xDC, 0x00, 0xFC, + 0x39, 0, 25, 0xBA, 0x01, 0x3C, 0x01, 0x7C, 0x01, 0xBC, 0x01, 0xFC, 0x02, 0x3C, 0x02, 0x7C, 0x02, 0xBC, 0x02, 0xFC, 0x03, 0x3C, 0x03, 0x7C, 0x03, 0xFC, 0x03, 0xFF, +/////////#1_gamma.txt end //20230529/////////// +#endif + +#endif + + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x03, + 0x39, 0, 6, 0xB2,0x00,0x1F,0x1F,0x06,0x01, + 0x39, 0, 2, 0x6F,0x05, + 0x39, 0, 13, 0xB2,0x00,0x10,0x10,0x00,0x0F,0x0F,0x00,0x10,0x10,0x00,0x1F,0x1F, + 0x39, 0, 2, 0x6F,0x11, + 0x39, 0, 9, 0xB2,0x06,0x01,0x06,0x01,0x06,0x01,0x06,0x01, + 0x39, 0, 2, 0x6F,0x19, + 0x39, 0, 2, 0xB2,0x00, + 0x39, 0, 16, 0xB6,0xF0,0x1C,0x1C,0x00,0x10,0x01,0x00,0x10,0x01,0x00,0x10,0x01,0x00,0x1C,0x1C, + 0x39, 0, 2, 0x6F,0x0F, + 0x39, 0, 4, 0xB6,0x1F,0x00,0x0A, + 0x39, 0, 2, 0x6F,0x1A, + 0x39, 0, 4, 0xB6,0x0F,0x00,0x0A, + 0x39, 0, 2, 0x6F,0x25, + 0x39, 0, 4, 0xB6,0x0F,0x00,0x0A, + 0x39, 0, 2, 0x6F,0x30, + 0x39, 0, 4, 0xB6,0x0F,0x00,0x0A, + 0x39, 0, 17, 0xBB,0x11,0x00,0x1D,0x7E,0x00,0x0F,0x5E,0x00,0x0E,0x4C,0x00,0x00,0x00,0x00,0x1D,0x7E, + 0x39, 0, 17, 0xBC,0x22,0x10,0x1D,0x5C,0x00,0x0F,0x3C,0x00,0x0E,0x29,0x00,0x00,0x00,0x00,0x1D,0x5C, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x04, + 0x39, 0, 2, 0xC2,0x14, + 0x39, 0, 2, 0xB1,0x02, + 0x39, 0, 2, 0xB2,0x40, + 0x39, 0, 2, 0x6F,0x01, + 0x39, 0, 4, 0xB2,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x04, + 0x39, 0, 4, 0xB2,0x09,0xE3,0x40, + 0x39, 0, 2, 0x6F,0x07, + 0x39, 0, 4, 0xB2,0x09,0xE4,0x00, + 0x39, 0, 2, 0x6F,0x0A, + 0x39, 0, 4, 0xB2,0x09,0xE3,0x40, + 0x39, 0, 2, 0xCB,0x86, + 0x39, 0, 5, 0xD0,0x00,0x00,0x00,0x10, + 0x39, 0, 2, 0x6F,0x04, + 0x39, 0, 2, 0xD0,0x01, + 0x39, 0, 2, 0x6F,0x01, + 0x39, 0, 6, 0xCB,0x05,0x0F,0x1F,0x3E,0x7C, + 0x39, 0, 2, 0x6F,0x06, + 0x39, 0, 11, 0xCB,0x00,0x08,0x00,0x3C,0x01,0x48,0x07,0xFF,0x0F,0xFF, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 6, 0xD2,0x12,0x0C,0x0C,0x0A,0x06, + 0x39, 0, 2, 0x6F,0x05, + 0x39, 0, 6, 0xD2,0x30,0x14,0x16,0x0E,0x0A, + 0x39, 0, 2, 0x6F,0x0A, + 0x39, 0, 6, 0xD2,0x48,0x20,0x16,0x12,0x0E, + 0x39, 0, 2, 0x6F,0x0F, + 0x39, 0, 6, 0xD2,0x44,0x20,0x16,0x12,0x15, + 0x39, 0, 2, 0x6F,0x14, + 0x39, 0, 6, 0xD2,0x40,0x20,0x16,0x12,0x12, + 0x39, 0, 2, 0x6F,0x19, + 0x39, 0, 6, 0xD2,0xFF,0xE4,0xA9,0x40,0x30, + 0x39, 0, 2, 0x6F,0x1E, + 0x39, 0, 6, 0xD2,0xFF,0xD8,0x40,0x26,0x20, + 0x39, 0, 2, 0x6F,0x23, + 0x39, 0, 6, 0xD2,0xFF,0x8F,0x40,0x26,0x1F, + 0x39, 0, 2, 0x6F,0x28, + 0x39, 0, 6, 0xD2,0x9F,0x60,0x40,0x20,0x1B, + 0x39, 0, 2, 0x6F,0x2D, + 0x39, 0, 6, 0xD2,0x84,0x40,0x40,0x20,0x1B, + 0x39, 0, 2, 0x6F,0x32, + 0x39, 0, 6, 0xD2,0x12,0x08,0x10,0x10,0x06, + 0x39, 0, 2, 0x6F,0x37, + 0x39, 0, 6, 0xD2,0x30,0x08,0x15,0x0B,0x0A, + 0x39, 0, 2, 0x6F,0x3C, + 0x39, 0, 6, 0xD2,0x46,0x08,0x10,0x10,0x0C, + 0x39, 0, 2, 0x6F,0x41, + 0x39, 0, 6, 0xD2,0x30,0x1A,0x10,0x16,0x16, + 0x39, 0, 2, 0x6F,0x46, + 0x39, 0, 6, 0xD2,0x30,0x1A,0x10,0x12,0x12, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 6, 0xD4,0x08,0x08,0x04,0x0C,0x06, + 0x39, 0, 2, 0x6F,0x05, + 0x39, 0, 6, 0xD4,0x29,0x18,0x10,0x0D,0x0A, + 0x39, 0, 2, 0x6F,0x0A, + 0x39, 0, 6, 0xD4,0x40,0x14,0x10,0x11,0x0C, + 0x39, 0, 2, 0x6F,0x0F, + 0x39, 0, 6, 0xD4,0x40,0x1F,0x13,0x14,0x10, + 0x39, 0, 2, 0x6F,0x14, + 0x39, 0, 6, 0xD4,0x5f,0x16,0x14,0x16,0x13, + 0x39, 0, 2, 0x6F,0x19, + 0x39, 0, 6, 0xD4,0xFF,0xFF,0xA0,0x50,0x2F, + 0x39, 0, 2, 0x6F,0x1E, + 0x39, 0, 6, 0xD4,0xFF,0xF0,0x9A,0x30,0x0C, + 0x39, 0, 2, 0x6F,0x23, + 0x39, 0, 6, 0xD4,0xFF,0xA0,0x6A,0x30,0x0F, + 0x39, 0, 2, 0x6F,0x28, + 0x39, 0, 6, 0xD4,0xF0,0x80,0x40,0x30,0x12, + 0x39, 0, 2, 0x6F,0x2D, + 0x39, 0, 6, 0xD4,0xB0,0x40,0x40,0x30,0x14, + 0x39, 0, 2, 0x6F,0x32, + 0x39, 0, 6, 0xD4,0x04,0x04,0x04,0x0A,0x05, + 0x39, 0, 2, 0x6F,0x37, + 0x39, 0, 6, 0xD4,0x32,0x14,0x10,0x0B,0x07, + 0x39, 0, 2, 0x6F,0x3C, + 0x39, 0, 6, 0xD4,0x40,0x18,0x10,0x0C,0x09, + 0x39, 0, 2, 0x6F,0x41, + 0x39, 0, 6, 0xD4,0x20,0x1C,0x1A,0x0E,0x0B, + 0x39, 0, 2, 0x6F,0x46, + 0x39, 0, 6, 0xD4,0xB5,0x18,0x18,0x08,0x0C, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x05, + 0x39, 0, 3, 0xC7,0x07,0x01, + 0x39, 0, 4, 0xB0,0x07,0x21,0x00, + 0x39, 0, 3, 0xB3,0x86,0x80, + 0x39, 0, 3, 0xB5,0x85,0x81, + 0x39, 0, 5, 0xB7,0x85,0x00,0x00,0x81, + 0x39, 0, 5, 0xB8,0x85,0x00,0x00,0x81, + 0x39, 0, 5, 0xB9,0x85,0x00,0x00,0x81, + 0x39, 0, 4, 0xD0,0x00,0x03,0x10, + 0x39, 0, 5, 0xE0,0x82,0x00,0x00,0x02, + 0x39, 0, 4, 0xD1,0x00,0x01,0x10, + 0x39, 0, 5, 0xE1,0x82,0x00,0x00,0x02, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x06, + 0x39, 0, 6, 0xB0,0x13,0x32,0x12,0x32,0x04, + 0x39, 0, 6, 0xB1,0x32,0x31,0x0E,0x32,0x31, + 0x39, 0, 6, 0xB2,0x32,0x00,0x32,0x31,0x32, + 0x39, 0, 2, 0xB3,0x0F, + 0x39, 0, 6, 0xB6,0x13,0x32,0x12,0x32,0x04, + 0x39, 0, 6, 0xB7,0x32,0x31,0x0E,0x32,0x31, + 0x39, 0, 6, 0xB8,0x32,0x00,0x32,0x31,0x32, + 0x39, 0, 2, 0xB9,0x0F, + 0x39, 0, 2, 0xD0,0x01, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x07, + 0x39, 0, 2, 0xB4,0xC0, + 0x39, 0, 6, 0xB0,0x84,0xC0,0x78,0x70,0x00, + 0x39, 0, 7, 0xB1,0x0C,0x1C,0x00,0x1C,0x0C,0x00, + 0x39, 0, 2, 0xB2,0x20, + 0x39, 0, 2, 0x6F,0x36, + 0x39, 0, 2, 0xB2,0x32, + 0x39, 0, 2, 0x6F,0x3F, + 0x39, 0, 2, 0xB2,0x04, + 0x39, 0, 2, 0x6F,0x09, + 0x39, 0, 2, 0xB2,0x20, + 0x39, 0, 2, 0x6F,0x48, + 0x39, 0, 2, 0xB2,0x32, + 0x39, 0, 2, 0x6F,0x51, + 0x39, 0, 2, 0xB2,0x04, + 0x39, 0, 2, 0x6F,0x12, + 0x39, 0, 2, 0xB2,0xF0, + 0x39, 0, 2, 0x6F,0x5A, + 0x39, 0, 2, 0xB2,0x03, + 0x39, 0, 2, 0x6F,0x63, + 0x39, 0, 2, 0xB2,0x9B, + 0x39, 0, 2, 0x6F,0x1B, + 0x39, 0, 2, 0xB2,0x20, + 0x39, 0, 2, 0x6F,0x6C, + 0x39, 0, 2, 0xB2,0x32, + 0x39, 0, 2, 0x6F,0x75, + 0x39, 0, 2, 0xB2,0x04, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 2, 0xB2,0x20, + 0x39, 0, 2, 0x6F,0x7E, + 0x39, 0, 2, 0xB2,0x32, + 0x39, 0, 2, 0x6F,0x87, + 0x39, 0, 2, 0xB2,0x04, + 0x39, 0, 2, 0x6F,0x2D, + 0x39, 0, 2, 0xB2,0xCC, + 0x39, 0, 2, 0x6F,0x90, + 0x39, 0, 2, 0xB2,0x03, + 0x39, 0, 2, 0x6F,0x99, + 0x39, 0, 2, 0xB2,0x3A, + 0x39, 0, 2, 0xB4,0xC0, + 0x39, 0, 3, 0xB7,0x00,0x00, + 0x39, 0, 6, 0xC0,0x01,0x01,0x00,0x00,0x55, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC1,0x2C,0x00,0x1C,0x39,0x1C,0x39,0x38,0x72,0x3F,0xD9,0xA2,0x84,0x40,0x00,0xE7,0x18,0x80,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC1,0x90,0x00,0x0A,0x90,0x59,0x5F,0x33,0xE0,0x00,0x00,0x0C,0xAB,0x59,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC1,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC2,0x2A,0x0F,0x1C,0x39,0x1C,0x39,0xC7,0x8E,0x00,0x12,0xBD,0xDA,0x40,0x14,0x86,0xBA,0xFF,0xF6,0x12,0xBF,0x8D, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC2,0x93,0xDE,0x0A,0x94,0x37,0x5F,0x33,0xEF,0xE2,0x73,0x00,0x55,0x59,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC2,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC3,0x26,0x00,0x1C,0x39,0x1C,0x39,0x38,0x72,0x00,0x00,0x00,0x00,0x3F,0xD8,0xBB,0x6C,0x80,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC3,0x03,0xDE,0x00,0x04,0x37,0x55,0x33,0x60,0x00,0x00,0x03,0x55,0xA7,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC3,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC4,0x20,0x0F,0x1C,0x39,0x1C,0x39,0xC7,0x8E,0x3F,0xEC,0x60,0x5E,0x3F,0xEC,0x5B,0x0E,0x80,0x03,0x69,0x3F,0xA9, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC4,0x00,0x00,0x00,0x00,0x59,0x55,0x33,0x60,0x1D,0x8D,0x0F,0xAB,0xA7,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC4,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC5,0x21,0x00,0x03,0xC1,0x03,0x49,0x00,0x00,0x3F,0xFF,0x26,0x46,0x3F,0xFF,0x34,0x52,0x00,0x00,0x0C,0x55,0x09, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC5,0x01,0xFE,0x14,0x02,0x1B,0x33,0x33,0x80,0x03,0x83,0x0F,0xE1,0xE3,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC5,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC6,0x27,0x00,0x03,0x84,0x03,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0xFF,0x3A,0xE4,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC6,0x02,0x1C,0x14,0x02,0x39,0x32,0x33,0x80,0x00,0x00,0x03,0x1E,0xE3,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC6,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC7,0x2D,0x00,0x03,0x84,0x03,0x49,0x00,0x00,0x3F,0xFF,0x34,0x18,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC7,0x01,0xFE,0x34,0x02,0x1B,0x52,0x33,0x50,0x00,0x00,0x0C,0xE2,0x1D,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC7,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC8,0x2B,0x00,0x03,0xC1,0x03,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xF3,0xAA,0xF7, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC8,0x02,0x1C,0x33,0x02,0x39,0x52,0x33,0x6F,0xFC,0x7D,0x00,0x1F,0x1D,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC9,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCA,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCA,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCA,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCB,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCB,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCB,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCC,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCD,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCD,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCD,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCE,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD1,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD1,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD1,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD2,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD3,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD4,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD5,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD5,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD5,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD6,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD7,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xD8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xD8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xD8,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + //20230529 + 0x39, 0, 2, 0x5F, 0x00, + 0x39, 0, 6, 0xF0, 0x55, 0xAA, 0x52, 0x08, 0x08, + 0x39, 0, 17, 0xB6, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, + 0x39, 0, 2, 0x6F, 0x10, + 0x39, 0, 17, 0xB6, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, + 0x39, 0, 2, 0x6F, 0x20, + 0x39, 0, 7, 0xB6, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, 0xFE, + 0x39, 0, 17, 0xB7, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0x10, + 0x39, 0, 17, 0xB7, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0x20, + 0x39, 0, 7, 0xB7, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 17, 0xB8, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0x10, + 0x39, 0, 17, 0xB8, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0x20, + 0x39, 0, 7, 0xB8, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 17, 0xB9, 0x01, 0x01, 0x00, 0x91, 0x00, 0x38, 0x60, 0x04, 0x88, 0x00, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 2, 0x6F, 0x10, + 0x39, 0, 17, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x11, 0x00, 0x2E, 0x00, 0x62, 0x00, + 0x39, 0, 2, 0x6F, 0x20, + 0x39, 0, 17, 0xB9, 0xBE, 0x02, 0x08, 0x04, 0xEC, 0x07, 0xD0, 0x0A, 0xB4, 0x0D, 0x98, 0x0F, 0xFF, 0x00, 0x00, 0x00, + 0x39, 0, 2, 0x6F, 0x30, + 0x39, 0, 17, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 2, 0x6F, 0x40, + 0x39, 0, 17, 0xB9, 0x02, 0x00, 0x69, 0x00, 0xD0, 0x01, 0x37, 0x01, 0x9E, 0x02, 0x05, 0x02, 0x6C, 0x02, 0xD3, 0x00, + 0x39, 0, 2, 0x6F, 0x50, + 0x39, 0, 17, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, + 0x39, 0, 2, 0x6F, 0x60, + 0x39, 0, 17, 0xB9, 0x49, 0x00, 0xC3, 0x01, 0xA0, 0x03, 0x27, 0x05, 0x16, 0x09, 0x91, 0x0E, 0x0C, 0x0F, 0xFF, 0x0F, + 0x39, 0, 2, 0x6F, 0x70, + 0x39, 0, 17, 0xB9, 0xFF, 0x02, 0x00, 0x00, 0x00, 0x01, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0x80, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0x90, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0xA0, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0xB0, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0xC0, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0xD0, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0xE0, + 0x39, 0, 17, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 2, 0x6F, 0xF0, + 0x39, 0, 14, 0xB9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, + 0x39, 0, 2, 0x6F, 0x10, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, + 0x39, 0, 2, 0x6F, 0x20, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, + 0x39, 0, 2, 0x6F, 0x30, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, + 0x39, 0, 2, 0x6F, 0x40, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, + 0x39, 0, 2, 0x6F, 0x50, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, + 0x39, 0, 2, 0x6F, 0x60, + 0x39, 0, 17, 0xBA, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x05, 0xD1, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0x70, + 0x39, 0, 17, 0xBA, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0x80, + 0x39, 0, 17, 0xBA, 0x08, 0x00, 0x05, 0x3F, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, + 0x39, 0, 2, 0x6F, 0x90, + 0x39, 0, 17, 0xBA, 0x07, 0x36, 0x07, 0x36, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0x3F, 0x07, 0x36, + 0x39, 0, 2, 0x6F, 0xA0, + 0x39, 0, 17, 0xBA, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x07, 0x36, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0xB0, + 0x39, 0, 17, 0xBA, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x05, 0xD1, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0xC0, + 0x39, 0, 17, 0xBA, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0xD0, + 0x39, 0, 17, 0xBA, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 2, 0x6F, 0xE0, + 0x39, 0, 11, 0xBA, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, 0x08, 0x00, + 0x39, 0, 17, 0xBB, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, + 0x39, 0, 2, 0x6F, 0x10, + 0x39, 0, 17, 0xBB, 0x00, 0xC8, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, + 0x39, 0, 2, 0x6F, 0x20, + 0x39, 0, 17, 0xBB, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x01, 0x00, 0x01, 0x00, + 0x39, 0, 2, 0x6F, 0x30, + 0x39, 0, 17, 0xBB, 0x01, 0x00, 0x01, 0x00, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, + 0x39, 0, 2, 0x6F, 0x40, + 0x39, 0, 17, 0xBB, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xC8, + 0x39, 0, 2, 0x6F, 0x50, + 0x39, 0, 17, 0xBB, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, 0x00, 0xC8, + 0x39, 0, 2, 0x6F, 0x60, + 0x39, 0, 17, 0xBB, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, + 0x39, 0, 2, 0x6F, 0x70, + 0x39, 0, 17, 0xBB, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, + 0x39, 0, 2, 0x6F, 0x80, + 0x39, 0, 17, 0xBB, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x39, 0, 2, 0x6F, 0x90, + 0x39, 0, 17, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x09, 0x0C, + 0x39, 0, 2, 0x6F, 0xA0, + 0x39, 0, 9, 0xBB, 0x34, 0xA0, 0x54, 0x00, 0x00, 0x00, 0x08, 0x00, + 0x39, 0, 5, 0xE9, 0x00, 0x00, 0x00, 0x51, + 0x39, 0, 8, 0xEE, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + ////end 20230529 + 0x39, 0, 5, 0xFF, 0xAA, 0x55, 0xA5, 0x80, + 0x39, 0, 2, 0x6F, 0x1D, + 0x39, 0, 2, 0xF2, 0x05, + 0x39, 0, 5, 0x3B, 0x00, 0x14, 0x00, 0x12, + 0x39, 0, 2, 0x03, 0x01, + 0x39, 0, 2, 0x90, 0x02, + 0x39, 0, 19, 0x91, 0x89, 0x28, 0x00, 0x0C, 0xC2, 0x00, 0x03, 0x1C, 0x01, 0x7E, 0x00, 0x0F, 0x08, 0xBB, 0x04, 0x3D, 0x10, 0xF0, + 0x39, 0, 1, 0x2C, + 0x39, 0, 5, 0x51, 0x07, 0xFF, 0x0F, 0xFF, + 0x39, 0, 2, 0x53, 0x20, + 0x39, 0, 1, 0x35, + 0x39, 0, 5, 0x2A, 0x00, 0x00, 0x04, 0x37, + 0x39, 0, 5, 0x2B, 0x00, 0x00, 0x09, 0x5F, + 0x39, 0, 2, 0x2F, 0x01, + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x08, + 0x39, 0, 17, 0xB6,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 17, 0xB6,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE, + 0x39, 0, 2, 0x6F,0x20, + 0x39, 0, 7, 0xB6,0x0F,0xFE,0x0F,0xFE,0x0F,0xFE, + 0x39, 0, 17, 0xB7,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 17, 0xB7,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0x20, + 0x39, 0, 7, 0xB7,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 17, 0xB8,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 17, 0xB8,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0x20, + 0x39, 0, 7, 0xB8,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 17, 0xB9,0x01,0x01,0x00,0x91,0x00,0x38,0x60,0x00,0x00,0x00,0xA6,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 17, 0xB9,0x00,0x00,0x00,0x00,0x01,0x00,0x05,0x00,0x0C,0x00,0x1F,0x00,0x44,0x00,0x86,0x00, + 0x39, 0, 2, 0x6F,0x20, + 0x39, 0, 17, 0xB9,0xF5,0x01,0xB3,0x02,0xD7,0x04,0x1C,0x05,0x61,0x06,0xA6,0x07,0xEB,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x30, + 0x39, 0, 17, 0xB9,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x05,0x00,0x0C,0x00,0x18,0x00,0x2C,0x00, + 0x39, 0, 2, 0x6F,0x40, + 0x39, 0, 17, 0xB9,0x4F,0x00,0xAD,0x01,0x27,0x01,0xA1,0x02,0x1B,0x02,0x95,0x03,0x0F,0x03,0x89,0x00, + 0x39, 0, 2, 0x6F,0x50, + 0x39, 0, 17, 0xB9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x0D,0x00,0x1D,0x00, + 0x39, 0, 2, 0x6F,0x60, + 0x39, 0, 17, 0xB9,0x48,0x00,0x9D,0x01,0x34,0x02,0x32,0x03,0xE4,0x05,0xF6,0x08,0xF1,0x0B,0xEC,0x0E, + 0x39, 0, 2, 0x6F,0x70, + 0x39, 0, 17, 0xB9,0xE7,0x03,0xD0,0xB0,0xE0,0x0A,0x80,0x80,0x82,0x7D,0x7B,0x79,0x77,0x72,0x70,0x80, + 0x39, 0, 2, 0x6F,0x80, + 0x39, 0, 17, 0xB9,0x80,0x80,0x7D,0x7E,0x7B,0x7B,0x77,0x73,0x80,0x80,0x82,0x81,0x80,0x7F,0x7E,0x7B, + 0x39, 0, 2, 0x6F,0x90, + 0x39, 0, 17, 0xB9,0x78,0x80,0x80,0x81,0x82,0x82,0x82,0x81,0x7F,0x7C,0x80,0x80,0x80,0x83,0x86,0x86, + 0x39, 0, 2, 0x6F,0xA0, + 0x39, 0, 17, 0xB9,0x85,0x81,0x7D,0x80,0x80,0x82,0x81,0x84,0x85,0x87,0x85,0x88,0x80,0x80,0x81,0x8B, + 0x39, 0, 2, 0x6F,0xB0, + 0x39, 0, 17, 0xB9,0x88,0x8A,0x8C,0x8D,0x8E,0x80,0x80,0x84,0x87,0x8A,0x8C,0x8F,0x90,0x91,0x80,0x80, + 0x39, 0, 2, 0x6F,0xC0, + 0x39, 0, 17, 0xB9,0x84,0x87,0x8A,0x8D,0x91,0x91,0x92,0x80,0x80,0x85,0x88,0x8D,0x8F,0x8F,0x95,0x96, + 0x39, 0, 2, 0x6F,0xD0, + 0x39, 0, 17, 0xB9,0x80,0x80,0x7A,0x73,0x6E,0x69,0x66,0x60,0x5D,0x80,0x80,0x80,0x80,0x76,0x74,0x70, + 0x39, 0, 2, 0x6F,0xE0, + 0x39, 0, 17, 0xB9,0x6C,0x6A,0x80,0x80,0x81,0x7F,0x7F,0x7C,0x7B,0x76,0x73,0x80,0x80,0x83,0x83,0x83, + 0x39, 0, 2, 0x6F,0xF0, + 0x39, 0, 14, 0xB9,0x82,0x82,0x7F,0x7C,0x80,0x80,0x82,0x84,0x85,0x84,0x87,0x83,0x80, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00, + 0x39, 0, 2, 0x6F,0x20, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00, + 0x39, 0, 2, 0x6F,0x30, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00, + 0x39, 0, 2, 0x6F,0x40, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00, + 0x39, 0, 2, 0x6F,0x50, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00, + 0x39, 0, 2, 0x6F,0x60, + 0x39, 0, 17, 0xBA,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x05,0xD1,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0x70, + 0x39, 0, 17, 0xBA,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0x80, + 0x39, 0, 17, 0xBA,0x08,0x00,0x05,0x3E,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36, + 0x39, 0, 2, 0x6F,0x90, + 0x39, 0, 17, 0xBA,0x07,0x36,0x07,0x36,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x05,0x3E,0x07,0x36, + 0x39, 0, 2, 0x6F,0xA0, + 0x39, 0, 17, 0xBA,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36,0x07,0x36,0x08,0x00, + 0x39, 0, 2, 0x6F,0xB0, + 0x39, 0, 17, 0xBA,0x08,0x00,0x08,0x00,0x08,0x00,0x05,0xD1,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0xC0, + 0x39, 0, 17, 0xBA,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0xD0, + 0x39, 0, 17, 0xBA,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 2, 0x6F,0xE0, + 0x39, 0, 11, 0xBA,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00, + 0x39, 0, 17, 0xBB,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C, + 0x39, 0, 2, 0x6F,0x10, + 0x39, 0, 17, 0xBB,0x01,0x2C,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x2C,0x01,0x2C,0x01,0x2C, + 0x39, 0, 2, 0x6F,0x20, + 0x39, 0, 17, 0xBB,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x00,0x01,0x00, + 0x39, 0, 2, 0x6F,0x30, + 0x39, 0, 17, 0xBB,0x01,0x00,0x01,0x00,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C, + 0x39, 0, 2, 0x6F,0x40, + 0x39, 0, 17, 0xBB,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x2C, + 0x39, 0, 2, 0x6F,0x50, + 0x39, 0, 17, 0xBB,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C,0x01,0x2C, + 0x39, 0, 2, 0x6F,0x60, + 0x39, 0, 17, 0xBB,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00, + 0x39, 0, 2, 0x6F,0x70, + 0x39, 0, 17, 0xBB,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00, + 0x39, 0, 2, 0x6F,0x80, + 0x39, 0, 17, 0xBB,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x90, + 0x39, 0, 17, 0xBB,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10, + 0x39, 0, 2, 0x6F,0xA0, + 0x39, 0, 5, 0xBB,0x80,0x80,0x80,0x00, + 0x39, 0, 2, 0xEE,0x05, + 0x39, 0, 5, 0xFF,0xAA,0x55,0xA5,0x80, + 0x39, 0, 2, 0x6F,0x1D, + 0x39, 0, 2, 0xF2,0x05, + 0x39, 0, 5, 0x3B,0x00,0x14,0x00,0x12, + 0x39, 0, 2, 0x03,0x01, + 0x39, 0, 2, 0x90,0x02, + 0x39, 0, 19, 0x91,0x89,0x28,0x00,0x0C,0xC2,0x00,0x03,0x1C,0x01,0x7E,0x00,0x0F,0x08,0xBB,0x04,0x3D,0x10,0xF0, + 0x39, 0, 1, 0x2C, + 0x39, 0, 5, 0x51,0x07,0xFF,0x0F,0xFF, + 0x39, 0, 2, 0x53,0x20, + 0x39, 0, 1, 0x35, + 0x39, 0, 5, 0x2A,0x00,0x00,0x04,0x37, + 0x39, 0, 5, 0x2B,0x00,0x00,0x09,0x5F, + 0x39, 0, 2, 0x2F,0x01, + +#if FINGERPRINT_USE_DRIVERIC_FPR + //v2 + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x07, +// ##Enable Round + 0x39, 0, 15, 0xC0,0x01,0x01,0x00,0x00,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xC9,0x21,0x00,0x2A,0x40,0x2A,0x40,0x00,0x00,0x3F,0xDD,0xAC,0x00,0x3F,0xDD,0xAC,0x00,0x80,0x06,0xF9,0x10,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xC9,0x61,0xB4,0xB0,0x72,0x1C,0x18,0x33,0xE0,0x2A,0x40,0x0F,0x98,0x98,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xC9,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCA,0x27,0x00,0x2A,0x40,0x2A,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x3F,0xDD,0xAC,0x00,0x80,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCA,0x62,0x1D,0xB0,0x72,0x85,0x18,0x33,0xE0,0x00,0x00,0x03,0x68,0x98,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCA,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCB,0x2D,0x00,0x2A,0x40,0x2A,0x40,0x00,0x00,0x3F,0xDD,0xAC,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCB,0x71,0xB4,0x19,0x72,0x1C,0x81,0x33,0x90,0x00,0x00,0x0C,0x98,0x68,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCB,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x39, 0, 2, 0x6F,0x00, + 0x39, 0, 22, 0xCC,0x2B,0x00,0x2A,0x40,0x2A,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x7F,0xF9,0x06,0xF0,0x00, + 0x39, 0, 2, 0x6F,0x15, + 0x39, 0, 16, 0xCC,0x72,0x1D,0x19,0x72,0x85,0x81,0x33,0x9F,0xD5,0xC0,0x00,0x68,0x68,0x00,0x00, + 0x39, 0, 2, 0x6F,0x24, + 0x39, 0, 8, 0xCC,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +///////////////// + + // 调节高亮区域光斑亮度 +#if 1 + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x02, //能录能解,颜色绿色OK + 0x39, 0, 2, 0x6F,0x08, //R + 0x39, 0, 3, 0xD0,0x04,0xE4, + 0x39, 0, 2, 0x6F,0x0A,//G +// 0x39, 0, 3, 0xD0,0x0C,0xC0, + 0x39, 0, 3, 0xD0,0x0C,0x60, + 0x39, 0, 2, 0x6F,0x0C,//B + 0x39, 0, 3, 0xD0,0x06,0xC0, +#endif + + 0x39, 0, 2, 0xD1,0x41, + 0x39, 0, 2, 0x6F,0x01, + 0x39, 0, 2, 0xD1,0x00, + 0x39, 0, 2, 0x6F,0x02, + 0x39, 0, 2, 0xD1,0x00, + + 0x39, 0, 2, 0x6F,0x03, + 0x39, 0, 5, 0xD1,0x02,0x1E,0x07,0x19, + 0x39, 0, 2, 0x6F,0x07, + 0x39, 0, 5, 0xD1,0x01,0xB0,0x06,0xB0, + 0x39, 0, 2, 0x6F,0x0B, + 0x39, 0, 5, 0xD1,0x02,0x88,0x07,0x81, + + 0x39, 0, 2, 0x6F,0x0F, + 0x39, 0, 7, 0xD1,0x3F,0xFF,0x20,0x00,0x30,0x00, +//////////////////////////////////// + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x00, + 0x39, 0, 2, 0x6F,0x17, + 0x39, 0, 3, 0xB2,0x07,0xFF, // 配置 DBV + 0x39, 0, 2, 0x6F,0x1F, + 0x39, 0, 3, 0xB2,0x00,0x50, +/////////////////// +//FPR1_CENTER_X=540, FPR1_CENTER_Y=2100 +//FPR1_EN = 1 + 0x39, 0, 2, 0x88,0x01, + 0x39, 0, 2, 0x6F,0x01, + 0x39, 0, 5, 0x88,0x02,0x1D,0x08,0x34, +///FPR ON +// 0x39, 0, 4, 0x87,0x13,0xFF,0x05, +///FPR OFF +// 0x39, 0, 2, 0x6F,0x02, +// 0x39, 0, 2, 0x87,0x04, + +#endif + + 0x39, 0, 6, 0xF0,0x55,0xAA,0x52,0x08,0x00, + 0x39, 0, 2, 0xC0,0x77, +// 0x39, 0, 5, 0x3B,0x00,0x10,0x09,0x90, +// 0x39, 0, 2, 0x90,0x00, +// 0x05, 0, 1, 0x2C, +// 0x39, 0, 3, 0x51,0x03,0x00, + +#if 0//BIST MODE + 0x39, 0, 6,0xF0,0x55,0xAA,0x52,0x08,0x00, + 0x39, 0, 8,0xEF,0x01,0x02,0xFF,0xFF,0xFF,0x17,0xFF, + 0x39, 0, 5,0xEE,0x87,0x78,0x02,0x40 +#endif + +}; +#endif + + + +static void init_panel(void) +{ + /* reset panel*/ + tx_panel_reset(); + + // hal_gpio_init_output(IO_PAD_TD_LEDPWM, IO_LVL_HIGH); + + hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); //LED_ON + + /* enter send initial code mode*/ + hal_dsi_tx_ctrl_enter_init_panel_mode(); + +#if AMOLED_NT37701_CSOT667 +#ifdef PANEL_INIT_CODE_ARRAY + send_panel_init_code(sizeof(panel_init_code), (uint8_t *)panel_init_code); +#endif +#endif + + soft_te_timer_init(); + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 3, 0x51, 0x00, 0x7F); + hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x11); + delayMs(90); //50 + Gpio_swire_output(2, 40); + delayMs(20); + + hal_dsi_tx_ctrl_exit_init_panel_mode(); + delayMs(20); +} + +static void open_mipi_rx(void) +{ + /* 配置TE引脚 */ + hal_gpio_set_mode(IO_PAD_AP_TE, IO_MODE_TEAR); + + if (g_rx_ctrl_handle == NULL) + { + /* 创建rx ctrl handle */ + g_rx_ctrl_handle = hal_dsi_rx_ctrl_create_handle(); + } + /* 配置参数 */ + g_rx_ctrl_handle->base_info.src_w = INPUT_WIDTH; + g_rx_ctrl_handle->base_info.src_h = INPUT_HEIGHT; + g_rx_ctrl_handle->base_info.dst_w = OUTPUT_WIDTH; + g_rx_ctrl_handle->base_info.dst_h = OUTPUT_HEIGHT; + g_rx_ctrl_handle->base_info.src_frate = INPUT_FRAME_RATE; + g_rx_ctrl_handle->base_info.src_mode = INPUT_DATA_MODE; + g_rx_ctrl_handle->rx_color_mode = INPUT_COLOR_MODE; + g_rx_ctrl_handle->rx_lanes = INPUT_MIPI_LANE_NUM; + g_rx_ctrl_handle->rx_nonburst_models = INPUT_VIDEO_MODEL; /* 可不配置 */ + g_rx_ctrl_handle->rx_vc = INPUT_VC; + g_rx_ctrl_handle->compress_en = INPUT_COMPRESS; //INPUT_COMPRESS; + g_rx_ctrl_handle->rx_hsclk_rate = INPUT_MIPI_LANE_RATE; + g_rx_ctrl_handle->cus_dcs_entry_table = g_cus_rx_dcs_execute_table; /* 注册 DCS处理列表 */ + g_rx_ctrl_handle->rx_dcs_read_entry = ap_dcs_read; /* 注册dsc read 回调函数,可选,此函数为空时由cus_dcs_entry_table执行 */ + g_rx_ctrl_handle->pps_update_entry = pps_update_handle; +// g_rx_ctrl_handle->pq_marginal = PQ_TYPE_6; + +#if defined(ISP_568) || defined(ISP_368) + g_rx_ctrl_handle->base_info.extra_info.rot_angle = VIDOE_ROT_ANGLE_0; + g_rx_ctrl_handle->base_info.extra_info.mirror_en = false; + + g_rx_ctrl_handle->hight_performan_mode = HIGHT_PERFORMAN_L2; +// g_rx_ctrl_handle->base_info.extra_info.ltpo = LTPO_MODE_2; +// g_rx_ctrl_handle->pu_optimize = true; +#endif + + /* 提前预置PPS, AP 有PPS cmd也会更新 */ + if (g_rx_ctrl_handle->compress_en == true) + { + uint8_t pps[128] = {0x11,0x00,0x00,0x89,0x30,0x80,0x09,0x60,0x04,0x38,0x00,0x1E,0x02,0x1C,0x02,0x1C, + 0x02,0x00,0x02,0x0E,0x00,0x20,0x02,0xE3,0x00,0x07,0x00,0x0C,0x03,0x50,0x03,0x64, + 0x18,0x00,0x10,0xF0,0x03,0x0C,0x20,0x00,0x06,0x0B,0x0B,0x33,0x0E,0x1C,0x2A,0x38, + 0x46,0x54,0x62,0x69,0x70,0x77,0x79,0x7B,0x7D,0x7E,0x01,0x02,0x01,0x00,0x09,0x40, + 0x09,0xBE,0x19,0xFC,0x19,0xFA,0x19,0xF8,0x1A,0x38,0x1A,0x78,0x1A,0xB6,0x2A,0xF6, + 0x2B,0x34,0x2B,0x74,0x3B,0x74,0x63,0xF4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; + + hal_dsi_rx_ctrl_pre_init_pps(g_rx_ctrl_handle, pps, 128); + } + + /* 初始化rx ctrl */ + hal_dsi_rx_ctrl_init(g_rx_ctrl_handle); + +#if CUS_SCLD_FILTER +// hal_dsi_rx_ctrl_set_cus_scld_filter(g_rx_ctrl_handle, rx_filter_1080_h_3_61, rx_filter_2400_v_5_84); + hal_dsi_rx_ctrl_set_cus_scld_filter(g_rx_ctrl_handle, rx_filter_1080_h_3_62, rx_filter_2400_v_5_85); +#endif + +#if !defined(ISP_568) && !defined(ISP_368) + hal_dsi_rx_ctrl_set_cus_pq_enh_lum(g_rx_ctrl_handle,0,0); + hal_dsi_rx_ctrl_set_cus_pq_gain(g_rx_ctrl_handle, 260, 256, 260); + hal_dsi_rx_ctrl_set_cus_pq_enh_chr(g_rx_ctrl_handle,0,0); + hal_dsi_rx_ctrl_set_cus_pq_enh_chr2(g_rx_ctrl_handle,1,0,0); +#endif + + hal_dsi_rx_ctrl_set_cus_sync_line(g_rx_ctrl_handle, 2000);// lss add, 撕裂问题1600 +// hal_dsi_rx_ctrl_hight_performan_mode(g_rx_ctrl_handle); +// hal_dsi_rx_ctrl_set_cus_esc_clk(g_rx_ctrl_handle, SET_RESPONSE_CLK); + + /* 启动rx ctrl */ + hal_dsi_rx_ctrl_start(g_rx_ctrl_handle); + //hal_dsi_rx_ctrl_set_auto_hw_filter(g_rx_ctrl_handle, true); +} + + + +static void init_mipi_tx(void) +{ + if (g_tx_ctrl_handle == NULL) + { + g_tx_ctrl_handle = hal_dsi_tx_ctrl_create_handle(); + } + g_tx_ctrl_handle->channel_id = OUTPUT_VC; + g_tx_ctrl_handle->lane_num = OUTPUT_LANE_NUMBER; + g_tx_ctrl_handle->vid_mode = OUTPUT_VIDEO_MODEL; + g_tx_ctrl_handle->cmd_tx_type = _CMD_TYPE; + g_tx_ctrl_handle->dpi_vsa = OUTPUT_VSA; + g_tx_ctrl_handle->dpi_vbp = OUTPUT_VBP; + g_tx_ctrl_handle->dpi_vfp = OUTPUT_VFP; + g_tx_ctrl_handle->dpi_hsa = OUTPUT_HSA; + g_tx_ctrl_handle->dpi_hbp = OUTPUT_HBP; + g_tx_ctrl_handle->dpi_hfp = OUTPUT_HFP; +// g_tx_ctrl_handle->lane_rate_coef = _LANE_RATE_COEF; + g_tx_ctrl_handle->base_info.src_w = INPUT_WIDTH; + g_tx_ctrl_handle->base_info.src_h = INPUT_HEIGHT; + g_tx_ctrl_handle->base_info.dst_w = OUTPUT_WIDTH; + g_tx_ctrl_handle->base_info.dst_h = OUTPUT_HEIGHT; + g_tx_ctrl_handle->base_info.src_frate = INPUT_FRAME_RATE; + g_tx_ctrl_handle->base_info.src_mode = INPUT_DATA_MODE; +// g_tx_ctrl_handle->tx_line_delay = 80; +// g_tx_ctrl_handle->tx_frame_rate = TX_FRAME_RATE; +// g_tx_ctrl_handle->tx_clkawayshs = false ; +// g_tx_ctrl_handle->lp_exit_lpdt = true; + hal_dsi_tx_ctrl_init(g_tx_ctrl_handle); + /* AP 没有发送数据时默认的显示颜色, 量产为0 0 0(黑色), 配置其他颜色仅为debug使用 */ + hal_dsi_tx_ctrl_set_overwrite_rgb(0x00, 0x00, 0x00); + +// tx_display_on(); +#if CUS_SCLD_FILTER + hal_dsi_tx_ctrl_set_cus_pq_filter(g_tx_ctrl_handle, tx_filter_h_3, tx_filter_v_3); +#endif + +// hal_dsi_tx_crop_t *crop; +// crop->crop_top = 9; +// crop->crop_bottom = 0; +// crop->crop_left = 0; +// crop->crop_right = 6; + + hal_dsi_tx_crop_t *crop; + crop->crop_top = 8; + crop->crop_bottom = 1; + crop->crop_left = 3; + crop->crop_right = 5; + hal_dsi_tx_crop_pic(g_tx_ctrl_handle, crop); + +} + + +static void tx_display_on(void) +{ + //reload_mipi_rx(); + init_panel(); + TAU_LOGD("init code"); + panel_display_done = true; + + hal_dsi_tx_ctrl_start(g_tx_ctrl_handle); + delayMs(20); + hal_dsi_tx_ctrl_write_cmd(0x05, 0, 1, 0x29); + delayMs(10); + +// delayMs(50); +// Gpio_swire_output(2, 40); + +// TAU_LOGD("write 29"); +} + + + +#ifdef ADD_TIMER3_FUNCTION +static void soft_timer3_cb(void *data) +{ + hal_timer_start(TIMER_NUM3, 10, soft_timer3_cb, NULL); + tp_sleep_count++; + + if (tp_sleep_clk_count < 0xF8) + tp_sleep_clk_count++; + if(phone_DisplayOFF_count>0) + { + phone_DisplayOFF_count++; + } + +#if AUTO_CAL_TP + if (g_exit_sleep_mode) + { + if (g_cal_cnt > 0) + { + g_cal_cnt--; + if (g_cal_cnt == 0){ + g_calibration_flag = true; + //TAU_LOGD("Start cal tp!\n"); + } + } + } +#endif +} +#endif + + + +uint32_t s_heartbeat = 0; +void tp_heartbeat_exec(void) +{ + if (s_screen_init_complate) + { + if(hal_gpio_get_input_data(IO_PAD_TD_INT)) + { + s_heartbeat = 0; + } + else + { + if(s_heartbeat < (65536/50)) // 65536*3 = 900ms 65536/50 = 6ms + { + s_heartbeat ++; + }else + { + TAU_LOGD("hb..."); + s_heartbeat = 0; + ap_tp_st_touch_software_reset(); + } + } + } +} + + +void ap_demo(void) +{ + hal_gpio_init_output(IO_PAD_TD_TPRSTN, IO_LVL_HIGH); + hal_gpio_init_output(IO_PAD_AP_SWIRE, IO_LVL_LOW); + hal_gpio_init_output(IO_PAD_PWMEN, IO_LVL_LOW); //AP_SWIRE + hal_gpio_init_output(IO_PAD_ADCIN, IO_LVL_LOW); //SWIRE + + TAU_LOGD("Note10Lite CSOT667 [%s %s]", __DATE__, __TIME__); + /* mipi rx初始化 */ + open_mipi_rx(); + delayMs(20); + +// hal_gpio_set_output_data(IO_PAD_PWMEN, IO_LVL_HIGH); //LED_ON + + app_tp_I2C_init(); +// soft_te_timer_init(); + + /* mipi tx 初始化*/ + init_mipi_tx(); + + app_tp_init(); +#ifdef ADD_TIMER3_FUNCTION + tp_sleep_count=0; + tp_sleep_clk_count = 0; + phone_DisplayOFF_count=1; + hal_timer_init(TIMER_NUM3); + hal_timer_start(TIMER_NUM3, 10, soft_timer3_cb, NULL); +#endif + + while (1) + { + if (start_display_on == true ) + { + tx_display_on(); + start_display_on = false; + + #ifndef DISABLE_TDDI_I2C_FUNCTION + /* 与屏的TP 模块通讯并初始化 */ + app_tp_transfer_screen_start(); + #endif + #if ENABLE_TP_WAKE_UP + hal_gpio_set_ap_reset_int(ENABLE, ap_reset_cb, DETECT_RISING_EDGE); + #endif + } + + #if 1//电话熄屏 + if (phone_off_flag==0) + { + if(Flag_blacklight_EN) + { + phone_off_flag =1; + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x28, 0x00); + TAU_LOGD("Phone off 28"); + } + } + else + { + if(Flag_blacklight_EN ==0) + { + phone_off_flag =0; + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 2, 0x29, 0x00); + TAU_LOGD("Phone off 29"); + } + } + #endif + if(phone_DisplayOFF_flag==1) + { + if(phone_DisplayOFF_count>2200) + { + phone_DisplayOFF_count=0; + phone_start_flag=1; + } + } + else + { + if(phone_DisplayOFF_count>30) + { + phone_DisplayOFF_count=0; + phone_start_flag=1; + hal_gpio_set_output_data(IO_PAD_AP_INT, IO_LVL_LOW);//必须拉低,否则待机或者双击唤醒2~3s无触摸.jason_su + } + } + + + if (BL_ADJ_flag) + { + if(hbm_mode) //高亮延时 + { + if (enter_hbm_mode_cnt <41) + { + enter_hbm_mode_cnt++; + delayMs(1); + if (enter_hbm_mode_cnt ==40) + { + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 3, 0x51, 0x07, 0xFF); + BL_ADJ_flag=false; + } + } + } + else + { + if (exit_hbm_mode_cnt < 3) //7 + { + exit_hbm_mode_cnt++; + delayMs(1); + if (exit_hbm_mode_cnt==2) + { + hal_dsi_tx_ctrl_write_cmd(0x39, 0, 3, 0x51, rd_51_val2>>8, rd_51_val2&0xFF); + BL_ADJ_flag=false; + } + } + } + } + + + + #ifndef DISABLE_TDDI_I2C_FUNCTION + /* 等待屏 TP 中断上报做TP 协议转换 */ + app_tp_transfer_screen_int(); + #endif + tp_heartbeat_exec(); + app_tp_calibration_exec(); + ap_tp_st_touch_scan_point_record_event_exec(); + + while (hal_dsi_rx_ctrl_dsc_async_handler(g_rx_ctrl_handle)); + + #if ENABLE_TP_WAKE_UP + if (g_need_enter_sleep_mode) + { + tp_sleep_in=1; +// hal_gpio_set_output_data(IO_PAD_TD_LEDPWM, IO_LVL_HIGH); + + /* FIXME stop more model */ + hal_dsi_tx_ctrl_stop(g_tx_ctrl_handle); + hal_dsi_tx_ctrl_deinit(g_tx_ctrl_handle); + hal_dsi_rx_ctrl_stop(g_rx_ctrl_handle); + hal_dsi_rx_ctrl_deinit(g_rx_ctrl_handle); + + hal_swire_open(DISABLE); + hal_swire_deinit(); + hal_timer_stop(SWIRE_TIMER); + hal_timer_deinit(SWIRE_TIMER); + + hal_system_set_vcc(false); + TAU_LOGD("disable video path\n"); + g_need_enter_sleep_mode = false; + } + #endif + } +} + + + + diff --git a/src/app/demo/ap_demo.h b/src/app/demo/ap_demo.h new file mode 100644 index 0000000..2c99b24 --- /dev/null +++ b/src/app/demo/ap_demo.h @@ -0,0 +1,49 @@ +/******************************************************************************* +* +* +* File: s8_demo.h +* Description: s8测试头文件 +* Version: V0.1 +* Date: 2021-02-22 +* Author: Tempest + *******************************************************************************/ + +#ifndef __AP_DEMO_H__ +#define __AP_DEMO_H__ + +/* 不同方案选择。选仅选1个*/ +#define USE_FOR_SAMSUNG_Note10Lite + + + +#ifdef USE_FOR_SAMSUNG_Note10Lite + +#define AMOLED_NT37701_CSOT667 1 + +#define FINGERPRINT_USE_DRIVERIC_FPR 1 // 指纹识别区域使用driver ic的FPR功能实现 + +#define USE_GPIO_CTRL_SWIRE //GPIO控制SWIRE/LED_ON +#define PANEL_INIT_CODE_ARRAY 1 //换一种发初始化方式。减少代码量 + +#define USE_FOR_A71_BLUE_MODE //S10蓝光模式 +#define ADD_PANEL_DISPLAY_MODE //屏幕模式功能。白平衡功能 + +//#define USE_WL518_INTERNAL_FLASH +//#define USE_FOR_PANEL_RGB_TEST //注意RX要设置为CMD模式,TX发送指令要LP模式 +#define USE_CCM_ADJ_BLUE_BRI //CCM函数改蓝光功能 + +#define ADD_TIMER3_FUNCTION +#define ENABLE_TP_SLEEP +//#define G_PHONE_INT_DEFAULT_LOW + +#define ADD_FINGERPRINT_FUNC //指纹功能 +#endif + +/** +* @brief test system 主函数 +* @param none +* @retval none +*/ +void ap_demo(void); +void app_tp_I2C_init(void); +#endif diff --git a/src/app/demo/app_tp_for_custom_s8.h b/src/app/demo/app_tp_for_custom_s8.h new file mode 100644 index 0000000..17a6494 --- /dev/null +++ b/src/app/demo/app_tp_for_custom_s8.h @@ -0,0 +1,154 @@ +/******************************************************************************* +* +* +* File: app_tp_for_custom.h +* Description tp 协议处理文件,包括特定配置的宏 +* Version V0.1 +* Date 2021-10-14 +* Author zhanghz +*******************************************************************************/ +#ifndef __APP_TP_FOR_CUSTOM_S8_H__ +#define __APP_TP_FOR_CUSTOM_S8_H__ +#include "test_cfg_global.h" + +#include "string.h" +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "app_tp_transfer.h" +#include "hal_gpio.h" + +#define AP_TP_TRANSFER 1 + +#if AMOLED_NT37280 + #define PHONE_SLAVE_TRANSFER_I2C 1 //1:表示手机跟芯片之间,touch 数据采用 I2C 通信; + #define PHONE_SLAVE_TRANSFER_SPI 0 //1:表示手机跟芯片之间,touch 数据采用 SPI 通信; + #define SCREEN_MASTER_TRANSFER_I2C 0 //1:表示屏幕跟芯片之间,touch 数据采用 I2C 通信; + #define SCREEN_MASTER_TRANSFER_SPI 1 //1:表示屏幕跟芯片之间,touch 数据采用 SPI 通信; +#elif LCD_HX83112A + #define PHONE_SLAVE_TRANSFER_I2C 1 //1:表示手机跟芯片之间,touch 数据采用 I2C 通信; + #define PHONE_SLAVE_TRANSFER_SPI 0 //1:表示手机跟芯片之间,touch 数据采用 SPI 通信; + #define SCREEN_MASTER_TRANSFER_I2C 0 //1:表示屏幕跟芯片之间,touch 数据采用 I2C 通信; + #define SCREEN_MASTER_TRANSFER_SPI 0 //1:表示屏幕跟芯片之间,touch 数据采用 SPI 通信; +#else // #if LCD_TD4310 + #define PHONE_SLAVE_TRANSFER_I2C 1 //1:表示手机跟芯片之间,touch 数据采用 I2C 通信; + #define PHONE_SLAVE_TRANSFER_SPI 0 //1:表示手机跟芯片之间,touch 数据采用 SPI 通信; + #define SCREEN_MASTER_TRANSFER_I2C 1 //1:表示屏幕跟芯片之间,touch 数据采用 I2C 通信; + #define SCREEN_MASTER_TRANSFER_SPI 0 //1:表示屏幕跟芯片之间,touch 数据采用 SPI 通信; +#endif + +#ifdef USE_FOR_SAMSUNG_Note10Lite +#define CHIP_I2C_ADDRESS 0x48 //芯片本身 I2C 从机地址.机板I2C地址 +#define SCREEN_I2C_ADDRESS 0x49 //屏幕 I2C 从机地址 + +#elif defined(USE_FOR_SUMSUNG_S9PLUS) +#define CHIP_I2C_ADDRESS 0x48 //芯片本身 I2C 从机地址 +#define SCREEN_I2C_ADDRESS 0x20 //屏幕 I2C 从机地址 + +#else +#define CHIP_I2C_ADDRESS 0x48 //芯片本身 I2C 从机地址 +#define SCREEN_I2C_ADDRESS 0x49 //屏幕 I2C 从机地址 +#endif + +#define CHIP_I2C_ADDR_BITS I2C_ADDR_BITS_7 //屏幕 I2C 地址位数 7/10,默认为7 +#define SCREEN_I2C_ADDR_BITS I2C_ADDR_BITS_7 //屏幕 I2C 地址位数 7/10,默认为7 +#define I2C_MASTER_SPEED 800000 //设置 I2C 主机通信速率 + +#define SPI_MASTER_SPEED 10000000 //设置 SPI 主机通信速率 + +#define BUFFER_SIZE_MAX 200 //定义 bufrer 最大的字节数 + +#define INPUT_WIDTH_VALUE 1440 //原装屏 X 坐标码值的最大值 +#define INPUT_HEIGHT_VALUE 3200 //原装屏 Y 坐标码值的最大值 + +#define OUTPUT_WIDTH_VALUE 1080 //维修屏 X 坐标码值的最大值 +#define OUTPUT_HEIGHT_VALUE 2400 //维修屏 Y 坐标码值的最大值 + + +#define SCREEN_TRANSFER_WRITE false //接收到screen io中断,发送数据之后不用读回 +#define SCREEN_TRANSFER_READ true //接收到screen io中断,发送数据之后要读回数据 + +typedef enum +{ + I2C_ADDR_BITS_7 = 7, + I2C_ADDR_BITS_10 = 10 +} en_I2C_ADDR_BITS_mdoe; + +typedef struct +{ + uint8_t *buffer; //接收到screen io中断后,通信的发送buffer指针 + size_t txbuffer_size; //发送 buffer 数据长度;需要读回时,目前只支持4个字节 + size_t rxbuffer_size; //发送完数据之后,要读回的数据长度 + bool read_flag; //true 接收到screen io中断,发送数据之后要读回数据 +} st_screen_data; + +typedef struct +{ + const uint8_t *buffer; //通信的发送buffer指针 + size_t txbuffer_size; //发送 buffer 数据长度;需要读回时,目前只支持4个字节 + size_t rxbuffer_size; //发送完数据之后,要读回的数据长度 + bool read_flag; //true 接收到screen io中断,发送数据之后要读回数据 +} st_screen_const_data; + +typedef struct +{ + uint8_t reg_size; //接收buffer的个数 + size_t write_back_size; //要发送的数据长度 + const uint8_t *reg_data; //接收buffer + const uint8_t *write_back; //发送bufer +} st_reg_const_data; + +typedef struct +{ + uint8_t reg_size; //接收buffer的个数 + size_t write_back_size; //要发送的数据长度 + uint8_t *reg_data; //接收buffer + uint8_t *write_back; //发送bufer +} st_reg_data; + +extern io_pad_e g_screen_input_rst_pad; +extern io_pad_e g_screen_input_int_pad; +extern io_pad_e g_phone_input_rst_pad; +extern io_pad_e g_phone_output_int_pad; + +extern uint8_t phone_start_flag; +extern uint8_t phone_touch_flag; + +extern uint8_t send_point; +extern uint8_t fingerprint_enable; +extern uint8_t phone_reg_coord_back[200]; +extern const uint8_t screen_reg_int_data_size; +extern const uint8_t screen_reg_start_data_size; +extern st_screen_data screen_reg_int_data[]; +extern st_screen_const_data screen_reg_start_data[]; +//extern st_reg_const_data phone_reg_const_data[]; + +/************************************************************************** +* @name : app_tp_screen_analysis_const +* @brief : screen start 阶段数据解析函数,由客户定制 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +uint8_t app_tp_screen_analysis_const(uint8_t transfer_now, uint8_t *rxbuffer, size_t data_size); + +/************************************************************************** +* @name : app_tp_screen_analysis_int +* @brief : screen 来IO中断后的 数据解析函数,由客户定制 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +uint8_t app_tp_screen_analysis_int(uint8_t transfer_now, uint8_t *rxbuffer, size_t data_size); + +/************************************************************************** +* @name : app_tp_phone_analysis_data +* @brief : phone 数据解析函数,由客户定制 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_phone_analysis_data(uint8_t *rxbuffer, size_t rxbuffer_size, const uint8_t **txbuffer, size_t *txbuffer_size); + + +#endif + diff --git a/src/app/demo/app_tp_screen_transfer_data_s8.h b/src/app/demo/app_tp_screen_transfer_data_s8.h new file mode 100644 index 0000000..c511a3e --- /dev/null +++ b/src/app/demo/app_tp_screen_transfer_data_s8.h @@ -0,0 +1,23 @@ +/******************************************************************************* +* +* +* File: hal_tp_screen_transfer_data.h +* Description 配置主机 start/sleep/awake 模式下需要发送的值 +* Version V0.1 +* Date 2021-10-14 +* Author zhanghz +*******************************************************************************/ +#ifndef __HAL_TP_SCREEN_TRANSFER_DATA_S8_H__ +#define __HAL_TP_SCREEN_TRANSFER_DATA_S8_H__ + +#include "tau_common.h" + +/***************send to screen***************/ +const uint8_t screen_87_data[] = {0x87}; +const uint8_t screen_a0_00_ff_data[] = {0xa0, 0x00, 0xff}; +const uint8_t screen_a4_06_c1_data[] = {0xa4, 0x06, 0xc1}; + +/*******************************************/ + +#endif + diff --git a/src/app/demo/app_tp_st_touch.c b/src/app/demo/app_tp_st_touch.c new file mode 100644 index 0000000..c050bcd --- /dev/null +++ b/src/app/demo/app_tp_st_touch.c @@ -0,0 +1,570 @@ +/******************************************************************************* +* +* +* File: app_tp_st_touch.c信 +* Description ST touch 校准,复位等功能函数 +* Version V0.1 +* Date 2023-03-13 +* Author sfy + +* Description ST touch 校准回读功能,开放接口给上位机读取是否成功 +* Version V0.2 +* Date 2023-03-22 +* Author sfy + +*******************************************************************************/ + +#include "test_cfg_global.h" +#include "app_tp_transfer.h" +#include "hal_i2c_master.h" +#include "hal_i2c_slave.h" +#include "hal_spi_master.h" +#include "hal_spi_slave.h" +#include "tau_log.h" +#include "app_tp_st_touch.h" +#include "app_tp_transfer.h" +#include "app_tp_for_custom_s8.h" + +#define ST_TP_CALIBRATION_SUCCESS 0x5A // 校准成功标志 + +static volatile bool s_calibration_flag = false; +static volatile uint8_t s_calibration_correct_flag = false; + +st_tp_scan_data tp_scan_data; + +uint8_t st_touch_init_sensor_off[3] = {0xA0,0x00,0x00}; //2 sensor OFF +uint8_t st_touch_init_sensor_on[3] = {0xA0,0x00,0x01}; //2 sensor on + + +uint8_t st_touch_tp_tuning_reset[3] = {0xA4,0x00,0x00}; // 3 System Reset +uint8_t st_touch_tp_tuning_FpnlInit[3] = {0xA4,0x00,0x03}; // FPnl Init +uint8_t st_touch_tp_tuning_PnlInit[3] = {0xA4,0x00,0x02}; // Pnl Init +uint8_t st_touch_tp_tuning_TuneM[4] = {0xA4,0x03,0x13,0x00}; // TuneM +uint8_t st_touch_tp_tuning_TuneS[4] = {0xA4,0x03,0x0C,0x00}; // TuneS +uint8_t st_touch_tp_tuning_SvCfg[3] = {0xA4,0x05,0x01}; // SvCfg +uint8_t st_touch_tp_tuning_SvCx[3] = {0xA4,0x05,0x02}; // SvCx +uint8_t st_touch_tp_tuning_SvPnl[3] = {0xA4,0x05,0x04}; // SvPnl +uint8_t st_touch_tp_tuning_clearfifo[3] = {0xA4,0x00,0x01}; // 1 clear fifo + +uint8_t st_touch_tp_tuning_clkreset[3] = {0xA4,0x00,0x05}; // clk reset + +/************************************************************************** +* @name : ap_tp_st_touch_get_calibration_success_mark +* @brief : st touch 获取触摸校准成功标志 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_get_calibration_success_mark(void) +{ + uint8_t cali_send_buff[6] = {0xFA,0x20,0x01,0x00,0x00,0x00}; + uint8_t cali_send_buff1[3] = {0xA4,0x06,0x01}; + uint8_t cali_read_buff[40] = {0}; + uint8_t i = 0; + + app_tp_m_read(cali_send_buff, 5, cali_read_buff, 4); + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + + app_tp_m_write(cali_send_buff1, 3); + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + + app_tp_m_read(cali_send_buff, 5, cali_read_buff, 4); + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + + app_tp_m_read(cali_send_buff, 5, cali_read_buff, 32); + while(!hal_i2c_m_transfer_complate()); + + if((cali_read_buff[20] == 0xFF) && (cali_read_buff[21] == 0xFF)) + { + s_calibration_correct_flag = ST_TP_CALIBRATION_SUCCESS; // 校准成功 + } + else + { + s_calibration_correct_flag = 0x00; // 校准失败 + } +/* + for(i=0;i<32;i++) + { + printf("%02x ",cali_read_buff[i]); + } +*/ +} + +/************************************************************************** +* @name : ap_tp_st_touch_calibration +* @brief : st touch 触摸校准指令流程 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_calibration(void) +{ + // app_tp_m_write(st_touch_tp_tuning_reset, sizeof(st_touch_tp_tuning_reset)); // System Reset + // while(!hal_i2c_m_transfer_complate()); + // delayMs(10); + app_tp_m_write(st_touch_tp_tuning_FpnlInit, sizeof(st_touch_tp_tuning_FpnlInit)); // FPnl Init + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(st_touch_tp_tuning_PnlInit, sizeof(st_touch_tp_tuning_PnlInit)); // Pnl Init + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(st_touch_tp_tuning_TuneM, sizeof(st_touch_tp_tuning_TuneM)); // TuneM + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(st_touch_tp_tuning_TuneS, sizeof(st_touch_tp_tuning_TuneS)); // TuneS + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(st_touch_tp_tuning_SvCfg, sizeof(st_touch_tp_tuning_SvCfg)); // SvCfg + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(st_touch_tp_tuning_SvCx, sizeof(st_touch_tp_tuning_SvCx)); // SvCx + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(st_touch_tp_tuning_SvPnl, sizeof(st_touch_tp_tuning_SvPnl)); // SvPnl + while(!hal_i2c_m_transfer_complate()); + delayMs(1); +} + +const unsigned short wCRCTalbeAbs[] = +{ + 0x0000, 0xCC01, 0xD801, 0x1400, 0xF001, 0x3C00, 0x2800, 0xE401, + 0xA001, 0x6C00, 0x7800, 0xB401, 0x5000, 0x9C01, 0x8801, 0x4400, +}; + +/************************************************************************** +* @name : CRC16_2 +* @brief : 计算数组 CRC 值 +* @param[in] :pchMsg 数组指针地址; wDataLen 计算CRC 数组长度 +* @return : 16位CRC值 +* @retval : +**************************************************************************/ + +unsigned short CRC16_2(unsigned char *pchMsg, unsigned short wDataLen) +{ + unsigned short wCRC = 0xFFFF; + unsigned short i; + unsigned char chChar; + + for (i = 0; i < wDataLen; i++) + { + chChar = *pchMsg++; + wCRC = wCRCTalbeAbs[(chChar ^ wCRC) & 15] ^ (wCRC >> 4); + wCRC = wCRCTalbeAbs[((chChar >> 4) ^ wCRC) & 15] ^ (wCRC >> 4); + } + + return wCRC; +} + +/************************************************************************** +* @name : ap_set_tp_calibration_04 +* @brief : 获取机板04 02命令,执行校准、gamma校准等功能 +* @param[in] :handler rx handler; dcs_packet 指令参数和长度等信息结构体 +* @return : true +* @retval : +**************************************************************************/ + +bool ap_set_tp_calibration_04(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet) +{ + uint8_t i,crch,crcl,command,param[30] = {0}; + unsigned short crc; + + // 计算CRC值 + for(i=0;iparam_length;i++) + { + param[i+1] = dcs_packet->packet_param[i]; + printf("%02x ",dcs_packet->packet_param[i]); + } + + param[0] = 0x04; + crc = CRC16_2(param,dcs_packet->param_length-1); + crch = (crc>>8); + crcl = crc; + + // CRC校验判断 +// if(crch == dcs_packet->packet_param[dcs_packet->param_length-2] && crcl == dcs_packet->packet_param[dcs_packet->param_length-1]) + { + command = param[3]; + switch(command) + { + case CMD_TP_CABLIBRATION: // Touch校准 + if( (param[4] == 0x01) && (param[5] == 0x01) && (param[6] == 0x01) ) + { + s_calibration_flag = true; + s_calibration_correct_flag = false; + + } + /* if( (param[4] == 0xA5) && (param[5] == 0x5A) && (param[6] == 0xA5) ) + { + if(s_calibration_correct_flag) // 校准成功 + { + hal_dsi_rx_ctrl_send_ack_cmd(handler, + DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx + DSI_VC_0, + 0x7, 0x04,0x02,0x07,0x2A,ST_TP_CALIBRATION_SUCCESS,0x00,0x00); + printf("cali. send ok "); + } + else // 校准失败 + { + hal_dsi_rx_ctrl_send_ack_cmd(handler, + DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx + DSI_VC_0, + 0x7, 0x04,0x02,0x07,0x2A,0x00,0x00,0x00); + } + printf("%02x ",s_calibration_correct_flag); + } + */ + break; + case CMD_SET_IMAGE_RGB: // Image RGB发送 + break; + case CMD_SEND_COMMAND: // Command Send + break; + case CMD_WRITE_GAMMA: // Gamma校正写入 + break; + case CMD_START_GAMMA: + break; + default: + break; + } + } + + // 兼容旧版本tp calibration + if( (dcs_packet->packet_param[0] == 0x01) && (dcs_packet->packet_param[1] == 0x01) && (dcs_packet->packet_param[2] == 0x01) ) + { + s_calibration_flag = true; + s_calibration_correct_flag = false; + } +/* + if( (dcs_packet->packet_param[0] == 0xA5) && (dcs_packet->packet_param[1] == 0x5A) && (dcs_packet->packet_param[2] == 0xA5) ) + { + if(s_calibration_correct_flag) // 校准成功 + { + hal_dsi_rx_ctrl_send_ack_cmd(handler, + DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx + DSI_VC_0, + 0x7, 0x04,0x02,0x07,0x2A,ST_TP_CALIBRATION_SUCCESS,0x00,0x00); + } + else // 校准失败 + { + hal_dsi_rx_ctrl_send_ack_cmd(handler, + DSI_ACK_DT_GEN_LONG_RESPONSE, //xxx + DSI_VC_0, + 0x7, 0x04,0x02,0x07,0x2A,0x00,0x00,0x00); + } + } +*/ + return true; +} + + +/************************************************************************** +* @name : ap_get_tp_calibration_status_01 +* @brief : 获取触摸校准状态 +* @param[in] :param 01命令参数 +* @return : true +* @retval : +**************************************************************************/ + +bool ap_get_tp_calibration_status_01(hal_dsi_rx_ctrl_handle_t *handler, uint8_t param) +{ +// if( param == 0x5A ) + { + if(s_calibration_correct_flag) // 校准成功 + { + hal_dsi_rx_ctrl_send_ack_cmd(handler, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, //xxx + DSI_VC_0, + 1,ST_TP_CALIBRATION_SUCCESS); + } + else // 校准失败 + { + hal_dsi_rx_ctrl_send_ack_cmd(handler, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B, //xxx + DSI_VC_0, + 1,0x00); + } + } + + return true; +} + +/************************************************************************** +* @name : app_tp_calibration_exec +* @brief : st touch 触摸校准执行函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void app_tp_calibration_exec(void) +{ + uint8_t i = 0; + + if(s_calibration_flag) + { + s_calibration_flag = false; + for(i=0;i<2;i++) + { + ap_tp_st_touch_calibration(); + delayMs(4000); + ap_tp_st_touch_get_calibration_success_mark(); + if(s_calibration_correct_flag == ST_TP_CALIBRATION_SUCCESS) + { + TAU_LOGD("calibration successful \n"); + break; + } + else + { + TAU_LOGD("calibration failure \n"); + } + } + + } +} + + +/************************************************************************** +* @name : ap_tp_st_touch_scan_point_init +* @brief : st touch tp_scan_data结构体初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_scan_point_init(void) +{ + uint8_t i=0; + + for(i=0;i>4)+1; + i+=7; + + if(eventdata == 0x13) // 按下事件 + { + for(j=0;j0)) // 释放事件 + { + for(j=0;j0) // 有残留点 + { + printf("release finger %2d\n",tp_scan_data.tp_read_point_counter); + tp_scan_data.tp_read_point_counter = 0; + ap_tp_st_touch_simulate_finger_release_event(); + } + ap_tp_st_touch_scan_point_init(); + } + } +} + +/************************************************************************** +* @name : ap_tp_st_touch_error_handler_F3 +* @brief : st touch 异常报错 F3 02 处理函数 +* @param[in] : screendata 触摸报点数据 +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_error_handler_F3(uint8_t* screendata) +{ + // 收到 TP 异常回复 0xF3 0x02 0x00 0x00 0x00 0x00 0x00 0x00 + if(screendata[0] == 0xF3 && screendata[1] == 0x02 && screendata[2] == 0x00) + { + ap_tp_st_touch_software_reset(); + } +} + +/************************************************************************** +* @name : ap_tp_st_touch_error_handler_F3 +* @brief : st touch 异常报错 FF FF 处理函数 +* @param[in] : screendata 触摸报点数据 +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_error_handler_FF(uint8_t* screendata) +{ + // 收到 TP 异常回复 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF + if(screendata[1] == 0xFF && screendata[2] == 0xFF&& screendata[3] == 0xFF&&screendata[4] == 0xFF) + { + ap_tp_st_touch_software_reset(); + } +} + + + + diff --git a/src/app/demo/app_tp_st_touch.h b/src/app/demo/app_tp_st_touch.h new file mode 100644 index 0000000..e7ad4ef --- /dev/null +++ b/src/app/demo/app_tp_st_touch.h @@ -0,0 +1,170 @@ +/******************************************************************************* +* +* +* File: app_tp_st_touch.h +* Description ST touch 芯片相关函数 +* Version V0.1 +* Date 2023-03-13 +* Author sfy +*******************************************************************************/ + +#ifndef __APP_TP_ST_TOUCH_H__ +#define __APP_TP_ST_TOUCH_H__ + +#include "string.h" +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "hal_dsi_rx_ctrl.h" + +typedef enum +{ + CMD_TP_CABLIBRATION = 0x2A, + CMD_SET_IMAGE_RGB = 0x2B, + CMD_SEND_COMMAND = 0x2C, + CMD_WRITE_GAMMA = 0x2D, + CMD_START_GAMMA = 0x2E +} st_tp_calibration_command; + + +#define ST_TP_SCAN_POINT_NUMBER_MAX 6 // TP 报点最大个数 + +typedef struct +{ + uint8_t tp_point_buffer[ST_TP_SCAN_POINT_NUMBER_MAX]; // 记录TP报点ID + uint8_t tp_read_point_counter; // 报点ID个数统计 + uint8_t tp_point_up_error_flag; // 记录需要执行UP事件标记 + uint32_t tp_point_error_time_counter; // 没有收到move事件或者release事件时间计算 +} st_tp_scan_data; + +/************************************************************************** +* @name : ap_tp_st_touch_calibration +* @brief : st touch 触摸校准指令流程 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_calibration(void); + +/************************************************************************** +* @name : app_tp_calibration_exec +* @brief : st touch 触摸校准执行函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void app_tp_calibration_exec(void); + +/************************************************************************** +* @name : ap_tp_st_touch_get_calibration_success_mark +* @brief : st touch 获取触摸校准成功标志 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_get_calibration_success_mark(void); + +/************************************************************************** +* @name : ap_set_tp_calibration_04 +* @brief : 获取机板04 02命令,执行校准、gamma校准等功能 +* @param[in] :handler rx handler; dcs_packet 指令参数和长度等信息结构体 +* @return : true +* @retval : +**************************************************************************/ + +bool ap_set_tp_calibration_04(hal_dsi_rx_ctrl_handle_t *handler, hal_dcs_packet_t *dcs_packet); + +/************************************************************************** +* @name : ap_get_tp_calibration_status_01 +* @brief : 获取触摸校准状态 +* @param[in] :param 01命令参数 +* @return : true +* @retval : +**************************************************************************/ + +bool ap_get_tp_calibration_status_01(hal_dsi_rx_ctrl_handle_t *handler, uint8_t param); + +/************************************************************************** +* @name : ap_tp_st_touch_scan_point_init +* @brief : st touch tp_scan_data结构体初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_scan_point_init(void); + +/************************************************************************** +* @name : ap_tp_st_touch_simulate_finger_release_event +* @brief : st touch 模拟ST 手指释放事件给到处理函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_simulate_finger_release_event(void); + +/************************************************************************** +* @name : ap_tp_st_touch_software_reset +* @brief : st touch 触摸芯片软件复位指令 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_software_reset(void); + +/************************************************************************** +* @name : app_tp_st_touch_hardware_reset +* @brief : st touch 触摸芯片硬件复位指令 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void ap_tp_st_touch_hardware_reset(void); + +/************************************************************************** +* @name : ap_tp_st_touch_scan_point_record_event +* @brief : st touch 记录报点事件 +* @param[in] : screendata 报点数据buf;len 报点数据长度 +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_scan_point_record_event(uint8_t* screendata,uint8_t len); + +/************************************************************************** +* @name : ap_tp_st_touch_scan_point_record_event_exec +* @brief : st touch 报点如有残留点,超时检测执行函数。需要放在主函数while(1)中执行 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_scan_point_record_event_exec(void); + +/************************************************************************** +* @name : ap_tp_st_touch_error_handler_F3 +* @brief : st touch 异常报错 F3 02 处理函数 +* @param[in] : screendata 触摸报点数据 +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_error_handler_F3(uint8_t* screendata); + +/************************************************************************** +* @name : ap_tp_st_touch_error_handler_F3 +* @brief : st touch 异常报错 FF FF 处理函数 +* @param[in] : screendata 触摸报点数据 +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_st_touch_error_handler_FF(uint8_t* screendata); + + +#endif + diff --git a/src/app/demo/app_tp_transfer.c b/src/app/demo/app_tp_transfer.c new file mode 100644 index 0000000..e39e23f --- /dev/null +++ b/src/app/demo/app_tp_transfer.c @@ -0,0 +1,827 @@ +/******************************************************************************* +* +* +* File: app_tp_transfer.c +* Description touch I2C/SPI 初始化、以及数据通信 +* Version V0.1 +* Date 2021-10-14 +* Author zhanghz +*******************************************************************************/ +#include "test_cfg_global.h" +#include "app_tp_transfer.h" +#include "hal_i2c_master.h" +#include "hal_i2c_slave.h" +#include "hal_spi_master.h" +#include "hal_spi_slave.h" +#include "tau_log.h" +#include "tau_delay.h" +#include "app_tp_for_custom_s8.h" + + +#if 1//def AP_TP_TRANSFER +uint8_t read_point; //当前要读的报点数。一个报点8BYTE数据 +uint8_t s_screen_number[2]; +uint8_t s_screen_temp[2]; +//uint8_t s_screen_read_bak[200]; +static uint8_t s_screen_read_buffer[BUFFER_SIZE_MAX]; +static uint8_t s_phone_read_buffer[BUFFER_SIZE_MAX]; + +static bool s_spim_write = false; //记录SPI主机是否配置发送,是的话需要清除RXFIFO +static bool s_screen_int_flag = false; //记录是否接收到屏幕的报点中断 +static bool s_phone_reset_flag = false; //记录是否接收到手机的开机复位信号 +static bool s_screen_int_transfer_status = false; //记录是否已经开始通信 +bool s_screen_init_complate = false; //屏幕TP开机初始化完成标志 +static uint8_t s_screen_const_transfer_count = 0xff; //记录当前通信到哪一步,初始值必须大于 screen_reg_start_data_size + +#ifdef USE_FOR_SUMSUNG_S20 +uint16_t u16TouchID; +#endif + +static void app_tp_transfer_phone(size_t recieve_num); +//static void app_tp_reset_callback(void *data); +#if PHONE_SLAVE_TRANSFER_I2C //消除warning + static void app_tp_i2cs_callback(e_i2c_s_int_status int_status, size_t recieve_num); +#endif +#if PHONE_SLAVE_TRANSFER_SPI //消除warning + static void app_tp_spis_callback(hal_spis_event_e event, hal_spi_packet_info_t *packet_info); +#endif + +#ifdef USE_FOR_SAMSUNG_Note10Lite +uint8_t MI10_PRO_screen_init_data1[3] = {0xA0,0x00,0x01}; +uint8_t MI10_PRO_screen_init_data2[6] = {0xA2,0x03,0x00,0x00,0x00,0x03}; +uint8_t MI10_PRO_screen_init_data3[3] = {0xA2,0x02,0x00}; +uint8_t MI10_PRO_screen_init_data4[3] = {0xC0,0x07,0x01}; + +uint8_t MI10_PRO_screen_init_data5[3] = {0xA4,0x06,0x70}; +uint8_t MI10_PRO_screen_init_data6[3] = {0xA6,0x00,0x00}; +uint8_t MI10_PRO_screen_init_data7[5] = {0xFA,0x20,0x00,0x00,0x78}; + +uint8_t MI10_PRO_screen_init_data8[6] = {0xA2,0x03,0x20,0x00,0x00,0x00}; +uint8_t MI10_PRO_screen_init_data9[2] = {0xA0,0x01}; +uint8_t MI10_PRO_screen_init_data10[3] = {0xA0,0x00,0x00}; +#endif + +#if 1//def ADD_TP_TUNING +//uint8_t MI10_PRO_TP_Tuning_data1[3] = {0xA4,0x00,0x00}; // System Reset +uint8_t MI10_PRO_TP_Tuning_data2[3] = {0xA4,0x00,0x03}; // FPnl Init +uint8_t MI10_PRO_TP_Tuning_data3[3] = {0xA4,0x00,0x02}; // Pnl Init +uint8_t MI10_PRO_TP_Tuning_data4[4] = {0xA4,0x03,0x13,0x00}; // TuneM +uint8_t MI10_PRO_TP_Tuning_data5[4] = {0xA4,0x03,0x0C,0x00}; // TuneS +uint8_t MI10_PRO_TP_Tuning_data6[3] = {0xA4,0x05,0x01}; // SvCfg +uint8_t MI10_PRO_TP_Tuning_data7[3] = {0xA4,0x05,0x02}; // SvCx +uint8_t MI10_PRO_TP_Tuning_data8[3] = {0xA4,0x05,0x04}; // SvPnl +#endif + +/************************************************************************** +* @name : app_tp_screen_int_callback +* @brief : screen 报点中断 回调函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +static void app_tp_screen_int_callback(void *data) +{ + s_screen_int_flag = true; +} + +/************************************************************************** +* @name : app_tp_screen_int_lvl_low +* @brief : 获取 screen 报点中断 IO 电平 +* @param[in] : +* @return : true:IO 为低电平 +* @retval : +**************************************************************************/ +static bool app_tp_screen_int_lvl_low(void) +{ + uint8_t i = 1; + uint8_t j = 1; +#if SCREEN_MASTER_TRANSFER_I2C +// i=hal_gpio_get_input_data(g_screen_input_int_pad); +// j=hal_gpio_get_input_data(g_screen_input_int_pad); +// if((i+j)==0) +// { +// return true; +// } +//else +// { +// return false; +// } + return !hal_gpio_get_input_data(g_screen_input_int_pad); +#elif SCREEN_MASTER_TRANSFER_SPI + return !hal_gpio_get_input_data(g_screen_input_int_pad); //应对SPI主机通信过程中偶尔突然拉低CS 导致通信异常 +#else + return false; +#endif +} + +/************************************************************************** +* @name : app_tp_screen_int_init +* @brief : screen 报点中断 IO 初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +static void app_tp_screen_int_init(void) +{ + hal_gpio_set_pull_state(g_screen_input_int_pad, ENABLE, DISABLE); // 1.配置上拉 + hal_gpio_ctrl_eint(g_screen_input_int_pad, DISABLE); // 2.关闭中断 + hal_gpio_init_eint(g_screen_input_int_pad, DETECT_FALLING_EDGE); // 3.中断初始化,TP一般都是下降沿触发中断 + hal_gpio_reg_eint_cb(g_screen_input_int_pad, app_tp_screen_int_callback); // 4.注册回调 + hal_gpio_ctrl_eint(g_screen_input_int_pad, ENABLE); // 5.使能中断 +} + +#if 0 +/************************************************************************** +* @name : app_tp_phone_reset_init +* @brief : phone reset 中断 IO 初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +static void app_tp_phone_reset_init(void) +{ + /*0.配置为输入*/ + hal_gpio_init_input(g_phone_input_rst_pad); + /*1.关闭中断*/ + hal_gpio_ctrl_eint(g_phone_input_rst_pad, DISABLE); + /*2.中断初始化*/ + hal_gpio_init_eint(g_phone_input_rst_pad, DETECT_RISING_EDGE); + /*3.注册回调*/ + hal_gpio_reg_eint_cb(g_phone_input_rst_pad, app_tp_reset_callback); + /*4.使能中断*/ + hal_gpio_ctrl_eint(g_phone_input_rst_pad, ENABLE); +} +#endif + + +/************************************************************************** +* @name : app_tp_screen_init +* @brief : screen IO 跳变,开始初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_screen_init(void) +{ + hal_gpio_init_output(g_screen_input_rst_pad, IO_LVL_HIGH); + delayUs(200); + hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_LOW); + delayUs(200); + hal_gpio_set_output_data(g_screen_input_rst_pad, IO_LVL_HIGH); +} + +void app_tp_I2C_init(void) +{ + hal_i2c_s_init(CHIP_I2C_ADDRESS, CHIP_I2C_ADDR_BITS); + hal_i2c_s_set_transfer(app_tp_i2cs_callback); + hal_i2c_s_nonblocking_read(s_phone_read_buffer, BUFFER_SIZE_MAX); //先配置接收 buffer +} + + + + +/************************************************************************** +* @name : app_tp_init +* @brief : 初始化通信相关 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_init(void) +{ +#ifdef DISABLE_TDDI_I2C_FUNCTION + hal_gpio_init_output(g_phone_output_int_pad, IO_LVL_HIGH); //配置phone报点输出中断IO口 + hal_gpio_init_output(g_screen_input_rst_pad, IO_LVL_HIGH); //配置模组TP RESET + + hal_gpio_set_mode(IO_PAD_TD_SPIM_CLK,IO_MODE_I2C1_SCL); + hal_gpio_set_mode(IO_PAD_TD_SPIM_CSN,IO_MODE_I2C1_SDA); + + return; +#else + hal_gpio_set_pull_state(IO_PAD_TD_SPIM_CLK, ENABLE, DISABLE); + hal_gpio_set_pull_state(IO_PAD_TD_SPIM_CSN, ENABLE, DISABLE); +#endif + + app_tp_screen_init(); //初始化手机复位的IO口 +//app_tp_screen_int_init(); //配置screen中断输入引脚 +#ifdef G_PHONE_INT_DEFAULT_LOW + hal_gpio_init_output(g_phone_output_int_pad, IO_LVL_LOW); //配置phone报点输出中断IO口 +#else + hal_gpio_init_output(g_phone_output_int_pad, IO_LVL_HIGH); //配置phone报点输出中断IO口 +#endif + hal_gpio_init_input(g_screen_input_int_pad); +// hal_gpio_init_output(g_screen_input_rst_pad, IO_LVL_HIGH); //配置模组TP RESET + +#if SCREEN_MASTER_TRANSFER_I2C + hal_i2c_m_dma_init(SCREEN_I2C_ADDRESS, SCREEN_I2C_ADDR_BITS, I2C_MASTER_SPEED); +#elif SCREEN_MASTER_TRANSFER_SPI + hal_spi_m_dma_init(SPI_MASTER_SPEED, SCREEN_SPI_CPHA, SCREEN_SPI_CPOL); +#endif + +#if PHONE_SLAVE_TRANSFER_I2C +// hal_i2c_s_init(CHIP_I2C_ADDRESS, CHIP_I2C_ADDR_BITS); +// hal_i2c_s_set_transfer(app_tp_i2cs_callback); +// hal_i2c_s_nonblocking_read(s_phone_read_buffer, BUFFER_SIZE_MAX); //先配置接收 buffer +#elif PHONE_SLAVE_TRANSFER_SPI + hal_spi_slave_init(PHONE_SPI_CPHA, PHONE_SPI_CPOL, true); // 初始化spi以及dma + hal_spi_slave_register_callback(app_tp_spis_callback); // 注册回调 + hal_spi_slave_auto_transfer_abort(); // 停止传输 + hal_spi_slave_flush_fifo(); // Flush FIFO + + /* 每个packet自动接收, circle mode 为false, 即收到buffer max size数据后buffer不再更新, packet完成后调用回调 */ + hal_spi_slave_set_auto_rx_buffer(s_phone_read_buffer, BUFFER_SIZE_MAX, false); // 设置auto rx buffer + hal_spi_slave_set_auto_tx_buffer(phone_reg_const_data[0].write_back, phone_reg_const_data[0].write_back_size, false); // 配置TX BUFFER + + hal_spi_slave_enable(); // 启动spis + hal_spi_slave_auto_transfer_start(); // 启动rx自动接收 +#endif +} + + +/************************************************************************** +* @name : app_tp_m_transfer_complate +* @brief : 获取主机通信完成状态 +* @param[in] : +* @return :true: 通信完成 +* @retval : +**************************************************************************/ +bool app_tp_m_transfer_complate(void) +{ +#if SCREEN_MASTER_TRANSFER_I2C + return hal_i2c_m_transfer_complate(); +#elif SCREEN_MASTER_TRANSFER_SPI + return hal_spi_m_get_transfer_complate(); +#else + return true; +#endif +} + +/************************************************************************** +* @name : app_tp_s_transfer_complate +* @brief : 获取从机通信完成状态 +* @param[in] : +* @return :true: 通信完成 +* @retval : +**************************************************************************/ +bool app_tp_s_transfer_complate(void) +{ +#if SCREEN_MASTER_TRANSFER_I2C + return hal_i2c_s_write_complate() && hal_i2c_s_read_complate(); +#elif SCREEN_MASTER_TRANSFER_SPI + return !hal_spi_slave_busy(); +#else + return true; +#endif +} + +/************************************************************************** +* @name : app_tp_m_write +* @brief : 根据通信方式配置发送txbuffer中的数据 +* @param[in] :txbuffer: 发送数据 buffer 头地址 +* @param[in] :buffer_size: 发送数据 buffer 长度 +* @return : +* @retval : +**************************************************************************/ +void app_tp_m_write(const uint8_t *txbuffer, size_t buffer_size) +{ +#if SCREEN_MASTER_TRANSFER_I2C + hal_i2c_m_dma_write(txbuffer, buffer_size); +#elif SCREEN_MASTER_TRANSFER_SPI + hal_spi_m_dma_write(txbuffer, buffer_size); + s_spim_write = true; +#endif +} + +/************************************************************************** +* @name : app_tp_m_read +* @brief : 根据通信方式配置发送txbuffer中的数据和rxbuffer +* @param[in] :cmd: 发送命令 buffer 头地址 +* @param[in] :cmd_size: 发送命令 buffer 长度 +* @param[in] :data_buffer: 读取数据 buffer 头地址 +* @param[in] :data_size: 读取数据 buffer 长度 +* @return : +* @retval : +**************************************************************************/ +void app_tp_m_read(const uint8_t *cmd, size_t cmd_size, uint8_t *data_buffer, size_t data_size) +{ +#if SCREEN_MASTER_TRANSFER_I2C + uint8_t i = 0; + uint32_t address = 0; + + for (i = 0; i < cmd_size; i++) //先将要发送的数据整合到 address + { + address |= (uint32_t)cmd[i] << i * 8; + } + hal_i2c_m_dma_read(address, cmd_size, data_buffer, data_size); +#elif SCREEN_MASTER_TRANSFER_SPI + hal_spi_m_dma_read(cmd, cmd_size, data_buffer, data_size); +#endif +} + +/************************************************************************** +* @name : app_tp_s_write +* @brief : 根据通信方式配置发送txbuffer中的数据 +* @param[in] :txbuffer: 发送数据 buffer 头地址 +* @param[in] :buffer_size: 发送数据 buffer 长度 +* @return : +* @retval : +**************************************************************************/ +void app_tp_s_write(const uint8_t *txbuffer, size_t buffer_size) +{ +#if PHONE_SLAVE_TRANSFER_I2C + hal_i2c_s_dma_write(txbuffer, buffer_size); +#elif PHONE_SLAVE_TRANSFER_SPI + //while (hal_spi_slave_busy()); + hal_spi_slave_auto_transfer_abort(); + hal_spi_slave_flush_fifo(); + hal_spi_slave_set_auto_tx_buffer(txbuffer, buffer_size, true); + hal_spi_slave_auto_transfer_start(); +#endif +} + +/************************************************************************** +* @name : app_tp_s_read +* @brief : 根据通信方式配置rxbuffer +* @param[in] :rxBuffer: 读取数据 buffer 头地址 +* @param[in] :data_size: 读取数据 buffer 长度 +* @return : +* @retval : +**************************************************************************/ +void app_tp_s_read(void *rxBuffer, size_t data_size) +{ +#if PHONE_SLAVE_TRANSFER_I2C + hal_i2c_s_nonblocking_read(rxBuffer, data_size); +#endif +} + +/************************************************************************** +* @name : app_tp_spis_callback +* @brief : SPI slave 中断处理函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +#if PHONE_SLAVE_TRANSFER_I2C //消除warning +//经测试。int_status=0,为读命令。=2,为STOP。=1未测试到。 +//recieve_num为接收到的指令个数 +static void app_tp_i2cs_callback(e_i2c_s_int_status int_status, size_t recieve_num) +{ +#if 0 // 1: test + if (int_status >2) + { + s_phone_read_buffer[2]=int_status; + s_phone_read_buffer[3]=recieve_num; + app_tp_m_write(s_phone_read_buffer, 4); + } +#endif + + app_tp_transfer_phone(recieve_num); + if((s_phone_read_buffer[0]==0x02)&&(s_phone_read_buffer[1]==0x11)&&(int_status==I2C_S_INT_STOP)&&(send_point==0)&&(fingerprint_enable==1)) + { + hal_gpio_set_output_data(g_phone_output_int_pad, IO_LVL_LOW); + phone_reg_coord_back[0] = 0x8C; + phone_reg_coord_back[1] = 0xF1; + phone_reg_coord_back[2] = 0x02; + phone_reg_coord_back[3] = 0x4E; + phone_reg_coord_back[4] = 0x02; + phone_reg_coord_back[5] = 0x21; + phone_reg_coord_back[6] = 0x85; + phone_reg_coord_back[7] = 0x30; + phone_reg_coord_back[8] = 0x00; + phone_reg_coord_back[9] = 0x00; + phone_reg_coord_back[10] = 0x00; + phone_reg_coord_back[11] = 0xFE; + phone_reg_coord_back[12] = 0x22; + fingerprint_enable=0; + } +// else if (int_status==I2C_S_INT_STOP) +// { +// TAU_LOGD("s_phone_read_buffer[0]=0x%x, s_phone_read_buffer[1]=0x%x send_point=%d, fingerprint_enable=%d", s_phone_read_buffer[0], s_phone_read_buffer[1], send_point, fingerprint_enable); +// } +} +#endif + +/************************************************************************** +* @name : app_tp_spis_callback +* @brief : SPI slave 中断处理函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +#if PHONE_SLAVE_TRANSFER_SPI //消除warning +static void app_tp_spis_callback(hal_spis_event_e event, hal_spi_packet_info_t *packet_info) +{ + app_tp_transfer_phone(packet_info->packet_size); +} +#endif + +#if 0 +/************************************************************************** +* @name : app_tp_reset_callback +* @brief : 手机 IO跳变复位的中断处理函数 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +static void app_tp_reset_callback(void *data) +{ + TAU_LOGD("app_tp_reset_callback\n"); + s_phone_reset_flag = true; + app_tp_s_write(phone_reg_const_data[0].write_back, phone_reg_const_data[0].write_back_size); +#if PHONE_SLAVE_TRANSFER_SPI + hal_gpio_set_output_data(IO_PAD_AP_INT, IO_LVL_LOW); +#endif +} +#endif + + +void S20_Start_init(void) +{ + uint8_t len=0; + uint8_t temp=0; + uint8_t temp_start_flag=0; + // if(phone_start_flag==1) + { + app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); + while(!hal_i2c_m_transfer_complate()); + delayMs(2); + while(!hal_gpio_get_input_data(g_screen_input_int_pad)) + { + app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); + while(!hal_i2c_m_transfer_complate()); + delayMs(2); + } + temp=s_screen_read_buffer[0]&0xf0; + if((temp==0x10)||(temp==0x20)||(temp==0x30)) + { + temp_start_flag=1; + } + if(temp_start_flag==0) + { + app_tp_m_write(MI10_PRO_screen_init_data1, sizeof(MI10_PRO_screen_init_data1));//0xA0,0x00,0x01 + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_screen_init_data2, sizeof(MI10_PRO_screen_init_data2));//0xA2,0x03,0x00,0x00,0x00,0x03 + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_screen_init_data3, sizeof(MI10_PRO_screen_init_data3));//0xA2,0x02,0x00 + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_screen_init_data4, sizeof(MI10_PRO_screen_init_data4));//0xC0,0x07,0x01 + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); + while(!hal_i2c_m_transfer_complate()); + if(s_screen_read_buffer[7]>0) + { + len=s_screen_read_buffer[7]*8; + app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, len); + while(!hal_i2c_m_transfer_complate()); + } + } +#endif + if(hal_gpio_get_input_data(g_screen_input_int_pad)) + { + s_screen_init_complate = true; + app_tp_screen_int_init(); + phone_start_flag=0; + } + } +} + + + +/************************************************************************** +* @name : app_tp_transfer_screen_const +* @brief : 按照flow读写screen,完成 开机 screen 初始化 +* @param[in] : +* @return : +* @retval : +*修改TP第1步:模组初始化!!!!!! +*执行数组screen_reg_start_data[]。 +**************************************************************************/ +static void app_tp_transfer_screen_const(void) +{ +// static bool screen_const_transfer_buffer_ready = true; //发送 buffer 是否已准备好 + uint8_t ii; +// uint8_t len=0; + /**** 1. 判断当前状态通信已结束, 状态通信已结束,并且开机初始化流程还未走完****/ +#if 0 // test + uint8_t test_master_read_buffer[10] = {0x08, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}; + uint8_t write_buffer[10] = {0x04, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}; + +// for (ii =0x20; ii<0x7F; ii++) + { + //hal_i2c_m_dma_init(ii, SCREEN_I2C_ADDR_BITS); + //delayMs(100); + if (hal_i2c_m_dma_write(write_buffer, 1)) + { + //break; + } + while(!hal_i2c_m_transfer_complate()); + hal_i2c_m_dma_read(test_master_read_buffer, 1, test_master_read_buffer, 2); + } +#endif + + + if (app_tp_m_transfer_complate() && (s_screen_const_transfer_count < screen_reg_start_data_size)) + { + if (s_spim_write) //SPI 写数据后需要把接收FIFO的数据读出,不然会影响下一次读取 + { + hal_spi_m_clear_rxfifo(); + s_spim_write = false; + } + + #if 1 + +// #ifndef USE_FOR_SUMSUNG_S20 +// for (ii =0; ii= screen_reg_start_data_size) + { + s_screen_init_complate = true; + } + } + #endif + } +} + +/************************************************************************** +* @name : ap_tp_calibration +* @brief : 锟斤拷锟斤拷校准锟斤拷锟斤拷 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ + +void ap_tp_calibration(void) +{ + // app_tp_m_write(MI10_PRO_TP_Tuning_data1, sizeof(MI10_PRO_TP_Tuning_data1)); // System Reset + // while(!hal_i2c_m_transfer_complate()); + // delayMs(10); + app_tp_m_write(MI10_PRO_TP_Tuning_data2, sizeof(MI10_PRO_TP_Tuning_data2)); // FPnl Init + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_TP_Tuning_data3, sizeof(MI10_PRO_TP_Tuning_data3)); // Pnl Init + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_TP_Tuning_data4, sizeof(MI10_PRO_TP_Tuning_data4)); // TuneM + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_TP_Tuning_data5, sizeof(MI10_PRO_TP_Tuning_data5)); // TuneS + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_TP_Tuning_data6, sizeof(MI10_PRO_TP_Tuning_data6)); // SvCfg + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_TP_Tuning_data7, sizeof(MI10_PRO_TP_Tuning_data7)); // SvCx + while(!hal_i2c_m_transfer_complate()); + delayMs(1); + app_tp_m_write(MI10_PRO_TP_Tuning_data8, sizeof(MI10_PRO_TP_Tuning_data8)); // SvPnl + while(!hal_i2c_m_transfer_complate()); + delayMs(1); +} + + +/************************************************************************** +* @name : app_tp_transfer_screen_start +* @brief : 按照flow读写screen,开始开机初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_transfer_screen_start(void) +{ +// s_screen_init_complate = false; + s_screen_const_transfer_count = 0; +// app_tp_screen_init(); +#ifndef DISABLE_I2C_INIT_CODE + app_tp_transfer_screen_const(); +#endif + s_screen_int_flag = false; +} + +/************************************************************************** +* @name : app_tp_transfer_screen_int +* @brief : 接收screen中断后,按照flow读写screen,即报点协议转换 +* @param[in] : +* @return : +* @retval : +*修改TP第2步:读取模组报点!!!!!! +*执行数组screen_reg_int_data[]。也可以自己写。 +**************************************************************************/ +void app_tp_transfer_screen_int(void) +{ + uint8_t len=0,number=0; + uint8_t temp_len=0; + + bool screen_gpio_int = false; + static uint8_t screen_int_transfer_count = 0; //记录当前通信到哪一步 + static bool screen_int_transfer_buffer_ready = true; //发送 buffer 是否已准备好 + // static uint8_t test_flag = 0; + // s_screen_init_complate=false;//为了在线烧录,特意将码片设置为不下发数据,而是FT8719与敦泰的工具通讯 + if (!s_screen_init_complate) //TP 初始化还未完成,则先进行初始化操作 + { + app_tp_transfer_screen_const(); + return; + } + + + /**** 1. 判断 screen 是否发出中断信号 ****/ + // s_screen_int_flag: 中断信号标志位 + // app_tp_screen_int_lvl_low : SPI 长时间通信时,偶尔会出现cs拉高导致通信异常卡死,该标志位用于解决卡死的问题 + screen_gpio_int = (s_screen_int_flag || app_tp_screen_int_lvl_low()); + if (screen_gpio_int) + { + s_screen_int_flag = false; + + app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); + while(!hal_i2c_m_transfer_complate()); + if(s_screen_read_buffer[7]>0) + { + len=s_screen_read_buffer[7]*8; + app_tp_m_read(screen_reg_int_data[0].buffer, 1, &s_screen_read_buffer[8], len); + while(!hal_i2c_m_transfer_complate()); + temp_len=len+7; + } + if(s_screen_read_buffer[temp_len]>0) + { + len=s_screen_read_buffer[7]*8; + app_tp_m_read(screen_reg_int_data[0].buffer, 1, &s_screen_read_buffer[temp_len+1], len); + while(!hal_i2c_m_transfer_complate()); + } + delayUs(100); + + while(!hal_gpio_get_input_data(g_screen_input_int_pad)) + { + app_tp_m_read(screen_reg_int_data[0].buffer, 1, s_screen_read_buffer, 8); + while(!hal_i2c_m_transfer_complate()); + delayUs(100); + if(s_screen_read_buffer[7]>0) + { + len=s_screen_read_buffer[7]*8; + app_tp_m_read(screen_reg_int_data[0].buffer, 1, &s_screen_read_buffer[8], len); + while(!hal_i2c_m_transfer_complate()); + delayUs(100); + } + } + + screen_int_transfer_buffer_ready = true; + screen_int_transfer_count = app_tp_screen_analysis_int(screen_int_transfer_count, s_screen_read_buffer,screen_reg_int_data[2].rxbuffer_size); + screen_int_transfer_count = 0; + s_screen_int_transfer_status = false; + } +} + + + +/************************************************************************** +* @name : app_tp_transfer_phone +* @brief : 根据数据解析进行相应的答复 +* @param[in] : recieve_num:接收数据长度 +* @return : +* @retval : +**************************************************************************/ +static void app_tp_transfer_phone(size_t recieve_num) +{ + const uint8_t *phone_write_buffer; + size_t phone_write_buffer_size = 0; + /* 数据解析,判断是否需要答复以及答复的buffer指针 */ + if (recieve_num > 0) + { + #if 0// 1: test + s_phone_read_buffer[3]=recieve_num; + app_tp_m_write(s_phone_read_buffer, 4); + #endif + app_tp_phone_analysis_data(s_phone_read_buffer, recieve_num, &phone_write_buffer, &phone_write_buffer_size); + } + + app_tp_s_read(s_phone_read_buffer, BUFFER_SIZE_MAX); + if (phone_write_buffer_size) //大于0表示需要答复手机,配置发送buffer + { + app_tp_s_write(phone_write_buffer, phone_write_buffer_size); + } +} + +/************************************************************************** +* @name : app_tp_phone_reset_on +* @brief : 获取手机复位信号的状态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +bool app_tp_phone_reset_on(void) +{ + return s_phone_reset_flag; +} + +/************************************************************************** +* @name : app_tp_phone_clear_reset_on +* @brief : 清除手机复位信号的状态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_phone_clear_reset_on(void) +{ + s_phone_reset_flag = false; +} + +#else + +void app_tp_screen_init(void) +{ + +} + +void app_tp_init(void) +{ + +} + +void app_tp_transfer_screen_int(void) +{ + +} + +void app_tp_transfer_screen_start(void) +{ + +} + +bool app_tp_phone_reset_on(void) +{ + return false; +} + +void app_tp_phone_clear_reset_on(void) +{ + +} + +void app_tp_s_write(const uint8_t *txbuffer, size_t buffer_size) +{ + +} + +bool app_tp_enter_sleep_on(void) +{ + return false; +} + +#endif + diff --git a/src/app/demo/app_tp_transfer.h b/src/app/demo/app_tp_transfer.h new file mode 100644 index 0000000..9c388dd --- /dev/null +++ b/src/app/demo/app_tp_transfer.h @@ -0,0 +1,109 @@ +/******************************************************************************* +* +* +* File: app_tp_transfer.h +* Description touch I2C/SPI 通信相关函数申明 +* Version V0.1 +* Date 2021-10-14 +* Author zhanghz +*******************************************************************************/ +#ifndef __APP_TP_TRANSFER_H__ +#define __APP_TP_TRANSFER_H__ + +#include "string.h" +#include "tau_device_datatype.h" +#include "tau_common.h" + +#define SCREEN_TRANSFER_WRITE false //接收到screen io中断,发送数据之后不用读回 +#define SCREEN_TRANSFER_READ true //接收到screen io中断,发送数据之后要读回数据 + +extern bool s_screen_init_complate; //屏幕TP开机初始化完成标志 + +/************************************************************************** +* @name : ap_tp_calibration +* @brief : 锟斤拷锟斤拷校准锟斤拷锟斤拷 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void ap_tp_calibration(void); + +/************************************************************************** +* @name : app_tp_screen_init +* @brief : screen IO 跳变,开始初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_screen_init(void); + +/************************************************************************** +* @name : app_tp_init +* @brief : 初始化通信相关 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_init(void); + +/************************************************************************** +* @name : app_tp_transfer_screen_int +* @brief : 接收screen中断后,按照flow读写screen,即报点协议转换 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_transfer_screen_int(void); + +/************************************************************************** +* @name : app_tp_transfer_screen_start +* @brief : 按照flow读写screen,开始开机初始化 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_transfer_screen_start(void); + +/************************************************************************** +* @name : app_tp_phone_reset_on +* @brief : 获取手机复位信号的状态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +bool app_tp_phone_reset_on(void); + +/************************************************************************** +* @name : app_tp_phone_clear_reset_on +* @brief : 清除手机复位信号的状态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void app_tp_phone_clear_reset_on(void); + +/************************************************************************** +* @name : app_tp_s_write +* @brief : 根据通信方式配置发送txbuffer中的数据 +* @param[in] :txbuffer: 发送数据 buffer 头地址 +* @param[in] :buffer_size: 发送数据 buffer 长度 +* @return : +* @retval : +**************************************************************************/ +void app_tp_s_write(const uint8_t *txbuffer, size_t buffer_size); + +/************************************************************************** +* @name : app_tp_enter_sleep_on +* @brief : 获取 tp 通信状态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +bool app_tp_enter_sleep_on(void); + +void app_tp_m_write(const uint8_t *txbuffer, size_t buffer_size); +void app_tp_m_read(const uint8_t *cmd, size_t cmd_size, uint8_t *data_buffer, size_t data_size); + + +#endif + diff --git a/src/app/main.c b/src/app/main.c new file mode 100644 index 0000000..a3b4715 --- /dev/null +++ b/src/app/main.c @@ -0,0 +1,26 @@ +#include +#include +#include +#include "test_cfg_global.h" +#include "tau_log.h" +#include "hal_system.h" +#include "board.h" +#include "tau_delay.h" + + + +//test_cfg_global.h file choice what you want test or completely demo of S8 or S8+ Felix + +int main() +{ +// hal_system_init(); + board_Init(); + + while (1) + { +#if _DEMO_S8_EN + ap_demo(); +#endif + while (1); + } +} diff --git a/src/app/test_cfg_global.h b/src/app/test_cfg_global.h new file mode 100644 index 0000000..01e9da9 --- /dev/null +++ b/src/app/test_cfg_global.h @@ -0,0 +1,84 @@ +/******************************************************************************* +* Copyright (C) 2019-2022, 518 Systems (R),All Rights Reserved. +* +* File: test_cfg_global.h +* Description: 测试用例全局配置头文件 +* Version: V0.1 +* Date: 2021-05-01 +* Author: kevin + *******************************************************************************/ + +#ifndef __TEST_GLOBAL_CONFIG_H__ +#define __TEST_GLOBAL_CONFIG_H__ +/******************************************************************************* +* 1.Included files +*******************************************************************************/ + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +#define _TEST_TIMER_EN 0 +#define _TEST_DSI_TX_EN 0 +#define _TEST_DSI_RX_EN 0 +#define _TEST_PWM_EN 0 +#define _TEST_SWIRE_EN 0 +#define _TEST_WDG_EN 0 +#define _TEST_GPIO_EN 0 +#define _TEST_I2C_EN 0 +#define _TEST_SPI_EN 0 + +#define _DEMO_S8_EN 1 +#define _DEMO_S8P_EN 0 +#if _TEST_TIMER_EN + #include "test_hal_timer.h" +#endif + +#if _TEST_I2C_EN + #include "test_hal_i2c.h" +#endif + +#if _TEST_SPI_EN + #include "test_hal_spi.h" +#endif + +#if _TEST_DSI_TX_EN + #include "test_hal_dsi_tx.h" +#endif + +#if _TEST_DSI_RX_EN + #include "test_hal_dsi_rx.h" +#endif + +#if _TEST_PWM_EN + #include "test_hal_pwm.h" +#endif + +#if _TEST_SWIRE_EN + #include "test_hal_swire.h" +#endif + +#if _TEST_WDG_EN + #include "test_hal_wdg.h" +#endif + +#if _TEST_GPIO_EN + #include "test_hal_gpio.h" +#endif + +#if _TEST_I2C_TP_EN + #include "test_hal_i2c_tp.h" +#endif + +#if _DEMO_S8_EN + #include "ap_demo.h" + // #include "app_tp_for_custom_s8.h" +#endif + +#if _DEMO_S8P_EN + #include "s8p_demo.h" + #include "app_tp_for_custom_s8p.h" +#endif + +#endif + diff --git a/src/board/board.c b/src/board/board.c new file mode 100644 index 0000000..aea5ad9 --- /dev/null +++ b/src/board/board.c @@ -0,0 +1,26 @@ +/******************************************************************************* +* Copyright (C) 2019-2022, ISP Systems (R),All Rights Reserved. +* +* File: board.c +* Description 鏉跨骇鏂囦欢 +* Version V0.1 +* Date 2020-12-07 +* Author linyw +*******************************************************************************/ +#include "board.h" +#include "hal_system.h" +#include "ArmCM0.h" + +void board_Init(void) +{ + hal_system_init(SYSTEM_CLOCK); + hal_system_enable_systick(1); +#if !EDA_MODE + hal_system_init_console(115200); +#endif +#if defined(ISP_568) || defined(ISP_368) + /* 浠嶦FUSE璇诲彇DPHY鏍″噯鍊煎苟璁剧疆 */ + hal_system_set_phy_calibration(true); +#endif +} + diff --git a/src/board/board.h b/src/board/board.h new file mode 100644 index 0000000..b450fd3 --- /dev/null +++ b/src/board/board.h @@ -0,0 +1,16 @@ +/******************************************************************************* +* Copyright (C) 2019-2022, CVA Systems (R),All Rights Reserved. +* +* File: board.h +* Description: baord 鍒濆鍖栧ご鏂囦欢 +* Version: V0.1 +* Date: 2020-01-08 +* Author: lzy + *******************************************************************************/ + +#ifndef __BOARD_H__ +#define __BOARD_H__ + +void board_Init(void); + +#endif diff --git a/src/board/startup/startup_ARMCM0.s b/src/board/startup/startup_ARMCM0.s new file mode 100644 index 0000000..4a17757 --- /dev/null +++ b/src/board/startup/startup_ARMCM0.s @@ -0,0 +1,226 @@ +;/**************************************************************************//** +; * @file startup_ARMCM0.s +; * @brief CMSIS Core Device Startup File for +; * ARMCM0 Device +; * @version V5.4.0 +; * @date 12. December 2018 +; ******************************************************************************/ +;/* +; * Copyright (c) 2009-2018 Arm Limited. All rights reserved. +; * +; * SPDX-License-Identifier: Apache-2.0 +; * +; * Licensed under the Apache License, Version 2.0 (the License); you may +; * not use this file except in compliance with the License. +; * You may obtain a copy of the License at +; * +; * www.apache.org/licenses/LICENSE-2.0 +; * +; * Unless required by applicable law or agreed to in writing, software +; * distributed under the License is distributed on an AS IS BASIS, WITHOUT +; * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +; * See the License for the specific language governing permissions and +; * limitations under the License. +; */ + +;//-------- <<< Use Configuration Wizard in Context Menu >>> ------------------ + + +; Stack Configuration +; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> +; + +Stack_Size EQU 0x00001000 + + AREA STACK, NOINIT, READWRITE, ALIGN=3 +__stack_limit +Stack_Mem SPACE Stack_Size +__initial_sp + + +; Heap Configuration +; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> +; + +Heap_Size EQU 0x00000C00 + + IF Heap_Size != 0 ; Heap is provided + AREA HEAP, NOINIT, READWRITE, ALIGN=3 +__heap_base +Heap_Mem SPACE Heap_Size +__heap_limit + ENDIF + + + PRESERVE8 + THUMB + + +; Vector Table Mapped to Address 0 at Reset + + AREA RESET, DATA, READONLY + EXPORT __Vectors + EXPORT __Vectors_End + EXPORT __Vectors_Size + +__Vectors DCD __initial_sp ; Top of Stack + DCD Reset_Handler ; Reset Handler + DCD NMI_Handler ; -14 NMI Handler + DCD HardFault_Handler ; -13 Hard Fault Handler + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD SVC_Handler ; -5 SVCall Handler + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD PendSV_Handler ; -2 PendSV Handler + DCD SysTick_Handler ; -1 SysTick Handler + + + ; Interrupts + DCD VIDC_IRQn_Handler ; 0 Interrupt 0 + DCD LCDC_IRQn_Handler ; 1 Interrupt 1 + DCD MIPI_RX_IRQn_Handler ; 2 Interrupt 2 + DCD MIPI_TX_IRQn_Handler ; 3 Interrupt 3 + DCD MEMC_IRQn_Handler ; 4 Interrupt 4 + DCD VPRE_IRQn_Handler ; 5 Interrupt 5 + DCD FLSCTRL_IRQn_Handler ; 6 Interrupt 6 + DCD DMA_IRQn_Handler ; 7 Interrupt 7 + DCD TIMER0_IRQn_Handler ; 8 Interrupt 8 + DCD TIMER1_IRQn_Handler ; 9 Interrupt 9 + DCD TIMER2_IRQn_Handler ; 10 Interrupt 10 + DCD TIMER3_IRQn_Handler ; 11 Interrupt 11 + DCD WDG_IRQn_Handler ; 12 Interrupt 12 + DCD UART_IRQn_Handler ; 13 Interrupt 13 + DCD I2C0_IRQn_Handler ; 14 Interrupt 14 + DCD I2C1_IRQn_Handler ; 15 Interrupt 15 + DCD SPIS_IRQn_Handler ; 16 Interrupt 16 + DCD SPIM_IRQn_Handler ; 17 Interrupt 17 + DCD ADC_IRQn_Handler ; 18 Interrupt 18 + DCD PWMDET_IRQn_Handler ; 19 Interrupt 19 + DCD OTP_IRQn_Handler ; 20 Interrupt 20 + DCD SWIRE_IRQn_Handler ; 21 Interrupt 21 + DCD PVD_IRQn_Handler ; 22 Interrupt 22 + DCD AP_NRESET_IRQn_Handler ; 23 Interrupt 23 + DCD EXTI_INT0_IRQn_Handler ; 24 Interrupt 24 + DCD EXTI_INT1_IRQn_Handler ; 25 Interrupt 25 + DCD EXTI_INT2_IRQn_Handler ; 26 Interrupt 26 + DCD EXTI_INT3_IRQn_Handler ; 27 Interrupt 27 + DCD EXTI_INT4_IRQn_Handler ; 28 Interrupt 28 + DCD EXTI_INT5_IRQn_Handler ; 29 Interrupt 29 + DCD EXTI_INT6_IRQn_Handler ; 30 Interrupt 30 + DCD EXTI_INT7_IRQn_Handler ; 31 Interrupt 31 + + SPACE ( 0 * 4) ; Interrupts 10 .. 31 are left out + +__Vectors_End +__Vectors_Size EQU __Vectors_End - __Vectors +_NVIC_ICER0 EQU 0xE000E180 ;娓呬腑鏂娇鑳藉瘎瀛樺櫒鍦板潃 +_NVIC_ICPR0 EQU 0xE000E280 ;娓呬腑鏂璸ending瀵勫瓨鍣ㄥ湴鍧 + + AREA |.text|, CODE, READONLY + +; Reset Handler + +Reset_Handler PROC + EXPORT Reset_Handler [WEAK] + IMPORT __main + +;娓呬腑鏂娇鑳藉拰pending 鈥斺斿紑濮嬧斺 + CPSID I ; 灞忚斀涓柇 + LDR R0, =_NVIC_ICER0 + LDR R1, =_NVIC_ICPR0 + LDR R2, =0xFFFFFFFF + MOVS R3, #1 ; 璁剧疆寰幆娆℃暟 M0鍙湁1缁(32涓)涓柇锛屾晠鍙渶瑕佸惊鐜1娆 +_irq_clear + ;CBZ R3, _irq_clear_end + CMP R3,#0 ; 寰幆娆℃暟绛変簬0锛岃烦杞埌_irq_clear_end + BEQ _irq_clear_end + STR R2, [R0] ;,#4 ; NVIC_ICER0 - 娓 enable IRQ 瀵勫瓨鍣 + STR R2, [R1] ;,#4 ; NVIC_ICPR0 - 娓 pending IRQ 瀵勫瓨鍣 + SUBS R3, #1 ; 寰幆鏁拌嚜鍑1 + B _irq_clear +_irq_clear_end +;娓呬腑鏂娇鑳藉拰pending 鈥斺旂粨鏉熲斺 + CPSIE I ; 寮鍚腑鏂 + LDR R0, =__main + BX R0 + ENDP + + +; Macro to define default exception/interrupt handlers. +; Default handler are weak symbols with an endless loop. +; They can be overwritten by real handlers. + MACRO + Set_Default_Handler $Handler_Name +$Handler_Name PROC + EXPORT $Handler_Name [WEAK] + B . + ENDP + MEND + + +; Default exception/interrupt handler + + Set_Default_Handler NMI_Handler + Set_Default_Handler HardFault_Handler + Set_Default_Handler SVC_Handler + Set_Default_Handler PendSV_Handler + Set_Default_Handler SysTick_Handler + + Set_Default_Handler VIDC_IRQn_Handler + Set_Default_Handler LCDC_IRQn_Handler + Set_Default_Handler MIPI_RX_IRQn_Handler + Set_Default_Handler MIPI_TX_IRQn_Handler + Set_Default_Handler MEMC_IRQn_Handler + Set_Default_Handler VPRE_IRQn_Handler + Set_Default_Handler FLSCTRL_IRQn_Handler + Set_Default_Handler DMA_IRQn_Handler + Set_Default_Handler TIMER0_IRQn_Handler + Set_Default_Handler TIMER1_IRQn_Handler + + Set_Default_Handler TIMER2_IRQn_Handler + Set_Default_Handler TIMER3_IRQn_Handler + Set_Default_Handler WDG_IRQn_Handler + Set_Default_Handler UART_IRQn_Handler + Set_Default_Handler I2C0_IRQn_Handler + Set_Default_Handler I2C1_IRQn_Handler + Set_Default_Handler SPIS_IRQn_Handler + Set_Default_Handler SPIM_IRQn_Handler + Set_Default_Handler ADC_IRQn_Handler + Set_Default_Handler PWMDET_IRQn_Handler + + Set_Default_Handler OTP_IRQn_Handler + Set_Default_Handler SWIRE_IRQn_Handler + Set_Default_Handler PVD_IRQn_Handler + Set_Default_Handler AP_NRESET_IRQn_Handler + Set_Default_Handler EXTI_INT0_IRQn_Handler + Set_Default_Handler EXTI_INT1_IRQn_Handler + Set_Default_Handler EXTI_INT2_IRQn_Handler + Set_Default_Handler EXTI_INT3_IRQn_Handler + Set_Default_Handler EXTI_INT4_IRQn_Handler + Set_Default_Handler EXTI_INT5_IRQn_Handler + + Set_Default_Handler EXTI_INT6_IRQn_Handler + Set_Default_Handler EXTI_INT7_IRQn_Handler + ALIGN + + +; User setup Stack & Heap + + IF :LNOT::DEF:__MICROLIB + IMPORT __use_two_region_memory + ENDIF + + EXPORT __stack_limit + EXPORT __initial_sp + IF Heap_Size != 0 ; Heap is provided + EXPORT __heap_base + EXPORT __heap_limit + ENDIF + + END diff --git a/src/common/tau_common.h b/src/common/tau_common.h new file mode 100644 index 0000000..575a466 --- /dev/null +++ b/src/common/tau_common.h @@ -0,0 +1,216 @@ +/******************************************************************************* +* +* +* File: tau_common.h +* Description 通用数据类型相关定义头文件 +* Version V0.1 +* Date 2020-09-07 +* Author lzy + *******************************************************************************/ + +#ifndef __TAU_COMMON_H +#define __TAU_COMMON_H + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "stdint.h" +#include "math.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ +/** + * \name 通用常量定义 + * @{ + */ +//#define ENABLE 1 +//#define DISABLE 0 + +#define ON 1 +#define OFF 0 + +#define NONE 0 +#define EOS '\0' + +/* +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif +*/ + +#ifndef __cplusplus + #define true 1 + #define false 0 + #define bool _Bool +#endif /* ifndef __cplusplus */ + +#ifndef NULL + #define NULL ((void *)0) +#endif + +#define TAU_LITTLE_ENDIAN 1234 /**< \brief 小端模式 */ +#define TAU_BIG_ENDIAN 3412 /**< \brief 大端模式 */ + +/** @} */ + +/******************************************************************************/ + +/** + * \name 常用宏定义 + * @{ + */ + +#ifdef __cplusplus + #define __I volatile /*!< Defines 'read only' permissions */ +#else + #define __I volatile const /*!< Defines 'read only' permissions */ +#endif +#define __O volatile /*!< Defines 'write only' permissions */ +#define __IO volatile /*!< Defines 'read / write' permissions */ + +#define TAU_INLINE inline +#define TAU_STATIC_INLINE static inline +#define TAU_STATIC static +#define TAU_CONST const +#define TAU_EXTERN extern + +#define MIN(x, y) (((x) < (y)) ? (x) : (y)) +#define MAX(x, y) (((x) > (y)) ? (x) : (y)) + +/** + * \brief 求结构体成员的偏移 + * \attention 不同平台上,由于成员大小和内存对齐等原因, + * 同一结构体成员的偏移可能是不一样的 + * + * \par 示例 + * \code + * struct my_struct { + * int m1; + * char m2; + * }; + * int offset_m2; + * + * offset_m2 = TAU_OFFSET(struct my_struct, m2); + * \endcode + */ +#define TAU_OFFSET(structure, member) ((uint32_t)(&(((structure *)0)->member))) + +/** @} */ + +/** + * \brief 通过结构体成员指针获取包含该结构体成员的结构体 + * + * \param ptr 指向结构体成员的指针 + * \param type 结构体类型 + * \param member 结构体中该成员的名称 + * + * \par 示例 + * \code + * struct my_struct = { + * int m1; + * char m2; + * }; + * struct my_struct my_st; + * char *p_m2 = &my_st.m2; + * struct my_struct *p_st = TAU_CONTAINER_OF(p_m2, struct my_struct, m2); + * \endcode + */ +#define TAU_CONTAINER_OF(ptr, type, member) \ + ((type *)((char *)(ptr)-TAU_OFFSET(type, member))) + +/** + * \brief 计算结构体成员的大小 + * + * \code + * struct a = { + * uint32_t m1; + * uint32_t m2; + * }; + * int size_m2; + * + * size_m2 = TAU_MEMBER_SIZE(a, m2); //size_m2 = 4 + * \endcode + */ +#define TAU_MEMBER_SIZE(structure, member) (sizeof(((structure *)0)->member)) + +/** + * \brief 计算数组元素个数 + * + * \code + * int a[] = {0, 1, 2, 3}; + * int element_a = TAU_NELEMENTS(a); // element_a = 4 + * \endcode + */ +#define TAU_NELEMENTS(array) (sizeof(array) / sizeof((array)[0])) + +/** + * \brief 向上舍入 + * + * \param x 被运算的数 + * \param align 对齐因素 + * + * \code + * int size = TAU_ROUND_UP(15, 4); // size = 16 + * \endcode + */ +#define TAU_ROUND_UP(x, align) (((int)(x)/(align))*(align) + (((int)(x)%(align)) ? (align) : 0)) + +/** + * \brief 向下舍入 + * + * \param x 被运算的数 + * \param align 对齐因素 + * + * \code + * int size = TAU_ROUND_DOWN(15, 4); // size = 12 + * \endcode + */ +#define TAU_ROUND_DOWN(x, align) (((int)(x)/(align))*(align)) + +/** \brief 倍数向上舍入 */ +#define TAU_DIV_ROUND_UP(n, d) (((n) + (d)-1) / (d)) + +/** + * \brief 测试是否对齐 + * + * \param x 被运算的数 + * \param align 对齐因素,必须为2的乘方 + * + * \code + * if (TAU_ALIGNED(x, 4) { + * ; // x对齐 + * } else { + * ; // x不对齐 + * } + * \endcode + */ +#define TAU_ALIGNED(x, align) (((int)(x) & (align - 1)) == 0) + +/** \brief 将1字节BCD数据转换为16进制数据 */ +#define TAU_BCD_TO_HEX(val) (((val)&0x0f) + ((val) >> 4) * 10) + +/** \brief 将1字节16进制数据转换为BCD数据 */ +#define TAU_HEX_TO_BCD(val) ((((val) / 10) << 4) + (val) % 10) + +/** + * \brief 向上取整 + */ +#define TAU_CEIL(val) ceil(val) + + +/*! @brief Construct the version number for drivers. */ +#define MAKE_VERSION(major, minor, bugfix) (((major) << 16) | ((minor) << 8) | (bugfix)) + + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/* \brief 通用回调函数指针定义 */ +typedef void (*fcb_type)(void *data); + +#endif /* __TAU_COMMON_H */ diff --git a/src/common/tau_delay.h b/src/common/tau_delay.h new file mode 100644 index 0000000..aa3a2bf --- /dev/null +++ b/src/common/tau_delay.h @@ -0,0 +1,34 @@ +/** + * File Name: tau_delay.h + * + * + * + * Author: Fortsense 3D Firmware Team + * + * Date: 2020/12/04 + * + * Project: Taurus + * + * Description: + * + * HISTORY: +**/ +#ifndef _DELAY_H_ +#define _DELAY_H_ +#include "stdint.h" + +/** +* @brief delay ms 函数,误差2%以内 +* @param ms:delay时长 +* @retval none +*/ +void delayMs(uint32_t ms); + +/** +* @brief delay us 函数,误差2%以内 +* @param us:delay时长 +* @retval none +*/ +void delayUs(uint32_t us); + +#endif diff --git a/src/common/tau_device_datatype.h b/src/common/tau_device_datatype.h new file mode 100644 index 0000000..c121f0c --- /dev/null +++ b/src/common/tau_device_datatype.h @@ -0,0 +1,167 @@ +/******************************************************************************* + * + * + * File: tau_device_datatype.h + * Description device datatype + * Version V0.1 + * Date 2020-12-04 + * Author kevin + *******************************************************************************/ + +#ifndef _TAU_DEVICE_DATATYPE_H_ +#define _TAU_DEVICE_DATATYPE_H_ + + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ + +#include "stdint.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/*! @brief 计算组状态码 */ +#define MAKE_STATUS(group, code) ((((group)*100) + (code))) + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/*! @brief 分组状态值 */ +enum _status_groups +{ + STATUS_GROUP_GENERIC = 0, + STATUS_GROUP_I2C = 1, + STATUS_GROUP_UART = 2, + STATUS_GROUP_SPI = 3, + kStatusGroup_Timer = 4, +}; + +/*! @brief 常用状态码 */ +enum _generic_status +{ + STATUS_SUCCESS = MAKE_STATUS(STATUS_GROUP_GENERIC, 0), + STATUS_FAIL = MAKE_STATUS(STATUS_GROUP_GENERIC, 1), + STATUS_READ_ONLY = MAKE_STATUS(STATUS_GROUP_GENERIC, 2), + STATUS_OUT_OF_RANGE = MAKE_STATUS(STATUS_GROUP_GENERIC, 3), + STATUS_INVALID_ARGUMENT = MAKE_STATUS(STATUS_GROUP_GENERIC, 4), + STATUS_TIME_OUT = MAKE_STATUS(STATUS_GROUP_GENERIC, 5), + STATUS_NO_TRANSFER_IN_PROGRESS = MAKE_STATUS(STATUS_GROUP_GENERIC, 6), +}; + +/*! + * @brief timer状态 + */ +typedef enum +{ + TIMER_STATUS_IDLE = MAKE_STATUS(kStatusGroup_Timer, 0), /*!< 空闲 */ + TIMER_STATUS_RUNNING = MAKE_STATUS(kStatusGroup_Timer, 1), /*!< 运行中 */ + TIMER_STATUS_TIMEOUT = MAKE_STATUS(kStatusGroup_Timer, 2), /*!< 超时 */ +} timer_status_e; + +/*! + * @brief system触发事件(中断/复位)模式 + */ +typedef enum +{ + DETECT_HIGH_LVL = 0, + DETECT_LOW_LVL, + DETECT_RISING_EDGE, + DETECT_FALLING_EDGE +} sys_cfg_trigger_e; + +/** +* @brief GPIO interrupt type +*/ +typedef enum +{ + TIMER_NUM0 = 0, + TIMER_NUM1, + TIMER_NUM2, + TIMER_NUM3, + TIMER_NUM_MAX +} timer_num_e; + +/** +* @brief GPIO interrupt type +*/ +typedef enum +{ + GPIO_INT_EXTI_INT0 = 0, + GPIO_INT_EXTI_INT1, + GPIO_INT_EXTI_INT2, + GPIO_INT_EXTI_INT3, + GPIO_INT_EXTI_INT4, + GPIO_INT_EXTI_INT5, + GPIO_INT_EXTI_INT6, + GPIO_INT_EXTI_INT7, + GPIO_INT_MAX +} gpio_int_e; + +/*! @brief PWMI中断类型 */ +typedef enum _pwm_int_type +{ + PWM_INT_HIGH_OVERFLOW = 0, + PWM_INT_LOW_OVERFLOW, + PWM_INT_TOTAL_OVERFLOW, + PWM_INT_HIGH_DONE, + PWM_INT_LOW_DONE, + PWM_INT_TOTAL_DONE, + PWM_INT_MAX +} pwm_int_type_e; + +/** +* @brief I2C chose +*/ +typedef enum +{ + I2C_SELECT_0 = 0, //常用slave + I2C_SELECT_1, //常用master +} i2c_select_e; + +/*! + * @brief 传输速度 + * @note + */ +typedef enum _i2c_rate +{ + I2C_RATE_STANDARD = 1, //100kHz + I2C_RATE_FAST, //400kHz + I2C_RATE_HIGH, //1MHz +} i2c_rate_e; + +/*! @brief DMA channel type */ +typedef enum +{ + DMA_CH0 = 0, /*!< SPIM */ + DMA_CH1 = 1, /*!< IIC0 */ + DMA_CH2 = 2, /*!< SPIS */ + DMA_CH3 = 3, /*!< IIC1 */ + DMA_CH4 = 4, /*!< SPI FLASH */ + DMA_CH5 = 5, /*!< UART */ +} dma_channel_e; + + +/*! @brief Type used for all status and error return values. */ + +typedef enum +{ + DISABLE = 0, + ENABLE = !DISABLE +} function_state_e; +/*!< @brief 用于返回状态和错误 */ +typedef int32_t status_t; + + + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +#endif + diff --git a/src/common/tau_dsi_datatype.h b/src/common/tau_dsi_datatype.h new file mode 100644 index 0000000..c25630c --- /dev/null +++ b/src/common/tau_dsi_datatype.h @@ -0,0 +1,374 @@ +/******************************************************************************* +* +* +* File: tau_dsi_datatype.h +* Description: mipi dsi 通用头文件 +* Version: V0.1 +* Date: 2021-01-13 +* Author: lzy + *******************************************************************************/ + +#ifndef __MIPI_DSI_COMMON_H__ +#define __MIPI_DSI_COMMON_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ +#define DSC_PPS_SIZE 128 + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/** +* @brief Data Types for Peripheral-sourced Packets,From Mipi DSI Spec +*/ +typedef enum +{ + DSI_ACK_DT_ERROR = 0x02, + DSI_ACK_DT_EOTP = 0x08, + DSI_ACK_DT_GEN_SHORT_RESPONSE_1B = 0x11, + DSI_ACK_DT_GEN_SHORT_RESPONSE_2B = 0x12, + DSI_ACK_DT_GEN_LONG_RESPONSE = 0x1A, + DSI_ACK_DT_DSC_LONG_RESPONSE = 0x1C, + DSI_ACK_DT_DSC_SHORT_RESPONSE_1B = 0x21, + DSI_ACK_DT_DSC_SHORT_RESPONSE_2B = 0x22, + DSI_ACK_DT_MAX +} dsi_ack_data_type_e; + +/** +* @brief Software handle data types +*/ +typedef enum +{ + DSI_RECV_DT_PPS = 0x0A, //Picture Parameter Set + DSI_RECV_DT_GEN_WRITE_1B = 0x13, //Generic Short WRITE, 1 parameter + DSI_RECV_DT_GEN_WRITE_2B = 0x23, //Generic Short WRITE, 2 parameters + DSI_RECV_DT_GEN_READ_0B = 0x04, //Generic READ, no parameters + DSI_RECV_DT_GEN_READ_1B = 0x14, //Generic READ, 1 parameter + DSI_RECV_DT_GEN_READ_2B = 0x24, //Generic READ, 2 parameters + DSI_RECV_DT_DCS_WRITE_0B = 0x05, //DCS Short WRITE, no parameters + DSI_RECV_DT_DCS_WRITE_1B = 0x15, //DCS Short WRITE, 1 parameter + DSI_RECV_DT_DCS_READ_0B = 0x06, //DCS READ, no parameters + DSI_RECV_DT_GEN_WRITE_LONG = 0x29, //Generic Long Write + DSI_RECV_DT_DCS_WRITE_LONG = 0x39, //DCS Long Write/write_LUT Command Packet + DSI_RECV_DT_MAX +} dsi_data_type_e; + +typedef enum +{ + DCS_ENTER_IDLE_MODE = 0x39, + DCS_ENTER_INVERT_MODE = 0x21, + DCS_ENTER_NORMAL_MODE = 0x13, + DCS_ENTER_PARTIAL_MODE = 0x12, + DCS_ENTER_SLEEP_MODE = 0x10, + DCS_EXIT_IDLE_MODE = 0x38, + DCS_EXIT_INVERT_MODE = 0x20, + DCS_EXIT_SLEEP_MODE = 0x11, + DCS_GET_3D_CONTROL = 0x3F, + DCS_GET_ADDRESS_MODE = 0x0B, + DCS_GET_BLUE_CHANNEL = 0x08, + DCS_GET_COMPRESSION_MODE = 0x03, + DCS_GET_DIAGNOSTIC_RESULT = 0x0F, + DCS_GET_DISPLAY_MODE = 0x0D, + DCS_GET_GREEN_CHANNEL = 0x07, + DCS_GET_PIXEL_FORMAT = 0x0C, + DCS_GET_POWER_MODE = 0x0A, + DCS_GET_RED_CHANNEL = 0x06, + DCS_GET_SCANLINE = 0x45, + DCS_GET_SIGNAL_MODE = 0x0E, + DCS_NOP = 0x00, + DCS_READ_DDB_CONTINUE = 0xA8, + DCS_READ_DDB_START = 0xA1, + DCS_READ_MEMORY_CONTINUE = 0x3E, + DCS_READ_MEMORY_START = 0x2E, + DCS_SET_3D_CONTROL = 0x3D, + DCS_SET_ADDRESS_MODE = 0x36, + DCS_SET_COLUMN_ADDRESS = 0x2A, + DCS_SET_DISPLAY_OFF = 0x28, + DCS_SET_DISPLAY_ON = 0x29, + DCS_SET_GAMMA_CURVE = 0x26, + DCS_SET_PAGE_ADDRESS = 0x2B, + DCS_SET_PARTIAL_COLUMNS = 0x31, + DCS_SET_PARTIAL_ROWS = 0x30, + DCS_SET_PIXEL_FORMAT = 0x3A, + DCS_SET_SCROLL_AREA = 0x33, + DCS_SET_SCROLL_START = 0x37, + DCS_SET_TEAR_OFF = 0x34, + DCS_SET_TEAR_ON = 0x35, + DCS_SET_TEAR_SCANLINE = 0x44, + DCS_SET_VSYNC_TIMING = 0x40, + DCS_SOFT_RESET = 0x01, + DCS_WRITE_LUT = 0x2D, + DCS_WRITE_MEMORY_CONTINUE = 0x3C, + DCS_WRITE_MEMORY_START = 0x2C +} dsi_dcs_cmd_type_e; + +/** +* @brief video data transfer mode +*/ +typedef enum +{ + DSI_DATA_VIDEO_MODE = 0, + DSI_DATA_CMD_MODE = 1, + DSI_DATA_MODE_MAX +} dsi_video_data_mode_e; + +/** +* @brief dsi virtual channel +*/ +typedef enum +{ + DSI_VC_0 = 0, + DSI_VC_1 = 1, + DSI_VC_2 = 2, + DSI_VC_3 = 3, + DSI_VC_MAX +} dsi_virtual_channel_e; + +/** +* @brief video data mode +*/ +typedef enum +{ + DSI_FRAME_RATE_60HZ = 0, + DSI_FRAME_RATE_90HZ = 1, + DSI_FRAME_RATE_120HZ = 2, + DSI_FRAME_RATE_144HZ = 3, + DSI_FRAME_RATE_160HZ = 4, + DSI_FRAME_RATE_MAX +} dsi_video_frame_rate_e; + +/** +* @brief dsi rx color coding +*/ +typedef enum +{ + DSI_RGB565 = 1, + DSI_RGB666 = 2, /*!< 18 bbp(18bits per pixel) */ + DSI_RGB666_LOOSELY = 3, /*!< 24 bbp(24bits per pixel) */ + DSI_RGB888 = 4, /*!< 24 bbp(24bits per pixel) */ + DSI_RGB10_10_10 = 5, + DSI_RGB12_12_12 = 6, + DSI_YCbCr422_16 = 7, + DSI_PENTILE_16 = DSI_YCbCr422_16, + DSI_YCbCr422_20_LOOSELY = 8, + DSI_YCbCr422_24 = 9, + DSI_YCbCr420_12 = 10, + DSI_COLOR_CODE_MAX +} dsi_color_code_e; + +/** +* @brief dpi endianness type +*/ +typedef enum +{ + DPI_ENDIAN_RGB = 0, + DPI_ENDIAN_BGR +} dpi_endianness_type_e; + +/** +* @brief dpi polarity type +*/ +typedef enum +{ + DPI_SIG_ACTIVE_HIGH = 0, + DPI_SIG_ACTIVE_LOW = 1 +} dpi_polarity_e; + +/** +* @brief mipi lane number +*/ +typedef enum +{ + DSI_LANE_1 = 1, + DSI_LANE_2 = 2, + DSI_LANE_3 = 3, + DSI_LANE_4 = 4, + DSI_LANE_NUME_MAX +} dsi_lane_nume_e; + +/** +* @brief video mode +*/ +typedef enum +{ + DSI_NONBURST_PULSE = 0, + DSI_NONBURST_EVENT = 1, + DSI_BURST_MODE = 2, + DSI_VIDEO_MODE_MAX +} dsi_video_mode_type_e; + +/** +* @brief panel init cmd transfer type +*/ +typedef enum +{ + DSI_CMD_TX_HS = 0, + DSI_CMD_TX_LP = 1 +} dsi_tx_cmd_tx_type_e; + +/** +* @brief dpi tx vpg style +*/ +typedef enum +{ + TX_VPG_V_COLOR = 0, + TX_VPG_H_COLOR = 1, + TX_VPG_V_BER = 2, + TX_VPG_FLICKER = 3, + TX_VPG_CHESSBOARD = 4, + TX_VPG_MAX +} dsi_tx_vpg_style_e; + +#if defined(ISP_568) || defined(ISP_368) +/** +* @brief angle of rotation +*/ +typedef enum +{ + VIDOE_ROT_ANGLE_0 = 0, /* 不旋转 */ + VIDOE_ROT_ANGLE_90 = 1, /* 旋转90度 */ + VIDOE_ROT_ANGLE_180 = 2, /* 旋转180度 */ + VIDOE_ROT_ANGLE_270 = 3, /* 转转270度 */ + VIDOE_ROT_ANGLE_MAX +} video_rotate_angle_e; + +/** +* @brief mipi rx lane swap +*/ +typedef enum +{ + RX_LANE_ORDER_DEFAULT = 0x0, + RX_LANE_ORDER_3012 = RX_LANE_ORDER_DEFAULT, + RX_LANE_ORDER_3210 = 0x1, + RX_LANE_ORDER_MAX +} dsi_rx_lane_swap_e; + +/** +* @brief LTPO mode +*/ +typedef enum +{ + LTPO_MODE_NONE = 0, + LTPO_MODE_1 = 1, + LTPO_MODE_2 = 2, + LTPO_MODE_MAX +} ltpo_mode_e; + +/** +* @brief transform 基本信息 +*/ +typedef struct +{ + ltpo_mode_e ltpo; /* ltpo 模式 */ + bool mirror_en; /* 对video 做水平镜像标志位 */ + video_rotate_angle_e rot_angle; /* 对video 做旋转的角度 */ + dsi_video_data_mode_e dst_mode; /* mipi tx 输出video 数据传输模式(video/cmd mode) */ + dsi_rx_lane_swap_e rx_lane_swap; /* rx lane swap */ +} dsi_base_extra_info_t; +#endif + +/** +* @brief mipi P/N lane swap flag +* eg: pn_swap = RX_LANE_0_PN_SWAP | RX_LANE_CLK_PN_SWAP; +* 表示 lane0 与 CLK 的P跟N交换,其他lane不变 +*/ +typedef enum +{ + RX_LANE_0_PN_SWAP = 0x1, + RX_LANE_1_PN_SWAP = 0x2, + RX_LANE_2_PN_SWAP = 0x4, + RX_LANE_3_PN_SWAP = 0x8, + RX_LANE_CLK_PN_SWAP = 0x10 +} dsi_rx_lane_pn_swap_e; + +/** +* @brief error processing level +*/ +typedef enum +{ + ERR_HANDLE_NONE = 0, + ERR_HANDLE_L1 = 1, + ERR_HANDLE_L2 = 2, + ERR_HANDLE_L3 = 3, + ERR_HANDLE_MAX +} hal_err_handle_level_e; + +/** +* @brief transform 基本信息 +*/ +typedef struct +{ + uint32_t src_w; /* mipi rx 接收的 width */ + uint32_t src_h; /* mipi rx 接收的 height */ + uint32_t dst_w; /* mipi tx 发送的 width */ + uint32_t dst_h; /* mipi tx 发送的 height */ + dsi_video_frame_rate_e src_frate; /* mipi rx 接收的frame rate */ + dsi_video_data_mode_e src_mode; /* mipi rx 接收video 数据传输模式(video/cmd mode) */ + uint16_t pn_swap; /* mipi rx P/N swap标志位 */ +#if defined(ISP_568) || defined(ISP_368) + dsi_base_extra_info_t extra_info; /* ISP_568/ISP_368 新增功能配置 */ +#endif +} dsi_base_trans_info_t; + +/** +* @brief ccm系数 +*/ +typedef struct +{ + uint32_t coef_c00; + uint32_t coef_c01; + uint32_t coef_c02; + uint32_t coef_c10; + uint32_t coef_c11; + uint32_t coef_c12; + uint32_t coef_c20; + uint32_t coef_c21; + uint32_t coef_c22; +} ccm_coef_t; + +/** +* @brief video mode display timing +*/ +typedef struct +{ + uint32_t vsa; + uint32_t vbp; + uint32_t vact; + uint32_t vfp; + uint32_t hsa; + uint32_t hbp; + uint32_t hact; + uint32_t hfp; +} vid_disp_timing_t; + +/** +* @brief dpi极性配置 +*/ +typedef struct +{ + dpi_polarity_e vsync_active_level; //vsync极性 + dpi_polarity_e hsync_active_level; //hsync极性 + dpi_polarity_e dataen_active_level; //dataen极性 + dpi_polarity_e shutdown_active_level; //shutdown极性 + dpi_polarity_e colorm_active_level; //colorm极性 +} dpi_polarity_t; + +/** +* @brief hight performan mode level +*/ +typedef enum +{ + HIGHT_PERFORMAN_NONE = 0, + HIGHT_PERFORMAN_L1 = 1, + HIGHT_PERFORMAN_L2 = 2, + HIGHT_PERFORMAN_MAX +} hight_performan_mode_e; + + +#endif //__MIPI_DSI_COMMON_H__ diff --git a/src/common/tau_log.h b/src/common/tau_log.h new file mode 100644 index 0000000..669976b --- /dev/null +++ b/src/common/tau_log.h @@ -0,0 +1,108 @@ +/******************************************************************************* +* +* +* File: tau_log.h +* Description log file +* Version V0.1 +* Date 2020-12-08 +* Author linyw +*******************************************************************************/ +#ifndef _TAU_LOG_H_ +#define _TAU_LOG_H_ + + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include +#include +#include +#include "ArmCM0.h" +#if LOG_MODE_RTT + #include "SEGGER_RTT.h" +#endif +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +#ifdef LOG_TAG + #undef LOG_TAG +#endif +#define LOG_TAG "tau_log" +#define LOG_CURREN_LEVEL kLOG_LEVEL_DBG /* 配置打印等级 TODO:每个模块可配置打印等级 */ + +/* + * Using the following three macros for conveniently logging. + */ +#if EDA_MODE +#define TAU_LOGD(format,...) +#define TAU_LOGI(format,...) +#define TAU_LOGE(format,...) +#else +#if LOG_MODE_RTT +#define TAU_LOGD(format,...) \ + do { \ + if (LOG_CURREN_LEVEL <= kLOG_LEVEL_DBG) { \ + SEGGER_RTT_printf(0,"[%s] (%04d) " format, LOG_TAG, __LINE__, ##__VA_ARGS__); \ + }; \ + } while (0) + + +#define TAU_LOGI(format,...) \ + do { \ + if (LOG_CURREN_LEVEL <= kLOG_LEVEL_INF) { \ + SEGGER_RTT_printf(0,"[%s] (%04d) " format, LOG_TAG, __LINE__, ##__VA_ARGS__); \ + }; \ + } while (0) + +#define TAU_LOGE(format,...) \ + do { \ + if (LOG_CURREN_LEVEL <= kLOG_LEVEL_ERR) { \ + SEGGER_RTT_printf(0,"error [%s] (%04d) " format, LOG_TAG, __LINE__, ##__VA_ARGS__); \ + }; \ + } while (0) +#else +#define TAU_LOGD(format,...) \ + do { \ + if (LOG_CURREN_LEVEL <= kLOG_LEVEL_DBG) { \ + LOG_printf("[%s] (%04d) " format, LOG_TAG, __LINE__, ##__VA_ARGS__); \ + }; \ + } while (0) + + +#define TAU_LOGI(format,...) \ + do { \ + if (LOG_CURREN_LEVEL <= kLOG_LEVEL_INF) { \ + LOG_printf("[%s] (%04d) " format, LOG_TAG, __LINE__, ##__VA_ARGS__); \ + }; \ + } while (0) + +#define TAU_LOGE(format,...) \ + do { \ + if (LOG_CURREN_LEVEL <= kLOG_LEVEL_ERR) { \ + LOG_printf("error [%s] (%04d) " format, LOG_TAG, __LINE__, ##__VA_ARGS__); \ + }; \ + } while (0) +#endif +#endif +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +typedef enum +{ + kLOG_LEVEL_DBG = 0, + kLOG_LEVEL_INF, + kLOG_LEVEL_ERR, + kLOG_LEVEL_NONE /* 不打印任何参数 */ +} log_level_t; + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +void LOG_printf(const char *fmt, ...); + +#endif diff --git a/src/common/tau_operations.h b/src/common/tau_operations.h new file mode 100644 index 0000000..35862b3 --- /dev/null +++ b/src/common/tau_operations.h @@ -0,0 +1,229 @@ +/******************************************************************************* +* +* +* File: tau_operations.h +* Description 位操作与字节操作相关定义头文件 +* Version V0.1 +* Date 2020-09-07 +* Author lzy + *******************************************************************************/ +#ifndef __TAU_BYTEOPS_H +#define __TAU_BYTEOPS_H + +/** + * \name 通用位常数定义 + * @{ + */ + +/** \brief 长整数位数 */ +#ifndef TAU_BITS_PER_LONG + #define TAU_BITS_PER_LONG 32 +#endif + +/** \brief 字节位数 */ +#define TAU_BITS_PER_BYTE 8 + +/** @} */ + + +/******************************************************************************/ + +/** + * \name 通用位操作 + * @{ + */ + +/** \brief bit移位 + * TAU_BIT(2) is 0x4 + */ +#define TAU_BIT(bit) (1u << (bit)) + +/** \brief 值移位 + * TAU_SBF(0xFF, 8) is 0xff00 + */ +#define TAU_SBF(value, field) ((value) << (field)) + +/** \brief bit置位 + * TAU_BIT_SET(0, 8) is 0x100 + */ +#define TAU_BIT_SET(data, bit) ((data) |= TAU_BIT(bit)) + +/** \brief bit清零 + * TAU_BIT_CLR(0xFF, 2) is 0xfb + */ +#define TAU_BIT_CLR(data, bit) ((data) &= ~TAU_BIT(bit)) + +/** \brief bit置位, 根据 mask 指定的位 + * TAU_BIT_SET_MASK(0xF0F0, 0xF00) is 0xfff0 + */ +#define TAU_BIT_SET_MASK(data, mask) ((data) |= (mask)) + +/** \brief bit清零, 根据 mask 指定的位 + * TAU_BIT_CLR_MASK(0xFFFF, 0xFF00) is 0xff + */ +#define TAU_BIT_CLR_MASK(data, mask) ((data) &= ~(mask)) + +/** \brief bit翻转 + * TAU_BIT_TOGGLE(0xFFFF, 0) is 0xfffe + * TAU_BIT_TOGGLE(0x0000, 1) is 0x2 + */ +#define TAU_BIT_TOGGLE(data, bit) ((data) ^= TAU_BIT(bit)) + +/** \brief bit修改 + * TAU_BIT_MODIFY(0, 8, 1) is 0x100 + * TAU_BIT_MODIFY(0xFFFF, 1, 0) is 0xfffd + */ +#define TAU_BIT_MODIFY(data, bit, value) \ + ((value) ? TAU_BIT_SET(data, bit) : TAU_BIT_CLR(data, bit)) + +/** \brief 测试bit是否置位 + * TAU_BIT_ISSET(0xF0F1, 1) is 0 + * TAU_BIT_ISSET(0xF0F2, 1) is 2 + */ +#define TAU_BIT_ISSET(data, bit) ((data) & TAU_BIT(bit)) + +/** \brief 获取bit值 + * TAU_BIT_GET(0xF0F1, 1) is 0 + * TAU_BIT_GET(0xF0F2, 1) is 1 + */ +#define TAU_BIT_GET(data, bit) (TAU_BIT_ISSET(data, bit) ? 1 : 0) + +/** \brief 检测bit值 + * TAU_BIT_CHECK(0xF5FF, 4) is 1 + */ +#define TAU_BIT_CHECK(data, bit) \ + (((data) & TAU_BIT(bit)) ? 1 : 0) + +/** \brief 获取 n bits 掩码值 + * TAU_BITS_MASK(2) is 0x3 + */ +#define TAU_BITS_MASK(n) (~((~0u) << (n))) + +/** \brief 获取位段值 + * TAU_BITS_GET(0xF5FF, 0x0F00, 8) is 0x5 + */ +#define TAU_BITS_GET(data, mask, pos) \ + (((data) & (mask)) >> (pos)) + +/** \brief 获取位段值 + * TAU_BITS_CHECK(0xF5FF, 0x0F00) is 1 + */ +#define TAU_BITS_CHECK(data, mask) \ + (((data) & (mask)) ? 1 : 0) + +/** \brief 修改位段值 + * TAU_BITS_MODIFY(0xF5FF, 0x0FF0, 0x8A0) is 0xF8AF +*/ +#define TAU_BITS_MODIFY(data, clear_mask, set_mask) \ + (data) = (((data) & (~(clear_mask))) | (set_mask)) + +/** \brief 设置位段值 + * TAU_WRITE_REG32(0x05FF, 0xFFFA) is 0xFFFA +*/ +#define TAU_WRITE_REG32(data, value) ((data) = (value)) + +/** \brief 设置位段值 + * TAU_READ_REG32(0x05FF) is 0x05FF +*/ +#define TAU_READ_REG32(data) (data) + + +/** @} */ + +/******************************************************************************/ + +/** + * \brief 取2-byte整数的高位byte + * + * \par 示例 + * \code + * uint16_t a = 0x1234; + * uint16_t b; + * + * b = TAU_MSB(a); //b=0x12 + * \endcode + */ +#define TAU_MSB(x) (((x) >> 8) & 0xff) + +/** + * \brief 取2-byte整数的低位byte + * + * \par 示例 + * \code + * uint16_t a = 0x1234; + * uint16_t b; + * + * b = TAU_LSB(a); //b=0x34 + * \endcode + */ +#define TAU_LSB(x) ((x) & 0xff) + +/** + * \brief 取2-word整数的高位word + * + * \par 示例 + * \code + * uint32_t a = 0x12345678; + * uint32_t b; + * + * b = TAU_MSW(a); //b=0x1234 + * \endcode + */ +#define TAU_MSW(x) (((x) >> 16) & 0xffff) + +/** + * \brief 取2-word整数的低位word + * + * \par 示例 + * \code + * uint32_t a = 0x12345678; + * uint32_t b; + * + * b = TAU_LSW(a); //b=0x5678 + * \endcode + */ +#define TAU_LSW(x) ((x) & 0xffff) + +/** + * \brief 交换32-bit整数的高位word和低位word + * + * \par 示例 + * \code + * uint32_t a = 0x12345678; + * uint32_t b; + * + * b = TAU_WORDSWAP(a); //b=0x56781234 + * \endcode + */ +#define TAU_WORDSWAP(x) (TAU_MSW(x) | (TAU_LSW(x) << 16)) + +/** + * \brief 交换32-bit整数的字节顺序 + * + * \par 示例 + * \code + * uint32_t a = 0x12345678; + * uint32_t b; + * + * b = TAU_LONGSWAP(a); //b=0x78563412 + * \endcode + */ +#define TAU_LONGSWAP(x) ((TAU_LLSB(x) << 24) | \ + (TAU_LNLSB(x) << 16) | \ + (TAU_LNMSB(x) << 8) | \ + (TAU_LMSB(x))) + +#define TAU_LLSB(x) ((x) & 0xff) /**< \brief 取32bit整数第1个字节 */ +#define TAU_LNLSB(x) (((x) >> 8) & 0xff) /**< \brief 取32bit整数第2个字节 */ +#define TAU_LNMSB(x) (((x) >> 16) & 0xff) /**< \brief 取32bit整数第3个字节 */ +#define TAU_LMSB(x) (((x) >> 24) & 0xff) /**< \brief 取32bit整数第4个字节 */ +#define TAU_LNSB(x,n) (((x) >> ((n) * 8) ) & 0xff) /**< \brief 取32bit整数第n个字节 ,参数 0 - 3*/ + +/** + * @} + */ + +#endif /* __TAU_BYTEOPS_H */ + +/* end of file */ + diff --git a/src/sdk/CVWL368/lib/CVWL368.lib b/src/sdk/CVWL368/lib/CVWL368.lib new file mode 100644 index 0000000000000000000000000000000000000000..713a2d3fcb71a5c1f7109197a27ba05731b839ae GIT binary patch literal 665220 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 P{&-hF?tU!= 6010050) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wc11-extensions" +#pragma clang diagnostic ignored "-Wreserved-id-macro" +#elif defined (__GNUC__) +/* anonymous unions are enabled by default */ +#elif defined (__TMS470__) +/* anonymous unions are enabled by default */ +#elif defined (__TASKING__) +#pragma warning 586 +#elif defined (__CSMC__) +/* anonymous unions are enabled by default */ +#else +#warning Not supported compiler type +#endif + +/* -------- Configuration of Core Peripherals ----------------------------------- */ +#define __CM0_REV 0x0000U /* Core revision r0p0 */ +#define __MPU_PRESENT 0U /* no MPU present */ +#define __VTOR_PRESENT 0U /* no VTOR present */ +#define __NVIC_PRIO_BITS 2U /* Number of Bits used for Priority Levels */ //20220228 +#define __Vendor_SysTickConfig 0U /* Set to 1 if different SysTick Config is used */ + +#define __FPU_PRESENT 0U /* Set to 1 if FPU is present */ +#define __FPU_DP 0U /* single precision FPU */ +#define __ICACHE_PRESENT 0U /* Set to 1 if I-CACHE is present */ +#define __DCACHE_PRESENT 0U /* Set to 1 if D-CACHE is present */ +#define __DSP_PRESENT 0U /* no DSP extension present */ + +#define FPGA_MODE 0 +#define EDA_MODE 0 +#define EXTERN_24M 0 +#define CPU_CLK_100M 0 + +#define LOG_MODE_RTT 0 /* 0:UART MODE 1: rtt MODE */ + +#include "core_cm0.h" /* Processor and core peripherals */ +#include "system_ARMCM0.h" /* System Header */ + +/*---------------------------------------------------------------------------- + Define clocks + *----------------------------------------------------------------------------*/ +#define XTAL (500000000UL) /* Oscillator frequency */ + +#if FPGA_MODE +#define SYSTEM_CLOCK (33300000U) +#else +/* 使用外部晶振时,系统时钟只能是100M,不使用外部晶振时,系统时钟可以是100M/80M*/ +#if EXTERN_24M +#define SYSTEM_CLOCK (100000000U) +#else +#if CPU_CLK_100M +#define SYSTEM_CLOCK (100000000U) +#else +#define SYSTEM_CLOCK (80000000U) +#endif +#endif +#endif + +/* -------- End of section using anonymous unions and disabling warnings -------- */ +#if defined (__CC_ARM) +#pragma pop +#elif defined (__ICCARM__) +/* leave anonymous unions enabled */ +#elif (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) +#pragma clang diagnostic pop +#elif defined (__GNUC__) +/* anonymous unions are enabled by default */ +#elif defined (__TMS470__) +/* anonymous unions are enabled by default */ +#elif defined (__TASKING__) +#pragma warning restore +#elif defined (__CSMC__) +/* anonymous unions are enabled by default */ +#else +#warning Not supported compiler type +#endif + +/* In HS mode and when the DMA is used, all variables and data structures dealing + with the DMA during the transaction process should be 4-bytes aligned */ +#define DMA_WORD_ALIGN_EN +#ifdef DMA_WORD_ALIGN_EN +#if defined (__GNUC__) /* GNU Compiler */ +#define __ALIGN_END __attribute__ ((aligned (4))) +#define __ALIGN_BEGIN +#else +#define __ALIGN_END +#if defined (__CC_ARM) /* ARM Compiler */ +#define __ALIGN_BEGIN __align(4) +#elif defined (__ICCARM__) /* IAR Compiler */ +#define __ALIGN_BEGIN +#elif defined (__TASKING__) /* TASKING Compiler */ +#define __ALIGN_BEGIN __align(4) +#endif /* __CC_ARM */ +#endif /* __GNUC__ */ +#else + +#define __ALIGN_BEGIN +#define __ALIGN_END + +#define __ALIGN_END_1 __attribute__ ((aligned (1))) +#endif /* DMA_WORD_ALIGN_EN */ + +/* __packed keyword used to decrease the data type alignment to 1-byte */ +#if defined (__CC_ARM) /* ARM Compiler */ +#define __packed __packed +#elif defined (__ICCARM__) /* IAR Compiler */ +#define __packed __packed +#elif defined ( __GNUC__ ) /* GNU Compiler */ +#define __packed __attribute__ ((__packed__)) +#define __weak __attribute__((weak)) +#elif defined (__TASKING__) /* TASKING Compiler */ +#define __packed __unaligned +#endif /* __CC_ARM */ + +#ifdef __cplusplus +} +#endif + +#endif /* ARMCM0_H */ diff --git a/src/sdk/include/hal_dsi_rx_ctrl.h b/src/sdk/include/hal_dsi_rx_ctrl.h new file mode 100644 index 0000000..7786929 --- /dev/null +++ b/src/sdk/include/hal_dsi_rx_ctrl.h @@ -0,0 +1,558 @@ +/******************************************************************************* +* +* +* File: hal_dsi_rx_ctrl.h +* Description: hal mipi dsi rx path control 头文件 +* Version: V0.1 +* Date: 2021-04-06 +* Author: lzy + *******************************************************************************/ +#ifndef __HAL_DSI_RX_CTRL_H__ +#define __HAL_DSI_RX_CTRL_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_dsi_datatype.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ +#define RX_DCS_QUEUE_MAX_SIZE 20 /* DCS存储队列长度 */ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +typedef struct hal_dcs_execute_entry_t hal_dcs_execute_entry_t; + +typedef struct hal_dcs_packet_t hal_dcs_packet_t; + +typedef struct hal_dsi_rx_ctrl_handle_t hal_dsi_rx_ctrl_handle_t; + +/* DCS CMD 回调函数, 注册进cus_dcs_entry_table里, 匹配对应的DCS 后回调*/ +typedef bool (*hal_dsi_rx_ctrl_dcs_execute)(hal_dsi_rx_ctrl_handle_t *rx_handle, hal_dcs_packet_t *dcs_packet); + +/* AP 读cmd 回调, 需要快速回CMD 时可注册, 为NULL 时DSC 读指令与写指令经过parse后由cus_dcs_entry_table回调 */ +typedef bool (*hal_dsi_rx_ctrl_read_entry)(uint8_t data_type, uint8_t dcs_cmd, uint8_t param); + +/* AP PPS 更新回调,参数为PPS 以及从PPS 里解析出来的picture width/height, 用于分辨率切换, 不注册该接口时内部处理PPS */ +typedef bool (*hal_dsi_rx_ctrl_pps_entry)(uint8_t *pps, uint8_t size, uint32_t pic_width, uint32_t pic_height); + +/** +* @brief hal_rx_dbg_event_e select +*/ +typedef enum hal_rx_dbg_event_e +{ + HAL_RX_DBG_FS = 0, /* Frame start */ + HAL_RX_DBG_EVENT_MAX +} hal_rx_dbg_event_e; + +/* RX debug 回调函数,用于获取frame start 等功能debug */ +typedef void (*hal_dsi_rx_ctrl_dbg_entry)(hal_rx_dbg_event_e event); + +/** +* @brief dsi rx ctrl handle struct +*/ +typedef struct hal_dsi_rx_ctrl_handle_t +{ + dsi_base_trans_info_t base_info; /* mipi video 转换基本信息 */ + dsi_color_code_e rx_color_mode; /* 输入color mode */ + dsi_lane_nume_e rx_lanes; /* mipi data lane */ + dsi_video_mode_type_e rx_nonburst_models; /* transmission packet sequences */ + dsi_virtual_channel_e rx_vc; /* virtual channel number */ + bool compress_en; /* DSC 压缩标志 */ + uint32_t rx_hsclk_rate; /* mipi 高速信号lane rate */ + uint8_t rx_dsc_pps[DSC_PPS_SIZE]; /* DSC 压缩PPS参数 */ + const hal_dcs_execute_entry_t *cus_dcs_entry_table; /* DCS处理函数列表 */ + hal_dsi_rx_ctrl_read_entry rx_dcs_read_entry; /* Host读指令数据函数,为NULL时由rx_dcs_queue注册cmd处理 */ + hal_dsi_rx_ctrl_pps_entry pps_update_entry; /* PPS Update 时回调函数,用于分辨率切换更新PPS,为NULL时内部处理 */ + bool used; /* handle使用标志位 */ + uint8_t pq_marginal; /* picture quality,参数为hal_rx_pq_marginal_type_e */ + bool direct_mode; /* video mode 直通模式,预留,仅debug使用 */ + hal_dsi_rx_ctrl_dbg_entry rx_debug_cb; /* rx debug 回调函数,目前为收到frame start之后回调,预留其他debug功能 */ + hal_err_handle_level_e err_handler_level; /* RX接收错误的时候对模块做reset等级, 等级越高reset模块越多 */ + bool draw_mode; /* 画点模式,仅debug使用 */ +#if defined(ISP_568) || defined(ISP_368) + uint8_t rx_strength; /* 用于调节RX信号强度,仅适用于开启内阻校准模式,档位0~7,默认3 */ + hight_performan_mode_e hight_performan_mode; /* 高性能模式等级,参考hight_performan_mode_e */ + bool pu_optimize; /* 用于优化PU显示效果,默认为false;true:优化PU显示显示效果,高功耗;false:普通PU模式,低功耗 */ +#endif + bool video_auto_sync; /* Video mode 自动同步开关 */ +} hal_dsi_rx_ctrl_handle_t; + +/** +* @brief DCS command execute entry +*/ +typedef struct hal_dcs_execute_entry_t +{ + uint32_t dcs_command; /* DCS command */ + hal_dsi_rx_ctrl_dcs_execute execute_func; /* command 对应处理函数 */ + bool immediately_func; /* 执行机制:true-在中断里立即执行,false-加入DCS队列异步执行 */ +} hal_dcs_execute_entry_t; + +/** +* @brief 存储 DCS packet 结构体 +*/ +typedef struct hal_dcs_packet_t +{ + uint32_t data_type; /* data type */ + uint32_t dcs_command; /* dcs command */ + uint32_t param_length; /* dcs param length */ + uint8_t *packet_param; /* dcs param */ + const hal_dcs_execute_entry_t *dcs_execute_entry; /* dcs packet 处理函数入口*/ +} hal_dcs_packet_t; + +/** +* @brief dcs command filter select +*/ +typedef enum +{ + HAL_RX_DCS_FILTER_0 = 0, + HAL_RX_DCS_FILTER_1 = 1, + HAL_RX_DCS_FILTER_2 = 2, + HAL_RX_DCS_FILTER_3 = 3, + HAL_RX_DCS_FILTER_4 = 4, + HAL_RX_DCS_FILTER_5 = 5, + HAL_RX_DCS_FILTER_6 = 6, + HAL_RX_DCS_FILTER_7 = 7, + HAL_RX_DCS_FILTER_MAX +} hal_rx_dcs_filter_sel_e; + +/** +* @brief pentile source color format +*/ +typedef enum +{ + PENTILE_SRC_FORMAT_RGB = 0x0, + PENTILE_SRC_FORMAT_BGR = 0x1, + PENTILE_SRC_FORMAT_RGBG_BGRG = 0x8, + PENTILE_SRC_FORMAT_GBGR_GRGB = 0x9, + PENTILE_SRC_FORMAT_BGRG_RGBG = 0xA, + PENTILE_SRC_FORMAT_GRGB_GBGR = 0xB, + PENTILE_SRC_FORMAT_RGBG_RGBG = 0xC, + PENTILE_SRC_FORMAT_GBGR_GBGR = 0xD, + PENTILE_SRC_FORMAT_BGRG_BGRG = 0xE, + PENTILE_SRC_FORMAT_GRGB_GRGB = 0xF, + PENTILE_SRC_FORMAT_MAX +} pentile_src_format_e; + +/** +* @brief pential G0 G1 swap mode +*/ +typedef enum +{ + PENTILE_G0G1 = 0, + PENTILE_G1G0 = 1 +} pentile_g_swap_e; + +/** +* @brief pential R B swap mode +*/ +typedef enum +{ + PENTILE_RGBG_BGRG = 0, + PENTILE_GGRB_RBGG = 1, + PENTILE_GGBR_BRGG = 3 +} pentile_rb_swap_e; + +/** +* @brief TE 信号产生模式 +*/ +typedef enum +{ + TE_HW_MODE = 0, /* TE由硬件产生,频率与输出帧率一致 */ + TE_USER_MODE = 1, /* 底层不产生TE, 由hal_dsi_rx_ctrl_gen_a_tear_signal 接口产生 */ + TE_SOFT_60HZ_MODE = 2, /* 底层软件产生同步60Hz TE */ + TE_SOFT_90HZ_MODE = 4, /* 底层软件产生同步90Hz TE */ + TE_SOFT_120HZ_MODE = 5, /* 底层软件产生同步120Hz TE */ + TE_HW_MAX +} te_mode_e; + +/** +* @brief pq_marginal_type select +*/ +typedef enum +{ + PQ_TYPE_0 = 0x0, + PQ_TYPE_1 = 0x1, + PQ_TYPE_2 = 0x3, + PQ_TYPE_3 = 0x2, + PQ_TYPE_4 = 0xA, + PQ_TYPE_5 = 0xE, + PQ_TYPE_6 = 0xC, + PQ_TYPE_7 = 0x1A, + PQ_TYPE_8 = 0x18, + PQ_TYPE_MAX +} hal_rx_pq_marginal_type_e; + +/** +* @brief 设置RX CLK +*/ +typedef enum +{ + RX_CLK_100M = 0, + RX_CLK_150M = 1, + RX_CLK_200M = 2, + RX_CLK_300M = 3, + RX_CLK_MAX +} hal_rx_clk_e; + + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ + +/** +* @brief 创建dsi rx ctrl handle (释放时需调用hal_dsi_rx_ctrl_release_handle) +* @param none +* @retval dsi rx handle +*/ +hal_dsi_rx_ctrl_handle_t *hal_dsi_rx_ctrl_create_handle(void); + +/** +* @brief 释放dsi rx ctrl handle +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_release_handle(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 设置rx ctrl handle 里的 PPS 参数 +* @param rx_ctrl_handle: dsi rx handle +* @param pps: pps 参数 +* @param pps_size: pps 参数长度 +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_pre_init_pps(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint8_t pps[], uint32_t pps_size); + +/** +* @brief 初始化dsi rx 模块 +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_init(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief dsi rx 模块去初始化 +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_deinit(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 启动dsi rx +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_start(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 重新配置dsi rx参数并恢复状态 (debug使用, 重新配置rx_ctrl_handle参数后调用该接口重启) +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_restart(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 停止dsi rx +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_stop(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 手动设置RX clk,一般RX CLK 由底层自动计算,用于特殊video mode场景出现FIFO FULL情况调试使用 +* @param rxbr_clk: rx clk, 需要大于hs_lane_rate/8 +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_rx_clk(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, hal_rx_clk_e rxbr_clk); + +/** +* @brief 发送 MIPI HOST的读响应 CMD +* @param rx_ctrl_handle: dsi rx handle +* @param data_type: data type +* @param vc: virtual channel +* @param cmd_count: ack command 的长度 +* @param ... : 需要发送的command(数量与cmd_count 配置一致) +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_send_ack_cmd(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, dsi_ack_data_type_e data_type, dsi_virtual_channel_e vc, uint8_t cmd_count, ...); + +/** +* @brief 使用数组方式回复短包,与hal_dsi_rx_ctrl_send_ack_cmd功能一致 +* @param rx_ctrl_handle: dsi rx handle +* @param data_size: 数组长度,固定为4 +* @param data: 回复cmd数据,数据排列有严格规定: +* data[0]:DI(data type) +* data[1]:data 0 +* data[2]:data 1 +* data[3]:内部pkt type,短包固定为0 +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_ack_short_cmd(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint8_t data_size, uint8_t data[]); + +/** +* @brief 使用数组方式回复长包,与hal_dsi_rx_ctrl_send_ack_cmd功能一致 +* @param rx_ctrl_handle: dsi rx handle +* @param data_size: 数组长度,为Word Count + header长度 (header固定为4) +* @param data: 回复cmd数据,数据排列有严格规定: +* data[0]:DI(data type) +* data[1]:wc 0 (Word Count 低八位) +* data[2]:wc 1 (Word Count 高八位) +* data[3]:内部pkt type,长包固定为1 +* data[N]:长包数据 +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_ack_long_cmd(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint8_t data_size, uint8_t data[]); + +/** +* @brief 异步处理DSC接口,执行cus_dcs_entry_table里对应DCS immediately_func为false的函数 +* @param rx_ctrl_handle: dsi rx handle +* @retval true - 正常处理1个DSC , false - 无DSC 处理 +*/ +bool hal_dsi_rx_ctrl_dsc_async_handler(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 使用硬件filter丢弃不需要处理的CMD,避免MCU资源被无效CMD占用 +* @param rx_ctrl_handle: dsi rx handle +* @param filter_number: filter 编号(0-7) +* @param cmd_start: 需要丢弃command code起始位 +* @param cmd_end: 需要丢弃command code终止位 +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_hw_cmd_filter(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, + hal_rx_dcs_filter_sel_e filter_number, + uint32_t cmd_start, uint32_t cmd_end); + +/** +* @brief 配置输入输出同步行数,用于调整图像撕裂问题 +* @param rx_ctrl_handle: dsi rx handle +* @param line_num: 同步行号,范围1 ~ input height +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_cus_sync_line(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t line_num); + +/** +* @brief 使用内置pattern代替mipi输入(用于测试) +* @param rx_ctrl_handle: dsi rx handle +* @param pg_orient: pattern 方向(0:Vertical mode ; 1:Horizontal mode) +* @param enable: 开启/关闭pattern +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_enable_test_pattern(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint8_t pg_orient, bool enable); + +/** +* @brief 设置TE信号特征 +* @param rx_ctrl_handle: dsi rx handle +* @param inverse_poly: tear信号极性 +* @param te_width: tear信号宽度(0-1023) +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_te_waveform(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, bool inverse_poly, uint32_t te_width); + +/** +* @brief 客制化scld filter配置,用于图像质量调节 +* @param rx_ctrl_handle: dsi rx handle +* @param scld_filter_h: 水平方向filter +* @param scld_filter_v: 垂直方向filter +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_cus_scld_filter(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t scld_filter_h[32][2], uint32_t scld_filter_v[32][2]); + +/** +* @brief 获取AP 配置 BTA回复数据最大size +* @param rx_ctrl_handle: dsi rx handle +* @retval 返回数据大小 +*/ +uint32_t hal_dsi_rx_ctrl_get_max_ret_size(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 获取AP Compression Mode Command配置,默认为0,谨慎使用 +* @param rx_ctrl_handle: dsi rx handle +* @retval AP 配置compressen_en +*/ +bool hal_dsi_rx_ctrl_get_compressen_en(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 生成一个TE信号 +* @param rx_ctrl_handle: dsi rx handle +* @retval none +*/ +bool hal_dsi_rx_ctrl_gen_a_tear_signal(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 输入分辨率切换接口 +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_toggle_resolution(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 启动高性能模式,通常为debug使用 +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_hight_performan_mode(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 配置TE信号为软件模式 +* @param rx_ctrl_handle: dsi rx handle +* @retval none +*/ +bool hal_dsi_rx_ctrl_set_sw_tear_mode(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 配置TE信号为硬件模式 +* @param rx_ctrl_handle: dsi rx handle +* @retval none +*/ +bool hal_dsi_rx_ctrl_set_hw_tear_mode(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +/** +* @brief 配置 pentile格式 +* @param rx_ctrl_handle: dsi rx handle +* @param src_format: pentile format +* @param g_swap: swap G0 G1 +* @param rb_swap: swap R B +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_pentile_format(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, pentile_src_format_e src_format, pentile_g_swap_e g_swap, pentile_rb_swap_e rb_swap); + +/** +* @brief 配置 RX escape clk +* @param rx_ctrl_handle: dsi rx handle +* @param esc_clk: escape clk 单位Hz,10000000时回CMD为10Mhz +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_cus_esc_clk(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t esc_clk); + +/** +* @brief 自动计算并配置硬件filter +* @param rx_ctrl_handle: dsi rx handle +* @param enable: 启动/关闭 硬件filter +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_auto_hw_filter(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, bool enable); + +/* +* @brief 配置DCS cmd 透传模式, Tx init 之后生效 +* @param enable/disable +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_set_dcs_direct_mode(bool enable); + +/* +* @brief 输入帧率修改(针对video mode) +* @param rx_ctrl_handle: dsi rx handle +* @param frame_rate:frame rate +*/ +bool hal_dsi_rx_ctrl_toggle_input_frame_rate(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, dsi_video_frame_rate_e frame_rate); + +/** +* @brief 配置TE模式扩展接口 +* @param line_num: 同步行号,范围1 ~ input height +建议从最大开始配置,step为100逐步减小,直到完全不出现撕裂 +* @param te_mode: 产生 te 模式,建议使用HW mode +* @retval none +*/ +bool hal_dsi_rx_ctrl_set_tear_mode_ex(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t line_num, te_mode_e te_mode); + +/** +* @brief 输入分辨率切换扩展接口 +* @param rx_ctrl_handle: dsi rx handle +* @retval true/false +*/ +bool hal_dsi_rx_ctrl_toggle_resolution_ex(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle); + +#if !defined(ISP_568) && !defined(ISP_368) + /* ISP_518/ISP_308 接口 */ + /** + * @brief 客制化 Channel Gain 配置,用于图像质量调节 + * @param rx_ctrl_handle: dsi rx handle + * @param gain_r: channel gain coefficient for R + * @param gain_g: channel gain coefficient for G + * @param gain_b: channel gain coefficient for B + * @retval true/false + */ + bool hal_dsi_rx_ctrl_set_cus_pq_gain(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, int r_gain, int g_gain, int b_gain); + + /** + * @brief 客制化enhance for luma参数配置,用于图像质量调节 + * @param rx_ctrl_handle: dsi rx handle + * @param enhl_str: Enhance Str + * @param enhl_edgeslope: Enhance Edge Slope + * @retval none + */ + bool hal_dsi_rx_ctrl_set_cus_pq_enh_lum(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t enhl_str, uint32_t enhl_edgeslope); + + /** + * @brief 客制化false color remove for chroma参数配置,用于图像质量调节 + * @param rx_ctrl_handle: dsi rx handle + * @param desatstr: 饱和度调整参数 范围:0-4095 + * @param desatslope: 饱和度调整斜率 范围:0-4095 + * @retval none + */ + bool hal_dsi_rx_ctrl_set_cus_pq_enh_chr(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t desatstr, uint32_t desatslope); + + /** + * @brief 客制化false color remove for chroma参数配置2,用于图像质量调节 + * @param rx_ctrl_handle: dsi rx handle + * @param desatmode: 饱和度调整模式 0-降低饱和度 1-提升饱和度 + * @param fc_final_alpha: 饱和度调整参数 范围:0 - 255 + * @param edge_med_slope: 饱和度调整参数 范围:0 - 4095 + * @retval none + */ + bool hal_dsi_rx_ctrl_set_cus_pq_enh_chr2(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t desatmode, uint32_t fc_final_alpha, uint32_t edge_med_slope); + +#else + /* ISP_568/ISP_368 接口 */ + /** + * @brief 裁剪输入video多余部分,用于部分机型比如mipi输入是900x1792,实际有效部分为828x1792,可用于裁剪右边跟下边 + * @param rx_ctrl_handle: dsi rx handle + * @param crop_width: 需要裁剪的列数 + * @param crop_height: 需要裁剪的行数 + * @retval true/false + */ + bool hal_dsi_rx_ctrl_crop_video(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint32_t crop_width, uint32_t crop_height); + + /* + * @brief 初始化画点模式,全屏赋值 + * @param rx_ctrl_handle: dsi rx handle + * @param red_data: 像素点R分量 + * @param green_data: 像素点G分量 + * @param blue_data: 像素点B分量 + * @retval none + */ + void hal_dsi_rx_ctrl_draw_mode_init(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, uint8_t red_data, uint8_t green_data, uint8_t blue_data); + + /* + * @brief 配置像素颜色 + * @param rx_ctrl_handle: dsi rx handle + * @param x: 像素点的x 坐标 + * @param y: 像素点的y 坐标 + * @param red_data: 像素点R分量 + * @param green_data: 像素点G分量 + * @param blue_data: 像素点B分量 + * @retval none + */ + void hal_dsi_rx_ctrl_set_pixel_data(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, int x, int y, uint8_t red_data, uint8_t green_data, uint8_t blue_data); + + /* + * @brief 填充颜色矩形 + * @param rx_ctrl_handle: dsi rx handle + * @param x1,y1: 矩形起始点 + * @param x2,y2: 矩形终点 + * @param red_data: 像素点R分量 + * @param green_data: 像素点G分量 + * @param blue_data: 像素点B分量 + * @retval none + */ + void hal_dsi_rx_ctrl_set_rect_pixel_data(hal_dsi_rx_ctrl_handle_t *rx_ctrl_handle, int x1, int x2, int y1, int y2, uint8_t red_data, uint8_t green_data, uint8_t blue_data); +#endif + +#endif //__HAL_DSI_RX_CTRL_H__ diff --git a/src/sdk/include/hal_dsi_tx_ctrl.h b/src/sdk/include/hal_dsi_tx_ctrl.h new file mode 100644 index 0000000..cfcb976 --- /dev/null +++ b/src/sdk/include/hal_dsi_tx_ctrl.h @@ -0,0 +1,284 @@ +/******************************************************************************* +* +* +* File: hal_dsi_tx_ctrl.h +* Description: hal mipi dsi tx 头文件 +* Version: V0.1 +* Date: 2021-04-23 +* Author: wuc + *******************************************************************************/ +#ifndef __HAL_DSI_TX_CTRL_H__ +#define __HAL_DSI_TX_CTRL_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_dsi_datatype.h" +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "hal_gpio.h" +#include "stdint.h" +#include "stdbool.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ + +/** +* @brief 客制化MIPI TX参数结构体 +*/ +typedef struct +{ + bool used; /* handle使用标志位 */ + uint8_t lane_num; + dsi_virtual_channel_e channel_id; + dsi_video_mode_type_e vid_mode; + dsi_tx_cmd_tx_type_e cmd_tx_type; /* 初始化模式传输命令方式,0:HS; 1:LP */ + uint8_t pclk_offset; /* 增加lane byte clk以增大HFP,适配LONG H的TP */ + uint32_t dpi_vsa; + uint32_t dpi_vbp; + uint32_t dpi_vfp; + uint32_t dpi_hsa; + uint32_t dpi_hbp; + uint32_t dpi_hfp; + dsi_base_trans_info_t base_info; /* mipi video 转换基本信息 */ + uint32_t tx_line_delay; /* tx 发送至屏端显示的延迟行数,由屏端决定,用于分辨率切换时确认切换时间点 */ + float tx_frame_rate; /* 默认60Hz输出,不建议配置为其他,仅作为debug使用 */ + bool tx_clkawayshs; /* 默认为false, 配置为true时video mode消隐行期间clk不进入LP */ + uint8_t blank_rows; /* 默认为0, 针对特殊屏使用,大于0时生效表示向下补黑blank_rows行 */ + uint8_t blank_columns; /* 默认为0, 针对特殊屏使用,大于0时生效表示向右补黑blank_columns列 */ + bool lp_exit_lpdt; /* 每一条LP CMD都退出LPDT */ + bool tx_cmd_mode_sync; /* TX command mode 输出同步 */ +} hal_dsi_tx_ctrl_handle_t; + +/** +* @brief crop parameters +*/ +typedef struct +{ + uint16_t crop_top; + uint16_t crop_bottom; + uint16_t crop_left; + uint16_t crop_right; +} hal_dsi_tx_crop_t; + +/** +* @brief MIPI TX初始化 +* @param tx_ctrl_handle: MIPI TX实例 +* @retval 成功:0 失败:-1 +*/ +bool hal_dsi_tx_ctrl_init(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle); + +/** +* @brief MIPI TX反初始化 +* @param tx_ctrl_handle: MIPI TX实例 +* @retval 成功:0 失败:-1 +*/ +bool hal_dsi_tx_ctrl_deinit(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle); + +/** +* @brief MIPI TX创建实例 +* @param 无 +* @retval tx_ctrl_handle: MIPI TX实例 +*/ +hal_dsi_tx_ctrl_handle_t *hal_dsi_tx_ctrl_create_handle(void); + +/** +* @brief MIPI TX释放实例 +* @param tx_ctrl_handle: MIPI TX实例 +* @retval 成功:0 失败:-1 +*/ +bool hal_dsi_tx_ctrl_release_handle(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle); + +/** +* @brief MIPI TX开始运行 +* @param tx_ctrl_handle: MIPI TX实例 +* @retval 成功:0 失败:-1 +*/ +bool hal_dsi_tx_ctrl_start(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle); + +/** +* @brief MIPI TX停止运行 +* @param tx_ctrl_handle: MIPI TX实例 +* @retval 成功:0 失败:-1 +*/ +bool hal_dsi_tx_ctrl_stop(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle); + +/** +* @brief 进入初始化panel +* @param 无 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_enter_init_panel_mode(void); + +/** +* @brief 退出初始化panel +* @param 无 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_exit_init_panel_mode(void); + +/** +* @brief MIPI TX接收命令 +* @param data_type: 数据类型,参考枚举类型dsi_data_type_e +* @param vc: 虚拟通道编号,参考枚举类型dsi_virtual_channel_e +* @param cmd: DCS指令 +* @param size: 读取数据长度 +* @param data: 数据存放地址 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_read_cmd(uint8_t data_type, uint8_t vc, uint8_t cmd, uint8_t size, uint8_t *data); + +/** +* @brief MIPI TX发送命令 +* @param data_type: 数据类型,参考枚举类型dsi_data_type_e +* @param vc: 虚拟通道编号,参考枚举类型dsi_virtual_channel_e +* @param cmd_count: 可变参数个数 +* @param ...: 可变参数 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_write_cmd(uint8_t data_type, uint8_t vc, uint8_t cmd_count, ...); + +/** +* @brief MIPI TX发送命令 +* @param data_type: 数据类型,参考枚举类型dsi_data_type_e +* @param vc: 虚拟通道编号,参考枚举类型dsi_virtual_channel_e +* @param size: data个数 +* @param data: data数组 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_write_array_cmd(uint8_t data_type, uint8_t vc, uint8_t size, const uint8_t *data); + +/** +* @brief 设置TX溢出时钟分频系统 +* @param esc_div: TX溢出时钟分频系数 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_escape_clock_div(uint8_t esc_div); + +/** +* @brief 屏端复位脚操作 +* @param state: Reset脚拉高、拉低 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_panel_reset_pin(gpio_level_e state); + +/** +* @brief 设置部分显示的区域 +* @param st_line: 起始行 +* @param st_col: 起始列 +* @param end_line: 结束行 +* @param end_col: 结束列 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_partial_disp_area(uint32_t st_line, uint32_t st_col, uint32_t end_line, uint32_t end_col); + +/** +* @brief 部分显示功能开关 +* @param pd_en: 开关部分显示功能 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_partial_disp(function_state_e pd_en); + +/** +* @brief 设置复写颜色 +* @param R: RGB的R分量 +* @param G: RGB的G分量 +* @param B: RGB的B分量 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_overwrite_rgb(uint8_t R, uint8_t G, uint8_t B); + +/** +* @brief 全屏复写开关 +* @param ow_en: 开关全屏复写功能 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_overwrite(function_state_e ow_en); + +/** +* @brief 设置RGB或BGR +* @param endianness: 选择RGB或BGR显示 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_endianness(dpi_endianness_type_e endianness); + +/** +* @brief 设置CCM参数 +* @param coef: 客制化参数,参考结构体ccm_coef_t +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_ccm(ccm_coef_t coef); + +/** +* @brief 控制TX VPG的输出 +* @param vpg_en: 使能VPG +* @param style: VPG的样式 +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_vpg(function_state_e vpg_en, dsi_tx_vpg_style_e style); + +/** +* @brief 在video mode下使能LP CMD +* @param lp_en:使能LP CMD +* @retval 无 +*/ +void hal_dsi_tx_ctrl_set_lp_cmd(function_state_e lp_en); + +/** +* @brief 裁剪tx输出的图像 +* @param tx_ctrl_handle: dsi tx handle +* @param crop: 裁剪参数 +* @retval 无 +*/ +void hal_dsi_tx_crop_pic(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle, hal_dsi_tx_crop_t *crop); + +#if !defined(ISP_568) && !defined(ISP_368) + /* ISP_518/ISP_308 接口 */ + /** + * @brief 设置水平翻转 + * @param flip_en: 开关水平翻转功能 + * @retval 无 + */ + void hal_dsi_tx_ctrl_set_horizon_flip(function_state_e flip_en); + + /** + * @brief 设置tx 画质filter + * @param tx_ctrl_handle: dsi tx handle + * @param filter_h: 水平方向filter + * @param filter_v: 垂直方向filter + * @retval true/false + */ + bool hal_dsi_tx_ctrl_set_cus_pq_filter(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle, uint32_t filter_h[32][2], uint32_t filter_v[32][2]); + + /** + * @brief 设置tx边缘参数,只在 + * @param tx_ctrl_handle: dsi tx handle + * @param threshold: 边缘增强强度 + * @param slope: 边缘增强范围 + * @retval true/false + */ + bool hal_dsi_tx_ctrl_set_cus_pq_edge(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle, uint8_t threshold, uint16_t slope); +#else + /* ISP_568/ISP_368 接口 */ + /** + * @brief 设置tx 画质filter + * @param tx_ctrl_handle: dsi tx handle + * @param filter: tx filter + * @retval true/false + */ + bool hal_dsi_tx_ctrl_set_cus_pq_filter(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle, uint32_t filter[32]); + + /** + * @brief TX command mode 同步接口,在收到屏端TE信号后调用,防止撕裂 + * @param tx_ctrl_handle: dsi tx handle + * @retval true/false + */ + bool hal_dsi_tx_ctrl_cmd_mode_rcv_te(hal_dsi_tx_ctrl_handle_t *tx_ctrl_handle); +#endif + +#endif //__HAL_DSI_TX_CTRL_H__ diff --git a/src/sdk/include/hal_gpio.h b/src/sdk/include/hal_gpio.h new file mode 100644 index 0000000..3c8ae01 --- /dev/null +++ b/src/sdk/include/hal_gpio.h @@ -0,0 +1,537 @@ +/******************************************************************************* +* +* +* File: hal_gpio.h +* Description: gpio HAL层头文件 +* Version: V0.1 +* Date: 2021-03-17 +* Author: wuc + *******************************************************************************/ +#ifndef __HAL_GPIO_H__ +#define __HAL_GPIO_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_device_datatype.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ +/** +* @brief GPIO pin +*/ +typedef enum +{ + /*以GPIO命名PIN*/ + IO_PAD_GPIO0 = 0, + IO_PAD_GPIO1, + IO_PAD_GPIO2, + IO_PAD_GPIO3, + IO_PAD_GPIO4, + IO_PAD_GPIO5, + IO_PAD_GPIO6, + IO_PAD_RESV, + IO_PAD_GPIO8, + IO_PAD_GPIO9, + IO_PAD_GPIO10, + IO_PAD_GPIO11, + IO_PAD_GPIO12, + IO_PAD_GPIO13, + IO_PAD_GPIO14, + IO_PAD_RESV1, + IO_PAD_RESV2, + IO_PAD_GPIO17, + IO_PAD_GPIO18, + IO_PAD_GPIO19, + IO_PAD_GPIO20, + IO_PAD_GPIO21, + + /*以实际PAD NAME命名PIN*/ + IO_PAD_AP_SPIS_MISO = IO_PAD_GPIO0, + IO_PAD_AP_SPIS_MOSI = IO_PAD_GPIO1, + IO_PAD_AP_INT = IO_PAD_GPIO2, + IO_PAD_AP_TE = IO_PAD_GPIO3, + IO_PAD_AP_SWIRE = IO_PAD_GPIO4, + IO_PAD_TD_SPIM_MISO = IO_PAD_GPIO5, + IO_PAD_TD_SPIM_MOSI = IO_PAD_GPIO6, + IO_PAD_TD_RSTN = IO_PAD_RESV, + IO_PAD_TD_TPRSTN = IO_PAD_GPIO8, + IO_PAD_TD_INT = IO_PAD_GPIO9, + IO_PAD_TD_LEDPWM = IO_PAD_GPIO10, + IO_PAD_TD_FC_CLK = IO_PAD_GPIO11, + IO_PAD_TD_FC_CSN = IO_PAD_GPIO12, + IO_PAD_TD_FC_MISO = IO_PAD_GPIO13, + IO_PAD_TD_FC_MOSI = IO_PAD_GPIO14, + IO_PAD_UART_RX = IO_PAD_GPIO17, + IO_PAD_UART_TX = IO_PAD_GPIO18, + IO_PAD_PWMEN = IO_PAD_GPIO19, + IO_PAD_ADCIN = IO_PAD_GPIO20, + IO_PAD_AP_TPRSTN = IO_PAD_GPIO21, + + IO_PAD_AP_SPIS_CLK, + IO_PAD_AP_SPIS_CSN, + IO_PAD_TD_SPIM_CLK, + IO_PAD_TD_SPIM_CSN, + IO_PAD_SFC_CLK, + IO_PAD_SFC_CSN, + IO_PAD_SFC_IO0, + IO_PAD_SFC_IO1, + + IO_PAD_MAX, + + /*以实际BALL编号命名PIN*/ + IO_PIN_A1 = IO_PAD_TD_TPRSTN, + IO_PIN_A2 = IO_PAD_TD_FC_CSN, + IO_PIN_A3 = IO_PAD_TD_SPIM_MISO, + IO_PIN_A4 = IO_PAD_TD_SPIM_CLK, + IO_PIN_A5 = IO_PAD_PWMEN, + IO_PIN_A6 = IO_PAD_ADCIN, + IO_PIN_A7 = IO_PAD_AP_INT, + IO_PIN_A8 = IO_PAD_AP_SPIS_MOSI, + IO_PIN_B1 = IO_PAD_TD_FC_CLK, + IO_PIN_B2 = IO_PAD_TD_FC_MISO, + IO_PIN_B3 = IO_PAD_TD_SPIM_MOSI, + IO_PIN_B4 = IO_PAD_TD_SPIM_CSN, + IO_PIN_B5 = IO_PAD_AP_SWIRE, + IO_PIN_B7 = IO_PAD_AP_SPIS_MISO, + IO_PIN_B8 = IO_PAD_AP_SPIS_CSN, + IO_PIN_C1 = IO_PAD_TD_FC_MOSI, + IO_PIN_C2 = IO_PAD_TD_LEDPWM, + IO_PIN_C4 = IO_PAD_UART_TX, + IO_PIN_C5 = IO_PAD_UART_RX, + IO_PIN_C6 = IO_PAD_AP_TE, + IO_PIN_D1 = IO_PAD_TD_RSTN, + IO_PIN_D2 = IO_PAD_TD_INT, + IO_PIN_D7 = IO_PAD_AP_TPRSTN, + IO_PIN_D8 = IO_PAD_AP_SPIS_CLK, +} io_pad_e; + +/** +* @brief PAD_AP_SPIS_CLK可选的mode +*/ +typedef enum +{ + IO_MODE_JTAG_TCK = 0, + IO_MODE_SPIS_SCLK = 1, + IO_MODE_I2C0_SCL = 3, +} pad_ap_spis_clk_mode_e; + +/** +* @brief PAD_AP_SPIS_CSN可选的mode +*/ +typedef enum +{ + IO_MODE_JTAG_TRSTN = 0, + IO_MODE_SPIS_CSN = 1, + IO_MODE_I2C0_SDA = 3, +} pad_ap_spis_csn_mode_e; + +/** +* @brief PAD_AP_SPIS_MISO可选的mode +*/ +typedef enum +{ + IO_MODE_JTAG_TDO = 0, + IO_MODE_SPIS_MISO = 1, + IO_MODE_GPIO0 = 2, + IO_MODE_UART_RX_AP = 3, + IO_MODE_SPIM_MISO_AP = 4, +} pad_ap_spis_miso_mode_e; + +/** +* @brief PAD_AP_SPIS_MOSI可选的mode +*/ +typedef enum +{ + IO_MODE_JTAG_TMS = 0, + IO_MODE_SPIS_MOSI = 1, + IO_MODE_GPIO1 = 2, + IO_MODE_UART_TX_AP = 3, + IO_MODE_SPIM_MOSI_AP = 4, +} pad_ap_spis_mosi_mode_e; + +/** +* @brief PAD_AP_TPRSTN可选的mode +*/ +typedef enum +{ + IO_MODE_JTAG_TDI = 0, + IO_MODE_GPIO21 = 2, +} pad_ap_tprstn_mode_e; + +/** +* @brief PAD_AP_INT可选的mode +*/ +typedef enum +{ + IO_MODE_GPIO2 = 2, +} pad_ap_int_mode_e; + +/** +* @brief PAD_AP_TE可选的mode +*/ +typedef enum +{ + IO_MODE_TEAR = 0, + IO_MODE_GPIO3 = 2, +} pad_ap_te_mode_e; + +/** +* @brief PAD_AP_SWIRE可选的mode +*/ +typedef enum +{ + IO_MODE_SWIRE = 0, + IO_MODE_PWMO = 1, + IO_MODE_GPIO4 = 2, +} pad_ap_swire_mode_e; + +/** +* @brief PAD_TD_SPIM_CLK可选的mode +*/ +typedef enum +{ + IO_MODE_SPIM_SCLK = 0, + IO_MODE_I2C1_SCL = 1, +} pad_td_spim_clk_mode_e; + +/** +* @brief PAD_TD_SPIM_CSN可选的mode +*/ +typedef enum +{ + IO_MODE_SPIM_CSN = 0, + IO_MODE_I2C1_SDA = 1, +} pad_td_spim_csn_mode_e; + +/** +* @brief PAD_TD_SPIM_MISO可选的mode +*/ +typedef enum +{ + IO_MODE_SPIM_MISO = 0, +#if defined(ISP_568) || defined(ISP_368) + IO_MODE_PWMO1 = 1, +#endif + IO_MODE_GPIO5 = 2, +} pad_td_spim_miso_mode_e; + +/** +* @brief PAD_TD_SPIM_MOSI可选的mode +*/ +typedef enum +{ + IO_MODE_SPIM_MOSI = 0, + IO_MODE_GPIO6 = 2, +} pad_td_spim_mosi_mode_e; + +/** +* @brief PAD_TD_TPRSTN可选的mode +*/ +typedef enum +{ + IO_MODE_GPIO8 = 2, +} pad_td_tprstn_mode_e; + +/** +* @brief PAD_TD_INT可选的mode +*/ +typedef enum +{ + IO_MODE_GPIO9_FUNC = 0, + IO_MODE_GPIO9 = 2, +} pad_td_int_mode_e; + +/** +* @brief PAD_TD_LEDPWM可选的mode +*/ +typedef enum +{ + IO_MODE_PWMI = 0, +#if defined(ISP_568) || defined(ISP_368) + IO_MODE_PWMO2 = 1, +#endif + IO_MODE_GPIO10 = 2, +} pad_td_ledpwm_mode_e; + +/** +* @brief PAD_TD_FC_CLK可选的mode +*/ +typedef enum +{ + IO_MODE_TSPIS_CLK = 0, + IO_MODE_GPIO11 = 2, +} pad_td_fc_clk_mode_e; + +/** +* @brief PAD_TD_FC_CSN可选的mode +*/ +typedef enum +{ + IO_MODE_TSPIS_CSN = 0, + IO_MODE_GPIO12 = 2, +} pad_td_fc_csn_mode_e; + +/** +* @brief PAD_TD_FC_MISO可选的mode +*/ +typedef enum +{ + IO_MODE_TSPIS_MISO = 0, + IO_MODE_GPIO13 = 2, +} pad_td_fc_miso_mode_e; + +/** +* @brief PAD_TD_FC_MOSI可选的mode +*/ +typedef enum +{ + IO_MODE_TSPIS_MOSI = 0, + IO_MODE_GPIO14 = 2, +} pad_td_fc_mosi_mode_e; + +/** +* @brief PAD_UART_RX可选的mode +*/ +typedef enum +{ + IO_MODE_UART_RX = 0, + IO_MODE_GPIO17 = 2, +} pad_uart_rx_mode_e; + +/** +* @brief PAD_UART_TX可选的mode +*/ +typedef enum +{ + IO_MODE_UART_TX = 0, + IO_MODE_GPIO18 = 2, +} pad_uart_tx_mode_e; + +/** +* @brief PAD_PWMEN可选的mode +*/ +typedef enum +{ + IO_MODE_GPIO19 = 2, +} pad_pwmen_mode_e; + +/** +* @brief PAD_ADCIN可选的mode +*/ +typedef enum +{ + IO_MODE_GPIO20 = 2, +} pad_adcin_mode_e; + +/** +* @brief PAD_SFC_CLK可选的mode +*/ +typedef enum +{ + IO_MODE_INTER_FLS_CLK = 0, + IO_MODE_EXT_FLS_CLK = 1, +} pad_sfc_clk_mode_e; + +/** +* @brief PAD_SFC_CSN可选的mode +*/ +typedef enum +{ + IO_MODE_INTER_FLS_CSN = 0, + IO_MODE_EXT_FLS_CSN = 1, +} pad_sfc_csn_mode_e; + +/** +* @brief PAD_SFC_IO0可选的mode +*/ +typedef enum +{ + IO_MODE_INTER_FLS_IO0 = 0, + IO_MODE_EXT_FLS_MISO = 1, +} pad_sfc_io0_mode_e; + +/** +* @brief PAD_SFC_IO1可选的mode +*/ +typedef enum +{ + IO_MODE_INTER_FLS_IO1 = 0, + IO_MODE_EXT_FLS_MOSI = 1, +} pad_sfc_io1_mode_e; + +/** +* @brief PAD电压转换速率 +*/ +typedef enum +{ + IO_SLEW_RATE_SLOW = 0, + IO_SLEW_RATE_FAST = 1, +} pad_slew_rate_e; + +/******************************************************************************* +* IOE +*******************************************************************************/ +/** +* @brief GPIO io方向 +*/ +typedef enum +{ + IO_IOE_INPUT = 0, + IO_IOE_OUTPUT +} gpio_ioe_direct_e; + +/** +* @brief GPIO level +*/ +typedef enum +{ + IO_LVL_LOW = 0, + IO_LVL_HIGH +} gpio_level_e; + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief 配置指定PAD为GPIO mode,方向为input,指定中断触发方式 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param trig:4种中断触发方式,参考枚举类型sys_cfg_trigger_e +* @retval 无 +*/ +void hal_gpio_init_eint(io_pad_e pad, sys_cfg_trigger_e trig); + +/** +* @brief 注册GPIO中断回调函数 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param cb_func:回调函数地址 +* @param data:回调函数参数地址 +* @retval 无 +*/ +void hal_gpio_reg_eint_cb(io_pad_e pad, fcb_type cb_func); + +/** +* @brief 开关GPIO中断 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param state:开关控制 +* @retval 无 +*/ +void hal_gpio_ctrl_eint(io_pad_e pad, function_state_e state); + +/** +* @brief 获取GPIO中断类型 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @retval 无 +*/ +gpio_int_e hal_gpio_get_int_type(io_pad_e pad); + +/** +* @brief 配置指定PAD为GPIO mode,方向为output,指定初始电平 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param lvl:初始电平,参考枚举类型gpio_level_e +* @retval 无 +*/ +void hal_gpio_init_output(io_pad_e pad, gpio_level_e lvl); + +/** +* @brief 封装设置输出接口 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param lvl:初始电平,参考枚举类型gpio_level_e +* @retval 无 +*/ +void hal_gpio_set_output_data(io_pad_e pad, gpio_level_e lvl); + +/** +* @brief 封装设置输出接口扩展,支持同时通知两个IO输出电平 +* @param pad1:GPIO序号,参考枚举类型gpio_pad_e +* @param pad1_lvl:配置电平,参考枚举类型gpio_level_e +* @param pad2:GPIO序号,参考枚举类型gpio_pad_e +* @param pad2_lvl:配置电平,参考枚举类型gpio_level_e +* @retval 无 +*/ +void hal_gpio_set_output_data_ex(io_pad_e pad1, gpio_level_e pad1_lvl, io_pad_e pad2, gpio_level_e pad2_lvl); + +/** +* @brief 配置指定PAD为GPIO mode,方向为input +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @retval 无 +*/ +void hal_gpio_init_input(io_pad_e pad); + +/** +* @brief 读取输入电平 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @retval 无 +*/ +gpio_level_e hal_gpio_get_input_data(io_pad_e pad); + +/** +* @brief 设置io mode +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param mode:工作模式,参考各PAD对应的mode枚举类型 +* @retval 无 +*/ +void hal_gpio_set_mode(io_pad_e pad, uint8_t mode); + +/** +* @brief 获取指定PAD的默认上拉、下拉状态 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param up_enable:默认上拉状态 +* @param down_enable:默认下拉状态 +* @retval 无 +*/ +void hal_gpio_get_pull_state(io_pad_e pad, function_state_e *up_enable, function_state_e *down_enable); + +/** +* @brief 配置指定PAD的默认上拉、下拉状态 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param up_enable:默认上拉状态 +* @param down_enable:默认下拉状态 +* @retval 无 +*/ +void hal_gpio_set_pull_state(io_pad_e pad, function_state_e up_enable, function_state_e down_enable); + +/** +* @brief 配置指定PAD是否为施密特触发 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param st_enable:1为施密特触发,0为正常触发 +* @retval 无 +*/ +void hal_gpio_set_schmitt_trigger(io_pad_e pad, function_state_e st_enable); + +/** +* @brief 配置指定PAD的驱动能力 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param strength:驱动强度,取值为0~3 +* @retval 无 +*/ +void hal_gpio_set_driving_strength(io_pad_e pad, uint8_t strength); + +/** +* @brief 配置指定PAD的电压转换速率 +* @param pad:GPIO序号,参考枚举类型gpio_pad_e +* @param rate:驱动强度,取值为0~3 +* @retval 无 +*/ +void hal_gpio_set_slew_rate(io_pad_e pad, pad_slew_rate_e rate); + +/** +* @brief 配置AP_RSTN引脚中断 +* @param enable: 中断开关 +* @param cb_func:回调函数 +* @param trig:触发模式 +* @retval 无 +*/ +void hal_gpio_set_ap_reset_int(bool enable, fcb_type cb_func, sys_cfg_trigger_e trig); + +#endif /* __HAL_GPIO_H__ */ diff --git a/src/sdk/include/hal_i2c_master.h b/src/sdk/include/hal_i2c_master.h new file mode 100644 index 0000000..7d60cb3 --- /dev/null +++ b/src/sdk/include/hal_i2c_master.h @@ -0,0 +1,80 @@ +/******************************************************************************* +* +* +* File: hal_i2c_master.h +* Description i2c hal file +* Version V0.1 +* Date 2021-10-14 +* Author zhanghz +*******************************************************************************/ + +#ifndef __HAL_I2C_MASTER_H__ +#define __HAL_I2C_MASTER_H__ + +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "string.h" + +/************************************************************************** +* @name : hal_i2c_m_dma_init +* @brief : i2c master dma 初始化 +* @param[in] : slave_addr:目标从机地址 +* @param[in] : addr_bits:目标从机地址位数 +* @param[in] : i2c_speed_hz: 通信速率 +* @return : +* @retval : +**************************************************************************/ +void hal_i2c_m_dma_init(uint8_t slave_addr, uint8_t addr_bits, uint32_t i2c_speed_hz); + +/************************************************************************** +* @name : hal_i2c_m_dma_write +* @brief : i2c master dma 发送数据 +* @param[in] : txBuffer:发送数据buffer +* @param[in] : data_size:发送数据个数 +* @return : STATUS_SUCCESS:数据已排入 DMA 通道,但不一定全部发送 +* @return : 其它:发送出错,需要重新调用函数发送 +* @retval : +**************************************************************************/ +status_t hal_i2c_m_dma_write(const uint8_t *txBuffer, size_t data_size); + +/************************************************************************** +* @name : hal_i2c_m_dma_read +* @brief : i2c master dma 接收数据 +* @param[in] : reg_address:先发送寄存器地址给从机 +* @param[in] : reg_size:地址字节数 +* @param[in] : rxBuffer:接收数据buffer +* @param[in] : data_size:接收数据长度 +* @return : STATUS_SUCCESS:寄存器地址发送成功,并已配置DMA接收通道,但不一定完成接收 +* @return : 其它:接收出错,需要重新调用函数接收 +* @retval : +**************************************************************************/ +status_t hal_i2c_m_dma_read(uint32_t reg_address, size_t reg_size, uint8_t *rxBuffer, size_t data_size); + +/************************************************************************** +* @name : hal_i2c_m_transfer_complate +* @brief : 获取 i2c master 发送状态 +* @param[in] : +* @return : true:数据发送完成 +* @return : false:数据还在发送 +* @retval : +**************************************************************************/ +bool hal_i2c_m_transfer_complate(void); + +/************************************************************************** +* @name : hal_i2c_m_set_high_impedance +* @brief : 将 I2C 主机的IO口设置为高阻态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void hal_i2c_m_set_high_impedance(void); +/************************************************************************** +* @name : hal_i2c_m_deinit +* @brief : i2c主机 IP去初始化(关掉使能、外设时钟) +* @param[in] : +* @return : +* @retval : +***************************************************************************/ +void hal_i2c_m_deinit(void); +#endif /* __HAL_I2C_MASTER_H__*/ + diff --git a/src/sdk/include/hal_i2c_slave.h b/src/sdk/include/hal_i2c_slave.h new file mode 100644 index 0000000..96ecb00 --- /dev/null +++ b/src/sdk/include/hal_i2c_slave.h @@ -0,0 +1,179 @@ +/******************************************************************************* +* +* +* File: hal_i2c_slave.h +* Description i2c hal file +* Version V0.1 +* Date 2021-10-14 +* Author zhanghz +*******************************************************************************/ + +#ifndef __HAL_I2C_SLAVE_H__ +#define __HAL_I2C_SLAVE_H__ + +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "string.h" + +typedef enum +{ + I2C_S_INT_READ = 0, //发生 读请求 中断 + I2C_S_INT_RX, //发生 接收 中断 + I2C_S_INT_STOP //发生 stop 中断 +} e_i2c_s_int_status; + +#if defined(ISP_568) || defined(ISP_368) +typedef enum +{ + I2C_S_0 = 0, + I2C_S_1, + I2C_S_MAX +} i2c_s_index_e; +#endif + +typedef void (*hal_i2c_s_callback_t)(e_i2c_s_int_status int_status, size_t receive_num); + +/************************************************************************** +* @name : hal_i2c_s_init +* @brief : i2c slave 初始化 +* @param[in] : slave_addr:从机地址 +* @param[in] : addr_bits:从机地址位数 +* @return : +* @retval : +**************************************************************************/ +void hal_i2c_s_init(uint8_t slave_addr, uint8_t addr_bits); + +/************************************************************************** +* @name : hal_i2c_s_dma_write +* @brief : i2c slave dma 发送数据 +* @param[in] : txBuffer:发送数据buffer +* @param[in] : data_size:发送数据个数 +* @return : STATUS_SUCCESS:数据已排入 DMA 通道,但不一定全部发送 +* @return : 其它:发送出错,需要重新调用函数发送 +* @retval : +**************************************************************************/ +status_t hal_i2c_s_dma_write(const uint8_t *txBuffer, size_t data_size); + +/************************************************************************** +* @name : hal_i2c_s_nonblocking_read +* @brief : i2c slave 准备接收数据 +* @param[in] : rxBuffer:接收数据buffer +* @param[in] : data_size:接收数据最大个数 +* @return : STATUS_SUCCESS:已配置准备接收,此时通信不一定开始 +* @return : 其它:接收配置出错,需要重新调用函数配置 +* @retval : +**************************************************************************/ +status_t hal_i2c_s_nonblocking_read(uint8_t *rxBuffer, size_t data_size); + +/************************************************************************** +* @name : hal_i2c_s_transfer_complate +* @brief : 获取 i2c slave 发送状态 +* @param[in] : +* @return : true:数据发送完成 +* @return : false:数据还在发送 +* @retval : +**************************************************************************/ +bool hal_i2c_s_write_complate(void); + +/************************************************************************** +* @name : hal_i2c_s_read_complate +* @brief : 获取 i2c slave 接收状态 +* @param[in] : +* @return : 数据接收个数 +* @retval : +**************************************************************************/ +uint8_t hal_i2c_s_read_complate(void); + +/************************************************************************** +* @name : hal_i2c_s_read_complate_clear +* @brief : 清除 i2c slave 接收状态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void hal_i2c_s_read_complate_clear(void); + +/************************************************************************** +* @name : hal_i2c_s_set_dma_tx_cycle +* @brief : 配置 I2C cycle 模式 +* @param[in] : +* @return : ENABLE:cycle模式,DISABLE:非cycle模式 +* @retval : +**************************************************************************/ +void hal_i2c_s_set_dma_tx_cycle(bool enable); + +/************************************************************************** +* @name : hal_i2c_s_set_transfer +* @brief : 配置 i2c 从机数据解析函数 +* @param[in] :hal_tp_transfer_phone_tmp:解析函数指针 +* @return : +* @retval : +**************************************************************************/ +void hal_i2c_s_set_transfer(hal_i2c_s_callback_t hal_i2c_s_callback_tmp); + +/************************************************************************** +* @name : hal_i2c_s_read_data +* @brief :read data +* @param[in] : rx_data: 接收数据 +* @return : 1: 成功获取数据 +* @return : 0: 接收 fifo 为空 +* @retval : +**************************************************************************/ +status_t hal_i2c_s_read_data(uint8_t *rx_data); + +/************************************************************************** +* @name : hal_i2c_s_write_data +* @brief :write data +* @param[in] : tx_data: 准备发送的数据 +* @return : 1: 配置发送成功 +* @return : 0: 发送 fifo 已满 +* @retval : +**************************************************************************/ +status_t hal_i2c_s_write_data(const uint8_t tx_data); + +/************************************************************************** + * @name : hal_i2c_s_rxfifo_notempty + * @brief : 判断当前 rxfifo 中是否有数据 + * @param[in] : + * @return : true: rxfifo 中有数据 + * @return : false: rxfifo 中没有数据 + * @retval : + **************************************************************************/ +bool hal_i2c_s_rxfifo_notempty(void); + +/************************************************************************** +* @name : hal_i2c_s_set_high_impedance +* @brief : 将 I2C 从机的IO口设置为高阻态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void hal_i2c_s_set_high_impedance(void); +/************************************************************************** +* @name : hal_i2c_s_get_tx_byte_num +* @brief : 获取I2C从机发送成功字节数 +* @param[in] : +* @return :发送总字节数 +* @retval : +**************************************************************************/ +int hal_i2c_s_get_tx_byte_num(void); +/************************************************************************** +* @name : hal_i2c_s_deinit +* @brief : i2c IP去初始化(关掉使能、外设时钟) +* @param[in] :slave_num 从机序号 +* @return : +* @retval : +***************************************************************************/ +void hal_i2c_s_deinit(void); +#if defined(ISP_568) || defined(ISP_368) + /************************************************************************** + * @name : hal_i2c_s_sel + * @brief : i2c slave 选择 + * @param[in] : slaver:从机编号 + * @return : + * @retval : + **************************************************************************/ + void hal_i2c_s_sel(i2c_s_index_e slaver); +#endif +#endif /* __HAL_I2C_SLAVE_H__*/ + diff --git a/src/sdk/include/hal_pwm.h b/src/sdk/include/hal_pwm.h new file mode 100644 index 0000000..9741707 --- /dev/null +++ b/src/sdk/include/hal_pwm.h @@ -0,0 +1,219 @@ +/******************************************************************************* +* +* +* File: hal_pwm.h +* Description: pwm HAL层头文件 +* Version: V0.1 +* Date: 2021-03-17 +* Author: wuc + *******************************************************************************/ +#ifndef __HAL_PWM_H__ +#define __HAL_PWM_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "hal_gpio.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/*! @brief PWM触发功能的定义 */ +typedef enum _pwm_out_ctrl_e +{ + PWMO_CTRL_KEEP = 0, + PWMO_CTRL_LOW = 1, + PWMO_CTRL_HIGH = 2, + PWMO_CTRL_TOGGLE = 3, + PWMO_CTRL_MAX +} pwm_out_ctrl_e; + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief PWMO初始化 +* @param 无 +* @retval 无 +*/ +void hal_pwm_out_init(void); + +/** +* @brief PWMO反初始化 +* @param 无 +* @retval 无 +*/ +void hal_pwm_out_deinit(void); + +/** +* @brief PWMO输出脉冲暂停、恢复 +* @param state:开关控制 +* @retval 无 +*/ +void hal_pwm_out_pause(function_state_e state); + +/** +* @brief 配置PWMO脉冲并开始输出 +* @param ctl0:到达阈值thr0时的操作,参考枚举类型pwm_out_ctrl_e +* @param ctl1:到达阈值thr1时的操作,参考枚举类型pwm_out_ctrl_e +* @param thr0:阈值0,单位us +* @param thr1:阈值1,单位us +* @param period:一个周期的时间,单位us +* @retval 无 +*/ +void hal_pwm_out_config_all(pwm_out_ctrl_e ctl0, pwm_out_ctrl_e ctl1, uint32_t thr0, uint32_t thr1, uint32_t period); + +/** +* @brief 在同步所有模式下配置PWMO脉冲所有参数 +* @param ctl0:到达阈值thr0时的操作,参考枚举类型pwm_out_ctrl_e +* @param ctl1:到达阈值thr1时的操作,参考枚举类型pwm_out_ctrl_e +* @param thr0:阈值0,单位us +* @param thr1:阈值1,单位us +* @param period:一个周期的时间,单位us +* @retval 无 +*/ +void hal_pwm_out_sync_all(pwm_out_ctrl_e ctl0, pwm_out_ctrl_e ctl1, uint32_t thr0, uint32_t thr1, uint32_t period); + +/** +* @brief 调制pwm输出以控制背光 +* @param polarity: 极性,false:先高后低,true:先低后高 +* @param duty_ratio: 占空比(0-total_ratio) +* @param total_ratio: 可细分总量 +* @param frequency: 频率,单位HZ +* @retval 无 +*/ +void hal_pwm_out_config_duty_ratio(bool polarity, uint16_t duty_ratio, uint16_t total_ratio, uint32_t frequency); + +/** +* @brief 在同步周期模式下配置PWMO脉冲的周期 +* @param period:一个周期的时间,单位us +* @retval 无 +*/ +void hal_pwm_out_sync_period(uint32_t period); + +/** +* @brief 在同步控制模式下配置PWMO脉冲的控制 +* @param ctl0:到达阈值thr0时的操作,参考枚举类型pwm_out_ctrl_e +* @param ctl1:到达阈值thr1时的操作,参考枚举类型pwm_out_ctrl_e +* @retval 无 +*/ +void hal_pwm_out_sync_ctl(pwm_out_ctrl_e ctl0, pwm_out_ctrl_e ctl1); + +/** +* @brief 在同步阈值模式下配置PWMO脉冲的阈值 +* @param thr0:阈值0,单位us +* @param thr1:阈值1,单位us +* @retval 无 +*/ +void hal_pwm_out_sync_thr(uint32_t thr0, uint32_t thr1); + +/** +* @brief 在同步暂停模式下暂停或恢复PWMO脉冲 +* @param pause_state:暂停或恢复 +* @retval 无 +*/ +void hal_pwm_out_sync_pause(function_state_e pause_state); + +/** +* @brief PWMI初始化 +* @param 无 +* @retval 无 +*/ +void hal_pwm_in_init(void); + +/** +* @brief PWMI反初始化 +* @param 无 +* @retval 无 +*/ +void hal_pwm_in_deinit(void); + +/** +* @brief 注册PWMI中断回调函数,回传PWMI中断类型指针,参考pwm_int_type_e +* @param cb_func:回调函数地址 +* @retval 无 +*/ +void hal_pwm_in_register_callback(fcb_type cb_func); + +/** +* @brief 配置PWMI所有中断的开关 +* @param high_overflow_en:high overflow中断使能开关 +* @param low_overflow_en:low overflow中断使能开关 +* @param total_overflow_en:total overflow中断使能开关 +* @param high_done_en:high done中断使能开关 +* @param low_done_en:low done中断使能开关 +* @param total_done_en:total done中断使能开关 +* @retval 无 +*/ +void hal_pwm_in_config_int(function_state_e high_overflow_en, function_state_e low_overflow_en, function_state_e total_overflow_en, + function_state_e high_done_en, function_state_e low_done_en, function_state_e total_done_en); + +/** +* @brief 配置PWMI单个中断的开关 +* @param pwm_int:中断类型,参考枚举类型pwm_int_type_e +* @param enable:控制开关 +* @retval 无 +*/ +void hal_pwm_in_set_int(pwm_int_type_e pwm_int, function_state_e enable); + +/** +* @brief 关闭PWMI所有中断 +* @param 无 +* @retval 无 +*/ +void hal_pwm_in_clear_int(void); + +/** +* @brief 开关PWMI中断 +* @param state:开关控制 +* @retval 无 +*/ +void hal_pwm_in_ctrl_int(function_state_e state); + +/** +* @brief 获取PWMI脉冲周期时长 +* @param 无 +* @retval 周期时长,单位us +*/ +uint32_t hal_pwm_in_get_total_period(void); + +/** +* @brief 获取PWMI脉冲高电平时长 +* @param 无 +* @retval 高电平时长,单位us +*/ +uint32_t hal_pwm_in_get_high_period(void); + +/** +* @brief 获取PWMI脉冲低电平时长 +* @param 无 +* @retval 低电平时长,单位us +*/ +uint32_t hal_pwm_in_get_low_period(void); + +/** +* @brief 获取PWMI上升沿累积个数 +* @param 无 +* @retval 从模块使能到当前时间的上升沿个数,超过32位宽后清零重新计数 +*/ +uint32_t hal_pwm_in_get_current_count(void); + +#if defined(ISP_568) || defined(ISP_368) + /** + * @brief 选择PWMO输出的IO口 + * @param pad: PWMO输出的IO口,默认为IO_PAD_AP_SWIRE,可选通过IO_PAD_TD_SPIM_MISO、IO_PAD_TD_LEDPWM输出 + * @retval 无 + */ + void hal_pwm_out_sel_io(io_pad_e pad); +#endif +#endif /* __HAL_PWM_H__ */ diff --git a/src/sdk/include/hal_spi_master.h b/src/sdk/include/hal_spi_master.h new file mode 100644 index 0000000..00c9b50 --- /dev/null +++ b/src/sdk/include/hal_spi_master.h @@ -0,0 +1,89 @@ +/******************************************************************************* +* +* +* File: hal_spi_touch.h +* Description spi hal file +* Version V0.1 +* Date 2021-10-25 +* Author zhanghz +*******************************************************************************/ + +#ifndef __HAL_SPI_MASTER_H__ +#define __HAL_SPI_MASTER_H__ + +#include "tau_device_datatype.h" +#include "tau_common.h" +#include "string.h" + +/************************************************************************** +* @name : hal_spi_m_dma_init +* @brief : SPIM DMA 初始化 +* @param[in] :speed:配置通信速率 +* @param[in] :cpha: 配置第一个时钟沿或者第二个时钟沿有效 +* @param[in] :cpol: 配置总线空闲时时钟电平 +* @return : +* @retval : +**************************************************************************/ +void hal_spi_m_dma_init(uint32_t speed, uint8_t cpha, uint8_t cpol); + +/************************************************************************** +* @name : hal_spi_m_dma_write +* @brief : 用SPIM 发送数据 +* @param[in] :data_buffer: 发送数据 buffer 头地址 +* @param[in] :data_size: 发送数据 buffer 长度 +* @return :STATUS_SUCCESS: 配置成功,但数据不一定发送完成 +* @return :其它:配置不成功,需要重新配置发送 +* @retval : +**************************************************************************/ +status_t hal_spi_m_dma_write(const uint8_t *data_buffer, size_t data_size); + +/************************************************************************** +* @name : hal_spi_m_dma_read +* @brief : 用SPIM 读取数据 +* @param[in] :cmd: 发送命令 buffer 头地址 +* @param[in] :cmd_size: 发送命令 buffer 长度 +* @param[in] :data_buffer: 读取数据 buffer 头地址 +* @param[in] :data_size: 发送命令 和 读取数据 buffer 长度 +* @return :STATUS_SUCCESS: 配置成功,但数据不一定读取完成 +* @return :其它:配置不成功,需要重新配置发送 +* @retval : +**************************************************************************/ +status_t hal_spi_m_dma_read(const uint8_t *cmd, size_t cmd_size, uint8_t *data_buffer, size_t data_size); + +/************************************************************************** +* @name : hal_spi_m_get_transfer_complate +* @brief : 获取 SPIM 通信完成状态 +* @param[in] : +* @return :true:通信完成 +* @retval : +**************************************************************************/ +bool hal_spi_m_get_transfer_complate(void); + +/************************************************************************** +* @name : hal_spi_m_clear_rxfifo +* @brief : 清空 rxfifo 中的数据 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void hal_spi_m_clear_rxfifo(void); + +/************************************************************************** +* @name : hal_spi_m_set_high_impedance +* @brief : 将 SPI 主机的IO口设置为高阻态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void hal_spi_m_set_high_impedance(void); +/************************************************************************** +* @name : hal_spi_m_deinit +* @brief : 将 SPI 主机去初始化(关掉SPIM) +* @param[in] : +* @return :true +* @retval : +**************************************************************************/ +bool hal_spi_m_deinit(void); + +#endif + diff --git a/src/sdk/include/hal_spi_slave.h b/src/sdk/include/hal_spi_slave.h new file mode 100644 index 0000000..fc0c57f --- /dev/null +++ b/src/sdk/include/hal_spi_slave.h @@ -0,0 +1,181 @@ +/******************************************************************************* +* Copyright (C) 2021-2022, All Rights Reserved. +* +* File: hal_spi_slave.h +* Description spi slave hal file +* Version V0.1 +* Date 2021-10-23 +* Author lzy +*******************************************************************************/ +#ifndef __HAL_SPI_SLAVE_H__ +#define __HAL_SPI_SLAVE_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_dsi_datatype.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/* +自动模式event eg:rx_buffer_size=8, host发送16个byte数据, +收到前面8byte数据时产生SPI_EVENT_RCV_FULL事件,后续的事件丢弃, +传输完成后host拉高CS,产生SPI_EVENT_RCV_CS_HIGH事件 +*/ +typedef enum +{ + SPI_EVENT_RCV_DATA = 0, /* 手动模式下,SPIS 接受每接收一个数据即产生事件 */ + SPI_EVENT_RCV_FULL, /* 自动模式下 ,SPIS 接收数据等于buffer size后产生事件 */ + SPI_EVENT_RCV_CS_HIGH, /* 自动模式下 ,SPIS 收到CS 拉高的信号 */ +} hal_spis_event_e; + +typedef struct hal_spi_packet_info_t +{ + uint8_t *rx_buffer; /* 接收buffer */ + uint32_t rx_buffer_size; /* 接收buffer size */ + bool rx_circle; /* 接收circle mode */ + const uint8_t *tx_buffer; /* 发送buffer */ + uint32_t tx_buffer_size; /* 发送buffer size */ + bool tx_circle; /* 发送circle mode */ + uint32_t packet_size; /* packet size */ +} hal_spi_packet_info_t; + +typedef void (*hal_spi_slave_cb)(hal_spis_event_e event, hal_spi_packet_info_t *packet_info); + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief 初始化spi slave 模块 +* @param cpha: 相位配置 +* @param cpol: 极性配置 +* @param dma: 自动模式下DMA enable +* @retval true/false +*/ +bool hal_spi_slave_init(uint8_t cpha, uint8_t cpol, bool dma); + +/** +* @brief spi slave 模块去初始化 +* @param none +* @retval true/false +*/ +bool hal_spi_slave_deinit(void); + +/** +* @brief spi slave 注册回调函数 +* @param cb:call back +* @retval true/false +*/ +bool hal_spi_slave_register_callback(hal_spi_slave_cb cb); + +/** +* @brief spi slave enable +* @param none +* @retval true/false +*/ +bool hal_spi_slave_enable(void); + +/** +* @brief spi slave disable +* @param none +* @retval true/false +*/ +bool hal_spi_slave_disable(void); + +/** +* @brief spi slave 配置自动接收buffer, 底层自动接收数据后调用callback, buffer为NULL时为自动接收模式 +* @param buffer:自动模式数据接收buffer +* @param size: 自动模式数据接收buffer size +* @param circle:circle mode,packet size 大于buffer size 时从offset 0重新写(暂不支持) +* @retval true/false +*/ +bool hal_spi_slave_set_auto_rx_buffer(uint8_t *buffer, uint32_t size, bool circle); + +/** +* @brief spi slave 配置自动发送buffer +* @param buffer:自动模式数据发送buffer, buffer为NULL为切换为自动模式 +* @param size: 自动模式数据发收buffer size +* @param circle:circle mode,重复发送buffer的数据 +* @retval true/false +*/ +bool hal_spi_slave_set_auto_tx_buffer(const uint8_t *buffer, uint32_t size, bool circle); + +/** +* @brief spi slave 启动自动传输 +* @param none +* @retval true/false +*/ +bool hal_spi_slave_auto_transfer_start(void); + +/** +* @brief spi slave 停止自动传输(circle mode 下packet结束可使用) +* @param none +* @retval true/false +*/ +bool hal_spi_slave_auto_transfer_abort(void); + +/** +* @brief spi slave flush fifo(circle mode 下packet结束后可使用) +* @param none +* @retval true/false +*/ +bool hal_spi_slave_flush_fifo(void); + +/** +* @brief reset spis tx,在启动spis后重新配置输出数据 +* @param buffer:自动模式数据发送buffer +* @param size: 自动模式数据发收buffer size +* @param circle:circle mode,重复发送buffer的数据 +* @retval true/false +*/ +bool hal_spi_slave_reset_tx(const uint8_t *buffer, uint32_t size, bool circle); + +/** +* @brief check spi slave busy(CS status) +* @param none +* @retval true/false +*/ +bool hal_spi_slave_busy(void); + +/** +* @brief 获取rx fifo 非空 +* @param none +* @retval true/false +*/ +bool hal_spi_slave_get_rxfifo_notempty(void); + +/** +* @brief 手动模式下从rx fifo 读取数据 +* @param none +* @retval true/false +*/ +bool hal_spi_slave_read_data(uint32_t *data); + +/** +* @brief 手动模式下往tx fifo 写数据 +* @param none +* @retval true/false +*/ +bool hal_spi_slave_write_data(const uint8_t data); + +/************************************************************************** +* @name : hal_spi_s_set_high_impedance +* @brief : 将 SPI 从机的IO口设置为高阻态 +* @param[in] : +* @return : +* @retval : +**************************************************************************/ +void hal_spi_s_set_high_impedance(void); + +#endif /* __HAL_SPI_SLAVE_H__*/ + diff --git a/src/sdk/include/hal_swire.h b/src/sdk/include/hal_swire.h new file mode 100644 index 0000000..9660e83 --- /dev/null +++ b/src/sdk/include/hal_swire.h @@ -0,0 +1,75 @@ +/******************************************************************************* +* +* +* File: hal_swire.h +* Description: swire HAL层头文件 +* Version: V0.1 +* Date: 2021-03-17 +* Author: wuc + *******************************************************************************/ +#ifndef __HAL_SWIRE_H__ +#define __HAL_SWIRE_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_device_datatype.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief SWIRE初始化 +* @param 无 +* @retval 无 +*/ +void hal_swire_init(void); + +/** +* @brief SWIRE反初始化 +* @param 无 +* @retval 无 +*/ +void hal_swire_deinit(void); + +/** +* @brief 配置SWIRE脉冲并开始输出 +* @param start_time:起始时长,单位us +* @param stop_time:结束时长,单位us,必须大于300us +* @param high_time:高电平时长,单位us +* @param low_time:低电平时长,单位us +* @param pulse:上升沿个数 +* @retval 无 +*/ +void hal_swire_start(uint32_t start_time, uint32_t stop_time, + uint32_t high_time, uint32_t low_time, + uint32_t pulse); + +/** +* @brief 打开或关闭背光 +* @param state:开关控制 +* @retval 无 +*/ +void hal_swire_open(function_state_e state); + +/** +* @brief 注册回调函数 +* @param cb_func:回调函数地址 +* @retval 无 +*/ +void hal_swire_register_callback(fcb_type cb_func); + +#endif /* __HAL_SWIRE_H__ */ diff --git a/src/sdk/include/hal_system.h b/src/sdk/include/hal_system.h new file mode 100644 index 0000000..84f7320 --- /dev/null +++ b/src/sdk/include/hal_system.h @@ -0,0 +1,181 @@ +/******************************************************************************* +* +* +* File: hal_system.h +* Description hal 通用系统接口头文件 +* Version V0.1 +* Date 2021-05-21 +* Author lzy + *******************************************************************************/ +#ifndef __HAL_SYSTEM_H__ +#define __HAL_SYSTEM_H__ +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ + +/** +* @brief system 初始化 +* @param none +* @retval none +*/ +void hal_system_init(uint32_t sysclk); + +/** +* @brief system 初始化 console +* @param baud_rate 波特率 +* @retval none +*/ +void hal_system_init_console(uint32_t baud_rate); + +/** +* @brief mcu进入idle模式,等待中断唤醒 +* @param disable_systick: 进入idle时是否关闭systick(退出idle 恢复systick) +* @retval none +*/ +void hal_system_idle_mode(bool disable_systick); + +/** +* @brief 注册systick回调函数 +* @param cb_func:回调函数地址 +* @retval 无 +*/ +void hal_system_register_systick_cb(fcb_type cb_func); + +/** +* @brief 启动sys tickt +* @param ms: sys tickt 间隔, 范围1-10ms +* @retval true/false +*/ +bool hal_system_enable_systick(uint8_t ms); + +/** +* @brief 获取systickt +* @param none +* @retval 当前systickt值 +*/ +bool hal_system_disable_systick(void); + +/** +* @brief 获取systickt +* @param none +* @retval 当前systickt值 +*/ +uint32_t hal_system_get_tick(void); + +/** +* @brief 进入deep sleep mode 模式, 等待AP_RSTN 唤醒 +* @param polarity true:上升沿唤醒, false:下降沿唤醒 +* @retval none +*/ +void hal_system_deep_sleep_mode(bool polarity); + +/** +* @brief 配置共享flash开关(使用过后注意关闭,常开功耗会增加) +* @param enable:true:可通过F_SPI访问内部flash , false:不可通过F_SPI访问内部flash +* @retval true/false +*/ +bool hal_system_share_flash_mode(bool enable); + +/** +* @brief sleep mode 配置 +* @param enable +* @retval none +*/ +void hal_system_sleep_mode(bool enable); + +/** +* @brief reset chip +* @param none +* @retval none +*/ +void hal_system_reset_chip(void); + +/** +* @brief 开关PVD检测 +* @param none +* @retval none +*/ +void hal_system_set_pvd(bool enable); + +/** +* @brief VCC电源开关, +* 使用场景: VCC掉电,13D与13M使用外灌电源时,关闭内部VCC供电,防止电源倒灌 +* @param enable: true:打开CP, false:关闭CP +* @retval none +*/ +void hal_system_set_vcc(bool enable); + +/** +* @brief 用户字节数组形式从flash读取数据,按页读取,每页1024字节 +* @param *usr_cfg_t_addr(数组首地址), + usr_cfg_t_size(数组大小可以超过1024,可以按页读也可连续跨页读) + flash_page (页0~63) +* @retval bool 无 +*/ +bool hal_system_flash_read(uint8_t *usr_cfg_t_addr, uint16_t usr_cfg_t_size, uint8_t flash_page); + +/** +* @brief 用户字节数组形式存入flash(次数有限,不可频繁写入),按页写入,每页1024字节 +* @param *usr_cfg_t_addr(数组首地址), + usr_cfg_t_size(数组大小可以超过1024,可以按页写也可连续跨页写入), + 推荐按页顺序写入方式,第一次必须从0页开始写入,后续才可1~63任意页写入 + flash_page (写入页0~63) +* @retval bool 校验size是否超出 +*/ +bool hal_system_flash_write(uint8_t *usr_cfg_t_addr, uint16_t usr_cfg_t_size, uint8_t flash_page); + +/** +* @brief 控制flash退出deep sleep power mode +* @param 发送0xAB指令 +* @retval null +*/ +void hal_system_flash_release_power_down(void); + +/** +* @brief 控制flash进入deep sleep power mode +* @param 发送0xB9指令 +* @retval null +*/ +void hal_system_flash_power_down(void); + +#if defined(ISP_568) || defined(ISP_368) + /** + * @brief 控制DPHY内部校准开关 + * @param en: 使能开关 + * @retval none + */ + void hal_system_set_phy_calibration(bool en); +#endif + +/** +* @brief 获取上位机设置的debug state +* @param none +* @retval debug state +*/ +uint32_t hal_system_get_debug_state(void); + +/** +* @brief clear debug state(debug only) +* @param none +* @retval none +*/ +void hal_system_clear_debug_state(void); + +#endif //__HAL_SYSTEM_H__ diff --git a/src/sdk/include/hal_timer.h b/src/sdk/include/hal_timer.h new file mode 100644 index 0000000..4930676 --- /dev/null +++ b/src/sdk/include/hal_timer.h @@ -0,0 +1,92 @@ +/******************************************************************************* +* +* +* File: hal_timer.h +* Description: timer HAL层头文件 +* Version: V0.1 +* Date: 2021-03-16 +* Author: wuc + *******************************************************************************/ +#ifndef __HAL_TIMER_H__ +#define __HAL_TIMER_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_device_datatype.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief 指定定时器初始化 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @retval 无 +*/ +void hal_timer_init(timer_num_e index); + +/** +* @brief 指定定时器反初始化 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @retval 无 +*/ +void hal_timer_deinit(timer_num_e index); + +/** +* @brief 启动指定定时器 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @param ms:超时时间,单位ms。由于应用场景一般是ms级别的,应用开发不需要计数具体时针数, + 故直接输入时间,在接口内部换算成时钟数进行寄存器设置。 +* @param cb_func:回调函数地址,不需要则填NULL +* @param data:回调函数的参数地址,不需要则填NULL +* @retval 无 +*/ +void hal_timer_start(timer_num_e index, uint32_t ms, fcb_type cb_func, void *data); + +/** +* @brief 启动指定定时器 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @param us:超时时间,单位us。由于应用场景一般是us级别的,应用开发不需要计数具体时针数, + 故直接输入时间,在接口内部换算成时钟数进行寄存器设置。 +* @param cb_func:回调函数地址,不需要则填NULL +* @param data:回调函数的参数地址,不需要则填NULL +* @retval 无 +*/ +void hal_timer_start_ex(timer_num_e index, uint32_t us, fcb_type cb_func, void *data); + +/** +* @brief 停止指定定时器 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @retval 无 +*/ +void hal_timer_stop(timer_num_e index); + +/** +* @brief 设置定时器是否循环超时 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @param bool enable:循环超时使能 +* @retval 无 +*/ +void hal_timer_set_repeat(timer_num_e index, bool repeat); + +/** +* @brief 获取指定指示器状态 +* @param index:实例序号(0~3),参考枚举类型timer_num_e +* @retval 参考timer_status_e +*/ +timer_status_e hal_timer_get_status(timer_num_e index); + +#endif /* __HAL_TIMER_H__ */ diff --git a/src/sdk/include/hal_uart.h b/src/sdk/include/hal_uart.h new file mode 100644 index 0000000..82efe74 --- /dev/null +++ b/src/sdk/include/hal_uart.h @@ -0,0 +1,131 @@ +/******************************************************************************* +* +* +* File: hal_uart.h +* Description +* Version V0.1 +* Date 2021-11-24 +* Author kc +*******************************************************************************/ + +#ifndef __HAL_UART_H__ +#define __HAL_UART_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "stdint.h" +#include "tau_common.h" + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +typedef enum +{ + HAL_UART_STOPBIT_1 = 0, + HAL_UART_STOPBIT_2 = 1 +} hal_uart_stopbit_e; + +typedef enum +{ + HAL_UART_PARITY_NO = 0, + HAL_UART_PARITY_ODD = 0x01, + HAL_UART_PARITY_EVEN = 0x03, +} hal_uart_parity_e; + +typedef enum +{ + HAL_UART_DATAWIDTH_6 = 1, + HAL_UART_DATAWIDTH_7 = 2, + HAL_UART_DATAWIDTH_8 = 3 +} hal_uart_datawidth_e; + + +typedef struct +{ + uint32_t baudrate; + hal_uart_stopbit_e stopbits; + hal_uart_datawidth_e data_width; + hal_uart_parity_e parity; +} hal_uart_config_t; + + +typedef struct _hal_uart_handle_t +{ + hal_uart_config_t uart_config; + void (* txdmacallback)(void); + void (* rxdmacallback)(void); +} hal_uart_handle_t; + + +typedef enum +{ + HAL_UART_OK = 0x00U, + HAL_UART_ERROR = 0x01U, + HAL_UART_BUSY = 0x02U, + HAL_UART_TIMEOUT = 0x03U +} hal_uart_status; + + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief 初始化设置uart 传输的波特率、位宽等参数 +* @param hal_uart_handle_t +* @retval hal_uart_status +*/ +hal_uart_status hal_uart_init(hal_uart_handle_t *huart); + +/** +* @brief 关闭uart口 +* @param hal_uart_handle_t +* @retval hal_uart_status +*/ +hal_uart_status hal_uart_deinit(hal_uart_handle_t *huart); + +/** +* @brief 阻塞式发送数据 +* @param hal_uart_handle_t +* @param pdata:传输数据指针 +* @param size:传输数据大小 +* @retval hal_uart_status +*/ +hal_uart_status hal_uart_transmit_blocking(hal_uart_handle_t *huart, uint8_t *pdata, uint16_t size); + +/** +* @brief 阻塞式接收数据 +* @param hal_uart_handle_t +* @param pdata:传输数据指针 +* @param size:传输数据大小 +* @retval hal_uart_status +*/ +hal_uart_status hal_uart_receive_blocking(hal_uart_handle_t *huart, uint8_t *pdata, uint16_t size); + +/** +* @brief 使用DMA发送数据,TX和RX共用一个DMA 通道,所以需要TX/RX传输完后才能进行RX/TX的传输 +* @param hal_uart_handle_t +* @param pdata:传输数据指针 +* @param size:传输数据大小 +* @retval hal_uart_status +*/ +hal_uart_status hal_uart_transmit_dma(hal_uart_handle_t *huart, uint8_t *pdata, uint16_t size); + +/** +* @brief 使用DMA发送数据,TX和RX共用一个DMA 通道,所以需要TX/RX传输完后才能进行RX/TX的传输 +* @param hal_uart_handle_t +* @param pdata:传输数据指针 +* @param size:传输数据大小 +* @retval hal_uart_status +*/ +hal_uart_status hal_uart_receive_dma(hal_uart_handle_t *huart, uint8_t *pdata, uint16_t size); + +#endif /* __HAL_UART_H__ */ diff --git a/src/sdk/include/hal_wdg.h b/src/sdk/include/hal_wdg.h new file mode 100644 index 0000000..2cc0247 --- /dev/null +++ b/src/sdk/include/hal_wdg.h @@ -0,0 +1,94 @@ +/******************************************************************************* +* +* +* File: hal_wdg.h +* Description: wdg HAL层头文件 +* Version: V0.1 +* Date: 2021-03-16 +* Author: wuc + *******************************************************************************/ +#ifndef __HAL_WDG_H__ +#define __HAL_WDG_H__ + +/******************************************************************************* +* 1.Included files +*******************************************************************************/ +#include "tau_device_datatype.h" +#include "tau_common.h" + + +/******************************************************************************* +* 2.Global constant and macro definitions using #define +*******************************************************************************/ + +/******************************************************************************* +* 3.Global structures, unions and enumerations using typedef +*******************************************************************************/ +/*! + * @brief watch dog模式 + */ +typedef enum +{ + WDG_MODE_RESET = 0, //复位模式,跑飞复位 + WDG_MODE_INTERRUPT = 1 //中断模式,跑飞进入中断 +} wdg_mode_e; + +/******************************************************************************* +* 4.Global variable extern declarations +*******************************************************************************/ + +/******************************************************************************* +* 5.Global function prototypes +*******************************************************************************/ +/** +* @brief 看门狗初始化 +* @param 无 +* @retval 无 +*/ +void hal_wdg_init(void); + +/** +* @brief 看门狗反初始化 +* @param 无 +* @retval 无 +*/ +void hal_wdg_deinit(void); + +/** +* @brief 启动看门狗 +* @param wdg_mode_e modeSel: 复位或中断模式 +* @param uint32_t load: 超时时间,单位ms +* @retval 无 +*/ +void hal_wdg_start(wdg_mode_e modeSel, uint32_t load); + +/** +* @brief 停止看门狗 +* @param 无 +* @retval 无 +*/ +void hal_wdg_stop(void); + +/** +* @brief 设置WDG是否循环超时 +* @param enable:循环超时使能 +* @retval 无 +*/ +void hal_wdg_set_repeat(bool repeat); + +/** +* @brief 注册中断回调函数 +* @param cb_func:回调函数地址 +* @param data:回调参数地址 +* @retval 无 +*/ +void hal_wdg_register_callback(fcb_type cb_func, void *data); + +/** +* @brief 喂狗 +* @param 无 +* @retval 无 +*/ +void hal_wdg_kick_dog(void); + +#endif /* __HAL_WDG_H__ */ diff --git a/src/sdk/sdk_version.h b/src/sdk/sdk_version.h new file mode 100644 index 0000000..def350e --- /dev/null +++ b/src/sdk/sdk_version.h @@ -0,0 +1 @@ +#define SDK_REVISION 4243 \ No newline at end of file