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