blob: 6d0dbceefeac2914340d5836cf7cbeb469592b93 [file] [log] [blame]
Bin Meng70b22cf2021-02-25 17:22:34 +08001.. SPDX-License-Identifier: GPL-2.0+
2
Heinrich Schuchardt1b0c3162024-01-14 14:53:13 +01003.. index::
4 single: addrmap (command)
5
Bin Meng70b22cf2021-02-25 17:22:34 +08006addrmap command
7===============
8
9Synopsis
10--------
11
12::
13
14 addrmap
15
16Description
17-----------
18
19The addrmap command is used to display non-identity virtual-physical memory
20mappings for 32-bit CPUs.
21
22The output may look like:
23
24::
25
26 => addrmap
27 vaddr paddr size
28 ================ ================ ================
29 e0000000 fe0000000 00100000
30 00000000 00000000 04000000
31 04000000 04000000 04000000
32 80000000 c00000000 10000000
33 90000000 c10000000 10000000
34 a0000000 fe1000000 00010000
35
36The first column indicates the virtual address.
37The second column indicates the physical address.
38The third column indicates the mapped size.
39
40Configuration
41-------------
42
43To use the addrmap command you must specify CONFIG_CMD_ADDRMAP=y.
44It is automatically turned on when CONFIG_ADDR_MAP is set.