-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathmain.c
More file actions
407 lines (330 loc) · 12.7 KB
/
Copy pathmain.c
File metadata and controls
407 lines (330 loc) · 12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* Development of the code in this file was sponsored by Microbric Pty Ltd
*
* The MIT License (MIT)
*
* Copyright (c) 2016 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "nvs_flash.h"
#include "esp_task.h"
#include "esp_event.h"
#include "esp_log.h"
#include "esp_psram.h"
#include "py/stackctrl.h"
#include "py/nlr.h"
#include "py/compile.h"
#include "py/runtime.h"
#include "py/persistentcode.h"
#include "py/repl.h"
#include "py/gc.h"
#include "py/mphal.h"
#include "shared/readline/readline.h"
#include "shared/runtime/pyexec.h"
#include "uart.h"
#include "usb.h"
#include "usb_serial_jtag.h"
#include "modmachine.h"
#include "modnetwork.h"
#include "mpthreadport.h"
#include "tsequencer.h"
#if MICROPY_BLUETOOTH_NIMBLE
#include "extmod/modbluetooth.h"
#endif
#if MICROPY_ESPNOW
#include "modespnow.h"
#endif
// Settings for memory-mapped location of SPIRAM.
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
#define IDF_TARGET_PSRAM_ADDR_START (SOC_EXTRAM_DATA_LOW)
#define IDF_TARGET_PSRAM_SIZE (SOC_EXTRAM_DATA_SIZE)
#elif CONFIG_IDF_TARGET_ESP32S3
#define IDF_TARGET_PSRAM_ADDR_START (SOC_DROM_HIGH)
#define IDF_TARGET_PSRAM_SIZE (SOC_EXTRAM_DATA_HIGH - IDF_TARGET_PSRAM_ADDR_START)
#endif
// MicroPython runs as a task under FreeRTOS
#define MP_TASK_PRIORITY (ESP_TASK_PRIO_MIN + 1)
// Set the margin for detecting stack overflow, depending on the CPU architecture.
#if CONFIG_IDF_TARGET_ESP32C3
#define MP_TASK_STACK_LIMIT_MARGIN (2048)
#else
#define MP_TASK_STACK_LIMIT_MARGIN (1024)
#endif
#include "tasks.h"
TaskHandle_t tulip_mp_handle;
TaskHandle_t idle_0_handle;
TaskHandle_t idle_1_handle;
TaskHandle_t sequencer_handle;
TaskHandle_t cv_read_handle;
#ifdef AMYBOARD_USB_HOST
// USB runs in host (MIDI) mode instead of TinyUSB device mode. usb_host.c
// gates MIDI input to AMY on tulip_ready; it's set once run_amy() has started
// AMY (see tulip_amyboard_start in modtulip.c).
TaskHandle_t usb_handle;
uint8_t tulip_ready = 0;
extern void run_usb();
#endif
// For CPU usage
unsigned long last_task_counters[MAX_TASKS];
typedef void (*esp_alloc_failed_hook_t) (size_t size, uint32_t caps, const char * function_name);
#include "esp_heap_caps.h"
void esp_alloc_failed(size_t size, uint32_t caps, const char *function_name) {
printf("alloc failed size %d function %s caps: ", size, function_name);
if(caps & MALLOC_CAP_SPIRAM) printf("spiram ");
if(caps & MALLOC_CAP_INTERNAL) printf("internal ");
if(caps & MALLOC_CAP_32BIT) printf("32bit ");
if(caps & MALLOC_CAP_DEFAULT) printf("default ");
if(caps & MALLOC_CAP_IRAM_8BIT) printf("iram8bit ");
if(caps & MALLOC_CAP_RTCRAM) printf("rtcram ");
if(caps & MALLOC_CAP_8BIT) printf("8bit ");
if(caps & MALLOC_CAP_EXEC) printf("exec ");
if(caps & MALLOC_CAP_DMA) printf("dma ");
printf("\n");
}
float compute_cpu_usage(uint8_t debug) {
TaskStatus_t *pxTaskStatusArray;
volatile UBaseType_t uxArraySize, x, i;
const char* const tasks[] = {
"IDLE0", "IDLE1", "Tmr Svc", "ipc0", "ipc1", "main", "wifi", "esp_timer", "sys_evt", "tiT",
TULIP_MP_TASK_NAME,
AMY_RENDER_TASK_NAME, AMY_FILL_BUFFER_TASK_NAME, CV_READ_TASK_NAME, 0
};
const uint8_t cores[] = {0, 1, 0, 0, 1, 0, 0, 0, 1, 0, TULIP_MP_TASK_COREID,
AMY_RENDER_TASK_COREID, AMY_FILL_BUFFER_TASK_COREID, CV_READ_TASK_COREID};
uxArraySize = uxTaskGetNumberOfTasks();
pxTaskStatusArray = pvPortMalloc( uxArraySize * sizeof( TaskStatus_t ) );
uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL );
if(debug) {
printf("%d tasks running now\n", uxArraySize);
for(x=0; x<uxArraySize; x++) { // for each task
printf("_%s_ ", pxTaskStatusArray[x].pcTaskName);
}
printf("\n");
}
unsigned long counter_since_last[MAX_TASKS];
unsigned long ulTotalRunTime_per_core[2];
ulTotalRunTime_per_core[0] = 0;
ulTotalRunTime_per_core[1] = 0;
// We have to check for the names we want to track
for(i=0;i<MAX_TASKS;i++) { // for each name
counter_since_last[i] = 0;
if(tasks[i] == 0) break;
for(x=0; x<uxArraySize; x++) { // for each task
if(strcmp(pxTaskStatusArray[x].pcTaskName, tasks[i])==0) {
counter_since_last[i] = pxTaskStatusArray[x].ulRunTimeCounter - last_task_counters[i];
last_task_counters[i] = pxTaskStatusArray[x].ulRunTimeCounter;
ulTotalRunTime_per_core[cores[i]]= ulTotalRunTime_per_core[cores[i]] + counter_since_last[i];
}
}
}
if(debug) {
printf("------ CPU usage since last call to tulip.cpu()\n");
for(i=0;i<MAX_TASKS;i++) {
if(tasks[i] == 0) break;
printf("%d %-15s\t%-15ld\t\t%2.2f%%\n", cores[i], tasks[i], counter_since_last[i], ((float)counter_since_last[i])/ulTotalRunTime_per_core[cores[i]] * 100.0);
}
}
vPortFree(pxTaskStatusArray);
// Also print heap info
if(debug){
fprintf(stderr, "SPIRAM:\n "); fflush(stderr);
heap_caps_print_heap_info(MALLOC_CAP_SPIRAM);
fprintf(stderr, "INTERNAL:\n "); fflush(stderr);
heap_caps_print_heap_info(MALLOC_CAP_INTERNAL);
}
unsigned long freeTime = counter_since_last[0] + counter_since_last[1]; // add IDLE0 + IDLE1
unsigned long ulTotalRunTime = ulTotalRunTime_per_core[0] + ulTotalRunTime_per_core[1]; // add total counts
return 100.0 - (((float)freeTime/(float)ulTotalRunTime) * 100.0); // return CPU usage
}
int vprintf_null(const char *format, va_list ap) {
// do nothing: this is used as a log target during raw repl mode
return 0;
}
extern void setup_lvgl();
uint8_t lvgl_setup = 0;
void mp_task(void *pvParameter) {
volatile uint32_t sp = (uint32_t)esp_cpu_get_sp();
#if MICROPY_PY_THREAD
mp_thread_init(pxTaskGetStackStart(NULL), MICROPY_TASK_STACK_SIZE / sizeof(uintptr_t));
#endif
#ifdef AMYBOARD_USB_HOST
// USB is a MIDI host on this variant (started in app_main); never bring up
// the TinyUSB device stack. The REPL is on UART0 instead (with stderr).
#elif MICROPY_HW_ESP_USB_SERIAL_JTAG
usb_serial_jtag_init();
#elif MICROPY_HW_ENABLE_USBDEV
usb_init();
#endif
#if MICROPY_HW_ENABLE_UART_REPL
uart_stdout_init();
#endif
machine_init();
esp_err_t err = esp_event_loop_create_default();
if (err != ESP_OK) {
ESP_LOGE("esp_init", "can't create event loop: 0x%x\n", err);
}
heap_caps_register_failed_alloc_callback(esp_alloc_failed);
uint32_t caps = MALLOC_CAP_8BIT | MALLOC_CAP_SPIRAM;
size_t mp_task_heap_size = MP_TASK_HEAP_SIZE;
void *mp_task_heap = heap_caps_malloc(mp_task_heap_size, caps);
soft_reset:
// initialise the stack pointer for the main thread
mp_stack_set_top((void *)sp);
mp_stack_set_limit(TULIP_MP_TASK_STACK_SIZE - MP_TASK_STACK_LIMIT_MARGIN);
gc_init(mp_task_heap, mp_task_heap + mp_task_heap_size);
mp_init();
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib));
readline_init0();
MP_STATE_PORT(native_code_pointers) = MP_OBJ_NULL;
// initialise peripherals
machine_pins_init();
#if MICROPY_PY_MACHINE_I2S
//machine_i2s_init0();
#endif
// run boot-up scripts
pyexec_frozen_module("_boot.py", false);
pyexec_file_if_exists("boot.py");
if (pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL) {
int ret = pyexec_file_if_exists("main.py");
if (ret & PYEXEC_FORCED_EXIT) {
goto soft_reset_exit;
}
}
for (;;) {
if (pyexec_mode_kind == PYEXEC_MODE_RAW_REPL) {
//vprintf_like_t vprintf_log = esp_log_set_vprintf(vprintf_null);
if (pyexec_raw_repl() != 0) {
break;
}
//esp_log_set_vprintf(vprintf_log);
} else {
if (pyexec_friendly_repl() != 0) {
break;
}
}
}
soft_reset_exit:
#if MICROPY_BLUETOOTH_NIMBLE
mp_bluetooth_deinit();
#endif
#if MICROPY_ESPNOW
espnow_deinit(mp_const_none);
MP_STATE_PORT(espnow_singleton) = NULL;
#endif
machine_timer_deinit_all();
#if MICROPY_PY_THREAD
mp_thread_deinit();
#endif
// Free any native code pointers that point to iRAM.
if (MP_STATE_PORT(native_code_pointers) != MP_OBJ_NULL) {
size_t len;
mp_obj_t *items;
mp_obj_list_get(MP_STATE_PORT(native_code_pointers), &len, &items);
for (size_t i = 0; i < len; ++i) {
heap_caps_free(MP_OBJ_TO_PTR(items[i]));
}
}
gc_sweep_all();
mp_hal_stdout_tx_str("MPY: soft reboot\r\n");
esp_restart();
// deinitialise peripherals
machine_pwm_deinit_all();
// TODO: machine_rmt_deinit_all();
machine_pins_deinit();
machine_deinit();
#if MICROPY_PY_USOCKET_EVENTS
usocket_events_deinit();
#endif
mp_deinit();
fflush(stdout);
goto soft_reset;
}
void boardctrl_startup(void) {
esp_err_t ret = nvs_flash_init();
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
nvs_flash_erase();
nvs_flash_init();
}
}
extern esp_err_t i2c_follower_init();
extern void i2c_check_for_data();
extern TaskHandle_t i2c_check_for_data_handle;
uint8_t * xStack;
StaticTask_t static_mp_handle;
void app_main(void) {
// Hook for a board to run code at start up.
// This defaults to initialising NVS.
MICROPY_BOARD_STARTUP();
for(uint8_t i=0;i<MAX_TASKS;i++) last_task_counters[i] = 0;
// Grab the idle tasks
idle_0_handle = xTaskGetIdleTaskHandleForCPU(0);
idle_1_handle = xTaskGetIdleTaskHandleForCPU(1);
i2c_follower_init();
xTaskCreatePinnedToCore(i2c_check_for_data, "i2c_check_for_data", 8192, NULL, 20, &i2c_check_for_data_handle, 0);
fflush(stderr);
delay_ms(500);
// Start the CV ADC reader task (reads ADS1015 over I2C, updates cached values)
extern void cv_read_task(void *pvParameter);
xTaskCreatePinnedToCore(cv_read_task, CV_READ_TASK_NAME, CV_READ_TASK_STACK_SIZE / sizeof(StackType_t), NULL, CV_READ_TASK_PRIORITY, &cv_read_handle, CV_READ_TASK_COREID);
#ifdef AMYBOARD_USB_HOST
fprintf(stderr,"Starting USB host on core %d\n", USB_TASK_COREID);
xTaskCreatePinnedToCore(run_usb, USB_TASK_NAME, (USB_TASK_STACK_SIZE) / sizeof(StackType_t), NULL, USB_TASK_PRIORITY, &usb_handle, USB_TASK_COREID);
fflush(stderr);
delay_ms(100);
#endif
fprintf(stderr,"Starting MicroPython on core %d\n", TULIP_MP_TASK_COREID);
xTaskCreatePinnedToCore(mp_task, TULIP_MP_TASK_NAME, (TULIP_MP_TASK_STACK_SIZE) / sizeof(StackType_t), NULL, TULIP_MP_TASK_PRIORITY, &tulip_mp_handle, TULIP_MP_TASK_COREID);
fflush(stderr);
delay_ms(100);
tsequencer_init();
}
void nlr_jump_fail(void *val) {
printf("NLR jump failed, val=%p\n", val);
esp_restart();
}
// modussl_mbedtls uses this function but it's not enabled in ESP IDF
void mbedtls_debug_set_threshold(int threshold) {
(void)threshold;
}
void *esp_native_code_commit(void *buf, size_t len, void *reloc) {
len = (len + 3) & ~3;
uint32_t *p = heap_caps_malloc(len, MALLOC_CAP_EXEC);
if (p == NULL) {
m_malloc_fail(len);
}
if (MP_STATE_PORT(native_code_pointers) == MP_OBJ_NULL) {
MP_STATE_PORT(native_code_pointers) = mp_obj_new_list(0, NULL);
}
mp_obj_list_append(MP_STATE_PORT(native_code_pointers), MP_OBJ_TO_PTR(p));
if (reloc) {
mp_native_relocate(reloc, buf, (uintptr_t)p);
}
memcpy(p, buf, len);
return p;
}
MP_REGISTER_ROOT_POINTER(mp_obj_t native_code_pointers);