-
Notifications
You must be signed in to change notification settings - Fork 148
add SDHC support on imx93 #524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
add SDHC support on imx93 #524
Conversation
JiafeiPan
commented
Mar 21, 2025
- drivers: usdhc: change the driver to be aarch64 compatible
- devices: MIMX9352: fsl_clock: Add missing definitions for USDHC
@JiafeiPan , have these changes been submitted to the SDK team? |
7e2b20c
to
0c9aae3
Compare
Hi, @mmahadevan108 , I have created PR target form internal mcux-sdk-github repo. |
@@ -1222,11 +1222,11 @@ status_t USDHC_SetADMA1Descriptor( | |||
|
|||
uint32_t miniEntries, startEntries = 0UL, | |||
maxEntries = (admaTableWords * sizeof(uint32_t)) / sizeof(usdhc_adma1_descriptor_t); | |||
usdhc_adma1_descriptor_t *adma1EntryAddress = (usdhc_adma1_descriptor_t *)(uint32_t)(admaTable); | |||
usdhc_adma1_descriptor_t *adma1EntryAddress = (usdhc_adma1_descriptor_t *)(uintptr_t)(admaTable); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this change need to be directed now to mcux-sdk-ng folder?
@JiafeiPan does this need to be realigned with the SDK-NG update? |
0c9aae3
to
fbdebdf
Compare
Hi, @dleach02, this patch has been pushed to SDK-NG and currently has been merged, and I updated this PR with latest merged patches. |
Add clock array for USDHC. Signed-off-by: Lei Xu <[email protected]> Signed-off-by: Jiafei Pan <[email protected]>
Make the driver to work on Cortex-A Core. Signed-off-by: Jiafei Pan <[email protected]>
fbdebdf
to
588bf4f
Compare
Rebased. |