Add initial support for TI MSPM0 UART with basic poll-in and poll-out functionality. Signed-off-by: Saravanan Sekar <saravanan@linumiz.com> Signed-off-by: Jackson Farley <j-farley@ti.com>
14 lines
326 B
Plaintext
14 lines
326 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2025 Texas Instruments
|
|
# Copyright (c) 2025 Linumiz
|
|
|
|
config UART_MSPM0
|
|
bool "MSPM0 UART driver"
|
|
default y
|
|
depends on DT_HAS_TI_MSPM0_UART_ENABLED
|
|
select SERIAL_HAS_DRIVER
|
|
select USE_MSPM0_DL_UART
|
|
select PINCTRL
|
|
help
|
|
This option enables the TI MSPM0 UART driver.
|