diff options
Diffstat (limited to 'common/cmd_bdinfo.c')
| -rw-r--r-- | common/cmd_bdinfo.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index adda55a2630..deed6d82555 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -382,6 +382,12 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,  		print_num("-> size",	bd->bi_dram[i].size);  	} +#ifdef CONFIG_SYS_MEM_RESERVE_SECURE +	if (gd->secure_ram & MEM_RESERVE_SECURE_SECURED) { +		print_num("Secure ram", +			  gd->secure_ram & MEM_RESERVE_SECURE_ADDR_MASK); +	} +#endif  #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)  	print_eths();  #endif | 
