"Das U-Boot" Source Tree
at master 44 lines 1.1 kB view raw
1.. SPDX-License-Identifier: GPL-2.0+ 2 3.. index:: 4 single: addrmap (command) 5 6addrmap 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.