#include "update_loader_download.h" #include "update.h" #include "btctrler_task.h" #include "app_config.h" #include "asm/power/p33.h" #include "asm/power_interface.h" void power_set_mode(u8 mode); #if defined(CONFIG_SPP_AND_LE_CASE_ENABLE) || defined(CONFIG_HID_CASE_ENABLE) #include "lib_profile_cfg.h" #else #include "bt_profile_cfg.h" #endif #if (SMART_BOX_EN) && (CONFIG_WATCH_CASE_ENABLE) #include "smartbox/smartbox_task.h" #endif #define LOG_TAG "[TEST-UPDATE]" #define LOG_INFO_ENABLE #define LOG_ERROR_ENABLE #include "system/debug.h" extern u8 check_le_conn_disconnet_flag(void); extern void ble_app_disconnect(void); extern void ll_hci_destory(void); extern void ram_protect_close(void); extern void update_close_hw(void *filter_name); extern void btctrler_testbox_update_msg_handle_register(void (*handle)(int)); extern void __bt_updata_reset_bt_bredrexm_addr(void); extern int __bt_updata_save_connection_info(void); extern const update_op_api_t lmp_ch_update_op; extern const update_op_api_t ble_ll_ch_update_op; static u8 ble_update_ready_jump_flag = 0; static void testbox_bt_classic_update_private_param_fill(UPDATA_PARM *p) { } static void testbox_bt_classic_update_before_jump_handle(int type) { if (UPDATE_MODULE_IS_SUPPORT(UPDATE_BT_LMP_EN)) { #if TCFG_USER_TWS_ENABLE || TCFG_USER_BLE_ENABLE log_info("close ble hw\n"); ll_hci_destory(); #endif y_printf("\n >>>[test]:func = %s,line= %d\n", __FUNCTION__, __LINE__); update_close_hw("bredr"); if (__bt_updata_save_connection_info()) { log_error("bt save conn info fail!\n"); return; } ram_protect_close(); //note:last func will not return; power_set_mode(PWR_LDO15); __bt_updata_reset_bt_bredrexm_addr(); } } static void testbox_bt_classic_update_state_cbk(int type, u32 state, void *priv) { update_ret_code_t *ret_code = (update_ret_code_t *)priv; if (ret_code) { log_info("state:%x err:%x\n", ret_code->stu, ret_code->err_code); } switch (state) { case UPDATE_CH_EXIT: if (UPDATE_DUAL_BANK_IS_SUPPORT()) { if ((0 == ret_code->stu) && (0 == ret_code->err_code)) { log_info("bt update succ\n"); update_result_set(UPDATA_SUCC); } else { log_info("bt update fail\n"); update_result_set(UPDATA_DEV_ERR); } } else { if ((0 == ret_code->stu) && (0 == ret_code->err_code)) { //update_mode_api(BT_UPDATA); update_mode_api_v2(BT_UPDATA, testbox_bt_classic_update_private_param_fill, testbox_bt_classic_update_before_jump_handle); } else if ((1 == ret_code->stu)) { //文件相同的情况 cpu_reset(); } } break; } } u8 ble_update_get_ready_jump_flag(void) { return ble_update_ready_jump_flag; } static void testbox_ble_update_private_param_fill(UPDATA_PARM *p) { u8 addr[6]; extern int le_controller_get_mac(void *addr); if (BT_MODULES_IS_SUPPORT(BT_MODULE_LE) && UPDATE_MODULE_IS_SUPPORT(UPDATE_BLE_TEST_EN)) { le_controller_get_mac(addr); //memcpy(p->parm_priv, addr, 6); update_param_priv_fill(p, addr, sizeof(addr)); puts("ble addr:\n"); put_buf(p->parm_priv, 6); } } static void testbox_ble_update_before_jump_handle(int type) { if (BT_MODULES_IS_SUPPORT(BT_MODULE_LE) && UPDATE_MODULE_IS_SUPPORT(UPDATE_BLE_TEST_EN)) { ll_hci_destory(); } #if CONFIG_UPDATE_JUMP_TO_MASK y_printf(">>>[test]:latch reset update\n"); latch_reset(); #if 0 update_close_hw("null"); ram_protect_close(); /* save_spi_port(); */ extern void __BT_UPDATA_JUMP(); y_printf("update jump to __BT_UPDATA ...\n"); /* clk_set("sys", 48 * 1000000L); */ //跳转到uboot加载完,30ms左右(200410_yzb) __BT_UPDATA_JUMP(); #endif #else cpu_reset(); #endif } static void testbox_ble_update_state_cbk(int type, u32 state, void *priv) { update_ret_code_t *ret_code = (update_ret_code_t *)priv; if (ret_code) { printf("ret_code->stu:%d err_code:%d\n", ret_code->stu, ret_code->err_code); } switch (state) { case UPDATE_CH_EXIT: if (UPDATE_DUAL_BANK_IS_SUPPORT()) { if ((0 == ret_code->stu) && (0 == ret_code->err_code)) { log_info("bt update succ\n"); update_result_set(UPDATA_SUCC); } else { log_info("bt update fail\n"); update_result_set(UPDATA_DEV_ERR); } } else { if ((0 == ret_code->stu) && (0 == ret_code->err_code)) { #if TCFG_USER_BLE_ENABLE && (TCFG_BLE_DEMO_SELECT != DEF_BLE_DEMO_NULL) \ &&(TCFG_BLE_DEMO_SELECT != DEF_BLE_DEMO_ADV) \ && (TCFG_BLE_DEMO_SELECT != DEF_BLE_DEMO_CLIENT) \ || defined(CONFIG_MESH_CASE_ENABLE) ble_update_ready_jump_flag = 1; /* ble_app_disconnect(); */ extern void ble_module_enable(u8 en); ble_module_enable(0); u8 cnt = 0; while (!check_le_conn_disconnet_flag()) { log_info("wait discon\n"); os_time_dly(2); if (cnt++ > 5) { break; } } //update_mode_api(BLE_TEST_UPDATA); update_mode_api_v2(BLE_TEST_UPDATA, testbox_ble_update_private_param_fill, testbox_ble_update_before_jump_handle); #endif } else if ((1 == ret_code->stu)) { //文件相同的情况,默认是复位 #if TCFG_USER_BLE_ENABLE && (TCFG_BLE_DEMO_SELECT != DEF_BLE_DEMO_NULL) \ &&(TCFG_BLE_DEMO_SELECT != DEF_BLE_DEMO_ADV || defined(CONFIG_MESH_CASE_ENABLE))\ && (TCFG_BLE_DEMO_SELECT != DEF_BLE_DEMO_CLIENT) extern void ble_module_enable(u8 en); ble_module_enable(0); u8 cnt = 0; while (!check_le_conn_disconnet_flag()) { log_info("wait discon\n"); os_time_dly(2); if (cnt++ > 5) { break; } } #endif cpu_reset(); } } break; } } void testbox_update_msg_handle(int msg) { log_info("msg:%x\n", msg); switch (msg) { case MSG_BT_UPDATE_LOADER_DOWNLOAD_START: if (UPDATE_MODULE_IS_SUPPORT(UPDATE_BT_LMP_EN)) { #if (SMART_BOX_EN) && (CONFIG_WATCH_CASE_ENABLE) app_smartbox_task_prepare(0, SMARTBOX_TASK_ACTION_WATCH_TRANSFER, 0); #endif update_mode_info_t info = { .type = BT_UPDATA, .state_cbk = testbox_bt_classic_update_state_cbk, .p_op_api = &lmp_ch_update_op, .task_en = 1, }; app_active_update_task_init(&info); } break; case MSG_BLE_TEST_OTA_LOADER_DOWNLOAD_START: if (UPDATE_MODULE_IS_SUPPORT(UPDATE_BLE_TEST_EN)) { update_mode_info_t info = { .type = BLE_TEST_UPDATA, .state_cbk = testbox_ble_update_state_cbk, .p_op_api = &ble_ll_ch_update_op, .task_en = 1, }; app_active_update_task_init(&info); } break; defaut: log_error("not support update msg:%x\n", msg); break; } } void testbox_update_init(void) { if (UPDATE_MODULE_IS_SUPPORT(UPDATE_BLE_TEST_EN) || UPDATE_MODULE_IS_SUPPORT(UPDATE_BT_LMP_EN)) { log_info("testbox msg handle reg:%x\n", testbox_update_msg_handle); btctrler_testbox_update_msg_handle_register(testbox_update_msg_handle); } }