Add minimal support for the aesc silicon UART IP core. This core includes an internal clock divider and supports flexible frame configurations, allowing for variable data length, parity, and stop bit settings. The current driver version does not support interrupts. Signed-off-by: Daniel Schultz <dnltz@aesc-silicon.de>
11 lines
243 B
Plaintext
11 lines
243 B
Plaintext
# Copyright (c) 2025 Aesc Silicon
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config UART_AESC
|
|
bool "Aesc Silicon UART driver"
|
|
default y
|
|
depends on DT_HAS_AESC_UART_ENABLED
|
|
select SERIAL_HAS_DRIVER
|
|
help
|
|
Enable the Aesc Silicon UART driver.
|