app_debug.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. #include "utilities_common.h"
  2. #include "app_common.h"
  3. #include "app_debug.h"
  4. #include "shci.h"
  5. #include "tl.h"
  6. #include "dbg_trace.h"
  7. #include <furi_hal.h>
  8. typedef PACKED_STRUCT {
  9. GPIO_TypeDef* port;
  10. uint16_t pin;
  11. uint8_t enable;
  12. uint8_t reserved;
  13. }
  14. APPD_GpioConfig_t;
  15. #define GPIO_NBR_OF_RF_SIGNALS 9
  16. #define GPIO_CFG_NBR_OF_FEATURES 34
  17. #define NBR_OF_TRACES_CONFIG_PARAMETERS 4
  18. #define NBR_OF_GENERAL_CONFIG_PARAMETERS 4
  19. /**
  20. * THIS SHALL BE SET TO A VALUE DIFFERENT FROM 0 ONLY ON REQUEST FROM ST SUPPORT
  21. */
  22. #define BLE_DTB_CFG 0
  23. // #define BLE_DTB_CFG 7
  24. #define SYS_DBG_CFG1 (SHCI_C2_DEBUG_OPTIONS_IPCORE_LP | SHCI_C2_DEBUG_OPTIONS_CPU2_STOP_EN)
  25. /* Private variables ---------------------------------------------------------*/
  26. PLACE_IN_SECTION("MB_MEM2")
  27. ALIGN(4) static SHCI_C2_DEBUG_TracesConfig_t APPD_TracesConfig = {0, 0, 0, 0};
  28. PLACE_IN_SECTION("MB_MEM2")
  29. ALIGN(4)
  30. static SHCI_C2_DEBUG_GeneralConfig_t APPD_GeneralConfig = {BLE_DTB_CFG, SYS_DBG_CFG1, {0, 0}};
  31. /**
  32. * THE DEBUG ON GPIO FOR CPU2 IS INTENDED TO BE USED ONLY ON REQUEST FROM ST SUPPORT
  33. * It provides timing information on the CPU2 activity.
  34. * All configuration of (port, pin) is supported for each features and can be selected by the user
  35. * depending on the availability
  36. */
  37. static const APPD_GpioConfig_t aGpioConfigList[GPIO_CFG_NBR_OF_FEATURES] = {
  38. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* BLE_ISR - Set on Entry / Reset on Exit */
  39. {GPIOA, LL_GPIO_PIN_7, 1, 0}, /* BLE_STACK_TICK - Set on Entry / Reset on Exit */
  40. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* BLE_CMD_PROCESS - Set on Entry / Reset on Exit */
  41. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* BLE_ACL_DATA_PROCESS - Set on Entry / Reset on Exit */
  42. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* SYS_CMD_PROCESS - Set on Entry / Reset on Exit */
  43. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* RNG_PROCESS - Set on Entry / Reset on Exit */
  44. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* NVM_PROCESS - Set on Entry / Reset on Exit */
  45. {GPIOB, LL_GPIO_PIN_3, 1, 0}, /* IPCC_GENERAL - Set on Entry / Reset on Exit */
  46. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_BLE_CMD_RX - Set on Entry / Reset on Exit */
  47. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_BLE_EVT_TX - Set on Entry / Reset on Exit */
  48. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_BLE_ACL_DATA_RX - Set on Entry / Reset on Exit */
  49. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_SYS_CMD_RX - Set on Entry / Reset on Exit */
  50. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_SYS_EVT_TX - Set on Entry / Reset on Exit */
  51. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_CLI_CMD_RX - Set on Entry / Reset on Exit */
  52. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_OT_CMD_RX - Set on Entry / Reset on Exit */
  53. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_OT_ACK_TX - Set on Entry / Reset on Exit */
  54. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_CLI_ACK_TX - Set on Entry / Reset on Exit */
  55. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_MEM_MANAGER_RX - Set on Entry / Reset on Exit */
  56. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* IPCC_TRACES_TX - Set on Entry / Reset on Exit */
  57. {GPIOA, LL_GPIO_PIN_6, 1, 0}, /* HARD_FAULT - Set on Entry / Reset on Exit */
  58. /* From v1.1.1 */
  59. {GPIOC, LL_GPIO_PIN_1, 1, 0}, /* IP_CORE_LP_STATUS - Set on Entry / Reset on Exit */
  60. /* From v1.2.0 */
  61. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* END_OF_CONNECTION_EVENT - Set on Entry / Reset on Exit */
  62. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* TIMER_SERVER_CALLBACK - Toggle on Entry */
  63. {GPIOA, LL_GPIO_PIN_4, 1, 0}, /* PES_ACTIVITY - Set on Entry / Reset on Exit */
  64. {GPIOB, LL_GPIO_PIN_2, 1, 0}, /* MB_BLE_SEND_EVT - Set on Entry / Reset on Exit */
  65. /* From v1.3.0 */
  66. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* BLE_NO_DELAY - Set on Entry / Reset on Exit */
  67. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* BLE_STACK_STORE_NVM_CB - Set on Entry / Reset on Exit */
  68. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* NVMA_WRITE_ONGOING - Set on Entry / Reset on Exit */
  69. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* NVMA_WRITE_COMPLETE - Set on Entry / Reset on Exit */
  70. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* NVMA_CLEANUP - Set on Entry / Reset on Exit */
  71. /* From v1.4.0 */
  72. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* NVMA_START - Set on Entry / Reset on Exit */
  73. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* FLASH_EOP - Set on Entry / Reset on Exit */
  74. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* FLASH_WRITE - Set on Entry / Reset on Exit */
  75. {GPIOA, LL_GPIO_PIN_0, 0, 0}, /* FLASH_ERASE - Set on Entry / Reset on Exit */
  76. };
  77. /**
  78. * THE DEBUG ON GPIO FOR CPU2 IS INTENDED TO BE USED ONLY ON REQUEST FROM ST SUPPORT
  79. * This table is relevant only for BLE
  80. * It provides timing information on BLE RF activity.
  81. * New signals may be allocated at any location when requested by ST
  82. * The GPIO allocated to each signal depend on the BLE_DTB_CFG value and cannot be changed
  83. */
  84. #if(BLE_DTB_CFG == 7)
  85. static const APPD_GpioConfig_t aRfConfigList[GPIO_NBR_OF_RF_SIGNALS] = {
  86. {GPIOB, LL_GPIO_PIN_2, 0, 0}, /* DTB10 - Tx/Rx SPI */
  87. {GPIOB, LL_GPIO_PIN_7, 0, 0}, /* DTB11 - Tx/Tx SPI Clk */
  88. {GPIOA, LL_GPIO_PIN_8, 0, 0}, /* DTB12 - Tx/Rx Ready & SPI Select */
  89. {GPIOA, LL_GPIO_PIN_9, 0, 0}, /* DTB13 - Tx/Rx Start */
  90. {GPIOA, LL_GPIO_PIN_10, 0, 0}, /* DTB14 - FSM0 */
  91. {GPIOA, LL_GPIO_PIN_11, 0, 0}, /* DTB15 - FSM1 */
  92. {GPIOB, LL_GPIO_PIN_8, 0, 0}, /* DTB16 - FSM2 */
  93. {GPIOB, LL_GPIO_PIN_11, 0, 0}, /* DTB17 - FSM3 */
  94. {GPIOB, LL_GPIO_PIN_10, 0, 0}, /* DTB18 - FSM4 */
  95. };
  96. #endif
  97. static void APPD_SetCPU2GpioConfig(void);
  98. static void APPD_BleDtbCfg(void);
  99. void APPD_Init() {
  100. #if(CFG_DEBUG_TRACE != 0)
  101. DbgTraceInit();
  102. #endif
  103. APPD_SetCPU2GpioConfig();
  104. APPD_BleDtbCfg();
  105. }
  106. void APPD_EnableCPU2(void) {
  107. SHCI_C2_DEBUG_Init_Cmd_Packet_t DebugCmdPacket = {
  108. {{0, 0, 0}}, /**< Does not need to be initialized */
  109. {(uint8_t*)aGpioConfigList,
  110. (uint8_t*)&APPD_TracesConfig,
  111. (uint8_t*)&APPD_GeneralConfig,
  112. GPIO_CFG_NBR_OF_FEATURES,
  113. NBR_OF_TRACES_CONFIG_PARAMETERS,
  114. NBR_OF_GENERAL_CONFIG_PARAMETERS}};
  115. /**< Traces channel initialization */
  116. TL_TRACES_Init();
  117. /** GPIO DEBUG Initialization */
  118. SHCI_C2_DEBUG_Init(&DebugCmdPacket);
  119. // We don't need External Power Amplifier
  120. // LL_GPIO_InitTypeDef gpio_config;
  121. // gpio_config.Pull = GPIO_NOPULL;
  122. // gpio_config.Mode = GPIO_MODE_OUTPUT_PP;
  123. // gpio_config.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
  124. // gpio_config.Pin = LL_GPIO_PIN_3;
  125. // HAL_GPIO_Init(GPIOC, &gpio_config);
  126. // SHCI_C2_ExtpaConfig((uint32_t)GPIOC, LL_GPIO_PIN_3, EXT_PA_ENABLED_LOW, EXT_PA_ENABLED);
  127. return;
  128. }
  129. static void APPD_SetCPU2GpioConfig(void) {
  130. LL_GPIO_InitTypeDef gpio_config = {0};
  131. uint8_t local_loop;
  132. uint16_t gpioa_pin_list;
  133. uint16_t gpiob_pin_list;
  134. uint16_t gpioc_pin_list;
  135. gpioa_pin_list = 0;
  136. gpiob_pin_list = 0;
  137. gpioc_pin_list = 0;
  138. for(local_loop = 0; local_loop < GPIO_CFG_NBR_OF_FEATURES; local_loop++) {
  139. if(aGpioConfigList[local_loop].enable != 0) {
  140. switch((uint32_t)aGpioConfigList[local_loop].port) {
  141. case(uint32_t)GPIOA:
  142. gpioa_pin_list |= aGpioConfigList[local_loop].pin;
  143. break;
  144. case(uint32_t)GPIOB:
  145. gpiob_pin_list |= aGpioConfigList[local_loop].pin;
  146. break;
  147. case(uint32_t)GPIOC:
  148. gpioc_pin_list |= aGpioConfigList[local_loop].pin;
  149. break;
  150. default:
  151. break;
  152. }
  153. }
  154. }
  155. gpio_config.Mode = LL_GPIO_MODE_OUTPUT;
  156. gpio_config.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH;
  157. gpio_config.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
  158. gpio_config.Pull = LL_GPIO_PULL_NO;
  159. // Never disable SWD, why would you?
  160. // gpio_config.Pin = LL_GPIO_PIN_15 | LL_GPIO_PIN_14 | LL_GPIO_PIN_13;
  161. // LL_GPIO_Init(GPIOA, &gpio_config);
  162. if(gpioa_pin_list != 0) {
  163. gpio_config.Pin = gpioa_pin_list;
  164. LL_C2_AHB2_GRP1_EnableClock(LL_C2_AHB2_GRP1_PERIPH_GPIOA);
  165. LL_GPIO_Init(GPIOA, &gpio_config);
  166. LL_GPIO_ResetOutputPin(GPIOA, gpioa_pin_list);
  167. }
  168. if(gpiob_pin_list != 0) {
  169. gpio_config.Pin = gpiob_pin_list;
  170. LL_C2_AHB2_GRP1_EnableClock(LL_C2_AHB2_GRP1_PERIPH_GPIOB);
  171. LL_GPIO_Init(GPIOB, &gpio_config);
  172. LL_GPIO_ResetOutputPin(GPIOB, gpioa_pin_list);
  173. }
  174. if(gpioc_pin_list != 0) {
  175. gpio_config.Pin = gpioc_pin_list;
  176. LL_C2_AHB2_GRP1_EnableClock(LL_C2_AHB2_GRP1_PERIPH_GPIOC);
  177. LL_GPIO_Init(GPIOC, &gpio_config);
  178. LL_GPIO_ResetOutputPin(GPIOC, gpioa_pin_list);
  179. }
  180. }
  181. static void APPD_BleDtbCfg(void) {
  182. #if(BLE_DTB_CFG != 0)
  183. LL_GPIO_InitTypeDef gpio_config = {0};
  184. uint8_t local_loop;
  185. uint16_t gpioa_pin_list;
  186. uint16_t gpiob_pin_list;
  187. gpioa_pin_list = 0;
  188. gpiob_pin_list = 0;
  189. for(local_loop = 0; local_loop < GPIO_NBR_OF_RF_SIGNALS; local_loop++) {
  190. if(aRfConfigList[local_loop].enable != 0) {
  191. switch((uint32_t)aRfConfigList[local_loop].port) {
  192. case(uint32_t)GPIOA:
  193. gpioa_pin_list |= aRfConfigList[local_loop].pin;
  194. break;
  195. case(uint32_t)GPIOB:
  196. gpiob_pin_list |= aRfConfigList[local_loop].pin;
  197. break;
  198. default:
  199. break;
  200. }
  201. }
  202. }
  203. gpio_config.Mode = LL_GPIO_MODE_ALTERNATE;
  204. gpio_config.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH;
  205. gpio_config.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
  206. gpio_config.Pull = LL_GPIO_PULL_NO;
  207. gpio_config.Alternate = LL_GPIO_AF_6;
  208. gpio_config.Pin = LL_GPIO_PIN_15 | LL_GPIO_PIN_14 | LL_GPIO_PIN_13;
  209. if(gpioa_pin_list != 0) {
  210. gpio_config.Pin = gpioa_pin_list;
  211. LL_C2_AHB2_GRP1_EnableClock(LL_C2_AHB2_GRP1_PERIPH_GPIOA);
  212. LL_GPIO_Init(GPIOA, &gpio_config);
  213. }
  214. if(gpiob_pin_list != 0) {
  215. gpio_config.Pin = gpiob_pin_list;
  216. LL_C2_AHB2_GRP1_EnableClock(LL_C2_AHB2_GRP1_PERIPH_GPIOB);
  217. LL_GPIO_Init(GPIOB, &gpio_config);
  218. }
  219. #endif
  220. }
  221. #if(CFG_DEBUG_TRACE != 0)
  222. void DbgOutputInit(void) {
  223. }
  224. void DbgOutputTraces(uint8_t* p_data, uint16_t size, void (*cb)(void)) {
  225. furi_hal_console_tx(p_data, size);
  226. cb();
  227. }
  228. #endif