-
Notifications
You must be signed in to change notification settings - Fork 20
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
Future work for i.MX8 uSDHC driver #187
Comments
Whoops, wrong repository (fixed now). |
Regarding card detection: Neither the MaaxBoard nor the i.MX8MM-EVK board's (nominally-iMX8-specific) uSDHC controller fire the The iMX8MM-EVK specifies the # in
u-boot=> gpio status
Bank GPIO1_:
GPIO1_15: input: 0 [x] [email protected]
# out
u-boot=> gpio status
Bank GPIO1_:
GPIO1_15: input: 1 [x] [email protected] In contrast, the MaaXboard does not set the # from running `gpio status -a` in uboot
$ diff ~/plug.txt ~/unplug.txt
8c8
< GPIO1_6: input: 0 [ ]
---
> GPIO1_6: input: 1 [ ] For this feature to work, we need a GPIO driver and to listen for interrupts on those pins, as per the device tree for mmc controllers. |
They weren't used anywhere, and wouldn't be handled correctly if they occurred. Also see the notes about card detect on these boards in issue #187 #187 (comment) Signed-off-by: julia <[email protected]>
They weren't used anywhere, and wouldn't be handled correctly if they occurred. Also see the notes about card detect on these boards in issue #187 #187 (comment) Signed-off-by: julia <[email protected]>
They weren't used anywhere, and wouldn't be handled correctly if they occurred. Also see the notes about card detect on these boards in issue #187 #187 (comment) Signed-off-by: julia <[email protected]>
#157 adds initial support for the i.MX8 based MMC block device.
The main motivation for this is to support experimentation regarding hot-plugging and so we do not implement all driver features you would expect with a uSDHC driver.
Below is various future work we may or may not implement. It is likely for the minor things and high-speed mode to be implemented eventually.
read_only
flag.The text was updated successfully, but these errors were encountered: