1# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
2# SPDX-License-Identifier: Apache-2.0
3
4config SDHC_ESP32
5	bool "ESP32 SDHC Driver"
6	default y
7	depends on DT_HAS_ESPRESSIF_ESP32_SDHC_SLOT_ENABLED
8	select SDHC_SUPPORTS_NATIVE_MODE
9	select PINCTRL
10	help
11	  Enables the ESP32 SD Host controller driver
12
13if SDHC_ESP32
14
15# ESP32 DMA needs 32 bit aligned buffers
16config SDHC_BUFFER_ALIGNMENT
17	default 4
18
19endif
20