2020-04-17 19:23:28 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Scott Shawcroft for Adafruit Industries
|
|
|
|
* Copyright (c) 2019 Lucian Copeland for Adafruit Industries
|
|
|
|
*
|
|
|
|
* 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 <stdint.h>
|
|
|
|
#include <sys/time.h>
|
2020-12-02 21:05:29 -05:00
|
|
|
#include "supervisor/board.h"
|
2020-04-17 19:23:28 -04:00
|
|
|
#include "supervisor/port.h"
|
2022-08-02 08:10:51 -04:00
|
|
|
#include "supervisor/filesystem.h"
|
2020-11-05 22:27:21 -05:00
|
|
|
#include "py/runtime.h"
|
2020-04-17 19:23:28 -04:00
|
|
|
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
|
2022-08-02 08:10:51 -04:00
|
|
|
#include "bindings/espidf/__init__.h"
|
2020-05-19 20:46:29 -04:00
|
|
|
#include "common-hal/microcontroller/Pin.h"
|
2020-10-06 15:00:26 -04:00
|
|
|
#include "common-hal/analogio/AnalogOut.h"
|
2020-05-28 18:51:33 -04:00
|
|
|
#include "common-hal/busio/I2C.h"
|
|
|
|
#include "common-hal/busio/SPI.h"
|
|
|
|
#include "common-hal/busio/UART.h"
|
2020-12-17 14:04:56 -05:00
|
|
|
#include "common-hal/dualbank/__init__.h"
|
2020-11-19 01:14:22 -05:00
|
|
|
#include "common-hal/ps2io/Ps2.h"
|
2020-08-10 12:14:16 -04:00
|
|
|
#include "common-hal/pulseio/PulseIn.h"
|
2020-08-18 16:08:33 -04:00
|
|
|
#include "common-hal/pwmio/PWMOut.h"
|
2020-11-14 01:11:14 -05:00
|
|
|
#include "common-hal/watchdog/WatchDogTimer.h"
|
2021-01-13 19:05:07 -05:00
|
|
|
#include "common-hal/socketpool/Socket.h"
|
2020-07-30 20:58:12 -04:00
|
|
|
#include "common-hal/wifi/__init__.h"
|
2021-08-19 15:18:13 -04:00
|
|
|
#include "supervisor/background_callback.h"
|
2020-04-17 19:23:28 -04:00
|
|
|
#include "supervisor/memory.h"
|
|
|
|
#include "supervisor/shared/tick.h"
|
2022-01-17 18:14:31 -05:00
|
|
|
#include "shared-bindings/microcontroller/__init__.h"
|
|
|
|
#include "shared-bindings/microcontroller/RunMode.h"
|
2020-09-22 02:07:12 -04:00
|
|
|
#include "shared-bindings/rtc/__init__.h"
|
2022-07-12 12:37:09 -04:00
|
|
|
#include "shared-bindings/socketpool/__init__.h"
|
2022-12-08 16:21:20 -05:00
|
|
|
#include "shared-module/os/__init__.h"
|
2020-04-17 19:23:28 -04:00
|
|
|
|
2020-08-21 19:20:58 -04:00
|
|
|
#include "peripherals/rmt.h"
|
2020-11-18 01:46:14 -05:00
|
|
|
#include "peripherals/timer.h"
|
2021-09-25 14:30:00 -04:00
|
|
|
|
|
|
|
#if CIRCUITPY_COUNTIO || CIRCUITPY_ROTARYIO || CIRCUITPY_FREQUENCYIO
|
|
|
|
#include "peripherals/pcnt.h"
|
2021-11-23 13:30:00 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CIRCUITPY_TOUCHIO_USE_NATIVE
|
2020-12-19 02:26:34 -05:00
|
|
|
#include "peripherals/touch.h"
|
2021-09-25 14:30:00 -04:00
|
|
|
#endif
|
2020-07-30 20:58:12 -04:00
|
|
|
|
2020-10-30 11:05:16 -04:00
|
|
|
#if CIRCUITPY_AUDIOBUSIO
|
2021-01-09 14:48:36 -05:00
|
|
|
#include "common-hal/audiobusio/__init__.h"
|
2020-10-30 11:05:16 -04:00
|
|
|
#endif
|
|
|
|
|
2022-01-18 18:09:33 -05:00
|
|
|
#if CIRCUITPY_BLEIO
|
|
|
|
#include "shared-bindings/_bleio/__init__.h"
|
|
|
|
#endif
|
|
|
|
|
2022-08-04 16:11:55 -04:00
|
|
|
#if CIRCUITPY_ESP32_CAMERA
|
|
|
|
#include "esp_camera.h"
|
2021-06-01 21:15:43 -04:00
|
|
|
#endif
|
|
|
|
|
2022-06-26 17:45:35 -04:00
|
|
|
#ifndef CONFIG_IDF_TARGET_ESP32
|
2021-09-25 14:30:00 -04:00
|
|
|
#include "soc/cache_memory.h"
|
2022-06-26 17:45:35 -04:00
|
|
|
#endif
|
|
|
|
|
2022-08-02 15:01:42 -04:00
|
|
|
#include "soc/efuse_reg.h"
|
2021-09-25 14:30:00 -04:00
|
|
|
#include "soc/rtc_cntl_reg.h"
|
|
|
|
|
2021-11-23 13:30:00 -05:00
|
|
|
#include "esp_debug_helpers.h"
|
2021-09-25 14:30:00 -04:00
|
|
|
|
2022-08-02 15:01:42 -04:00
|
|
|
#include "bootloader_flash_config.h"
|
|
|
|
#include "esp_efuse.h"
|
2022-01-19 14:36:15 -05:00
|
|
|
#include "esp_ipc.h"
|
2022-08-02 15:01:42 -04:00
|
|
|
#include "esp_rom_efuse.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
|
#include "esp32/rom/efuse.h"
|
|
|
|
#endif
|
2022-01-19 14:36:15 -05:00
|
|
|
|
2022-08-02 08:10:51 -04:00
|
|
|
#include "esp_log.h"
|
|
|
|
#define TAG "port"
|
2021-12-04 09:16:37 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
uint32_t *heap;
|
2020-08-21 19:20:58 -04:00
|
|
|
uint32_t heap_size;
|
2020-08-04 10:59:05 -04:00
|
|
|
|
2020-04-17 19:23:28 -04:00
|
|
|
STATIC esp_timer_handle_t _tick_timer;
|
2020-12-08 20:13:00 -05:00
|
|
|
STATIC esp_timer_handle_t _sleep_timer;
|
|
|
|
|
|
|
|
TaskHandle_t circuitpython_task = NULL;
|
2020-04-17 19:23:28 -04:00
|
|
|
|
2020-09-25 14:28:04 -04:00
|
|
|
extern void esp_restart(void) NORETURN;
|
|
|
|
|
2022-01-19 14:36:15 -05:00
|
|
|
STATIC void tick_on_cp_core(void *arg) {
|
2020-04-17 19:23:28 -04:00
|
|
|
supervisor_tick();
|
2020-12-22 19:13:02 -05:00
|
|
|
|
|
|
|
// CircuitPython's VM is run in a separate FreeRTOS task from timer callbacks. So, we have to
|
|
|
|
// notify the main task every time in case it's waiting for us.
|
|
|
|
xTaskNotifyGive(circuitpython_task);
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
2022-01-19 14:36:15 -05:00
|
|
|
// This function may happen on the PRO core when CP is on the APP core. So, make
|
|
|
|
// sure we run on the CP core.
|
|
|
|
STATIC void tick_timer_cb(void *arg) {
|
|
|
|
#if defined(CONFIG_FREERTOS_UNICORE) && CONFIG_FREERTOS_UNICORE
|
|
|
|
tick_on_cp_core(arg);
|
|
|
|
#else
|
|
|
|
// This only blocks until the start of the function. That's ok since the PRO
|
|
|
|
// core shouldn't care what we do.
|
|
|
|
esp_ipc_call(CONFIG_ESP_MAIN_TASK_AFFINITY, tick_on_cp_core, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void sleep_timer_cb(void *arg);
|
2020-12-08 20:13:00 -05:00
|
|
|
|
2022-08-02 15:01:42 -04:00
|
|
|
// The ESP-IDF determines these pins at runtime so we do too. This code is based on:
|
|
|
|
// https://github.com/espressif/esp-idf/blob/6d85d53ceec30c818a92c2fff8f5437d21c4720f/components/esp_hw_support/port/esp32/spiram_psram.c#L810
|
|
|
|
// IO-pins for PSRAM.
|
|
|
|
// WARNING: PSRAM shares all but the CS and CLK pins with the flash, so these defines
|
|
|
|
// hardcode the flash pins as well, making this code incompatible with either a setup
|
|
|
|
// that has the flash on non-standard pins or ESP32s with built-in flash.
|
|
|
|
#define PSRAM_SPIQ_SD0_IO 7
|
|
|
|
#define PSRAM_SPID_SD1_IO 8
|
|
|
|
#define PSRAM_SPIWP_SD3_IO 10
|
|
|
|
#define PSRAM_SPIHD_SD2_IO 9
|
|
|
|
|
|
|
|
#define FLASH_HSPI_CLK_IO 14
|
|
|
|
#define FLASH_HSPI_CS_IO 15
|
|
|
|
#define PSRAM_HSPI_SPIQ_SD0_IO 12
|
|
|
|
#define PSRAM_HSPI_SPID_SD1_IO 13
|
|
|
|
#define PSRAM_HSPI_SPIWP_SD3_IO 2
|
|
|
|
#define PSRAM_HSPI_SPIHD_SD2_IO 4
|
|
|
|
|
2022-08-04 13:44:52 -04:00
|
|
|
#ifdef CONFIG_SPIRAM
|
2022-08-02 15:01:42 -04:00
|
|
|
// PSRAM clock and cs IO should be configured based on hardware design.
|
|
|
|
// For ESP32-WROVER or ESP32-WROVER-B module, the clock IO is IO17, the cs IO is IO16,
|
|
|
|
// they are the default value for these two configs.
|
|
|
|
#define D0WD_PSRAM_CLK_IO CONFIG_D0WD_PSRAM_CLK_IO // Default value is 17
|
|
|
|
#define D0WD_PSRAM_CS_IO CONFIG_D0WD_PSRAM_CS_IO // Default value is 16
|
|
|
|
|
|
|
|
#define D2WD_PSRAM_CLK_IO CONFIG_D2WD_PSRAM_CLK_IO // Default value is 9
|
|
|
|
#define D2WD_PSRAM_CS_IO CONFIG_D2WD_PSRAM_CS_IO // Default value is 10
|
|
|
|
|
|
|
|
// There is no reason to change the pin of an embedded psram.
|
|
|
|
// So define the number of pin directly, instead of configurable.
|
|
|
|
#define D0WDR2_V3_PSRAM_CLK_IO 6
|
|
|
|
#define D0WDR2_V3_PSRAM_CS_IO 16
|
|
|
|
|
|
|
|
// For ESP32-PICO chip, the psram share clock with flash. The flash clock pin is fixed, which is IO6.
|
|
|
|
#define PICO_PSRAM_CLK_IO 6
|
|
|
|
#define PICO_PSRAM_CS_IO CONFIG_PICO_PSRAM_CS_IO // Default value is 10
|
|
|
|
|
|
|
|
#define PICO_V3_02_PSRAM_CLK_IO 10
|
|
|
|
#define PICO_V3_02_PSRAM_CS_IO 9
|
2022-08-04 13:44:52 -04:00
|
|
|
#endif // CONFIG_SPIRAM
|
2022-08-02 15:01:42 -04:00
|
|
|
|
|
|
|
static void _never_reset_spi_ram_flash(void) {
|
|
|
|
#if defined(CONFIG_IDF_TARGET_ESP32)
|
2022-08-04 13:44:52 -04:00
|
|
|
#if defined(CONFIG_SPIRAM)
|
2022-08-02 15:01:42 -04:00
|
|
|
uint32_t pkg_ver = esp_efuse_get_pkg_ver();
|
|
|
|
if (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D2WDQ5) {
|
|
|
|
never_reset_pin_number(D2WD_PSRAM_CLK_IO);
|
|
|
|
never_reset_pin_number(D2WD_PSRAM_CS_IO);
|
|
|
|
} else if (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD4 && esp_efuse_get_chip_ver() >= 3) {
|
|
|
|
// This chip is ESP32-PICO-V3 and doesn't have PSRAM.
|
|
|
|
} else if ((pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD2) || (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD4)) {
|
|
|
|
never_reset_pin_number(PICO_PSRAM_CLK_IO);
|
|
|
|
never_reset_pin_number(PICO_PSRAM_CS_IO);
|
|
|
|
} else if (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302) {
|
|
|
|
never_reset_pin_number(PICO_V3_02_PSRAM_CLK_IO);
|
|
|
|
never_reset_pin_number(PICO_V3_02_PSRAM_CS_IO);
|
|
|
|
} else if ((pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDQ6) || (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDQ5)) {
|
|
|
|
never_reset_pin_number(D0WD_PSRAM_CLK_IO);
|
|
|
|
never_reset_pin_number(D0WD_PSRAM_CS_IO);
|
|
|
|
} else if (pkg_ver == EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3) {
|
|
|
|
never_reset_pin_number(D0WDR2_V3_PSRAM_CLK_IO);
|
|
|
|
never_reset_pin_number(D0WDR2_V3_PSRAM_CS_IO);
|
|
|
|
}
|
2022-08-04 13:44:52 -04:00
|
|
|
#endif // CONFIG_SPIRAM
|
2022-08-02 15:01:42 -04:00
|
|
|
|
|
|
|
const uint32_t spiconfig = esp_rom_efuse_get_flash_gpio_info();
|
|
|
|
if (spiconfig == ESP_ROM_EFUSE_FLASH_DEFAULT_SPI) {
|
|
|
|
never_reset_pin_number(SPI_IOMUX_PIN_NUM_CLK);
|
|
|
|
never_reset_pin_number(SPI_IOMUX_PIN_NUM_CS);
|
|
|
|
never_reset_pin_number(PSRAM_SPIQ_SD0_IO);
|
|
|
|
never_reset_pin_number(PSRAM_SPID_SD1_IO);
|
|
|
|
never_reset_pin_number(PSRAM_SPIWP_SD3_IO);
|
|
|
|
never_reset_pin_number(PSRAM_SPIHD_SD2_IO);
|
|
|
|
} else if (spiconfig == ESP_ROM_EFUSE_FLASH_DEFAULT_HSPI) {
|
|
|
|
never_reset_pin_number(FLASH_HSPI_CLK_IO);
|
|
|
|
never_reset_pin_number(FLASH_HSPI_CS_IO);
|
|
|
|
never_reset_pin_number(PSRAM_HSPI_SPIQ_SD0_IO);
|
|
|
|
never_reset_pin_number(PSRAM_HSPI_SPID_SD1_IO);
|
|
|
|
never_reset_pin_number(PSRAM_HSPI_SPIWP_SD3_IO);
|
|
|
|
never_reset_pin_number(PSRAM_HSPI_SPIHD_SD2_IO);
|
|
|
|
} else {
|
|
|
|
never_reset_pin_number(EFUSE_SPICONFIG_RET_SPICLK(spiconfig));
|
|
|
|
never_reset_pin_number(EFUSE_SPICONFIG_RET_SPICS0(spiconfig));
|
|
|
|
never_reset_pin_number(EFUSE_SPICONFIG_RET_SPIQ(spiconfig));
|
|
|
|
never_reset_pin_number(EFUSE_SPICONFIG_RET_SPID(spiconfig));
|
|
|
|
never_reset_pin_number(EFUSE_SPICONFIG_RET_SPIHD(spiconfig));
|
|
|
|
never_reset_pin_number(bootloader_flash_get_wp_pin());
|
|
|
|
}
|
2022-08-04 13:44:52 -04:00
|
|
|
#endif // CONFIG_IDF_TARGET_ESP32
|
2022-08-02 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2020-04-17 19:23:28 -04:00
|
|
|
safe_mode_t port_init(void) {
|
|
|
|
esp_timer_create_args_t args;
|
|
|
|
args.callback = &tick_timer_cb;
|
|
|
|
args.arg = NULL;
|
|
|
|
args.dispatch_method = ESP_TIMER_TASK;
|
|
|
|
args.name = "CircuitPython Tick";
|
2020-06-26 19:56:17 -04:00
|
|
|
esp_timer_create(&args, &_tick_timer);
|
2020-07-30 20:58:12 -04:00
|
|
|
|
2020-12-08 20:13:00 -05:00
|
|
|
args.callback = &sleep_timer_cb;
|
|
|
|
args.arg = NULL;
|
|
|
|
args.dispatch_method = ESP_TIMER_TASK;
|
|
|
|
args.name = "CircuitPython Sleep";
|
|
|
|
esp_timer_create(&args, &_sleep_timer);
|
|
|
|
|
2020-12-22 19:13:02 -05:00
|
|
|
circuitpython_task = xTaskGetCurrentTaskHandle();
|
|
|
|
|
2020-12-07 19:39:54 -05:00
|
|
|
// Send the ROM output out of the UART. This includes early logs.
|
2020-12-11 23:34:01 -05:00
|
|
|
#ifdef DEBUG
|
|
|
|
ets_install_uart_printf();
|
|
|
|
#endif
|
2020-12-07 19:39:54 -05:00
|
|
|
|
2020-09-08 20:06:09 -04:00
|
|
|
heap = NULL;
|
2020-08-21 19:20:58 -04:00
|
|
|
|
2021-11-08 11:38:05 -05:00
|
|
|
#ifndef DEBUG
|
|
|
|
#define DEBUG (0)
|
|
|
|
#endif
|
|
|
|
|
2022-07-06 23:01:19 -04:00
|
|
|
#define pin_GPIOn(n) pin_GPIO##n
|
|
|
|
#define pin_GPIOn_EXPAND(x) pin_GPIOn(x)
|
|
|
|
|
|
|
|
#ifdef CONFIG_CONSOLE_UART_TX_GPIO
|
|
|
|
common_hal_never_reset_pin(&pin_GPIOn_EXPAND(CONFIG_CONSOLE_UART_TX_GPIO));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_CONSOLE_UART_RX_GPIO
|
|
|
|
common_hal_never_reset_pin(&pin_GPIOn_EXPAND(CONFIG_CONSOLE_UART_RX_GPIO));
|
|
|
|
#endif
|
|
|
|
|
2021-11-08 11:38:05 -05:00
|
|
|
#if DEBUG
|
2021-01-09 14:59:54 -05:00
|
|
|
// debug UART
|
2021-09-25 14:30:00 -04:00
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32C3
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO20);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO21);
|
2021-11-23 13:30:00 -05:00
|
|
|
#elif defined(CONFIG_IDF_TARGET_ESP32S2) || defined(CONFIG_IDF_TARGET_ESP32S3)
|
2021-01-09 14:59:54 -05:00
|
|
|
common_hal_never_reset_pin(&pin_GPIO43);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO44);
|
|
|
|
#endif
|
2021-09-25 14:30:00 -04:00
|
|
|
#endif
|
2021-01-09 14:59:54 -05:00
|
|
|
|
2021-11-08 11:38:05 -05:00
|
|
|
#ifndef ENABLE_JTAG
|
|
|
|
#define ENABLE_JTAG (defined(DEBUG) && DEBUG)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLE_JTAG
|
2021-01-07 17:23:21 -05:00
|
|
|
// JTAG
|
2021-09-25 14:30:00 -04:00
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32C3
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO4);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO5);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO6);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO7);
|
2021-11-23 13:30:00 -05:00
|
|
|
#elif defined(CONFIG_IDF_TARGET_ESP32S2) || defined(CONFIG_IDF_TARGET_ESP32S3)
|
2021-01-07 17:23:21 -05:00
|
|
|
common_hal_never_reset_pin(&pin_GPIO39);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO40);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO41);
|
|
|
|
common_hal_never_reset_pin(&pin_GPIO42);
|
|
|
|
#endif
|
2021-09-25 14:30:00 -04:00
|
|
|
#endif
|
2021-01-07 17:23:21 -05:00
|
|
|
|
2020-08-21 19:20:58 -04:00
|
|
|
#ifdef CONFIG_SPIRAM
|
2022-08-02 08:10:51 -04:00
|
|
|
{
|
|
|
|
intptr_t heap_start = common_hal_espidf_get_psram_start();
|
|
|
|
intptr_t heap_end = common_hal_espidf_get_psram_end();
|
|
|
|
size_t spiram_size = heap_end - heap_start;
|
|
|
|
if (spiram_size > 0) {
|
|
|
|
heap = (uint32_t *)heap_start;
|
|
|
|
heap_size = (heap_end - heap_start) / sizeof(uint32_t);
|
|
|
|
} else {
|
|
|
|
ESP_LOGE(TAG, "CONFIG_SPIRAM enabled but no spiram heap available");
|
|
|
|
}
|
2021-12-04 09:16:37 -05:00
|
|
|
}
|
2020-08-21 19:20:58 -04:00
|
|
|
#endif
|
|
|
|
|
2022-08-02 15:01:42 -04:00
|
|
|
_never_reset_spi_ram_flash();
|
|
|
|
|
2020-08-21 19:20:58 -04:00
|
|
|
if (heap == NULL) {
|
2022-07-13 15:00:59 -04:00
|
|
|
size_t heap_total = heap_caps_get_total_size(MALLOC_CAP_8BIT);
|
|
|
|
heap_size = MIN(heap_caps_get_largest_free_block(MALLOC_CAP_8BIT), heap_total / 2);
|
|
|
|
heap = malloc(heap_size);
|
|
|
|
heap_size = heap_size / sizeof(uint32_t);
|
2020-08-21 19:20:58 -04:00
|
|
|
}
|
2020-09-08 20:06:09 -04:00
|
|
|
if (heap == NULL) {
|
2022-07-13 14:53:22 -04:00
|
|
|
heap_size = 0;
|
2020-09-08 20:06:09 -04:00
|
|
|
return NO_HEAP;
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:03:24 -05:00
|
|
|
esp_reset_reason_t reason = esp_reset_reason();
|
2020-12-22 19:13:02 -05:00
|
|
|
switch (reason) {
|
|
|
|
case ESP_RST_BROWNOUT:
|
|
|
|
return BROWNOUT;
|
|
|
|
case ESP_RST_PANIC:
|
2021-01-16 20:38:08 -05:00
|
|
|
return HARD_CRASH;
|
2020-12-22 19:13:02 -05:00
|
|
|
case ESP_RST_INT_WDT:
|
2022-06-29 15:31:18 -04:00
|
|
|
// The interrupt watchdog is used internally to make sure that latency sensitive
|
|
|
|
// interrupt code isn't blocked. User watchdog resets come through ESP_RST_WDT.
|
|
|
|
return WATCHDOG_RESET;
|
2020-12-22 19:13:02 -05:00
|
|
|
case ESP_RST_WDT:
|
|
|
|
default:
|
|
|
|
break;
|
2020-12-08 14:03:24 -05:00
|
|
|
}
|
|
|
|
|
2020-04-17 19:23:28 -04:00
|
|
|
return NO_SAFE_MODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_port(void) {
|
add esp32-camera
This uses the esp32-camera code instead of our own homebrewed camera code.
In theory it supports esp32, esp32-s2 and esp32-s3, as long as they have
PSRAM.
This is very basic and doesn't support changing any camera parameters,
including switching resolution or pixelformat.
This is tested on the Kaluga (ESP32-S2) and ESP32-S3-Eye boards.
First, reserve some PSRAM by putting this line in `CIRCUITPY/_env`:
```
CIRCUITPY_RESERVED_PSRAM=524288
```
and hard-reset the board for it to take effect.
Now, the following script will take a very low-resolution jpeg file and print
it in the REPL in escape coded form:
```python
import board
import esp32_camera
c = esp32_camera.Camera(
data_pins=board.CAMERA_DATA,
external_clock_pin=board.CAMERA_XCLK,
pixel_clock_pin=board.CAMERA_PCLK,
vsync_pin=board.CAMERA_VSYNC,
href_pin=board.CAMERA_HREF,
pixel_format=esp32_camera.PixelFormat.JPEG,
i2c=board.I2C(),
external_clock_frequency=20_000_000)
m = c.take()
if m is not None:
print(bytes(m))
```
Then on desktop open a python repl and run something like
```python
>>> with open("my.jpg", "wb") as f: f.write(<BIG PASTE FROM REPL>)
```
and open my.jpg in a viewer.
2022-08-04 16:11:50 -04:00
|
|
|
// TODO deinit for esp32-camera
|
2022-08-04 16:11:55 -04:00
|
|
|
#if CIRCUITPY_ESP32_CAMERA
|
|
|
|
esp_camera_deinit();
|
2021-06-01 21:15:43 -04:00
|
|
|
#endif
|
|
|
|
|
2020-05-19 20:46:29 -04:00
|
|
|
reset_all_pins();
|
2020-05-28 18:51:33 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_ANALOGIO
|
2020-10-06 15:00:26 -04:00
|
|
|
analogout_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-10-06 15:00:26 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_AUDIOBUSIO
|
2020-10-30 11:05:16 -04:00
|
|
|
i2s_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-10-30 11:05:16 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_BUSIO
|
2020-05-28 18:51:33 -04:00
|
|
|
i2c_reset();
|
|
|
|
spi_reset();
|
|
|
|
uart_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-09-22 02:07:12 -04:00
|
|
|
|
2021-09-25 14:30:00 -04:00
|
|
|
#if CIRCUITPY_COUNTIO || CIRCUITPY_ROTARYIO || CIRCUITPY_FREQUENCYIO
|
2020-11-12 06:00:30 -05:00
|
|
|
peripherals_pcnt_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-11-12 06:00:30 -05:00
|
|
|
|
2021-09-18 08:30:18 -04:00
|
|
|
#if CIRCUITPY_DUALBANK
|
|
|
|
dualbank_reset();
|
|
|
|
#endif
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_FREQUENCYIO
|
2020-11-18 01:46:14 -05:00
|
|
|
peripherals_timer_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-11-18 01:46:14 -05:00
|
|
|
|
2021-09-18 08:30:18 -04:00
|
|
|
#if CIRCUITPY_PS2IO
|
|
|
|
ps2_reset();
|
|
|
|
#endif
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_PULSEIO
|
2021-09-18 08:30:18 -04:00
|
|
|
peripherals_rmt_reset();
|
2020-11-18 01:46:14 -05:00
|
|
|
pulsein_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-11-18 01:46:14 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_PWMIO
|
2020-11-18 01:46:14 -05:00
|
|
|
pwmout_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-11-12 06:00:30 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_RTC
|
2020-09-22 02:07:12 -04:00
|
|
|
rtc_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-09-22 02:07:12 -04:00
|
|
|
|
2022-07-12 12:37:09 -04:00
|
|
|
#if CIRCUITPY_SOCKETPOOL
|
|
|
|
socketpool_user_reset();
|
|
|
|
#endif
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_TOUCHIO_USE_NATIVE
|
2020-12-19 02:26:34 -05:00
|
|
|
peripherals_touch_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2020-11-26 00:52:44 -05:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if CIRCUITPY_WATCHDOG
|
2020-11-14 01:11:14 -05:00
|
|
|
watchdog_reset();
|
2021-03-15 09:57:36 -04:00
|
|
|
#endif
|
2022-08-11 14:25:34 -04:00
|
|
|
|
|
|
|
// Yield so the idle task can run and do any IDF cleanup needed.
|
|
|
|
port_yield();
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void reset_to_bootloader(void) {
|
2022-01-20 19:50:50 -05:00
|
|
|
common_hal_mcu_on_next_reset(RUNMODE_BOOTLOADER);
|
2020-09-25 14:28:04 -04:00
|
|
|
esp_restart();
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void reset_cpu(void) {
|
2021-09-25 14:30:00 -04:00
|
|
|
#ifndef CONFIG_IDF_TARGET_ESP32C3
|
2020-12-07 19:39:54 -05:00
|
|
|
esp_backtrace_print(100);
|
2021-09-25 14:30:00 -04:00
|
|
|
#endif
|
2020-09-24 12:20:32 -04:00
|
|
|
esp_restart();
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *port_heap_get_bottom(void) {
|
|
|
|
return heap;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *port_heap_get_top(void) {
|
2020-08-21 19:20:58 -04:00
|
|
|
return heap + heap_size;
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *port_stack_get_limit(void) {
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
2021-03-15 09:57:36 -04:00
|
|
|
return (uint32_t *)pxTaskGetStackStart(NULL);
|
2020-04-17 19:23:28 -04:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *port_stack_get_top(void) {
|
2020-11-10 11:41:10 -05:00
|
|
|
// The sizeof-arithmetic is so that the pointer arithmetic is done on units
|
|
|
|
// of uint32_t instead of units of StackType_t. StackType_t is an alias
|
|
|
|
// for a byte sized type.
|
|
|
|
//
|
|
|
|
// The main stack is bigger than CONFIG_ESP_MAIN_TASK_STACK_SIZE -- an
|
|
|
|
// "extra" size is added to it (TASK_EXTRA_STACK_SIZE). This total size is
|
|
|
|
// available as ESP_TASK_MAIN_STACK. Presumably TASK_EXTRA_STACK_SIZE is
|
|
|
|
// additional stack that can be used by the esp-idf runtime. But what's
|
|
|
|
// important for us is that some very outermost stack frames, such as
|
|
|
|
// pyexec_friendly_repl, could lie inside the "extra" area and be invisible
|
|
|
|
// to the garbage collector.
|
|
|
|
return port_stack_get_limit() + ESP_TASK_MAIN_STACK / (sizeof(uint32_t) / sizeof(StackType_t));
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
2020-10-11 08:59:33 -04:00
|
|
|
bool port_has_fixed_stack(void) {
|
|
|
|
return true;
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Place the word to save just after our BSS section that gets blanked.
|
|
|
|
void port_set_saved_word(uint32_t value) {
|
2020-12-07 19:39:54 -05:00
|
|
|
REG_WRITE(RTC_CNTL_STORE0_REG, value);
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t port_get_saved_word(void) {
|
2020-12-07 19:39:54 -05:00
|
|
|
return REG_READ(RTC_CNTL_STORE0_REG);
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
uint64_t port_get_raw_ticks(uint8_t *subticks) {
|
2020-11-17 18:45:12 -05:00
|
|
|
// Convert microseconds to subticks of 1/32768 seconds
|
|
|
|
// 32768/1000000 = 64/15625 in lowest terms
|
|
|
|
// this arithmetic overflows after 570 years
|
|
|
|
int64_t all_subticks = esp_timer_get_time() * 512 / 15625;
|
2020-04-17 19:23:28 -04:00
|
|
|
if (subticks != NULL) {
|
|
|
|
*subticks = all_subticks % 32;
|
|
|
|
}
|
2020-11-17 18:45:12 -05:00
|
|
|
return all_subticks / 32;
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enable 1/1024 second tick.
|
|
|
|
void port_enable_tick(void) {
|
2020-06-26 19:56:17 -04:00
|
|
|
esp_timer_start_periodic(_tick_timer, 1000000 / 1024);
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Disable 1/1024 second tick.
|
|
|
|
void port_disable_tick(void) {
|
|
|
|
esp_timer_stop(_tick_timer);
|
|
|
|
}
|
|
|
|
|
2021-01-09 14:59:54 -05:00
|
|
|
void port_wake_main_task() {
|
2020-12-08 20:13:00 -05:00
|
|
|
xTaskNotifyGive(circuitpython_task);
|
|
|
|
}
|
2020-11-05 22:27:21 -05:00
|
|
|
|
2022-07-27 20:00:38 -04:00
|
|
|
void port_wake_main_task_from_isr() {
|
|
|
|
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
|
|
|
vTaskNotifyGiveFromISR(circuitpython_task, &xHigherPriorityTaskWoken);
|
|
|
|
if (xHigherPriorityTaskWoken == pdTRUE) {
|
|
|
|
portYIELD_FROM_ISR();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-11 14:25:34 -04:00
|
|
|
void port_yield() {
|
|
|
|
vTaskDelay(4);
|
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void sleep_timer_cb(void *arg) {
|
2021-01-09 14:59:54 -05:00
|
|
|
port_wake_main_task();
|
|
|
|
}
|
|
|
|
|
2020-04-17 19:23:28 -04:00
|
|
|
void port_interrupt_after_ticks(uint32_t ticks) {
|
2020-12-08 20:13:00 -05:00
|
|
|
uint64_t timeout_us = ticks * 1000000ull / 1024;
|
|
|
|
if (esp_timer_start_once(_sleep_timer, timeout_us) != ESP_OK) {
|
|
|
|
esp_timer_stop(_sleep_timer);
|
|
|
|
esp_timer_start_once(_sleep_timer, timeout_us);
|
|
|
|
}
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 20:13:00 -05:00
|
|
|
// On the ESP we use FreeRTOS notifications instead of interrupts so this is a
|
|
|
|
// bit of a misnomer.
|
2020-12-02 21:05:29 -05:00
|
|
|
void port_idle_until_interrupt(void) {
|
2021-08-19 15:18:13 -04:00
|
|
|
if (!background_callback_pending()) {
|
|
|
|
xTaskNotifyWait(0x01, 0x01, NULL, portMAX_DELAY);
|
|
|
|
}
|
2020-04-17 19:23:28 -04:00
|
|
|
}
|
|
|
|
|
2022-08-02 08:10:51 -04:00
|
|
|
void port_post_boot_py(bool heap_valid) {
|
|
|
|
if (!heap_valid && filesystem_present()) {
|
|
|
|
mp_int_t reserved;
|
2022-12-09 15:07:23 -05:00
|
|
|
if (common_hal_os_getenv_int("CIRCUITPY_RESERVED_PSRAM", &reserved) == ENVIRON_OK) {
|
2022-08-02 08:10:51 -04:00
|
|
|
common_hal_espidf_set_reserved_psram(reserved);
|
|
|
|
}
|
|
|
|
common_hal_espidf_reserve_psram();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 19:23:28 -04:00
|
|
|
// Wrap main in app_main that the IDF expects.
|
|
|
|
extern void main(void);
|
2021-11-10 12:07:45 -05:00
|
|
|
extern void app_main(void);
|
2020-04-17 19:23:28 -04:00
|
|
|
void app_main(void) {
|
|
|
|
main();
|
|
|
|
}
|