zephyr/drivers/misc/mcux_flexio/Kconfig
Mikhail Siomin 877b10bef1 drivers: mcux: flexio: Added generic MCUX FlexIO driver
Added FlexIO driver that distributes hardware resources
between interfaces using them.

Signed-off-by: Mikhail Siomin <victorovich.01@mail.ru>
2024-03-12 14:00:45 +01:00

26 lines
680 B
Text

# Copyright (c) 2024, STRIM, ALC
# SPDX-License-Identifier: Apache-2.0
config MCUX_FLEXIO
bool
depends on DT_HAS_NXP_FLEXIO_ENABLED
depends on CLOCK_CONTROL
help
Enable the FlexIO controller driver.
This driver is not user-selectable,
and should be enabled by other FlexIO drivers so
that they can use it to share the resources of the FlexIO device.
if MCUX_FLEXIO
config MCUX_FLEXIO_INIT_PRIORITY
int "FlexIO controller driver init priority"
default KERNEL_INIT_PRIORITY_DEVICE
help
MCUX FlexIO device driver initialization priority.
module = MCUX_FLEXIO
module-str = mcux_flexio
source "subsys/logging/Kconfig.template.log_config"
endif # MCUX_FLEXIO