Hi,
SD card not detect in linux kernel
mmc0: error -110 whilst initialising SD card error comes every time
what is meaning 110 ?
Thanks
Tejas
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
SD card not detect in linux kernel
mmc0: error -110 whilst initialising SD card error comes every time
what is meaning 110 ?
Thanks
Tejas
Which board and SDK version are you using? Is the behaviour seen on all SDK versions? Is your card holder pins properly aligned and making good contact with the SD card?
You might want to enable debug for mmc drivers. Do a make menuconfig and somewhere in 'drivers' you can select mmc and there is an option to enable debug. That might help figure out what is going on.
Looking in errno.h, a -110 is defined as ETIMEDOUT. The error message you see comes from drivers/mmc/core/mmc.c. So it probably means that omap_hsmmc.c is timing out somewhere.
Steve K.