2016-08-23 02:48:09 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2016-10-25 17:27:59 -04:00
|
|
|
#include "autoreset.h"
|
2016-10-05 14:07:29 -04:00
|
|
|
#include "compiler.h"
|
|
|
|
#include "asf/common/services/sleepmgr/sleepmgr.h"
|
2016-08-23 02:48:09 -04:00
|
|
|
#include "asf/common/services/usb/class/cdc/device/udi_cdc.h"
|
2016-08-24 16:17:55 -04:00
|
|
|
#include "asf/common2/services/delay/delay.h"
|
2016-09-15 20:01:19 -04:00
|
|
|
#include "asf/sam0/drivers/port/port.h"
|
2016-08-23 19:47:53 -04:00
|
|
|
#include "asf/sam0/drivers/sercom/usart/usart.h"
|
2016-10-28 23:16:39 -04:00
|
|
|
#include "lib/mp-readline/readline.h"
|
2017-01-10 18:57:04 -05:00
|
|
|
#include "lib/utils/interrupt_char.h"
|
2016-08-23 02:48:09 -04:00
|
|
|
#include "py/mphal.h"
|
2016-08-23 19:47:53 -04:00
|
|
|
#include "py/mpstate.h"
|
2016-10-26 16:32:41 -04:00
|
|
|
#include "py/smallint.h"
|
2016-11-03 18:50:59 -04:00
|
|
|
#include "shared-bindings/time/__init__.h"
|
2016-08-23 02:48:09 -04:00
|
|
|
|
2016-08-23 19:47:53 -04:00
|
|
|
#include "mpconfigboard.h"
|
2016-08-31 03:11:56 -04:00
|
|
|
#include "mphalport.h"
|
|
|
|
|
|
|
|
// Store received characters on our own so that we can filter control characters
|
|
|
|
// and act immediately on CTRL-C for example.
|
|
|
|
// This is adapted from asf/thirdparty/wireless/addons/sio2host
|
|
|
|
|
|
|
|
// Receive buffer
|
|
|
|
static uint8_t usb_rx_buf[USB_RX_BUF_SIZE];
|
|
|
|
|
|
|
|
// Receive buffer head
|
2016-09-21 18:13:37 -04:00
|
|
|
static volatile uint8_t usb_rx_buf_head;
|
2016-08-31 03:11:56 -04:00
|
|
|
|
|
|
|
// Receive buffer tail
|
2016-09-21 18:13:37 -04:00
|
|
|
static volatile uint8_t usb_rx_buf_tail;
|
2016-08-31 03:11:56 -04:00
|
|
|
|
|
|
|
// Number of bytes in receive buffer
|
2016-12-09 22:27:41 -05:00
|
|
|
volatile uint8_t usb_rx_count;
|
2016-08-23 19:47:53 -04:00
|
|
|
|
2016-12-09 22:27:41 -05:00
|
|
|
volatile bool mp_cdc_enabled = false;
|
2016-08-31 03:11:56 -04:00
|
|
|
|
2016-08-23 19:47:53 -04:00
|
|
|
extern struct usart_module usart_instance;
|
|
|
|
|
2017-01-26 21:05:46 -05:00
|
|
|
// Read by main to know when USB is connected.
|
|
|
|
volatile bool mp_msc_enabled = false;
|
2016-10-05 14:07:29 -04:00
|
|
|
bool mp_msc_enable()
|
|
|
|
{
|
|
|
|
mp_msc_enabled = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_msc_disable()
|
|
|
|
{
|
|
|
|
mp_msc_enabled = false;
|
|
|
|
}
|
|
|
|
|
2016-08-23 02:48:09 -04:00
|
|
|
bool mp_cdc_enable(uint8_t port)
|
|
|
|
{
|
2016-10-25 21:23:04 -04:00
|
|
|
mp_cdc_enabled = false;
|
2016-08-23 02:48:09 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_cdc_disable(uint8_t port)
|
|
|
|
{
|
|
|
|
mp_cdc_enabled = false;
|
|
|
|
}
|
|
|
|
|
2016-10-25 21:23:04 -04:00
|
|
|
void usb_dtr_notify(uint8_t port, bool set) {
|
|
|
|
mp_cdc_enabled = set;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_rts_notify(uint8_t port, bool set) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-31 03:11:56 -04:00
|
|
|
void usb_rx_notify(void)
|
|
|
|
{
|
2016-09-21 18:13:37 -04:00
|
|
|
irqflags_t flags;
|
2016-08-31 03:11:56 -04:00
|
|
|
if (mp_cdc_enabled) {
|
|
|
|
while (udi_cdc_is_rx_ready()) {
|
|
|
|
uint8_t c;
|
|
|
|
|
2016-09-21 18:13:37 -04:00
|
|
|
// Introduce a critical section to avoid buffer corruption. We use
|
|
|
|
// cpu_irq_save instead of cpu_irq_disable because we don't know the
|
|
|
|
// current state of IRQs. They may have been turned off already and
|
|
|
|
// we don't want to accidentally turn them back on.
|
|
|
|
flags = cpu_irq_save();
|
|
|
|
// If our buffer is full, then don't get another character otherwise
|
|
|
|
// we'll lose a previous character.
|
|
|
|
if (usb_rx_count >= USB_RX_BUF_SIZE) {
|
|
|
|
cpu_irq_restore(flags);
|
|
|
|
break;
|
2016-08-31 03:11:56 -04:00
|
|
|
}
|
|
|
|
|
2016-09-21 18:13:37 -04:00
|
|
|
uint8_t current_tail = usb_rx_buf_tail;
|
|
|
|
// Pretend we've received a character so that any nested calls to
|
|
|
|
// this function have to consider the spot we've reserved.
|
2016-08-31 03:11:56 -04:00
|
|
|
if ((USB_RX_BUF_SIZE - 1) == usb_rx_buf_tail) {
|
|
|
|
// Reached the end of buffer, revert back to beginning of
|
|
|
|
// buffer.
|
|
|
|
usb_rx_buf_tail = 0x00;
|
|
|
|
} else {
|
|
|
|
usb_rx_buf_tail++;
|
|
|
|
}
|
2016-09-21 18:13:37 -04:00
|
|
|
// The count of characters present in receive buffer is
|
|
|
|
// incremented.
|
|
|
|
usb_rx_count++;
|
|
|
|
// WARNING(tannewt): This call can call us back with the next
|
|
|
|
// character!
|
|
|
|
c = udi_cdc_getc();
|
|
|
|
|
2017-01-10 18:57:04 -05:00
|
|
|
if (c == mp_interrupt_char) {
|
2016-09-21 18:13:37 -04:00
|
|
|
// We consumed a character rather than adding it to the rx
|
|
|
|
// buffer so undo the modifications we made to count and the
|
|
|
|
// tail.
|
|
|
|
usb_rx_count--;
|
|
|
|
usb_rx_buf_tail = current_tail;
|
|
|
|
cpu_irq_restore(flags);
|
|
|
|
mp_keyboard_interrupt();
|
|
|
|
// Don't put the interrupt into the buffer, just continue.
|
|
|
|
continue;
|
|
|
|
}
|
2016-08-31 03:11:56 -04:00
|
|
|
|
2016-09-21 18:13:37 -04:00
|
|
|
// We put the next character where we expected regardless of whether
|
|
|
|
// the next character was already loaded in the buffer.
|
|
|
|
usb_rx_buf[current_tail] = c;
|
|
|
|
|
|
|
|
cpu_irq_restore(flags);
|
2016-08-31 03:11:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:50:59 -04:00
|
|
|
int receive_usb(void) {
|
2016-09-21 18:13:37 -04:00
|
|
|
if (usb_rx_count == 0) {
|
2016-08-31 03:11:56 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-25 17:27:59 -04:00
|
|
|
// Disable autoreset if someone is using the repl.
|
|
|
|
autoreset_disable();
|
|
|
|
|
2016-08-31 03:11:56 -04:00
|
|
|
// Copy from head.
|
2016-09-21 18:13:37 -04:00
|
|
|
cpu_irq_disable();
|
2016-08-31 03:11:56 -04:00
|
|
|
int data = usb_rx_buf[usb_rx_buf_head];
|
|
|
|
usb_rx_buf_head++;
|
|
|
|
usb_rx_count--;
|
|
|
|
if ((USB_RX_BUF_SIZE) == usb_rx_buf_head) {
|
|
|
|
usb_rx_buf_head = 0;
|
|
|
|
}
|
2016-09-21 18:13:37 -04:00
|
|
|
cpu_irq_enable();
|
|
|
|
|
|
|
|
// Call usb_rx_notify if we just emptied a spot in the buffer.
|
|
|
|
if (usb_rx_count == USB_RX_BUF_SIZE - 1) {
|
|
|
|
usb_rx_notify();
|
|
|
|
}
|
2016-08-31 03:11:56 -04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2016-08-23 02:48:09 -04:00
|
|
|
int mp_hal_stdin_rx_chr(void) {
|
2016-09-15 20:01:19 -04:00
|
|
|
for (;;) {
|
2016-11-29 17:58:37 -05:00
|
|
|
#ifdef MICROPY_VM_HOOK_LOOP
|
|
|
|
MICROPY_VM_HOOK_LOOP
|
|
|
|
#endif
|
2016-09-15 20:01:19 -04:00
|
|
|
#ifdef USB_REPL
|
2016-10-28 23:16:39 -04:00
|
|
|
if (reset_next_character) {
|
|
|
|
return CHAR_CTRL_D;
|
|
|
|
}
|
2016-10-27 20:48:42 -04:00
|
|
|
if (usb_rx_count > 0) {
|
2016-09-15 20:01:19 -04:00
|
|
|
#ifdef MICROPY_HW_LED_RX
|
|
|
|
port_pin_toggle_output_level(MICROPY_HW_LED_RX);
|
|
|
|
#endif
|
|
|
|
return receive_usb();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef UART_REPL
|
|
|
|
uint16_t temp;
|
|
|
|
if (usart_read_wait(&usart_instance, &temp) == STATUS_OK) {
|
|
|
|
#ifdef MICROPY_HW_LED_RX
|
|
|
|
port_pin_toggle_output_level(MICROPY_HW_LED_RX);
|
|
|
|
#endif
|
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
#endif
|
2016-10-05 14:07:29 -04:00
|
|
|
// TODO(tannewt): Switch to callback/interrupt based UART so it can work
|
|
|
|
// with the sleepmgr.
|
|
|
|
sleepmgr_enter_sleep();
|
2016-08-23 02:48:09 -04:00
|
|
|
}
|
2016-09-15 20:01:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void mp_hal_stdout_tx_strn(const char *str, size_t len) {
|
|
|
|
#ifdef MICROPY_HW_LED_TX
|
|
|
|
port_pin_toggle_output_level(MICROPY_HW_LED_TX);
|
2016-08-23 19:47:53 -04:00
|
|
|
#endif
|
2016-09-15 20:01:19 -04:00
|
|
|
|
2016-08-23 19:47:53 -04:00
|
|
|
#ifdef UART_REPL
|
2016-09-15 20:01:19 -04:00
|
|
|
usart_write_buffer_wait(&usart_instance, (uint8_t*) str, len);
|
2016-08-23 19:47:53 -04:00
|
|
|
#endif
|
2016-08-23 02:48:09 -04:00
|
|
|
|
2016-09-15 20:01:19 -04:00
|
|
|
#ifdef USB_REPL
|
2016-10-25 21:23:04 -04:00
|
|
|
// Always make sure there is enough room in the usb buffer for the outgoing
|
|
|
|
// string. If there isn't we risk getting caught in a loop within the usb
|
|
|
|
// code as it tries to send all the characters it can't buffer.
|
2016-10-26 16:32:41 -04:00
|
|
|
uint32_t start = 0;
|
2016-11-03 18:50:59 -04:00
|
|
|
uint64_t start_tick = common_hal_time_monotonic();
|
|
|
|
uint64_t duration = 0;
|
2016-10-26 16:32:41 -04:00
|
|
|
if (mp_cdc_enabled) {
|
|
|
|
while (start < len && duration < 10) {
|
|
|
|
uint8_t buffer_space = udi_cdc_get_free_tx_buffer();
|
|
|
|
uint8_t transmit = min(len - start, buffer_space);
|
|
|
|
if (transmit > 0) {
|
|
|
|
if (udi_cdc_write_buf(str + start, transmit) > 0) {
|
|
|
|
// It didn't transmit successfully so give up.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
start += transmit;
|
2016-11-29 17:58:37 -05:00
|
|
|
#ifdef MICROPY_VM_HOOK_LOOP
|
|
|
|
MICROPY_VM_HOOK_LOOP
|
|
|
|
#endif
|
2016-11-03 18:50:59 -04:00
|
|
|
duration = (common_hal_time_monotonic() - start_tick);
|
2016-10-26 16:32:41 -04:00
|
|
|
}
|
2016-09-15 20:01:19 -04:00
|
|
|
}
|
|
|
|
#endif
|
2016-08-23 02:48:09 -04:00
|
|
|
}
|
|
|
|
|
2016-08-24 16:17:55 -04:00
|
|
|
void mp_hal_delay_ms(mp_uint_t delay) {
|
2016-10-27 20:48:42 -04:00
|
|
|
// If mass storage is enabled measure the time ourselves and run any mass
|
|
|
|
// storage transactions in the meantime.
|
2016-10-05 14:07:29 -04:00
|
|
|
if (mp_msc_enabled) {
|
2017-01-26 21:05:46 -05:00
|
|
|
uint64_t start_tick = ticks_ms;
|
2016-11-03 18:50:59 -04:00
|
|
|
uint64_t duration = 0;
|
2016-10-27 20:48:42 -04:00
|
|
|
while (duration < delay) {
|
2016-11-29 17:58:37 -05:00
|
|
|
#ifdef MICROPY_VM_HOOK_LOOP
|
|
|
|
MICROPY_VM_HOOK_LOOP
|
|
|
|
#endif
|
2016-10-31 14:31:52 -04:00
|
|
|
// Check to see if we've been CTRL-Ced by autoreset or the user.
|
2017-01-10 18:57:04 -05:00
|
|
|
if(MP_STATE_VM(mp_pending_exception) == MP_OBJ_FROM_PTR(&MP_STATE_VM(mp_kbd_exception))) {
|
2016-10-31 14:31:52 -04:00
|
|
|
break;
|
|
|
|
}
|
2017-01-26 21:05:46 -05:00
|
|
|
duration = (ticks_ms - start_tick);
|
2016-10-27 20:48:42 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delay_ms(delay);
|
2016-10-05 14:07:29 -04:00
|
|
|
}
|
2016-08-24 16:17:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void mp_hal_delay_us(mp_uint_t delay) {
|
2016-10-05 14:07:29 -04:00
|
|
|
delay_us(delay);
|
2016-08-24 16:17:55 -04:00
|
|
|
}
|
2016-10-13 00:59:43 -04:00
|
|
|
|
|
|
|
// Interrupt flags that will be saved and restored during disable/Enable
|
|
|
|
// interrupt functions below.
|
|
|
|
static irqflags_t irq_flags;
|
|
|
|
|
|
|
|
void mp_hal_disable_all_interrupts(void) {
|
2017-01-17 22:26:28 -05:00
|
|
|
// Disable all interrupt sources for timing critical sections.
|
|
|
|
// Disable ASF-based interrupts.
|
|
|
|
irq_flags = cpu_irq_save();
|
2016-10-13 00:59:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void mp_hal_enable_all_interrupts(void) {
|
2017-01-17 22:26:28 -05:00
|
|
|
// Enable all interrupt sources after timing critical sections.
|
|
|
|
// Restore ASF-based interrupts.
|
|
|
|
cpu_irq_restore(irq_flags);
|
2016-10-13 00:59:43 -04:00
|
|
|
}
|