zephyr/drivers/serial/Kconfig.nxp_s32
Emilio Benavente 82a192c8a9 boards: nxp: Removing CONFIG_PINCTRL from the boards defconfig
The Drivers using Pinctrl should be turning Pinctrl on
this should not be the responsibility of the board. This
commit removes CONFIG_PINCTRL from the boards side for nxp boards.

Signed-off-by: Emilio Benavente <emilio.benavente@nxp.com>
2024-10-15 19:09:45 -04:00

29 lines
876 B
Text

# Copyright 2022 NXP
# SPDX-License-Identifier: Apache-2.0
config UART_NXP_S32_LINFLEXD
bool "LINFlexD UART driver for NXP S32 family processors"
default y
depends on DT_HAS_NXP_S32_LINFLEXD_ENABLED
select PINCTRL
select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT
select NOCACHE_MEMORY if ARCH_HAS_NOCACHE_MEMORY_SUPPORT
help
Enable the LINFlexD UART driver for NXP S32 family processors.
if UART_NXP_S32_LINFLEXD
config UART_NXP_S32_POLL_OUT_TIMEOUT
int "The maximum duration to transfer a byte data in blocking mode"
default 10000
help
Maximum duration in micro-seconds to transfer a byte data in blocking mode.
config UART_NXP_S32_POLL_IN_TIMEOUT
int "The maximum duration to receive a byte data in blocking mode"
default 10000
help
Maximum duration in micro-seconds to receive a byte data in blocking mode.
endif # UART_NXP_S32_LINFLEXD