Fix for LilyGO T-HMI SD card

This commit is contained in:
Ken Van Hoeylandt 2026-03-17 20:33:55 +01:00
parent e560cc7df2
commit 36db47624b
4 changed files with 25 additions and 9 deletions

View File

@ -28,6 +28,8 @@
pin-clk = <&gpio0 12 GPIO_FLAG_NONE>;
pin-cmd = <&gpio0 11 GPIO_FLAG_NONE>;
pin-d0 = <&gpio0 13 GPIO_FLAG_NONE>;
pin-d3 = <&gpio0 10 GPIO_FLAG_NONE>;
bus-width = <1>;
pullups;
};
};

View File

@ -50,4 +50,12 @@ properties:
enable-uhs:
type: boolean
default: false
description: Enable UHS mode
description: Enable UHS mode
pullups:
type: boolean
default: false
description: Enable internal pullups for SDMMC pins
on-chip-ldo-chan:
type: int
default: -1
description: On-chip LDO channel for SD power (e.g. 4 for LDO4). Set to -1 to disable.

View File

@ -28,6 +28,8 @@ struct Esp32SdmmcConfig {
uint8_t bus_width;
bool wp_active_high;
bool enable_uhs;
bool pullups;
int32_t on_chip_ldo_chan;
};
/**

View File

@ -78,20 +78,23 @@ static error_t mount(void* data) {
sdmmc_host_t host = SDMMC_HOST_DEFAULT();
#if SOC_SD_PWR_CTRL_SUPPORTED
sd_pwr_ctrl_ldo_config_t ldo_config = {
.ldo_chan_id = 4, // LDO4 is typically used for SDMMC on ESP32-S3
};
esp_err_t pwr_err = sd_pwr_ctrl_new_on_chip_ldo(&ldo_config, &fs_data->pwr_ctrl_handle);
if (pwr_err != ESP_OK) {
LOG_E(TAG, "Failed to create SD power control driver, err=0x%x", pwr_err);
return ERROR_NOT_SUPPORTED;
if (config->on_chip_ldo_chan != -1) {
sd_pwr_ctrl_ldo_config_t ldo_config = {
.ldo_chan_id = (uint32_t)config->on_chip_ldo_chan,
};
esp_err_t pwr_err = sd_pwr_ctrl_new_on_chip_ldo(&ldo_config, &fs_data->pwr_ctrl_handle);
if (pwr_err != ESP_OK) {
LOG_E(TAG, "Failed to create SD power control driver, err=0x%x", pwr_err);
return ERROR_NOT_SUPPORTED;
}
host.pwr_ctrl_handle = fs_data->pwr_ctrl_handle;
}
host.pwr_ctrl_handle = fs_data->pwr_ctrl_handle;
#endif
uint32_t slot_config_flags = 0;
if (config->enable_uhs) slot_config_flags |= SDMMC_SLOT_FLAG_UHS1;
if (config->wp_active_high) slot_config_flags |= SDMMC_SLOT_FLAG_WP_ACTIVE_HIGH;
if (config->pullups) slot_config_flags |= SDMMC_SLOT_FLAG_INTERNAL_PULLUP;
sdmmc_slot_config_t slot_config = {
.clk = to_native_pin(config->pin_clk),
@ -124,6 +127,7 @@ static error_t mount(void* data) {
fs_data->pwr_ctrl_handle = nullptr;
}
#endif
sdmmc_card_print_info(stdout, fs_data->card);
return ERROR_UNDEFINED;
}