| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * Copyright (c) 2022 KT-Elektronik, Klaucke und Partner GmbH
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "zephyr_port.h"
- #include <zephyr/drivers/uart.h>
- #include <zephyr/console/tty.h>
- static const struct device *uart_dev;
- static struct gpio_dt_spec enable_spec;
- static struct gpio_dt_spec boot_spec;
- static struct tty_serial tty;
- static char tty_rx_buf[CONFIG_ESP_SERIAL_FLASHER_UART_BUFSIZE];
- static char tty_tx_buf[CONFIG_ESP_SERIAL_FLASHER_UART_BUFSIZE];
- #ifdef SERIAL_FLASHER_DEBUG_TRACE
- static void transfer_debug_print(const uint8_t *data, uint16_t size, bool write)
- {
- static bool write_prev = false;
- if (write_prev != write) {
- write_prev = write;
- printk("\n--- %s ---\n", write ? "WRITE" : "READ");
- }
- for (uint32_t i = 0; i < size; i++) {
- printk("%02x ", data[i]);
- }
- }
- #endif
- esp_loader_error_t configure_tty()
- {
- if (tty_init(&tty, uart_dev) < 0 ||
- tty_set_rx_buf(&tty, tty_rx_buf, sizeof(tty_rx_buf)) < 0 ||
- tty_set_tx_buf(&tty, tty_tx_buf, sizeof(tty_tx_buf)) < 0) {
- return ESP_LOADER_ERROR_FAIL;
- }
- return ESP_LOADER_SUCCESS;
- }
- esp_loader_error_t loader_port_read(uint8_t *data, const uint16_t size, const uint32_t timeout)
- {
- if (!device_is_ready(uart_dev) || data == NULL || size == 0) {
- return ESP_LOADER_ERROR_FAIL;
- }
- ssize_t total_read = 0;
- ssize_t remaining = size;
- tty_set_rx_timeout(&tty, timeout);
- while (remaining > 0) {
- const uint16_t chunk_size = remaining < CONFIG_ESP_SERIAL_FLASHER_UART_BUFSIZE ?
- remaining : CONFIG_ESP_SERIAL_FLASHER_UART_BUFSIZE;
- ssize_t read = tty_read(&tty, &data[total_read], chunk_size);
- if (read < 0) {
- return ESP_LOADER_ERROR_TIMEOUT;
- }
- #ifdef SERIAL_FLASHER_DEBUG_TRACE
- transfer_debug_print(data, read, false);
- #endif
- total_read += read;
- remaining -= read;
- }
- return ESP_LOADER_SUCCESS;
- }
- esp_loader_error_t loader_port_write(const uint8_t *data, const uint16_t size, const uint32_t timeout)
- {
- if (!device_is_ready(uart_dev) || data == NULL || size == 0) {
- return ESP_LOADER_ERROR_FAIL;
- }
- ssize_t total_written = 0;
- ssize_t remaining = size;
- tty_set_tx_timeout(&tty, timeout);
- while (remaining > 0) {
- const uint16_t chunk_size = remaining < CONFIG_ESP_SERIAL_FLASHER_UART_BUFSIZE ?
- remaining : CONFIG_ESP_SERIAL_FLASHER_UART_BUFSIZE;
- ssize_t written = tty_write(&tty, &data[total_written], chunk_size);
- if (written < 0) {
- return ESP_LOADER_ERROR_TIMEOUT;
- }
- #ifdef SERIAL_FLASHER_DEBUG_TRACE
- transfer_debug_print(data, written, true);
- #endif
- total_written += written;
- remaining -= written;
- }
- return ESP_LOADER_SUCCESS;
- }
- esp_loader_error_t loader_port_zephyr_init(const loader_zephyr_config_t *config)
- {
- uart_dev = config->uart_dev;
- enable_spec = config->enable_spec;
- boot_spec = config->boot_spec;
- return configure_tty();
- }
- void loader_port_reset_target(void)
- {
- gpio_pin_set_dt(&enable_spec, false);
- loader_port_delay_ms(CONFIG_SERIAL_FLASHER_RESET_HOLD_TIME_MS);
- gpio_pin_set_dt(&enable_spec, true);
- }
- void loader_port_enter_bootloader(void)
- {
- gpio_pin_set_dt(&boot_spec, false);
- loader_port_reset_target();
- loader_port_delay_ms(CONFIG_SERIAL_FLASHER_BOOT_HOLD_TIME_MS);
- gpio_pin_set_dt(&boot_spec, true);
- }
- void loader_port_delay_ms(uint32_t ms)
- {
- k_msleep(ms);
- }
- static uint64_t s_time_end;
- void loader_port_start_timer(uint32_t ms)
- {
- s_time_end = sys_timepoint_calc(Z_TIMEOUT_MS(ms)).tick;
- }
- uint32_t loader_port_remaining_time(void)
- {
- int64_t remaining = k_ticks_to_ms_floor64(s_time_end - k_uptime_ticks());
- return (remaining > 0) ? (uint32_t)remaining : 0;
- }
- esp_loader_error_t loader_port_change_transmission_rate(uint32_t baudrate)
- {
- struct uart_config uart_config;
- if (!device_is_ready(uart_dev)) {
- return ESP_LOADER_ERROR_FAIL;
- }
- if (uart_config_get(uart_dev, &uart_config) != 0) {
- return ESP_LOADER_ERROR_FAIL;
- }
- uart_config.baudrate = baudrate;
- if (uart_configure(uart_dev, &uart_config) != 0) {
- return ESP_LOADER_ERROR_FAIL;
- }
- /* bitrate-change can require tty re-configuration */
- return configure_tty();
- }
|