zephyr/drivers/sdhc/Kconfig.esp32
Raffael Rostagno f4a6fd1f3f drivers: esp32: SDHC implementation
Implementation of SDHC driver for ESP32

Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
2024-04-30 18:23:06 +02:00

20 lines
415 B
Plaintext

# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
# SPDX -License-Identifier: Apache-2.0
config SDHC_ESP32
bool "ESP32 SDHC Driver"
default y
depends on DT_HAS_ESPRESSIF_ESP32_SDHC_SLOT_ENABLED
select SDHC_SUPPORTS_NATIVE_MODE
select PINCTRL
help
Enables the ESP32 SD Host controller driver
if SDHC_ESP32
# ESP32 DMA needs 32 bit aligned buffers
config SDHC_BUFFER_ALIGNMENT
default 4
endif