SOLVED!
I found a workaround.
The problem is:
when I plug SD card inside SD card connector, mmc driver detects the card via mxs_mmc_is_plugged function (file: mxs-mmc.c). But tested flag is not correctly set (I think) because it doesn't reflect the status of SSP_DETECT pin. This because the flag is set when sd card is not completely inserted inside sd connector: this flag is set just when gold connectors of sd card connect the pins of the sd slot. SSPx_DETECT pin is moved only when SD card is completely inserted in sd slot because there is a switch inside the sd connector that electrically put SSPx_DETECT to ground (or VCC when released).
Workaround I use is simple (function: mxs_mmc_detect_poll, file: mxs-mmc.c):
[..]
card_status = mxs_mmc_is_plugged(host);
if(card_status != host->present && card_status == 1 && numTry < 5) {
numTry++;
card_status = host->present;
} else {
numTry = 0;
}
if (card_status != host->present)
[..]
I simply wait few seconds after plug detection. In this time I suppose the sd card is correctly inserted inside sd connector...