148 lines
4.2 KiB
C
148 lines
4.2 KiB
C
/*
|
|
* 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];
|
|
|
|
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;
|
|
}
|
|
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;
|
|
}
|
|
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_clock_timeout_end_calc(Z_TIMEOUT_MS(ms));
|
|
}
|
|
|
|
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();
|
|
}
|