1# Copyright (c) 2024, STRIM, ALC 2# SPDX-License-Identifier: Apache-2.0 3 4config MCUX_FLEXIO 5 bool 6 depends on DT_HAS_NXP_FLEXIO_ENABLED 7 depends on CLOCK_CONTROL 8 help 9 Enable the FlexIO controller driver. 10 This driver is not user-selectable, 11 and should be enabled by other FlexIO drivers so 12 that they can use it to share the resources of the FlexIO device. 13 14if MCUX_FLEXIO 15 16config MCUX_FLEXIO_INIT_PRIORITY 17 int "FlexIO controller driver init priority" 18 default KERNEL_INIT_PRIORITY_DEVICE 19 help 20 MCUX FlexIO device driver initialization priority. 21 22module = MCUX_FLEXIO 23module-str = mcux_flexio 24source "subsys/logging/Kconfig.template.log_config" 25 26endif # MCUX_FLEXIO 27