Simon Glass | 671c454 | 2021-02-06 09:57:29 -0700 | [diff] [blame^] | 1 | .. SPDX-License-Identifier: GPL-2.0+: |
| 2 | |
| 3 | md command |
| 4 | ========== |
| 5 | |
| 6 | Synopis |
| 7 | ------- |
| 8 | |
| 9 | :: |
| 10 | |
| 11 | md <address>[<data_size>] [<length>] |
| 12 | |
| 13 | Description |
| 14 | ----------- |
| 15 | |
| 16 | The md command is used to dump the contents of memory. It uses a standard |
| 17 | format that includes the address, hex data and ASCII display. It supports |
| 18 | various data sizes and uses the endianness of the target. |
| 19 | |
| 20 | The specified data_size and length become the defaults for future memory |
| 21 | commands commands. |
| 22 | |
| 23 | address |
| 24 | start address to display |
| 25 | |
| 26 | data_size |
| 27 | size of each value to display (defaults to .l): |
| 28 | |
| 29 | ========= =================== |
| 30 | data_size Output size |
| 31 | ========= =================== |
| 32 | .b byte |
| 33 | .w word (16 bits) |
| 34 | .l long (32 bits) |
| 35 | .q quadword (64 bits) |
| 36 | ========= =================== |
| 37 | |
| 38 | length |
| 39 | number of values to dump. Defaults to 40 (0d64). Note that this is not |
| 40 | the same as the number of bytes, unless .b is used. |
| 41 | |
| 42 | |
| 43 | Example |
| 44 | ------- |
| 45 | |
| 46 | :: |
| 47 | |
| 48 | => md 10000 |
| 49 | 00010000: 00010000 00000000 f0f30f00 00005596 .............U.. |
| 50 | 00010010: 10011010 00000000 10011010 00000000 ................ |
| 51 | 00010020: 10011050 00000000 b96d4cd8 00007fff P........Lm..... |
| 52 | 00010030: 00000000 00000000 f0f30f18 00005596 .............U.. |
| 53 | 00010040: 10011040 00000000 10011040 00000000 @.......@....... |
| 54 | 00010050: b96d4cd8 00007fff 10011020 00000000 .Lm..... ....... |
| 55 | 00010060: 00000003 000000c3 00000000 00000000 ................ |
| 56 | 00010070: 00000000 00000000 f0e892f3 00005596 .............U.. |
| 57 | 00010080: 00000000 000000a1 00000000 00000000 ................ |
| 58 | 00010090: 00000000 00000000 f0e38aa6 00005596 .............U.. |
| 59 | 000100a0: 00000000 000000a6 00000022 00000000 ........"....... |
| 60 | 000100b0: 00000001 00000000 f0e38aa1 00005596 .............U.. |
| 61 | 000100c0: 00000000 000000be 00000000 00000000 ................ |
| 62 | 000100d0: 00000000 00000000 00000000 00000000 ................ |
| 63 | 000100e0: 00000000 00000000 00000000 00000000 ................ |
| 64 | 000100f0: 00000000 00000000 00000000 00000000 ................ |
| 65 | => md.b 10000 |
| 66 | 00010000: 00 00 01 00 00 00 00 00 00 0f f3 f0 96 55 00 00 .............U.. |
| 67 | 00010010: 10 10 01 10 00 00 00 00 10 10 01 10 00 00 00 00 ................ |
| 68 | 00010020: 50 10 01 10 00 00 00 00 d8 4c 6d b9 ff 7f 00 00 P........Lm..... |
| 69 | 00010030: 00 00 00 00 00 00 00 00 18 0f f3 f0 96 55 00 00 .............U.. |
| 70 | => md.b 10000 10 |
| 71 | 00010000: 00 00 01 00 00 00 00 00 00 0f f3 f0 96 55 00 00 .............U.. |
| 72 | => |
| 73 | 00010010: 10 10 01 10 00 00 00 00 10 10 01 10 00 00 00 00 ................ |
| 74 | => |
| 75 | 00010020: 50 10 01 10 00 00 00 00 d8 4c 6d b9 ff 7f 00 00 P........Lm..... |
| 76 | => |
| 77 | => md.q 10000 |
| 78 | 00010000: 0000000000010000 00005596f0f30f00 .............U.. |
| 79 | 00010010: 0000000010011010 0000000010011010 ................ |
| 80 | 00010020: 0000000010011050 00007fffb96d4cd8 P........Lm..... |
| 81 | 00010030: 0000000000000000 00005596f0f30f18 .............U.. |
| 82 | 00010040: 0000000010011040 0000000010011040 @.......@....... |
| 83 | 00010050: 00007fffb96d4cd8 0000000010011020 .Lm..... ....... |
| 84 | 00010060: 000000c300000003 0000000000000000 ................ |
| 85 | 00010070: 0000000000000000 00005596f0e892f3 .............U.. |
| 86 | |
| 87 | The empty commands cause a 'repeat', so that md shows the next available data |
| 88 | in the same format as before. |
| 89 | |
| 90 | |
| 91 | Return value |
| 92 | ------------ |
| 93 | |
| 94 | The return value $? is always 0 (true). |
| 95 | |
| 96 | |