SDIO Tuning issue running latest Kernel in Buildroot #131
-
Hi, The new kernel casued SDIO tuning failure. The reason is that the driver drivers/mmc/host/sdhci-cadence.c added .platform_execute_tuning = sdhci_cdns_execute_tuning, When sdhci_execute_tuning is called, it will use callback function and call sdhci_cdns_execute_tuning and get -EIO error with ""no tuning point found". Removing .platform_execute_tuning = sdhci_cdns_execute_tuning seems to fix the issue. Is this expected? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @josh25219 Can I check that when you remove |
Beta Was this translation helpful? Give feedback.
Hi @josh25219
Can I check that when you remove
.platform_execute_tuning = sdhci_cdns_execute_tuning
your card comes up and works as expected? If so this is expected.