2022-10-19 11:05:48 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2022 microDev
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-12-02 17:54:42 -05:00
|
|
|
#include "bindings/espulp/__init__.h"
|
|
|
|
#include "bindings/espulp/ULP.h"
|
2022-10-19 11:05:48 -04:00
|
|
|
|
|
|
|
#include "py/runtime.h"
|
|
|
|
|
2022-12-02 17:54:42 -05:00
|
|
|
#include "shared-bindings/microcontroller/Pin.h"
|
|
|
|
|
2023-01-21 05:32:59 -05:00
|
|
|
#if defined(CONFIG_IDF_TARGET_ESP32)
|
|
|
|
#include "esp32/ulp.h"
|
|
|
|
#define ULP_COPROC_RESERVE_MEM (CONFIG_ESP32_ULP_COPROC_RESERVE_MEM)
|
|
|
|
#elif defined(CONFIG_IDF_TARGET_ESP32S2)
|
2022-10-19 11:05:48 -04:00
|
|
|
#include "esp32s2/ulp.h"
|
|
|
|
#include "esp32s2/ulp_riscv.h"
|
2022-12-02 17:54:42 -05:00
|
|
|
#define ULP_COPROC_RESERVE_MEM (CONFIG_ESP32S2_ULP_COPROC_RESERVE_MEM)
|
2022-10-19 11:05:48 -04:00
|
|
|
#elif defined(CONFIG_IDF_TARGET_ESP32S3)
|
|
|
|
#include "esp32s3/ulp.h"
|
|
|
|
#include "esp32s3/ulp_riscv.h"
|
2022-12-02 17:54:42 -05:00
|
|
|
#define ULP_COPROC_RESERVE_MEM (CONFIG_ESP32S3_ULP_COPROC_RESERVE_MEM)
|
2022-10-19 11:05:48 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// To-do idf v5.0: remove following include
|
|
|
|
#include "soc/rtc_cntl_reg.h"
|
|
|
|
|
2022-12-02 17:54:42 -05:00
|
|
|
STATIC bool ulp_used = false;
|
|
|
|
STATIC uint32_t pins_used = 0;
|
|
|
|
|
|
|
|
void espulp_reset(void) {
|
|
|
|
// NOTE: This *doesn't* disable the ULP. It'll keep running even when CircuitPython isn't.
|
|
|
|
ulp_used = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_espulp_ulp_run(espulp_ulp_obj_t *self, uint32_t *program, size_t length, uint32_t pin_mask) {
|
|
|
|
if (length > ULP_COPROC_RESERVE_MEM) {
|
|
|
|
mp_raise_ValueError(translate("Program too long"));
|
|
|
|
}
|
2023-01-21 05:32:59 -05:00
|
|
|
|
|
|
|
if (
|
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
|
GET_PERI_REG_MASK(RTC_CNTL_STATE0_REG, RTC_CNTL_ULP_CP_SLP_TIMER_EN)
|
|
|
|
#else
|
|
|
|
GET_PERI_REG_MASK(RTC_CNTL_ULP_CP_TIMER_REG, RTC_CNTL_ULP_CP_SLP_TIMER_EN)
|
|
|
|
#endif
|
|
|
|
) {
|
2022-10-22 09:38:49 -04:00
|
|
|
mp_raise_RuntimeError(translate("Already running"));
|
|
|
|
}
|
|
|
|
|
2022-12-02 17:54:42 -05:00
|
|
|
if (pin_mask >= (1 << 22)) {
|
2022-12-20 11:00:13 -05:00
|
|
|
raise_ValueError_invalid_pin();
|
2022-12-02 17:54:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < 32; i++) {
|
|
|
|
if ((pin_mask & (1 << i)) != 0 && !pin_number_is_free(i)) {
|
|
|
|
mp_raise_ValueError_varg(translate("%q in use"), MP_QSTR_Pin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < 32; i++) {
|
|
|
|
if ((pin_mask & (1 << i)) != 0) {
|
|
|
|
claim_pin_number(i);
|
|
|
|
never_reset_pin_number(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pins_used = pin_mask;
|
|
|
|
|
|
|
|
ulp_set_wakeup_period(0, 20000);
|
2023-01-21 05:32:59 -05:00
|
|
|
|
|
|
|
switch (self->arch) {
|
|
|
|
case FSM:
|
|
|
|
ulp_load_binary(0, (const uint8_t *)program, length);
|
|
|
|
ulp_run(0);
|
|
|
|
break;
|
|
|
|
case RISCV:
|
|
|
|
#ifndef CONFIG_IDF_TARGET_ESP32
|
|
|
|
ulp_riscv_load_binary((const uint8_t *)program, length);
|
|
|
|
ulp_riscv_run();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
mp_raise_NotImplementedError(NULL);
|
|
|
|
break;
|
|
|
|
}
|
2022-10-19 11:05:48 -04:00
|
|
|
}
|
|
|
|
|
2022-12-02 17:54:42 -05:00
|
|
|
void common_hal_espulp_ulp_halt(espulp_ulp_obj_t *self) {
|
2023-01-21 05:32:59 -05:00
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
|
mp_raise_NotImplementedError(NULL);
|
|
|
|
#else
|
2022-10-19 11:05:48 -04:00
|
|
|
// To-do idf v5.0: use following functions
|
|
|
|
// ulp_riscv_timer_stop();
|
|
|
|
// ulp_riscv_halt();
|
|
|
|
|
2022-12-20 11:00:13 -05:00
|
|
|
// stop the ulp timer so that it doesn't restart the cpu
|
2022-10-19 11:05:48 -04:00
|
|
|
CLEAR_PERI_REG_MASK(RTC_CNTL_ULP_CP_TIMER_REG, RTC_CNTL_ULP_CP_SLP_TIMER_EN);
|
2022-12-02 17:54:42 -05:00
|
|
|
|
2022-10-19 11:05:48 -04:00
|
|
|
// suspends the ulp operation
|
|
|
|
SET_PERI_REG_MASK(RTC_CNTL_COCPU_CTRL_REG, RTC_CNTL_COCPU_DONE);
|
2022-12-02 17:54:42 -05:00
|
|
|
|
2022-10-22 09:38:49 -04:00
|
|
|
// resets the processor
|
2022-10-19 11:05:48 -04:00
|
|
|
SET_PERI_REG_MASK(RTC_CNTL_COCPU_CTRL_REG, RTC_CNTL_COCPU_SHUT_RESET_EN);
|
2023-01-21 05:32:59 -05:00
|
|
|
#endif
|
2022-12-02 17:54:42 -05:00
|
|
|
|
|
|
|
// Release pins we were using.
|
|
|
|
for (uint8_t i = 0; i < 32; i++) {
|
|
|
|
if ((pins_used & (1 << i)) != 0) {
|
|
|
|
reset_pin_number(i);
|
|
|
|
}
|
|
|
|
}
|
2022-10-19 11:05:48 -04:00
|
|
|
}
|
|
|
|
|
2023-01-26 02:31:14 -05:00
|
|
|
void common_hal_espulp_ulp_construct(espulp_ulp_obj_t *self, espulp_architecture_t arch) {
|
2022-12-20 11:00:13 -05:00
|
|
|
// Use a static variable to track ULP in use so that subsequent code runs can
|
|
|
|
// use a running ULP. This is only to prevent multiple portions of user code
|
|
|
|
// from using the ULP concurrently.
|
2022-12-02 17:54:42 -05:00
|
|
|
if (ulp_used) {
|
|
|
|
mp_raise_ValueError_varg(translate("%q in use"), MP_QSTR_ULP);
|
|
|
|
}
|
2023-01-21 05:32:59 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
|
if (self->arch == RISCV) {
|
|
|
|
mp_raise_NotImplementedError(NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
self->arch = arch;
|
2022-12-02 17:54:42 -05:00
|
|
|
self->inited = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_espulp_ulp_deinited(espulp_ulp_obj_t *self) {
|
|
|
|
return !self->inited;
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_espulp_ulp_deinit(espulp_ulp_obj_t *self) {
|
|
|
|
if (common_hal_espulp_ulp_deinited(self)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
common_hal_espulp_ulp_halt(self);
|
|
|
|
self->inited = false;
|
|
|
|
ulp_used = false;
|
2022-10-19 11:05:48 -04:00
|
|
|
}
|