| File | Date | Author | Commit |
|---|---|---|---|
| main | 2023-09-21 |
|
[66d370] ver-0000 |
| CMakeLists.txt | 2023-09-21 |
|
[66d370] ver-0000 |
| README.md | 2023-09-21 |
|
[66d370] ver-0000 |
| pytest_emmc_example.py | 2023-09-21 |
|
[66d370] ver-0000 |
| sdkconfig.ci.1line | 2023-09-21 |
|
[66d370] ver-0000 |
| sdkconfig.ci.4line | 2023-09-21 |
|
[66d370] ver-0000 |
| sdkconfig.ci.8line | 2023-09-21 |
|
[66d370] ver-0000 |
| sdkconfig.defaults | 2023-09-21 |
|
[66d370] ver-0000 |
| Supported Targets | ESP32-S3 |
|---|---|
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example demonstrates how to use an eMMC chip with an ESP device. Example does the following steps:
esp_vfs_fat_sdmmc_mount function to:fopen and write to it using fprintf.stat function, and remove it using unlink function.This example supports eMMC chips.
This example requires an ESP32-S3 development board and an eMMC chip. Default connections can be found in next chapter. The standard ESP32S3 devkits do not have an eMMC integrated. Considering the signal integrity issues, we suggesting you make your custom PCB board with ESP32-S3 module and an eMMC chip. The signal integrity issues will be more important, when the bus is working under higher speeds. This includes but not limited to increasing the frequency, switching to DDR mode. We will talk a bit more about signal integrity issues in a following chapter.
It is possible to connect an eMMC breakout adapter, but note that cable connections will decrease the signal integrity, leading communication timing violations. When in this condition, you may need to use a lower clock frequency, or switch to SDR mode.
Pull-up resistors is needed. As the SD specification and the eMMC datasheet clarify, minimum 10k pull-up resistors are required for the bus IOs to protect the IOs against bus floating issue. Note these pull-up resistors are needed, even if the pin is not used (For example, you use 1-line-mode, the pull-up resistor is still required for the D1 pin).
On ESP32-S3, SDMMC peripheral is connected to GPIO pins using GPIO matrix. This allows arbitrary GPIOs to be used to connect an SD card. In this example, GPIOs can be configured in two ways:
idf.py menuconfig in the project directory and open "eMMC Example Configuration" menu.sdmmc_slot_config_t slot_config structure in the example code.The table below lists the default pin assignments.
| ESP32-S3 pin | eMMC pin | Notes |
|---|---|---|
| GPIO34 | CLK | 10k pullup |
| GPIO33 | CMD | 10k pullup |
| GPIO37 | D0 | 10k pullup |
| GPIO38 | D1 | not used in 1-line mode; but card's D1 pin must have a 10k pullup |
| GPIO39 | D2 | not used in 1-line mode; but card's D2 pin must have a 10k pullup |
| GPIO36 | D3 | not used in 1-line mode, but card's D3 pin must have a 10k pullup |
| GPIO35 | D4 | not used in 1/4-line mode, but card's D4 pin must have a 10k pullup |
| GPIO40 | D5 | not used in 1/4-line mode, but card's D5 pin must have a 10k pullup |
| GPIO42 | D6 | not used in 1/4-line mode, but card's D6 pin must have a 10k pullup |
| GPIO41 | D7 | not used in 1/4-line mode, but card's D7 pin must have a 10k pullup |
By default, this example uses 4 line SD mode, utilizing 6 pins: CLK, CMD, D0 - D3. It is possible to use 1-line mode (CLK, CMD, D0) or 8-line mode (CLK, CMD, D0 - D7) by changing "eMMC bus width" in the example configuration menu (see CONFIG_EXAMPLE_EMMC_BUS_WIDTH_1/8).
The signal integrity talking about in this chapter is mainly about is in time domain.
Therefore when using cables to connect your eMMC and the ESP chip, the time that a pin voltage level increases to the VIL / VOL, or the time that a pin voltage level decreases to the VIH / VOH will be longer.
Both the tSU and the tH are usually in the unit of nanosecond (ns). When in DDR mode, the timing requirements is even more strict, as both the clock posedge and the negedge are valid.
The eMMC chip datasheet should specify the requirements of the tSU and the tH.
Build the project and flash it to the board, then run monitor tool to view serial output:
idf.py -p PORT flash monitor
(Replace PORT with serial port name.)
(To exit the serial monitor, type Ctrl-].)
See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
Here is an example console output. In this case a 128MB SDSC card was connected, and EXAMPLE_FORMAT_IF_MOUNT_FAILED menuconfig option enabled. Card was unformatted, so the initial mount has failed. Card was then partitioned, formatted, and mounted again.
I (308) example: Initializing eMMC
I (318) example: Using SDMMC peripheral
I (318) example: Mounting filesystem
I (328) gpio: GPIO[34]| InputEn: 0| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (338) gpio: GPIO[33]| InputEn: 0| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (348) gpio: GPIO[37]| InputEn: 0| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (348) gpio: GPIO[38]| InputEn: 0| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (358) gpio: GPIO[39]| InputEn: 0| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (368) gpio: GPIO[36]| InputEn: 0| OutputEn: 1| OpenDrain: 0| Pullup: 0| Pulldown: 0| Intr:0
I (428) gpio: GPIO[36]| InputEn: 0| OutputEn: 0| OpenDrain: 0| Pullup: 1| Pulldown: 0| Intr:0
I (428) example: Filesystem mounted
Name: IS008GP
Type: MMC
Speed: 40.00 MHz (limit: 40.00 MHz), DDR
Size: 7456MB
CSD: ver=3, sector_size=512, capacity=15269888 read_bl_len=9
EXT CSD: bus_width=4
I (438) example: Opening file /eMMC/hello.txt
I (448) example: File written
I (468) example: Renaming file /eMMC/hello.txt to /eMMC/foo.txt
I (468) example: Reading file /eMMC/foo.txt
I (468) example: Read from file: 'Hello IS008GP!'
I (468) example: Card unmounted
sdmmc_check_scr: send_scr returned 0xffffffff errorConnections between the eMMC chip and the ESP chip are too long for the frequency used. Try using shorter connections, or try reducing the clock speed of the bus.
example: Failed to mount filesystem. If you want the card to be formatted, set the EXAMPLE_FORMAT_IF_MOUNT_FAILED menuconfig option.
The example will be able to mount only cards formatted using FAT32 filesystem. If the card is formatted as exFAT or some other filesystem, you have an option to format it in the example code. Enable the EXAMPLE_FORMAT_IF_MOUNT_FAILED menuconfig option, then build and flash the example.