2017-12-21 07:49:14 -05:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Scott Shawcroft 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 "supervisor/port.h"
|
|
|
|
#include "boards/board.h"
|
|
|
|
|
2020-03-05 20:14:54 -05:00
|
|
|
#include "nrfx/hal/nrf_clock.h"
|
2018-12-06 17:24:20 -05:00
|
|
|
#include "nrfx/hal/nrf_power.h"
|
|
|
|
#include "nrfx/drivers/include/nrfx_power.h"
|
2020-03-05 20:14:54 -05:00
|
|
|
#include "nrfx/drivers/include/nrfx_rtc.h"
|
2018-12-06 17:24:20 -05:00
|
|
|
|
2018-09-09 15:01:28 -04:00
|
|
|
#include "nrf/cache.h"
|
|
|
|
#include "nrf/clocks.h"
|
|
|
|
#include "nrf/power.h"
|
2018-10-16 11:05:02 -04:00
|
|
|
#include "nrf/timers.h"
|
2018-09-09 15:01:28 -04:00
|
|
|
|
2018-02-03 11:08:51 -05:00
|
|
|
#include "shared-module/gamepad/__init__.h"
|
2017-12-21 07:49:14 -05:00
|
|
|
#include "common-hal/microcontroller/Pin.h"
|
2019-08-29 18:44:27 -04:00
|
|
|
#include "common-hal/_bleio/__init__.h"
|
2019-10-12 15:42:15 -04:00
|
|
|
#include "common-hal/analogio/AnalogIn.h"
|
2018-09-25 15:12:10 -04:00
|
|
|
#include "common-hal/busio/I2C.h"
|
|
|
|
#include "common-hal/busio/SPI.h"
|
2019-02-12 22:34:05 -05:00
|
|
|
#include "common-hal/busio/UART.h"
|
2017-12-21 07:49:14 -05:00
|
|
|
#include "common-hal/pulseio/PWMOut.h"
|
2018-10-16 11:05:02 -04:00
|
|
|
#include "common-hal/pulseio/PulseOut.h"
|
2018-12-18 10:05:17 -05:00
|
|
|
#include "common-hal/pulseio/PulseIn.h"
|
2019-02-02 02:38:10 -05:00
|
|
|
#include "common-hal/rtc/RTC.h"
|
2020-01-08 15:15:27 -05:00
|
|
|
#include "common-hal/neopixel_write/__init__.h"
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2019-02-02 02:38:10 -05:00
|
|
|
#include "shared-bindings/rtc/__init__.h"
|
|
|
|
|
2019-09-08 14:08:15 -04:00
|
|
|
#ifdef CIRCUITPY_AUDIOBUSIO
|
|
|
|
#include "common-hal/audiobusio/I2SOut.h"
|
|
|
|
#endif
|
|
|
|
|
2019-07-15 20:56:21 -04:00
|
|
|
#ifdef CIRCUITPY_AUDIOPWMIO
|
2019-07-29 18:39:00 -04:00
|
|
|
#include "common-hal/audiopwmio/PWMAudioOut.h"
|
2019-07-15 20:56:21 -04:00
|
|
|
#endif
|
|
|
|
|
2018-12-06 17:24:20 -05:00
|
|
|
static void power_warning_handler(void) {
|
|
|
|
reset_into_safe_mode(BROWNOUT);
|
|
|
|
}
|
2018-09-09 15:01:28 -04:00
|
|
|
|
2020-03-05 20:14:54 -05:00
|
|
|
const nrfx_rtc_t rtc_instance = NRFX_RTC_INSTANCE(2);
|
|
|
|
|
|
|
|
const nrfx_rtc_config_t rtc_config = {
|
|
|
|
.prescaler = RTC_FREQ_TO_PRESCALER(1024),
|
|
|
|
.reliable = 0,
|
|
|
|
.tick_latency = 0,
|
|
|
|
.interrupt_priority = 6
|
|
|
|
};
|
|
|
|
|
|
|
|
static volatile uint64_t overflowed_ticks = 0;
|
|
|
|
|
|
|
|
void rtc_handler(nrfx_rtc_int_type_t int_type) {
|
|
|
|
if (int_type == NRFX_RTC_INT_OVERFLOW) {
|
|
|
|
overflowed_ticks += (1L<<24);
|
|
|
|
}
|
|
|
|
// Do things common to all ports when the tick occurs
|
|
|
|
if (int_type == NRFX_RTC_INT_TICK) {
|
|
|
|
supervisor_tick();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void tick_init(void) {
|
|
|
|
if (!nrf_clock_lf_is_running(NRF_CLOCK)) {
|
|
|
|
nrf_clock_task_trigger(NRF_CLOCK, NRF_CLOCK_TASK_LFCLKSTART);
|
|
|
|
}
|
|
|
|
nrfx_rtc_counter_clear(&rtc_instance);
|
|
|
|
nrfx_rtc_init(&rtc_instance, &rtc_config, rtc_handler);
|
|
|
|
nrfx_rtc_enable(&rtc_instance);
|
|
|
|
nrfx_rtc_overflow_enable(&rtc_instance, true);
|
|
|
|
}
|
|
|
|
|
2018-12-06 17:24:20 -05:00
|
|
|
safe_mode_t port_init(void) {
|
2018-09-09 15:01:28 -04:00
|
|
|
nrf_peripherals_clocks_init();
|
|
|
|
|
|
|
|
// If GPIO voltage is set wrong in UICR, this will fix it, and
|
|
|
|
// will also do a reset to make the change take effect.
|
|
|
|
nrf_peripherals_power_init();
|
|
|
|
|
2018-12-06 17:24:20 -05:00
|
|
|
nrfx_power_pofwarn_config_t power_failure_config;
|
|
|
|
power_failure_config.handler = power_warning_handler;
|
|
|
|
power_failure_config.thr = NRF_POWER_POFTHR_V27;
|
2018-12-06 19:38:14 -05:00
|
|
|
#if NRF_POWER_HAS_VDDH
|
2018-12-06 17:24:20 -05:00
|
|
|
power_failure_config.thrvddh = NRF_POWER_POFTHRVDDH_V27;
|
2018-12-06 19:38:14 -05:00
|
|
|
#endif
|
2018-12-06 17:24:20 -05:00
|
|
|
nrfx_power_pof_init(&power_failure_config);
|
|
|
|
nrfx_power_pof_enable(&power_failure_config);
|
|
|
|
|
2018-09-09 15:01:28 -04:00
|
|
|
nrf_peripherals_enable_cache();
|
2017-12-21 07:49:14 -05:00
|
|
|
|
|
|
|
// Configure millisecond timer initialization.
|
|
|
|
tick_init();
|
2019-04-01 22:23:55 -04:00
|
|
|
|
2019-10-14 23:38:41 -04:00
|
|
|
#if CIRCUITPY_ANALOGIO
|
|
|
|
analogin_init();
|
|
|
|
#endif
|
|
|
|
|
2017-12-21 07:49:14 -05:00
|
|
|
return NO_SAFE_MODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_port(void) {
|
2018-09-25 15:12:10 -04:00
|
|
|
#ifdef CIRCUITPY_GAMEPAD_TICKS
|
|
|
|
gamepad_reset();
|
|
|
|
#endif
|
2018-02-03 11:08:51 -05:00
|
|
|
|
2018-09-25 15:12:10 -04:00
|
|
|
i2c_reset();
|
|
|
|
spi_reset();
|
2019-02-12 22:34:05 -05:00
|
|
|
uart_reset();
|
2020-01-08 15:15:27 -05:00
|
|
|
neopixel_write_reset();
|
2019-06-06 17:49:32 -04:00
|
|
|
|
2019-10-12 15:42:15 -04:00
|
|
|
#if CIRCUITPY_AUDIOBUSIO
|
2019-09-08 14:08:15 -04:00
|
|
|
i2s_reset();
|
|
|
|
#endif
|
|
|
|
|
2019-10-12 15:42:15 -04:00
|
|
|
#if CIRCUITPY_AUDIOPWMIO
|
2019-07-15 20:56:21 -04:00
|
|
|
audiopwmout_reset();
|
|
|
|
#endif
|
|
|
|
|
2019-09-08 14:08:15 -04:00
|
|
|
|
2019-06-06 17:49:32 -04:00
|
|
|
#if CIRCUITPY_PULSEIO
|
2017-12-21 07:49:14 -05:00
|
|
|
pwmout_reset();
|
2018-10-16 11:05:02 -04:00
|
|
|
pulseout_reset();
|
2018-12-18 10:05:17 -05:00
|
|
|
pulsein_reset();
|
2019-06-06 17:49:32 -04:00
|
|
|
#endif
|
|
|
|
|
2018-10-16 11:05:02 -04:00
|
|
|
timers_reset();
|
2019-04-01 22:23:55 -04:00
|
|
|
|
2019-06-06 17:49:32 -04:00
|
|
|
#if CIRCUITPY_BLEIO
|
2018-12-28 22:55:29 -05:00
|
|
|
bleio_reset();
|
2019-06-06 17:49:32 -04:00
|
|
|
#endif
|
2018-12-28 22:55:29 -05:00
|
|
|
|
2017-12-21 07:49:14 -05:00
|
|
|
reset_all_pins();
|
|
|
|
}
|
|
|
|
|
2018-10-19 21:46:22 -04:00
|
|
|
void reset_to_bootloader(void) {
|
|
|
|
enum { DFU_MAGIC_SERIAL = 0x4e };
|
|
|
|
|
|
|
|
NRF_POWER->GPREGRET = DFU_MAGIC_SERIAL;
|
2018-12-06 17:24:20 -05:00
|
|
|
reset_cpu();
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_cpu(void) {
|
2018-10-19 21:46:22 -04:00
|
|
|
NVIC_SystemReset();
|
|
|
|
}
|
|
|
|
|
2020-01-18 21:06:56 -05:00
|
|
|
uint32_t *port_heap_get_bottom(void) {
|
|
|
|
return port_stack_get_limit();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *port_heap_get_top(void) {
|
|
|
|
return port_stack_get_top();
|
|
|
|
}
|
|
|
|
|
2019-10-18 05:00:09 -04:00
|
|
|
uint32_t *port_stack_get_limit(void) {
|
|
|
|
return &_ebss;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *port_stack_get_top(void) {
|
|
|
|
return &_estack;
|
|
|
|
}
|
|
|
|
|
2018-12-06 17:24:20 -05:00
|
|
|
extern uint32_t _ebss;
|
|
|
|
// Place the word to save just after our BSS section that gets blanked.
|
|
|
|
void port_set_saved_word(uint32_t value) {
|
|
|
|
_ebss = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t port_get_saved_word(void) {
|
|
|
|
return _ebss;
|
|
|
|
}
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2020-03-05 20:14:54 -05:00
|
|
|
uint64_t port_get_raw_ticks(void) {
|
|
|
|
return overflowed_ticks + nrfx_rtc_counter_get(&rtc_instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable 1/1024 second tick.
|
|
|
|
void port_enable_tick(void) {
|
|
|
|
nrfx_rtc_tick_enable(&rtc_instance, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable 1/1024 second tick.
|
|
|
|
void port_disable_tick(void) {
|
|
|
|
nrfx_rtc_tick_disable(&rtc_instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
void port_interrupt_after_ticks(uint32_t ticks) {
|
|
|
|
uint32_t current_ticks = nrfx_rtc_counter_get(&rtc_instance);
|
|
|
|
uint32_t diff = 3;
|
|
|
|
if (ticks > diff) {
|
|
|
|
diff = ticks;
|
|
|
|
}
|
|
|
|
nrfx_rtc_cc_set(&rtc_instance, 0, current_ticks + diff, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void port_sleep_until_interrupt(void) {
|
|
|
|
// Clear the FPU interrupt because it can prevent us from sleeping.
|
|
|
|
if (NVIC_GetPendingIRQ(FPU_IRQn)) {
|
|
|
|
__set_FPSCR(__get_FPSCR() & ~(0x9f));
|
|
|
|
(void) __get_FPSCR();
|
|
|
|
NVIC_ClearPendingIRQ(FPU_IRQn);
|
|
|
|
}
|
|
|
|
sd_app_evt_wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-06 17:24:20 -05:00
|
|
|
void HardFault_Handler(void) {
|
|
|
|
reset_into_safe_mode(HARD_CRASH);
|
2018-10-16 11:05:02 -04:00
|
|
|
while (true) {
|
2018-12-06 17:24:20 -05:00
|
|
|
asm("nop;");
|
2018-10-16 11:05:02 -04:00
|
|
|
}
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|