forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddrmap.c
35 lines (28 loc) · 801 Bytes
/
addrmap.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2021, Bin Meng <[email protected]>
*/
#include <common.h>
#include <command.h>
#include <addr_map.h>
static int do_addrmap(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[])
{
int i;
printf(" vaddr paddr size\n");
printf("================ ================ ================\n");
for (i = 0; i < CONFIG_SYS_NUM_ADDR_MAP; i++) {
if (address_map[i].size == 0)
continue;
printf("%16.8lx %16.8llx %16.8llx\n",
address_map[i].vaddr,
(unsigned long long)address_map[i].paddr,
(unsigned long long)address_map[i].size);
}
return 0;
}
U_BOOT_CMD(
addrmap, 1, 1, do_addrmap,
"List non-identity virtual-physical memory mappings for 32-bit CPUs",
""
);