File tree Expand file tree Collapse file tree 4 files changed +1120
-0
lines changed Expand file tree Collapse file tree 4 files changed +1120
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ zephyr_library_sources_ifdef(CONFIG_SPI_SDHC sdhc_spi.c)
8
8
zephyr_library_sources_ifdef(CONFIG_MCUX_SDIF mcux_sdif.c)
9
9
zephyr_library_sources_ifdef(CONFIG_RCAR_MMC rcar_mmc.c)
10
10
zephyr_library_sources_ifdef(CONFIG_SAM_HSMCI sam_hsmci.c)
11
+ zephyr_library_sources_ifdef(CONFIG_SAM_SDMMC sam_sdmmc.c)
11
12
zephyr_library_sources_ifdef(CONFIG_INTEL_EMMC_HOST intel_emmc_host.c)
12
13
zephyr_library_sources_ifdef(CONFIG_SDHC_INFINEON_CAT1 ifx_cat1_sdio.c)
13
14
zephyr_library_sources_ifdef(CONFIG_CDNS_SDHC sdhc_cdns_ll.c sdhc_cdns.c)
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ source "drivers/sdhc/Kconfig.spi"
14
14
source "drivers/sdhc/Kconfig.mcux_sdif"
15
15
source "drivers/sdhc/Kconfig.rcar"
16
16
source "drivers/sdhc/Kconfig.sam_hsmci"
17
+ source "drivers/sdhc/Kconfig.sam_sdmmc"
17
18
source "drivers/sdhc/Kconfig.intel"
18
19
source "drivers/sdhc/Kconfig.sdhc_cdns"
19
20
source "drivers/sdhc/Kconfig.esp32"
Original file line number Diff line number Diff line change
1
+ # Copyright (C) 2025 Microchip Technology Inc. and its subsidiaries
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+ #
5
+
6
+ config SAM_SDMMC
7
+ bool "Microchip SAM SDMMC driver"
8
+ default y
9
+ depends on DT_HAS_MICROCHIP_SAMA7G5_SDMMC_ENABLED
10
+ select CACHE_MANAGEMENT
11
+ select PINCTRL
12
+ select SDHC_SUPPORTS_NATIVE_MODE
13
+ help
14
+ Enable the Microchip SAM SDMMC MMC/SD card driver.
You can’t perform that action at this time.
0 commit comments