drivers/sdmmc/sdmmc_sdhc: remove DMA check#21260
Conversation
At the moment there is no MCU that implements sdhc_conf_t and supports DMA with it.
SAM D5x/E5x MCUs support DMA access (both SDMA and ADMA2), but it is not actually used. I don't know if we will ever use DMA for this driver. Since We can remove the check for the moment, but we have to keep this in mind. |
gschorcht
left a comment
There was a problem hiding this comment.
We can remove this check as long as the driver doesn't implement DMA.
If I got it right from https://www.mouser.de/datasheet/2/268/SAM_D5x_E5x_Family_Data_Sheet_DS60001507-3107027.pdf, DMA is not applicable for the SDHC. Thanks for approval. |
Contribution description
The DMA assertion may trigger without a reason in
sdmmc_sdhc.c.There is currently no MCU that implements
sdhc_conf_twith DMA support, so the PR simply removes the assertion.Testing procedure
Issues/PRs references