1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4config DISK_DRIVER_MMC
5	bool "MMC card driver"
6	depends on DT_HAS_ZEPHYR_MMC_DISK_ENABLED
7	default y
8	help
9	  MMC card driver.
10
11if DISK_DRIVER_MMC
12
13config SD_INIT_PRIORITY
14	int "Init priority"
15	default 90
16	help
17	  MMC controller driver initialization priority.
18
19config MMC_SUBSYS
20	bool "MMC access via SD subsystem"
21	select MMC_STACK
22	default y
23	depends on DT_HAS_ZEPHYR_MMC_DISK_ENABLED
24	help
25	  Enable MMC access via SD subsystem.
26
27module = MMC
28module-str = mmc
29source "subsys/logging/Kconfig.template.log_config"
30
31endif # DISK_DRIVER_MMC
32