Changes between Version 24 and Version 25 of MMC


Ignore:
Timestamp:
08/23/2022 04:16:26 PM (20 months ago)
Author:
Tim Harvey
Comment:

added SDIO bus notes

Legend:

Unmodified
Added
Removed
Modified
  • MMC

    v24 v25  
    343343
    344344
     345[=#sdio]
     346=== SDIO
     347SDIO devices are covered by the SD protocol and are commonly used for WiFi modules.
     348
     349Device detection is done via two signals, CLK and CMD_RESP (open-drain). Once a device is detected by querying its operating modes data communication can occur using DATA[0-3] in 1-bit mode or 4-bit mode
     350
     351The following speeds are supported for SDIO devices:
     352||= Mode         =||= Data Rate =||= Max Frequency =||= Max data rate at 4bit bus =||= Notes =||
     353|| Default Speed (DS) || Single  || 25MHz   || 12.5MB/s || 3.3V / 1.8V ||
     354|| High Speed (HS)    || Single  || 50MHz   || 25MB/s || 3.3V / 1.8V ||
     355|| SDR12/SDR25/SDR50  || Single  || 100MHz  || 50MB/s || 1.8V (up to 100MHz) ||
     356|| SDR104             || Single  || 208MHz  || 104MB/s || 1.8V ||
     357|| DDR50              || Dual    || 50MHz   || 50MB/s || 1.8V ||
     358 * To support higher frequencies from 100MHz to 200MHz the driver and device-tree must support the ability to alter the pin control to increase drive-strength
     359
    345360[=#performance]
    346361== Performance and Data Rates ==