2024-03-04 09:18 AM
I have a new board design that interfaces an STM32L4A6 with a uSD card using 1.8V I/O. The SD Card is powered by 3.3V and supports the LVS mode of SD. The STM32L4 does not seem take account the SD specification 6.0. There is no auto detection mecanism of the signalling voltage level in this MCU. This MCU can not start in UHS-I 1.8V mode.
Do you know a MCU which can start the LVS identification sequence ?
Solved! Go to Solution.
2024-03-06 02:00 AM
Yes, no SD card runs from the beginning with 1.8V. An identification sequence has been defined by the SD Association to enable LVS mode. Below is the description of the flow by the SD Association :
The host interface also needs to pull CLK high for 15 microseconds, followed by DATA2, and so forth, as specified.
At the end the SD card can run with 1V8 but the signals cannot initialize on 1V8.
Nowadays a level shifter seems to be always helpful to interface a 1.8V MCU to a SD card.
I 'm looking forward to seeing 1.8V SD card too.
2024-03-04 09:39 AM
Look in rm of your cpu, sdmmc possible speed is written there . :)
+
Afaik all STM cpus need external driver for working on 1,8V on any of this hi-speed modes;
many of the more recent cpus can do this,
see here from H7A3 rm :
Without separate driver/level shifter only 3,3v modes possible.
2024-03-04 09:52 AM
On the H7 there are additional pins, and expectations of a Transceiver to allow for the 3.3V expected by the cards initially, and then dropped to 1.8V for the higher performance modes.
You would likely need to run at 3.3V during the time you want to use MicroSD cards, or perhaps use eMMC devices where you provide the IO voltage for operation.
The L4+ I use we run at 3.3V, and the GPIOG to the modem we want at 1.8V. It's about the choices and trade-offs you make.
2024-03-05 08:26 PM
Do you know?
I am also looking for a solution to run SD cards just with 1V8 (not 3V3), but as I understand:
So, as long we do have not certified LVS cards on market - I am not really sure if "just 1V8" is possible for SD cards.
No idea what such a label would be. Just class 10, eSDHC, UHS-1, Samsung EVO Plus... does not tell you anything if SD cards is LVS compliant.
My hope is, that Micron i400 SD cards will do ("silently", they are the leaders in flash memories).
Please, keep us posted when you have found an SD Card vendor supporting 1V8 (right from the beginning of initialization). Thank you (I am also "hot" on this topic...)
2024-03-06 02:00 AM
Yes, no SD card runs from the beginning with 1.8V. An identification sequence has been defined by the SD Association to enable LVS mode. Below is the description of the flow by the SD Association :
The host interface also needs to pull CLK high for 15 microseconds, followed by DATA2, and so forth, as specified.
At the end the SD card can run with 1V8 but the signals cannot initialize on 1V8.
Nowadays a level shifter seems to be always helpful to interface a 1.8V MCU to a SD card.
I 'm looking forward to seeing 1.8V SD card too.
2024-03-21 07:50 AM
Have you been able to get the card working on 1V8? I have created a function to do the initialisation of LVS and the card switches to 1V8, but the MX_SDMMC1_SD_Init() still errors out.