diff options
| author | Tom Rini <[email protected]> | 2023-11-01 09:44:33 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-01 09:44:33 -0400 |
| commit | a803f87202aa48974bdff4d8100464a8288931e4 (patch) | |
| tree | 56be5dcdd139e0a1e199ce3d7e69239fe96bb810 /doc | |
| parent | 62fc66b6d228d628c3f672c736aa57e4174ac783 (diff) | |
| parent | b5f403936d037e0bc08e78b8af64adf53da13b90 (diff) | |
Merge https://source.denx.de/u-boot/custodians/u-boot-mmc
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/usage/cmd/mmc.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/usage/cmd/mmc.rst b/doc/usage/cmd/mmc.rst index 71a0303109c..c0924ba5769 100644 --- a/doc/usage/cmd/mmc.rst +++ b/doc/usage/cmd/mmc.rst @@ -21,6 +21,7 @@ Synopsis mmc bootpart-resize <dev> <dev part size MB> <RPMB part size MB> mmc partconf <dev> [[varname] | [<boot_ack> <boot_partition> <partition_access>]] mmc rst-function <dev> <value> + mmc reg read <reg> <offset> [env] Description ----------- @@ -183,6 +184,31 @@ The 'mmc rst-function' command changes the RST_n_FUNCTION field. 0x3 Reserved +The 'mmc reg read <reg> <offset> [env]' reads eMMC card register and +either print it to standard output, or store the value in environment +variable. + +<reg> with +optional offset <offset> into the register array, and print it to +standard output or store it into environment variable [env]. + + reg + cid + The Device IDentification (CID) register. Uses offset. + csd + The Device-Specific Data (CSD) register. Uses offset. + dsr + The driver stage register (DSR). + ocr + The operation conditions register (OCR). + rca + The relative Device address (RCA) register. + extcsd + The Extended CSD register. Uses offset. + offset + For 'cid'/'csd' 128 bit registers '[0..3]' in 32-bit increments. For 'extcsd' 512 bit register '[0..512,all]' in 8-bit increments, or 'all' to read the entire register. + env + Optional environment variable into which 32-bit value read from register should be stored. Examples -------- |
