Files
zephyr/drivers/i3c/Kconfig.nxp
Mathieu Choplain 239fab93bc kconfig: treewide: use auto-generated Kconfig compatible macro variables
Replace some manually-defined DT_COMPAT_<> Kconfig macro variables with
their automatically generated counterparts. In most cases, this is
straightforward as the manually defined macro is named identically to the
one generated by the build system.

Signed-off-by: Mathieu Choplain <mathieu.choplain-ext@st.com>
2026-01-13 13:30:54 +01:00

27 lines
636 B
Plaintext

# Copyright (c) 2022 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
module = I3C_MCUX
module-str = i3c-mcux
source "subsys/logging/Kconfig.template.log_config"
config I3C_MCUX
bool "MCUX I3C driver"
depends on HAS_MCUX
depends on DT_HAS_NXP_MCUX_I3C_ENABLED
select PINCTRL
select I3C_IBI_WORKQUEUE if I3C_USE_IBI
default y
help
Enable mcux I3C driver.
config I3C_NXP_TRANSFER_TIMEOUT
int "Transfer timeout [ms]"
default 500
depends on I3C_MCUX
help
Timeout in milliseconds used for each I3C transfer.
0 means that the driver should use the K_FOREVER value,
i.e. it should wait as long as necessary.