test_ulp.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. /*
  2. * SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <freertos/FreeRTOS.h>
  9. #include <freertos/task.h>
  10. #include <freertos/semphr.h>
  11. #include <unity.h>
  12. #include "esp_attr.h"
  13. #include "esp_err.h"
  14. #include "esp_log.h"
  15. #include "esp_sleep.h"
  16. #include "ulp.h"
  17. #include "soc/soc.h"
  18. #include "soc/rtc.h"
  19. #include "soc/rtc_cntl_reg.h"
  20. #include "soc/sens_reg.h"
  21. #include "soc/rtc_io_reg.h"
  22. #include "driver/rtc_io.h"
  23. #include "sdkconfig.h"
  24. #include "esp_rom_sys.h"
  25. #include "ulp_test_app.h"
  26. extern const uint8_t ulp_test_app_bin_start[] asm("_binary_ulp_test_app_bin_start");
  27. extern const uint8_t ulp_test_app_bin_end[] asm("_binary_ulp_test_app_bin_end");
  28. #define HEX_DUMP_DEBUG 0
  29. static void hexdump(const uint32_t* src, size_t count) {
  30. #if HEX_DUMP_DEBUG
  31. for (size_t i = 0; i < count; ++i) {
  32. printf("%08x ", *src);
  33. ++src;
  34. if ((i + 1) % 4 == 0) {
  35. printf("\n");
  36. }
  37. }
  38. #else
  39. (void)src;
  40. (void)count;
  41. #endif
  42. }
  43. TEST_CASE("ULP FSM addition test", "[ulp]")
  44. {
  45. #pragma GCC diagnostic push
  46. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  47. #pragma GCC diagnostic ignored "-Warray-bounds"
  48. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  49. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  50. #pragma GCC diagnostic pop
  51. /* ULP co-processor program to add data in 2 memory locations using ULP macros */
  52. const ulp_insn_t program[] = {
  53. I_MOVI(R3, 16), // r3 = 16
  54. I_LD(R0, R3, 0), // r0 = mem[r3 + 0]
  55. I_LD(R1, R3, 1), // r1 = mem[r3 + 1]
  56. I_ADDR(R2, R0, R1), // r2 = r0 + r1
  57. I_ST(R2, R3, 2), // mem[r3 + 2] = r2
  58. I_HALT() // halt
  59. };
  60. /* Load the memory regions used by the ULP co-processor */
  61. RTC_SLOW_MEM[16] = 10;
  62. RTC_SLOW_MEM[17] = 11;
  63. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  64. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  65. TEST_ASSERT_EQUAL(ESP_OK, ulp_process_macros_and_load(0, program, &size));
  66. TEST_ASSERT_EQUAL(ESP_OK, ulp_run(0));
  67. /* Wait for the ULP co-processor to finish up */
  68. esp_rom_delay_us(1000);
  69. hexdump(RTC_SLOW_MEM, 20);
  70. /* Verify the test results */
  71. TEST_ASSERT_EQUAL(10 + 11, RTC_SLOW_MEM[18] & 0xffff);
  72. }
  73. TEST_CASE("ULP FSM subtraction and branch test", "[ulp]")
  74. {
  75. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  76. #pragma GCC diagnostic push
  77. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  78. #pragma GCC diagnostic ignored "-Warray-bounds"
  79. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  80. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  81. #pragma GCC diagnostic pop
  82. /* ULP co-processor program to perform subtractions and branch to a label */
  83. const ulp_insn_t program[] = {
  84. I_MOVI(R0, 34), // r0 = 34
  85. M_LABEL(1), // define a label with label number as 1
  86. I_MOVI(R1, 32), // r1 = 32
  87. I_LD(R1, R1, 0), // r1 = mem[32 + 0]
  88. I_MOVI(R2, 33), // r2 = 33
  89. I_LD(R2, R2, 0), // r2 = mem[33 + 0]
  90. I_SUBR(R3, R1, R2), // r3 = r1 - r2
  91. I_ST(R3, R0, 0), // mem[r0 + 0] = r3
  92. I_ADDI(R0, R0, 1), // r0 = r0 + 1
  93. M_BL(1, 64), // branch to label 1 if r0 < 64
  94. I_HALT(), // halt
  95. };
  96. /* Load the memory regions used by the ULP co-processor */
  97. RTC_SLOW_MEM[32] = 42;
  98. RTC_SLOW_MEM[33] = 18;
  99. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  100. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  101. TEST_ASSERT_EQUAL(ESP_OK, ulp_process_macros_and_load(0, program, &size));
  102. TEST_ASSERT_EQUAL(ESP_OK, ulp_run(0));
  103. printf("\n\n");
  104. /* Wait for the ULP co-processor to finish up */
  105. esp_rom_delay_us(1000);
  106. hexdump(RTC_SLOW_MEM, 50);
  107. /* Verify the test results */
  108. for (int i = 34; i < 64; ++i) {
  109. TEST_ASSERT_EQUAL(42 - 18, RTC_SLOW_MEM[i] & 0xffff);
  110. }
  111. TEST_ASSERT_EQUAL(0, RTC_SLOW_MEM[64]);
  112. }
  113. TEST_CASE("ULP FSM JUMPS instruction test", "[ulp]")
  114. {
  115. /*
  116. * Load the ULP binary.
  117. *
  118. * This ULP program is written in assembly. Please refer associated .S file.
  119. */
  120. esp_err_t err = ulp_load_binary(0, ulp_test_app_bin_start,
  121. (ulp_test_app_bin_end - ulp_test_app_bin_start) / sizeof(uint32_t));
  122. TEST_ESP_OK(err);
  123. /* Clear ULP FSM raw interrupt */
  124. REG_CLR_BIT(RTC_CNTL_INT_RAW_REG, RTC_CNTL_ULP_CP_INT_RAW);
  125. /* Run the ULP coprocessor */
  126. TEST_ESP_OK(ulp_run(&ulp_test_jumps - RTC_SLOW_MEM));
  127. /* Wait for the ULP co-processor to finish up */
  128. esp_rom_delay_us(1000);
  129. /* Verify that ULP FSM issued an interrupt to wake up the main CPU */
  130. TEST_ASSERT_NOT_EQUAL(0, REG_GET_BIT(RTC_CNTL_INT_RAW_REG, RTC_CNTL_ULP_CP_INT_RAW));
  131. /* Verify the test results */
  132. TEST_ASSERT_EQUAL(0, ulp_jumps_fail & UINT16_MAX);
  133. TEST_ASSERT_EQUAL(1, ulp_jumps_pass & UINT16_MAX);
  134. }
  135. TEST_CASE("ULP FSM light-sleep wakeup test", "[ulp]")
  136. {
  137. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  138. #pragma GCC diagnostic push
  139. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  140. #pragma GCC diagnostic ignored "-Warray-bounds"
  141. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  142. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  143. #pragma GCC diagnostic pop
  144. /* ULP co-processor program to perform some activities and wakeup the main CPU from deep-sleep */
  145. const ulp_insn_t program[] = {
  146. I_MOVI(R1, 1024), // r1 = 1024
  147. M_LABEL(1), // define label 1
  148. I_DELAY(32000), // add a delay (NOP for 32000 cycles)
  149. I_SUBI(R1, R1, 1), // r1 = r1 - 1
  150. M_BXZ(3), // branch to label 3 if ALU value is 0. (r1 = 0)
  151. I_RSHI(R3, R1, 5), // r3 = r1 / 32
  152. I_ST(R1, R3, 16), // mem[r3 + 16] = r1
  153. M_BX(1), // loop to label 1
  154. M_LABEL(3), // define label 3
  155. I_MOVI(R2, 42), // r2 = 42
  156. I_MOVI(R3, 15), // r3 = 15
  157. I_ST(R2, R3, 0), // mem[r3 + 0] = r2
  158. I_WAKE(), // wake the SoC from deep-sleep
  159. I_END(), // stop ULP timer
  160. I_HALT() // halt
  161. };
  162. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  163. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  164. TEST_ASSERT_EQUAL(ESP_OK, ulp_process_macros_and_load(0, program, &size));
  165. TEST_ASSERT_EQUAL(ESP_OK, ulp_run(0));
  166. /* Setup wakeup triggers */
  167. TEST_ASSERT(esp_sleep_enable_ulp_wakeup() == ESP_OK);
  168. /* Enter Light Sleep */
  169. TEST_ASSERT(esp_light_sleep_start() == ESP_OK);
  170. /* Wait for wakeup from ULP FSM Coprocessor */
  171. printf("cause %d\r\n", esp_sleep_get_wakeup_cause());
  172. TEST_ASSERT(esp_sleep_get_wakeup_cause() == ESP_SLEEP_WAKEUP_ULP);
  173. }
  174. #if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
  175. //IDF-5131
  176. TEST_CASE("ULP FSM deep-sleep wakeup test", "[ulp][reset=SW_CPU_RESET][ignore]")
  177. {
  178. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  179. #pragma GCC diagnostic push
  180. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  181. #pragma GCC diagnostic ignored "-Warray-bounds"
  182. /* Clearout the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  183. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  184. #pragma GCC diagnostic pop
  185. /* ULP co-processor program to perform some activities and wakeup the main CPU from deep-sleep */
  186. const ulp_insn_t program[] = {
  187. I_MOVI(R1, 1024), // r1 = 1024
  188. M_LABEL(1), // define label 1
  189. I_DELAY(32000), // add a delay (NOP for 32000 cycles)
  190. I_SUBI(R1, R1, 1), // r1 = r1 - 1
  191. M_BXZ(3), // branch to label 3 if ALU value is 0. (r1 = 0)
  192. I_RSHI(R3, R1, 5), // r3 = r1 / 32
  193. I_ST(R1, R3, 16), // mem[r3 + 16] = r1
  194. M_BX(1), // loop to label 1
  195. M_LABEL(3), // define label 3
  196. I_MOVI(R2, 42), // r2 = 42
  197. I_MOVI(R3, 15), // r3 = 15
  198. I_ST(R2, R3, 0), // mem[r3 + 0] = r2
  199. I_WAKE(), // wake the SoC from deep-sleep
  200. I_END(), // stop ULP timer
  201. I_HALT() // halt
  202. };
  203. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  204. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  205. TEST_ASSERT_EQUAL(ESP_OK, ulp_process_macros_and_load(0, program, &size));
  206. TEST_ASSERT_EQUAL(ESP_OK, ulp_run(0));
  207. /* Setup wakeup triggers */
  208. TEST_ASSERT(esp_sleep_enable_ulp_wakeup() == ESP_OK);
  209. /* Enter Deep Sleep */
  210. esp_deep_sleep_start();
  211. UNITY_TEST_FAIL(__LINE__, "Should not get here!");
  212. }
  213. #endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
  214. TEST_CASE("ULP FSM can write and read peripheral registers", "[ulp]")
  215. {
  216. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  217. /* Clear ULP timer */
  218. CLEAR_PERI_REG_MASK(RTC_CNTL_STATE0_REG, RTC_CNTL_ULP_CP_SLP_TIMER_EN);
  219. #pragma GCC diagnostic push
  220. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  221. #pragma GCC diagnostic ignored "-Warray-bounds"
  222. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  223. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  224. #pragma GCC diagnostic pop
  225. /* ULP co-processor program to read from and write to peripheral registers */
  226. const ulp_insn_t program[] = {
  227. I_MOVI(R1, 64), // r1 = 64
  228. I_RD_REG(RTC_CNTL_STORE1_REG, 0, 15), // r0 = REG_READ(RTC_CNTL_STORE1_REG[15:0])
  229. I_ST(R0, R1, 0), // mem[r1 + 0] = r0
  230. I_RD_REG(RTC_CNTL_STORE1_REG, 4, 11), // r0 = REG_READ(RTC_CNTL_STORE1_REG[11:4])
  231. I_ST(R0, R1, 1), // mem[r1 + 1] = r0
  232. I_RD_REG(RTC_CNTL_STORE1_REG, 16, 31), // r0 = REG_READ(RTC_CNTL_STORE1_REG[31:16])
  233. I_ST(R0, R1, 2), // mem[r1 + 2] = r0
  234. I_RD_REG(RTC_CNTL_STORE1_REG, 20, 27), // r0 = REG_READ(RTC_CNTL_STORE1_REG[27:20])
  235. I_ST(R0, R1, 3), // mem[r1 + 3] = r0
  236. I_WR_REG(RTC_CNTL_STORE0_REG, 0, 7, 0x89), // REG_WRITE(RTC_CNTL_STORE0_REG[7:0], 0x89)
  237. I_WR_REG(RTC_CNTL_STORE0_REG, 8, 15, 0xab), // REG_WRITE(RTC_CNTL_STORE0_REG[15:8], 0xab)
  238. I_WR_REG(RTC_CNTL_STORE0_REG, 16, 23, 0xcd), // REG_WRITE(RTC_CNTL_STORE0_REG[23:16], 0xcd)
  239. I_WR_REG(RTC_CNTL_STORE0_REG, 24, 31, 0xef), // REG_WRITE(RTC_CNTL_STORE0_REG[31:24], 0xef)
  240. I_LD(R0, R1, 4), // r0 = mem[r1 + 4]
  241. I_ADDI(R0, R0, 1), // r0 = r0 + 1
  242. I_ST(R0, R1, 4), // mem[r1 + 4] = r0
  243. I_END(), // stop ULP timer
  244. I_HALT() // halt
  245. };
  246. /* Set data in the peripheral register to be read by the ULP co-processor */
  247. REG_WRITE(RTC_CNTL_STORE1_REG, 0x89abcdef);
  248. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  249. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  250. TEST_ESP_OK(ulp_process_macros_and_load(0, program, &size));
  251. TEST_ESP_OK(ulp_run(0));
  252. /* Wait for the ULP co-processor to finish up */
  253. vTaskDelay(100/portTICK_PERIOD_MS);
  254. /* Verify the test results */
  255. TEST_ASSERT_EQUAL_HEX32(0xefcdab89, REG_READ(RTC_CNTL_STORE0_REG));
  256. TEST_ASSERT_EQUAL_HEX16(0xcdef, RTC_SLOW_MEM[64] & 0xffff);
  257. TEST_ASSERT_EQUAL_HEX16(0xde, RTC_SLOW_MEM[65] & 0xffff);
  258. TEST_ASSERT_EQUAL_HEX16(0x89ab, RTC_SLOW_MEM[66] & 0xffff);
  259. TEST_ASSERT_EQUAL_HEX16(0x9a, RTC_SLOW_MEM[67] & 0xffff);
  260. TEST_ASSERT_EQUAL_HEX16(1, RTC_SLOW_MEM[68] & 0xffff);
  261. }
  262. TEST_CASE("ULP FSM I_WR_REG instruction test", "[ulp]")
  263. {
  264. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  265. #pragma GCC diagnostic push
  266. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  267. #pragma GCC diagnostic ignored "-Warray-bounds"
  268. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  269. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  270. #pragma GCC diagnostic pop
  271. /* Define the test set */
  272. typedef struct {
  273. int low;
  274. int width;
  275. } wr_reg_test_item_t;
  276. const wr_reg_test_item_t test_items[] = {
  277. {0, 1}, {0, 2}, {0, 3}, {0, 4}, {0, 5}, {0, 6}, {0, 7}, {0, 8},
  278. {3, 1}, {3, 2}, {3, 3}, {3, 4}, {3, 5}, {3, 6}, {3, 7}, {3, 8},
  279. {15, 1}, {15, 2}, {15, 3}, {15, 4}, {15, 5}, {15, 6}, {15, 7}, {15, 8},
  280. {16, 1}, {16, 2}, {16, 3}, {16, 4}, {16, 5}, {16, 6}, {16, 7}, {16, 8},
  281. {18, 1}, {18, 2}, {18, 3}, {18, 4}, {18, 5}, {18, 6}, {18, 7}, {18, 8},
  282. {24, 1}, {24, 2}, {24, 3}, {24, 4}, {24, 5}, {24, 6}, {24, 7}, {24, 8},
  283. };
  284. const size_t test_items_count =
  285. sizeof(test_items)/sizeof(test_items[0]);
  286. for (size_t i = 0; i < test_items_count; ++i) {
  287. const uint32_t mask = (uint32_t) (((1ULL << test_items[i].width) - 1) << test_items[i].low);
  288. const uint32_t not_mask = ~mask;
  289. printf("#%2d: low: %2d width: %2d mask: %08x expected: %08x ", i,
  290. test_items[i].low, test_items[i].width,
  291. mask, not_mask);
  292. /* Set all bits in RTC_CNTL_STORE0_REG and reset all bits in RTC_CNTL_STORE1_REG */
  293. REG_WRITE(RTC_CNTL_STORE0_REG, 0xffffffff);
  294. REG_WRITE(RTC_CNTL_STORE1_REG, 0x00000000);
  295. /* ULP co-processor program to write to peripheral registers */
  296. const ulp_insn_t program[] = {
  297. I_WR_REG(RTC_CNTL_STORE0_REG,
  298. test_items[i].low,
  299. test_items[i].low + test_items[i].width - 1,
  300. 0),
  301. I_WR_REG(RTC_CNTL_STORE1_REG,
  302. test_items[i].low,
  303. test_items[i].low + test_items[i].width - 1,
  304. 0xff & ((1 << test_items[i].width) - 1)),
  305. I_END(),
  306. I_HALT()
  307. };
  308. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  309. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  310. TEST_ESP_OK(ulp_process_macros_and_load(0, program, &size));
  311. TEST_ESP_OK(ulp_run(0));
  312. /* Wait for the ULP co-processor to finish up */
  313. vTaskDelay(10/portTICK_PERIOD_MS);
  314. /* Verify the test results */
  315. uint32_t clear = REG_READ(RTC_CNTL_STORE0_REG);
  316. uint32_t set = REG_READ(RTC_CNTL_STORE1_REG);
  317. printf("clear: %08x set: %08x\n", clear, set);
  318. TEST_ASSERT_EQUAL_HEX32(not_mask, clear);
  319. TEST_ASSERT_EQUAL_HEX32(mask, set);
  320. }
  321. }
  322. #if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
  323. //IDF-5131
  324. TEST_CASE("ULP FSM controls RTC_IO", "[ulp][ignore]")
  325. {
  326. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  327. #pragma GCC diagnostic push
  328. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  329. #pragma GCC diagnostic ignored "-Warray-bounds"
  330. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  331. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  332. #pragma GCC diagnostic pop
  333. /* ULP co-processor program to toggle LED */
  334. const ulp_insn_t program[] = {
  335. I_MOVI(R0, 0), // r0 is LED state
  336. I_MOVI(R2, 16), // loop r2 from 16 down to 0
  337. M_LABEL(4), // define label 4
  338. I_SUBI(R2, R2, 1), // r2 = r2 - 1
  339. M_BXZ(6), // branch to label 6 if r2 = 0
  340. I_ADDI(R0, R0, 1), // r0 = (r0 + 1) % 2
  341. I_ANDI(R0, R0, 0x1),
  342. M_BL(0, 1), // if r0 < 1 goto 0
  343. M_LABEL(1), // define label 1
  344. I_WR_REG(RTC_GPIO_OUT_REG, 26, 27, 1), // RTC_GPIO12 = 1
  345. M_BX(2), // goto 2
  346. M_LABEL(0), // define label 0
  347. I_WR_REG(RTC_GPIO_OUT_REG, 26, 27, 0), // RTC_GPIO12 = 0
  348. M_LABEL(2), // define label 2
  349. I_MOVI(R1, 100), // loop R1 from 100 down to 0
  350. M_LABEL(3), // define label 3
  351. I_SUBI(R1, R1, 1), // r1 = r1 - 1
  352. M_BXZ(5), // branch to label 5 if r1 = 0
  353. I_DELAY(32000), // delay for a while
  354. M_BX(3), // goto 3
  355. M_LABEL(5), // define label 5
  356. M_BX(4), // loop back to label 4
  357. M_LABEL(6), // define label 6
  358. I_WAKE(), // wake up the SoC
  359. I_END(), // stop ULP program timer
  360. I_HALT()
  361. };
  362. /* Configure LED GPIOs */
  363. const gpio_num_t led_gpios[] = {
  364. GPIO_NUM_2,
  365. GPIO_NUM_0,
  366. GPIO_NUM_4
  367. };
  368. for (size_t i = 0; i < sizeof(led_gpios)/sizeof(led_gpios[0]); ++i) {
  369. rtc_gpio_init(led_gpios[i]);
  370. rtc_gpio_set_direction(led_gpios[i], RTC_GPIO_MODE_OUTPUT_ONLY);
  371. rtc_gpio_set_level(led_gpios[i], 0);
  372. }
  373. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  374. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  375. TEST_ESP_OK(ulp_process_macros_and_load(0, program, &size));
  376. TEST_ESP_OK(ulp_run(0));
  377. /* Setup wakeup triggers */
  378. TEST_ASSERT(esp_sleep_enable_ulp_wakeup() == ESP_OK);
  379. /* Enter Deep Sleep */
  380. esp_deep_sleep_start();
  381. UNITY_TEST_FAIL(__LINE__, "Should not get here!");
  382. }
  383. TEST_CASE("ULP FSM power consumption in deep sleep", "[ulp][ignore]")
  384. {
  385. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 4 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  386. #pragma GCC diagnostic push
  387. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  388. #pragma GCC diagnostic ignored "-Warray-bounds"
  389. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  390. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  391. #pragma GCC diagnostic pop
  392. /* Put the ULP coprocessor in halt state */
  393. ulp_insn_t insn = I_HALT();
  394. #pragma GCC diagnostic push
  395. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  396. #pragma GCC diagnostic ignored "-Warray-bounds"
  397. memcpy(&RTC_SLOW_MEM[0], &insn, sizeof(insn));
  398. #pragma GCC diagnostic pop
  399. /* Set ULP timer */
  400. ulp_set_wakeup_period(0, 0x8000);
  401. /* Run the ULP coprocessor */
  402. TEST_ESP_OK(ulp_run(0));
  403. /* Setup wakeup triggers */
  404. TEST_ASSERT(esp_sleep_enable_ulp_wakeup() == ESP_OK);
  405. TEST_ASSERT(esp_sleep_enable_timer_wakeup(10 * 1000000) == ESP_OK);
  406. /* Enter Deep Sleep */
  407. esp_deep_sleep_start();
  408. UNITY_TEST_FAIL(__LINE__, "Should not get here!");
  409. }
  410. #endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
  411. TEST_CASE("ULP FSM timer setting", "[ulp]")
  412. {
  413. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 32 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  414. #pragma GCC diagnostic push
  415. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  416. #pragma GCC diagnostic ignored "-Warray-bounds"
  417. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  418. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  419. #pragma GCC diagnostic pop
  420. /*
  421. * Run a simple ULP program which increments the counter, for one second.
  422. * Program calls I_HALT each time and gets restarted by the timer.
  423. * Compare the expected number of times the program runs with the actual.
  424. */
  425. const int offset = 6;
  426. const ulp_insn_t program[] = {
  427. I_MOVI(R1, offset), // r1 <- offset
  428. I_LD(R2, R1, 0), // load counter
  429. I_ADDI(R2, R2, 1), // counter += 1
  430. I_ST(R2, R1, 0), // save counter
  431. I_HALT(),
  432. };
  433. /* Calculate the size of the ULP co-processor binary, load it and run the ULP coprocessor */
  434. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  435. TEST_ESP_OK(ulp_process_macros_and_load(0, program, &size));
  436. assert(offset >= size && "data offset needs to be greater or equal to program size");
  437. TEST_ESP_OK(ulp_run(0));
  438. /* Disable the ULP program timer — we will enable it later */
  439. ulp_timer_stop();
  440. /* Define the test data */
  441. const uint32_t cycles_to_test[] = { 10000, // 10 ms
  442. 20000, // 20 ms
  443. 50000, // 50 ms
  444. 100000, // 100 ms
  445. 200000, // 200 ms
  446. 500000, // 500 ms
  447. 1000000 }; // 1 sec
  448. const size_t tests_count = sizeof(cycles_to_test) / sizeof(cycles_to_test[0]);
  449. for (size_t i = 0; i < tests_count; ++i) {
  450. // zero out the counter
  451. RTC_SLOW_MEM[offset] = 0;
  452. // set the ulp timer period
  453. ulp_set_wakeup_period(0, cycles_to_test[i]);
  454. // enable the timer and wait for a second
  455. ulp_timer_resume();
  456. vTaskDelay(1000 / portTICK_PERIOD_MS);
  457. // stop the timer and get the counter value
  458. ulp_timer_stop();
  459. uint32_t counter = RTC_SLOW_MEM[offset] & 0xffff;
  460. // calculate the expected counter value and allow a tolerance of 15%
  461. uint32_t expected_counter = 1000000 / cycles_to_test[i];
  462. uint32_t tolerance = (expected_counter * 15 / 100);
  463. tolerance = tolerance ? tolerance : 1; // Keep a tolerance of at least 1 count
  464. printf("expected: %u\t tolerance: +/- %u\t actual: %u\n", expected_counter, tolerance, counter);
  465. // Should be within 15%
  466. TEST_ASSERT_INT_WITHIN(tolerance, expected_counter, counter);
  467. }
  468. }
  469. #if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
  470. //IDF-5131
  471. #if !DISABLED_FOR_TARGETS(ESP32)
  472. TEST_CASE("ULP FSM can use temperature sensor (TSENS) in deep sleep", "[ulp][ignore]")
  473. {
  474. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  475. #pragma GCC diagnostic push
  476. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  477. #pragma GCC diagnostic ignored "-Warray-bounds"
  478. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  479. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  480. #pragma GCC diagnostic pop
  481. // Allow TSENS to be controlled by the ULP
  482. SET_PERI_REG_BITS(SENS_SAR_TSENS_CTRL_REG, SENS_TSENS_CLK_DIV, 10, SENS_TSENS_CLK_DIV_S);
  483. #if CONFIG_IDF_TARGET_ESP32S2
  484. SET_PERI_REG_BITS(SENS_SAR_POWER_XPD_SAR_REG, SENS_FORCE_XPD_SAR, SENS_FORCE_XPD_SAR_FSM, SENS_FORCE_XPD_SAR_S);
  485. SET_PERI_REG_MASK(SENS_SAR_TSENS_CTRL2_REG, SENS_TSENS_CLKGATE_EN);
  486. #elif CONFIG_IDF_TARGET_ESP32S3
  487. SET_PERI_REG_BITS(SENS_SAR_POWER_XPD_SAR_REG, SENS_FORCE_XPD_SAR, 0, SENS_FORCE_XPD_SAR_S);
  488. SET_PERI_REG_MASK(SENS_SAR_PERI_CLK_GATE_CONF_REG, SENS_TSENS_CLK_EN);
  489. #endif
  490. CLEAR_PERI_REG_MASK(SENS_SAR_TSENS_CTRL_REG, SENS_TSENS_POWER_UP);
  491. CLEAR_PERI_REG_MASK(SENS_SAR_TSENS_CTRL_REG, SENS_TSENS_DUMP_OUT);
  492. CLEAR_PERI_REG_MASK(SENS_SAR_TSENS_CTRL_REG, SENS_TSENS_POWER_UP_FORCE);
  493. // data start offset
  494. size_t offset = 20;
  495. // number of samples to collect
  496. RTC_SLOW_MEM[offset] = (CONFIG_ULP_COPROC_RESERVE_MEM) / 4 - offset - 8;
  497. // sample counter
  498. RTC_SLOW_MEM[offset + 1] = 0;
  499. /* ULP co-processor program to record temperature sensor readings */
  500. const ulp_insn_t program[] = {
  501. I_MOVI(R1, offset), // r1 <- offset
  502. I_LD(R2, R1, 1), // r2 <- counter
  503. I_LD(R3, R1, 0), // r3 <- length
  504. I_SUBI(R3, R3, 1), // end = length - 1
  505. I_SUBR(R3, R3, R2), // r3 = length - counter
  506. M_BXF(1), // if overflow goto 1:
  507. I_TSENS(R0, 16383), // r0 <- tsens
  508. I_ST(R0, R2, offset + 4), // mem[r2 + offset +4] <- r0
  509. I_ADDI(R2, R2, 1), // counter += 1
  510. I_ST(R2, R1, 1), // save counter
  511. I_HALT(), // enter sleep
  512. M_LABEL(1), // done with measurements
  513. I_END(), // stop ULP timer
  514. I_WAKE(), // initiate wakeup
  515. I_HALT()
  516. };
  517. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  518. TEST_ESP_OK(ulp_process_macros_and_load(0, program, &size));
  519. assert(offset >= size);
  520. /* Run the ULP coprocessor */
  521. TEST_ESP_OK(ulp_run(0));
  522. /* Setup wakeup triggers */
  523. TEST_ASSERT(esp_sleep_enable_ulp_wakeup() == ESP_OK);
  524. TEST_ASSERT(esp_sleep_enable_timer_wakeup(10 * 1000000) == ESP_OK);
  525. /* Enter Deep Sleep */
  526. esp_deep_sleep_start();
  527. UNITY_TEST_FAIL(__LINE__, "Should not get here!");
  528. }
  529. #endif //#if !DISABLED_FOR_TARGETS(ESP32)
  530. TEST_CASE("ULP FSM can use ADC in deep sleep", "[ulp][ignore]")
  531. {
  532. assert(CONFIG_ULP_COPROC_RESERVE_MEM >= 260 && "this test needs ULP_COPROC_RESERVE_MEM option set in menuconfig");
  533. const int adc = 0;
  534. const int channel = 0;
  535. const int atten = 0;
  536. #pragma GCC diagnostic push
  537. #pragma GCC diagnostic ignored "-Wstringop-overflow"
  538. #pragma GCC diagnostic ignored "-Warray-bounds"
  539. /* Clear the RTC_SLOW_MEM region for the ULP co-processor binary to be loaded */
  540. memset(RTC_SLOW_MEM, 0, CONFIG_ULP_COPROC_RESERVE_MEM);
  541. #pragma GCC diagnostic pop
  542. #if defined(CONFIG_IDF_TARGET_ESP32)
  543. // Configure SAR ADCn resolution
  544. SET_PERI_REG_BITS(SENS_SAR_START_FORCE_REG, SENS_SAR1_BIT_WIDTH, 3, SENS_SAR1_BIT_WIDTH_S);
  545. SET_PERI_REG_BITS(SENS_SAR_START_FORCE_REG, SENS_SAR2_BIT_WIDTH, 3, SENS_SAR2_BIT_WIDTH_S);
  546. SET_PERI_REG_BITS(SENS_SAR_READ_CTRL_REG, SENS_SAR1_SAMPLE_BIT, 0x3, SENS_SAR1_SAMPLE_BIT_S);
  547. SET_PERI_REG_BITS(SENS_SAR_READ_CTRL2_REG, SENS_SAR2_SAMPLE_BIT, 0x3, SENS_SAR2_SAMPLE_BIT_S);
  548. // SAR ADCn is started by ULP FSM
  549. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS_START2_REG, SENS_MEAS2_START_FORCE);
  550. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS_START1_REG, SENS_MEAS1_START_FORCE);
  551. // Use ULP FSM to power up SAR ADCn
  552. SET_PERI_REG_BITS(SENS_SAR_MEAS_WAIT2_REG, SENS_FORCE_XPD_SAR, 0, SENS_FORCE_XPD_SAR_S);
  553. SET_PERI_REG_BITS(SENS_SAR_MEAS_WAIT2_REG, SENS_FORCE_XPD_AMP, 2, SENS_FORCE_XPD_AMP_S);
  554. // SAR ADCn invert result
  555. SET_PERI_REG_MASK(SENS_SAR_READ_CTRL_REG, SENS_SAR1_DATA_INV);
  556. SET_PERI_REG_MASK(SENS_SAR_READ_CTRL_REG, SENS_SAR2_DATA_INV);
  557. // Set SAR ADCn pad enable bitmap to be controlled by ULP FSM
  558. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS_START1_REG, SENS_SAR1_EN_PAD_FORCE_M);
  559. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS_START2_REG, SENS_SAR2_EN_PAD_FORCE_M);
  560. #elif defined(CONFIG_IDF_TARGET_ESP32S2) || defined(CONFIG_IDF_TARGET_ESP32S3)
  561. // SAR ADCn is started by ULP FSM
  562. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS2_CTRL2_REG, SENS_MEAS2_START_FORCE);
  563. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS1_CTRL2_REG, SENS_MEAS1_START_FORCE);
  564. // Use ULP FSM to power up/down SAR ADCn
  565. SET_PERI_REG_BITS(SENS_SAR_POWER_XPD_SAR_REG, SENS_FORCE_XPD_SAR, 0, SENS_FORCE_XPD_SAR_S);
  566. SET_PERI_REG_BITS(SENS_SAR_MEAS1_CTRL1_REG, SENS_FORCE_XPD_AMP, 2, SENS_FORCE_XPD_AMP_S);
  567. // SAR1 invert result
  568. SET_PERI_REG_MASK(SENS_SAR_READER1_CTRL_REG, SENS_SAR1_DATA_INV);
  569. SET_PERI_REG_MASK(SENS_SAR_READER2_CTRL_REG, SENS_SAR2_DATA_INV);
  570. // Set SAR ADCn pad enable bitmap to be controlled by ULP FSM
  571. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS1_CTRL2_REG, SENS_SAR1_EN_PAD_FORCE_M);
  572. CLEAR_PERI_REG_MASK(SENS_SAR_MEAS2_CTRL2_REG, SENS_SAR2_EN_PAD_FORCE_M);
  573. // Enable SAR ADCn clock gate on esp32s3
  574. #if CONFIG_IDF_TARGET_ESP32S3
  575. SET_PERI_REG_MASK(SENS_SAR_PERI_CLK_GATE_CONF_REG, SENS_SARADC_CLK_EN);
  576. #endif
  577. #endif
  578. SET_PERI_REG_BITS(SENS_SAR_ATTEN1_REG, 3, atten, 2 * channel); //set SAR1 attenuation
  579. SET_PERI_REG_BITS(SENS_SAR_ATTEN2_REG, 3, atten, 2 * channel); //set SAR2 attenuation
  580. // data start offset
  581. size_t offset = 20;
  582. // number of samples to collect
  583. RTC_SLOW_MEM[offset] = (CONFIG_ULP_COPROC_RESERVE_MEM) / 4 - offset - 8;
  584. // sample counter
  585. RTC_SLOW_MEM[offset + 1] = 0;
  586. const ulp_insn_t program[] = {
  587. I_MOVI(R1, offset), // r1 <- offset
  588. I_LD(R2, R1, 1), // r2 <- counter
  589. I_LD(R3, R1, 0), // r3 <- length
  590. I_SUBI(R3, R3, 1), // end = length - 1
  591. I_SUBR(R3, R3, R2), // r3 = length - counter
  592. M_BXF(1), // if overflow goto 1:
  593. I_ADC(R0, adc, channel), // r0 <- ADC
  594. I_ST(R0, R2, offset + 4), // mem[r2 + offset +4] = r0
  595. I_ADDI(R2, R2, 1), // counter += 1
  596. I_ST(R2, R1, 1), // save counter
  597. I_HALT(), // enter sleep
  598. M_LABEL(1), // done with measurements
  599. I_END(), // stop ULP program timer
  600. I_HALT()
  601. };
  602. size_t size = sizeof(program)/sizeof(ulp_insn_t);
  603. TEST_ESP_OK(ulp_process_macros_and_load(0, program, &size));
  604. assert(offset >= size);
  605. /* Run the ULP coprocessor */
  606. TEST_ESP_OK(ulp_run(0));
  607. /* Setup wakeup triggers */
  608. TEST_ASSERT(esp_sleep_enable_ulp_wakeup() == ESP_OK);
  609. TEST_ASSERT(esp_sleep_enable_timer_wakeup(10 * 1000000) == ESP_OK);
  610. /* Enter Deep Sleep */
  611. esp_deep_sleep_start();
  612. UNITY_TEST_FAIL(__LINE__, "Should not get here!");
  613. }
  614. #endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)