mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-30 08:20:21 +00:00
60a9d7e6cf
* ble: profile rework, initial * apps: hid: fix for pairing cleanup * app: hid: select transport based on #define * fixing PVS warnings * ble: serial service: fixed uid naming * bt service: on-demand dialog init; ble profiles: docs; battery svc: proper update * Added shci_cmd_resp_wait/shci_cmd_resp_release impl with semaphore * app: hid: separated transport code * ble: fixed service init order for serial svc; moved hardfault check to ble_glue * cli: ps: added thread prio to output, fixed heap display * ble_glue: naming changes; separate thread for event processing; * furi: added runtime stats; cli: added cpu% to `ps` * cli: fixed thread time calculation * furi: added getter for thread priority * fixing pvs warnings * hid profile: fixed naming * more naming fixes * hal: ble init small cleanup * cleanup & draft beacon api * f18: api sync * apps: moved example_custom_font from debug to examples * BLE extra beacon demo app * naming fix * UI fixes for demo app (wip) * desktop, ble svc: added statusbar icon for beacon * minor cleanup * Minor cleanup & naming fixes * api sync * Removed stale header * hal: added FURI_BLE_EXTRA_LOG for extra logging; comments & code cleanup * naming & macro fixes * quick fixes from review * Eliminated stock svc_ctl * cli: ps: removed runtime stats * minor include fixes * (void) * naming fixes * More naming fixes * fbt: always build all libs * fbt: explicitly globbing libs; dist: logging SDK path * scripts: fixed lib path precedence * hal: bt: profiles: naming changes, support for passing params to a profile; include cleanup * ble: hid: added parameter processing for profile template * api sync * BLE HID: long name trim * Removed unused check * desktop: updated beacon status icon; ble: hid: cleaner device name management * desktop: updated status icon Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: nminaylov <nm29719@gmail.com>
436 lines
14 KiB
C
436 lines
14 KiB
C
#include "ble_glue.h"
|
|
#include "app_common.h"
|
|
#include "ble_app.h"
|
|
#include "ble_event_thread.h"
|
|
|
|
#include <furi_hal_cortex.h>
|
|
#include <core/mutex.h>
|
|
#include <core/timer.h>
|
|
#include <ble/ble.h>
|
|
#include <hci_tl.h>
|
|
|
|
#include <interface/patterns/ble_thread/tl/tl.h>
|
|
#include <interface/patterns/ble_thread/shci/shci.h>
|
|
#include <interface/patterns/ble_thread/tl/shci_tl.h>
|
|
#include "app_debug.h"
|
|
|
|
#include <furi_hal.h>
|
|
|
|
#define TAG "Core2"
|
|
|
|
#define BLE_GLUE_HARDFAULT_CHECK_PERIOD_MS (5000)
|
|
|
|
#define BLE_GLUE_HARDFAULT_INFO_MAGIC (0x1170FD0F)
|
|
|
|
#define POOL_SIZE \
|
|
(CFG_TLBLE_EVT_QUEUE_LENGTH * 4U * \
|
|
DIVC((sizeof(TL_PacketHeader_t) + TL_BLE_EVENT_FRAME_SIZE), 4U))
|
|
|
|
PLACE_IN_SECTION("MB_MEM2") ALIGN(4) static uint8_t ble_event_pool[POOL_SIZE];
|
|
PLACE_IN_SECTION("MB_MEM2") ALIGN(4) static TL_CmdPacket_t ble_glue_cmd_buff;
|
|
PLACE_IN_SECTION("MB_MEM2")
|
|
ALIGN(4)
|
|
static uint8_t ble_glue_spare_event_buff[sizeof(TL_PacketHeader_t) + TL_EVT_HDR_SIZE + 255U];
|
|
PLACE_IN_SECTION("MB_MEM2")
|
|
ALIGN(4)
|
|
static uint8_t ble_spare_event_buff[sizeof(TL_PacketHeader_t) + TL_EVT_HDR_SIZE + 255];
|
|
|
|
typedef struct {
|
|
FuriMutex* shci_mtx;
|
|
FuriTimer* hardfault_check_timer;
|
|
BleGlueStatus status;
|
|
BleGlueKeyStorageChangedCallback callback;
|
|
BleGlueC2Info c2_info;
|
|
void* context;
|
|
} BleGlue;
|
|
|
|
static BleGlue* ble_glue = NULL;
|
|
|
|
// static int32_t ble_glue_shci_thread(void* argument);
|
|
static void ble_sys_status_not_callback(SHCI_TL_CmdStatus_t status);
|
|
static void ble_sys_user_event_callback(void* pPayload);
|
|
static void ble_glue_clear_shared_memory();
|
|
|
|
void ble_glue_set_key_storage_changed_callback(
|
|
BleGlueKeyStorageChangedCallback callback,
|
|
void* context) {
|
|
furi_assert(ble_glue);
|
|
furi_assert(callback);
|
|
ble_glue->callback = callback;
|
|
ble_glue->context = context;
|
|
}
|
|
|
|
static void furi_hal_bt_hardfault_check(void* context) {
|
|
UNUSED(context);
|
|
if(ble_glue_get_hardfault_info()) {
|
|
furi_crash("ST(R) Copro(R) HardFault");
|
|
}
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void ble_glue_init(void) {
|
|
ble_glue = malloc(sizeof(BleGlue));
|
|
ble_glue->status = BleGlueStatusStartup;
|
|
ble_glue->hardfault_check_timer =
|
|
furi_timer_alloc(furi_hal_bt_hardfault_check, FuriTimerTypePeriodic, NULL);
|
|
furi_timer_start(ble_glue->hardfault_check_timer, BLE_GLUE_HARDFAULT_CHECK_PERIOD_MS);
|
|
|
|
#ifdef BLE_GLUE_DEBUG
|
|
APPD_Init();
|
|
#endif
|
|
|
|
// Initialize all transport layers
|
|
TL_MM_Config_t tl_mm_config;
|
|
SHCI_TL_HciInitConf_t SHci_Tl_Init_Conf;
|
|
// Reference table initialization
|
|
TL_Init();
|
|
|
|
ble_glue->shci_mtx = furi_mutex_alloc(FuriMutexTypeNormal);
|
|
|
|
// FreeRTOS system task creation
|
|
ble_event_thread_start();
|
|
|
|
// System channel initialization
|
|
SHci_Tl_Init_Conf.p_cmdbuffer = (uint8_t*)&ble_glue_cmd_buff;
|
|
SHci_Tl_Init_Conf.StatusNotCallBack = ble_sys_status_not_callback;
|
|
shci_init(ble_sys_user_event_callback, (void*)&SHci_Tl_Init_Conf);
|
|
|
|
/**< Memory Manager channel initialization */
|
|
tl_mm_config.p_BleSpareEvtBuffer = ble_spare_event_buff;
|
|
tl_mm_config.p_SystemSpareEvtBuffer = ble_glue_spare_event_buff;
|
|
tl_mm_config.p_AsynchEvtPool = ble_event_pool;
|
|
tl_mm_config.AsynchEvtPoolSize = POOL_SIZE;
|
|
TL_MM_Init(&tl_mm_config);
|
|
TL_Enable();
|
|
|
|
/*
|
|
* From now, the application is waiting for the ready event ( VS_HCI_C2_Ready )
|
|
* received on the system channel before starting the Stack
|
|
* This system event is received with ble_sys_user_event_callback()
|
|
*/
|
|
}
|
|
|
|
const BleGlueC2Info* ble_glue_get_c2_info(void) {
|
|
return &ble_glue->c2_info;
|
|
}
|
|
|
|
BleGlueStatus ble_glue_get_c2_status(void) {
|
|
return ble_glue->status;
|
|
}
|
|
|
|
static const char* ble_glue_get_reltype_str(const uint8_t reltype) {
|
|
static char relcode[3] = {0};
|
|
switch(reltype) {
|
|
case INFO_STACK_TYPE_BLE_FULL:
|
|
return "F";
|
|
case INFO_STACK_TYPE_BLE_HCI:
|
|
return "H";
|
|
case INFO_STACK_TYPE_BLE_LIGHT:
|
|
return "L";
|
|
case INFO_STACK_TYPE_BLE_BEACON:
|
|
return "Be";
|
|
case INFO_STACK_TYPE_BLE_BASIC:
|
|
return "Ba";
|
|
case INFO_STACK_TYPE_BLE_FULL_EXT_ADV:
|
|
return "F+";
|
|
case INFO_STACK_TYPE_BLE_HCI_EXT_ADV:
|
|
return "H+";
|
|
default:
|
|
snprintf(relcode, sizeof(relcode), "%X", reltype);
|
|
return relcode;
|
|
}
|
|
}
|
|
|
|
static void ble_glue_update_c2_fw_info(void) {
|
|
WirelessFwInfo_t wireless_info;
|
|
SHCI_GetWirelessFwInfo(&wireless_info);
|
|
BleGlueC2Info* local_info = &ble_glue->c2_info;
|
|
|
|
local_info->VersionMajor = wireless_info.VersionMajor;
|
|
local_info->VersionMinor = wireless_info.VersionMinor;
|
|
local_info->VersionSub = wireless_info.VersionSub;
|
|
local_info->VersionBranch = wireless_info.VersionBranch;
|
|
local_info->VersionReleaseType = wireless_info.VersionReleaseType;
|
|
|
|
local_info->MemorySizeSram2B = wireless_info.MemorySizeSram2B;
|
|
local_info->MemorySizeSram2A = wireless_info.MemorySizeSram2A;
|
|
local_info->MemorySizeSram1 = wireless_info.MemorySizeSram1;
|
|
local_info->MemorySizeFlash = wireless_info.MemorySizeFlash;
|
|
|
|
local_info->StackType = wireless_info.StackType;
|
|
snprintf(
|
|
local_info->StackTypeString,
|
|
BLE_MAX_VERSION_STRING_LEN,
|
|
"%d.%d.%d:%s",
|
|
local_info->VersionMajor,
|
|
local_info->VersionMinor,
|
|
local_info->VersionSub,
|
|
ble_glue_get_reltype_str(local_info->StackType));
|
|
|
|
local_info->FusVersionMajor = wireless_info.FusVersionMajor;
|
|
local_info->FusVersionMinor = wireless_info.FusVersionMinor;
|
|
local_info->FusVersionSub = wireless_info.FusVersionSub;
|
|
local_info->FusMemorySizeSram2B = wireless_info.FusMemorySizeSram2B;
|
|
local_info->FusMemorySizeSram2A = wireless_info.FusMemorySizeSram2A;
|
|
local_info->FusMemorySizeFlash = wireless_info.FusMemorySizeFlash;
|
|
}
|
|
|
|
static void ble_glue_dump_stack_info(void) {
|
|
const BleGlueC2Info* c2_info = &ble_glue->c2_info;
|
|
FURI_LOG_I(
|
|
TAG,
|
|
"Core2: FUS: %d.%d.%d, mem %d/%d, flash %d pages",
|
|
c2_info->FusVersionMajor,
|
|
c2_info->FusVersionMinor,
|
|
c2_info->FusVersionSub,
|
|
c2_info->FusMemorySizeSram2B,
|
|
c2_info->FusMemorySizeSram2A,
|
|
c2_info->FusMemorySizeFlash);
|
|
FURI_LOG_I(
|
|
TAG,
|
|
"Core2: Stack: %d.%d.%d, branch %d, reltype %d, stacktype %d, flash %d pages",
|
|
c2_info->VersionMajor,
|
|
c2_info->VersionMinor,
|
|
c2_info->VersionSub,
|
|
c2_info->VersionBranch,
|
|
c2_info->VersionReleaseType,
|
|
c2_info->StackType,
|
|
c2_info->MemorySizeFlash);
|
|
}
|
|
|
|
bool ble_glue_wait_for_c2_start(int32_t timeout_ms) {
|
|
bool started = false;
|
|
|
|
FuriHalCortexTimer timer = furi_hal_cortex_timer_get(timeout_ms * 1000);
|
|
do {
|
|
furi_delay_tick(1);
|
|
started = ble_glue->status == BleGlueStatusC2Started;
|
|
} while(!started && !furi_hal_cortex_timer_is_expired(timer));
|
|
|
|
if(!started) {
|
|
FURI_LOG_E(TAG, "C2 startup failed");
|
|
ble_glue->status = BleGlueStatusBroken;
|
|
return false;
|
|
}
|
|
|
|
FURI_LOG_I(
|
|
TAG,
|
|
"C2 boot completed, mode: %s",
|
|
ble_glue->c2_info.mode == BleGlueC2ModeFUS ? "FUS" : "Stack");
|
|
ble_glue_update_c2_fw_info();
|
|
ble_glue_dump_stack_info();
|
|
return true;
|
|
}
|
|
|
|
bool ble_glue_start(void) {
|
|
furi_assert(ble_glue);
|
|
|
|
if(ble_glue->status != BleGlueStatusC2Started) {
|
|
return false;
|
|
}
|
|
|
|
if(!ble_app_init()) {
|
|
FURI_LOG_E(TAG, "Radio stack startup failed");
|
|
ble_glue->status = BleGlueStatusRadioStackMissing;
|
|
ble_app_deinit();
|
|
return false;
|
|
}
|
|
|
|
FURI_LOG_I(TAG, "Radio stack started");
|
|
ble_glue->status = BleGlueStatusRadioStackRunning;
|
|
return true;
|
|
}
|
|
|
|
void ble_glue_stop(void) {
|
|
furi_assert(ble_glue);
|
|
|
|
ble_event_thread_stop();
|
|
// Free resources
|
|
furi_mutex_free(ble_glue->shci_mtx);
|
|
furi_timer_free(ble_glue->hardfault_check_timer);
|
|
|
|
ble_glue_clear_shared_memory();
|
|
free(ble_glue);
|
|
ble_glue = NULL;
|
|
}
|
|
|
|
bool ble_glue_is_alive(void) {
|
|
if(!ble_glue) {
|
|
return false;
|
|
}
|
|
|
|
return ble_glue->status >= BleGlueStatusC2Started;
|
|
}
|
|
|
|
bool ble_glue_is_radio_stack_ready(void) {
|
|
if(!ble_glue) {
|
|
return false;
|
|
}
|
|
|
|
return ble_glue->status == BleGlueStatusRadioStackRunning;
|
|
}
|
|
|
|
BleGlueCommandResult ble_glue_force_c2_mode(BleGlueC2Mode desired_mode) {
|
|
furi_check(desired_mode > BleGlueC2ModeUnknown);
|
|
|
|
if(desired_mode == ble_glue->c2_info.mode) {
|
|
return BleGlueCommandResultOK;
|
|
}
|
|
|
|
if((ble_glue->c2_info.mode == BleGlueC2ModeFUS) && (desired_mode == BleGlueC2ModeStack)) {
|
|
if((ble_glue->c2_info.VersionMajor == 0) && (ble_glue->c2_info.VersionMinor == 0)) {
|
|
FURI_LOG_W(TAG, "Stack isn't installed!");
|
|
return BleGlueCommandResultError;
|
|
}
|
|
SHCI_CmdStatus_t status = SHCI_C2_FUS_StartWs();
|
|
if(status) {
|
|
FURI_LOG_E(TAG, "Failed to start Radio Stack with status: %02X", status);
|
|
return BleGlueCommandResultError;
|
|
}
|
|
return BleGlueCommandResultRestartPending;
|
|
}
|
|
if((ble_glue->c2_info.mode == BleGlueC2ModeStack) && (desired_mode == BleGlueC2ModeFUS)) {
|
|
SHCI_FUS_GetState_ErrorCode_t error_code = 0;
|
|
uint8_t fus_state = SHCI_C2_FUS_GetState(&error_code);
|
|
FURI_LOG_D(TAG, "FUS state: %X, error = %x", fus_state, error_code);
|
|
if(fus_state == SHCI_FUS_CMD_NOT_SUPPORTED) {
|
|
// Second call to SHCI_C2_FUS_GetState() restarts whole MCU & boots FUS
|
|
fus_state = SHCI_C2_FUS_GetState(&error_code);
|
|
FURI_LOG_D(TAG, "FUS state#2: %X, error = %x", fus_state, error_code);
|
|
return BleGlueCommandResultRestartPending;
|
|
}
|
|
return BleGlueCommandResultOK;
|
|
}
|
|
|
|
return BleGlueCommandResultError;
|
|
}
|
|
|
|
static void ble_sys_status_not_callback(SHCI_TL_CmdStatus_t status) {
|
|
switch(status) {
|
|
case SHCI_TL_CmdBusy:
|
|
furi_mutex_acquire(ble_glue->shci_mtx, FuriWaitForever);
|
|
break;
|
|
case SHCI_TL_CmdAvailable:
|
|
furi_mutex_release(ble_glue->shci_mtx);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* The type of the payload for a system user event is tSHCI_UserEvtRxParam
|
|
* When the system event is both :
|
|
* - a ready event (subevtcode = SHCI_SUB_EVT_CODE_READY)
|
|
* - reported by the FUS (sysevt_ready_rsp == FUS_FW_RUNNING)
|
|
* The buffer shall not be released
|
|
* ( eg ((tSHCI_UserEvtRxParam*)pPayload)->status shall be set to SHCI_TL_UserEventFlow_Disable )
|
|
* When the status is not filled, the buffer is released by default
|
|
*/
|
|
static void ble_sys_user_event_callback(void* pPayload) {
|
|
UNUSED(pPayload);
|
|
|
|
#ifdef BLE_GLUE_DEBUG
|
|
APPD_EnableCPU2();
|
|
#endif
|
|
|
|
TL_AsynchEvt_t* p_sys_event =
|
|
(TL_AsynchEvt_t*)(((tSHCI_UserEvtRxParam*)pPayload)->pckt->evtserial.evt.payload);
|
|
|
|
if(p_sys_event->subevtcode == SHCI_SUB_EVT_CODE_READY) {
|
|
FURI_LOG_I(TAG, "Core2 started");
|
|
SHCI_C2_Ready_Evt_t* p_c2_ready_evt = (SHCI_C2_Ready_Evt_t*)p_sys_event->payload;
|
|
if(p_c2_ready_evt->sysevt_ready_rsp == WIRELESS_FW_RUNNING) {
|
|
ble_glue->c2_info.mode = BleGlueC2ModeStack;
|
|
} else if(p_c2_ready_evt->sysevt_ready_rsp == FUS_FW_RUNNING) {
|
|
ble_glue->c2_info.mode = BleGlueC2ModeFUS;
|
|
}
|
|
|
|
ble_glue->status = BleGlueStatusC2Started;
|
|
} else if(p_sys_event->subevtcode == SHCI_SUB_EVT_ERROR_NOTIF) {
|
|
FURI_LOG_E(TAG, "Error during initialization");
|
|
} else if(p_sys_event->subevtcode == SHCI_SUB_EVT_BLE_NVM_RAM_UPDATE) {
|
|
SHCI_C2_BleNvmRamUpdate_Evt_t* p_sys_ble_nvm_ram_update_event =
|
|
(SHCI_C2_BleNvmRamUpdate_Evt_t*)p_sys_event->payload;
|
|
if(ble_glue->callback) {
|
|
ble_glue->callback(
|
|
(uint8_t*)p_sys_ble_nvm_ram_update_event->StartAddress,
|
|
p_sys_ble_nvm_ram_update_event->Size,
|
|
ble_glue->context);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void ble_glue_clear_shared_memory(void) {
|
|
memset(ble_event_pool, 0, sizeof(ble_event_pool));
|
|
memset(&ble_glue_cmd_buff, 0, sizeof(ble_glue_cmd_buff));
|
|
memset(ble_glue_spare_event_buff, 0, sizeof(ble_glue_spare_event_buff));
|
|
memset(ble_spare_event_buff, 0, sizeof(ble_spare_event_buff));
|
|
}
|
|
|
|
bool ble_glue_reinit_c2(void) {
|
|
return (SHCI_C2_Reinit() == SHCI_Success);
|
|
}
|
|
|
|
BleGlueCommandResult ble_glue_fus_stack_delete(void) {
|
|
FURI_LOG_I(TAG, "Erasing stack");
|
|
SHCI_CmdStatus_t erase_stat = SHCI_C2_FUS_FwDelete();
|
|
FURI_LOG_I(TAG, "Cmd res = %x", erase_stat);
|
|
if(erase_stat == SHCI_Success) {
|
|
return BleGlueCommandResultOperationOngoing;
|
|
}
|
|
ble_glue_fus_get_status();
|
|
return BleGlueCommandResultError;
|
|
}
|
|
|
|
BleGlueCommandResult ble_glue_fus_stack_install(uint32_t src_addr, uint32_t dst_addr) {
|
|
FURI_LOG_I(TAG, "Installing stack");
|
|
SHCI_CmdStatus_t write_stat = SHCI_C2_FUS_FwUpgrade(src_addr, dst_addr);
|
|
FURI_LOG_I(TAG, "Cmd res = %x", write_stat);
|
|
if(write_stat == SHCI_Success) {
|
|
return BleGlueCommandResultOperationOngoing;
|
|
}
|
|
ble_glue_fus_get_status();
|
|
return BleGlueCommandResultError;
|
|
}
|
|
|
|
BleGlueCommandResult ble_glue_fus_get_status(void) {
|
|
furi_check(ble_glue->c2_info.mode == BleGlueC2ModeFUS);
|
|
|
|
SHCI_FUS_GetState_ErrorCode_t error_code = 0;
|
|
uint8_t fus_state = SHCI_C2_FUS_GetState(&error_code);
|
|
FURI_LOG_I(TAG, "FUS state: %x, error: %x", fus_state, error_code);
|
|
if((error_code != 0) || (fus_state == FUS_STATE_VALUE_ERROR)) {
|
|
return BleGlueCommandResultError;
|
|
} else if(
|
|
(fus_state >= FUS_STATE_VALUE_FW_UPGRD_ONGOING) &&
|
|
(fus_state <= FUS_STATE_VALUE_SERVICE_ONGOING_END)) {
|
|
return BleGlueCommandResultOperationOngoing;
|
|
}
|
|
return BleGlueCommandResultOK;
|
|
}
|
|
|
|
BleGlueCommandResult ble_glue_fus_wait_operation(void) {
|
|
furi_check(ble_glue->c2_info.mode == BleGlueC2ModeFUS);
|
|
|
|
while(true) {
|
|
BleGlueCommandResult fus_status = ble_glue_fus_get_status();
|
|
if(fus_status == BleGlueCommandResultOperationOngoing) {
|
|
furi_delay_ms(20);
|
|
} else if(fus_status == BleGlueCommandResultError) {
|
|
return BleGlueCommandResultError;
|
|
} else {
|
|
return BleGlueCommandResultOK;
|
|
}
|
|
}
|
|
}
|
|
|
|
const BleGlueHardfaultInfo* ble_glue_get_hardfault_info(void) {
|
|
/* AN5289, 4.8.2 */
|
|
const BleGlueHardfaultInfo* info = (BleGlueHardfaultInfo*)(SRAM2A_BASE);
|
|
if(info->magic != BLE_GLUE_HARDFAULT_INFO_MAGIC) {
|
|
return NULL;
|
|
}
|
|
return info;
|
|
}
|