/* * Copyright 2016 Dius Computing Pty Ltd. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * - Neither the name of the copyright holders nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * * @author Johny Mattsson */ #include "driver/console.h" #include "esp_intr.h" #include "soc/soc.h" #include "soc/uart_register.h" #include "soc/dport_reg.h" #include "freertos/FreeRTOS.h" #include "freertos/queue.h" #include #include "rom/libc_stubs.h" #include "sys/reent.h" #define UART_INPUT_QUEUE_SZ 0x100 #define MAP_CONSOLE_UART_PRO_INT_NO 9 // PRO interrupt used by this driver for uart0 typedef int (*_read_r_fn) (struct _reent *r, int fd, void *buf, int size); static _read_r_fn _read_r_pro, _read_r_app; static xQueueHandle uart0Q; static task_handle_t input_task = 0; // --- Syscall support for reading from STDIN_FILENO --------------- static int console_read_r (struct _reent *r, int fd, void *buf, int size, _read_r_fn next) { if (fd == STDIN_FILENO) { static _lock_t stdin_lock; _lock_acquire_recursive (&stdin_lock); char *c = (char *)buf; int i = 0; for (; i < size; ++i) { if (!console_getc (c++)) break; } _lock_release_recursive (&stdin_lock); return i; } else if (next) return next (r, fd, buf, size); else return -1; } static int console_read_r_pro (struct _reent *r, int fd, void *buf, int size) { return console_read_r (r, fd, buf, size, _read_r_pro); } static int console_read_r_app (struct _reent *r, int fd, void *buf, int size) { return console_read_r (r, fd, buf, size, _read_r_app); } // --- End syscall support ------------------------------------------- static void uart0_rx_intr_handler (void *arg) { (void)arg; bool received = false; uint32_t status = READ_PERI_REG(UART_INT_ST_REG(CONSOLE_UART)); while (status) { if (status & UART_FRM_ERR_INT_ENA) { // TODO: report somehow? WRITE_PERI_REG(UART_INT_CLR_REG(CONSOLE_UART), UART_FRM_ERR_INT_ENA); } if ((status & UART_RXFIFO_TOUT_INT_ENA) || (status & UART_RXFIFO_FULL_INT_ENA)) { uint32_t fifo_len = UART_GET_RXFIFO_CNT(CONSOLE_UART); for (uint32_t i = 0; i < fifo_len; ++i) { received = true; char c = UART_GET_RXFIFO_RD_BYTE(CONSOLE_UART); if (uart0Q) xQueueSendToBackFromISR (uart0Q, &c, NULL); uart_tx_one_char (c); } WRITE_PERI_REG(UART_INT_CLR_REG(CONSOLE_UART), UART_RXFIFO_TOUT_INT_ENA | UART_RXFIFO_FULL_INT_ENA); } status = READ_PERI_REG(UART_INT_ST_REG(CONSOLE_UART)); } if (received && input_task) task_post_low (input_task, false); } void console_setup (const ConsoleSetup_t *cfg) { uart_tx_wait_idle (CONSOLE_UART); uart_div_modify (CONSOLE_UART, (UART_CLK_FREQ << 4) / cfg->bit_rate); UART_SET_BIT_NUM(CONSOLE_UART, cfg->data_bits); UART_SET_PARITY_EN(CONSOLE_UART, cfg->parity != CONSOLE_PARITY_NONE); UART_SET_PARITY(CONSOLE_UART, cfg->parity & 0x1); UART_SET_STOP_BIT_NUM(CONSOLE_UART, cfg->stop_bits); // TODO: Make this actually work UART_SET_AUTOBAUD_EN(CONSOLE_UART, cfg->auto_baud); } void console_init (const ConsoleSetup_t *cfg, task_handle_t tsk) { input_task = tsk; uart0Q = xQueueCreate (UART_INPUT_QUEUE_SZ, sizeof (char)); console_setup (cfg); ESP_INTR_DISABLE(MAP_CONSOLE_UART_PRO_INT_NO); xt_set_interrupt_handler (MAP_CONSOLE_UART_PRO_INT_NO, uart0_rx_intr_handler, NULL); UART_SET_RX_TOUT_EN(CONSOLE_UART, true); UART_SET_RX_TOUT_THRHD(CONSOLE_UART, 2); UART_SET_RXFIFO_FULL_THRHD(CONSOLE_UART, 10); WRITE_PERI_REG(UART_INT_ENA_REG(CONSOLE_UART), UART_RXFIFO_TOUT_INT_ENA | UART_RXFIFO_FULL_INT_ENA | UART_FRM_ERR_INT_ENA); WRITE_PERI_REG(PRO_UART_INTR_MAP_REG, MAP_CONSOLE_UART_PRO_INT_NO); ESP_INTR_ENABLE(MAP_CONSOLE_UART_PRO_INT_NO); // Register our console_read_r_xxx functions to support stdin input _read_r_pro = syscall_table_ptr_pro->_read_r; _read_r_app = syscall_table_ptr_app->_read_r; syscall_table_ptr_pro->_read_r = console_read_r_pro; syscall_table_ptr_app->_read_r = console_read_r_app; } bool console_getc (char *c) { return (uart0Q && (xQueueReceive (uart0Q, c, 0) == pdTRUE)); }