X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=cmd%2Fbdinfo.c;h=d6a7175b37956e53c3270c714af6c97a3354bab2;hb=6864fc8704661878294d1f0f981f47e864ef470f;hp=cbeba6ba28f771e3ce9ddf3d13efea6d9298350c;hpb=0c4b382f9041f9f2f00246c8a0ece90dae5451be;p=platform%2Fkernel%2Fu-boot.git diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index cbeba6b..d6a7175 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -9,6 +9,8 @@ */ #include #include +#include +#include #include DECLARE_GLOBAL_DATA_PTR; @@ -321,14 +323,14 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, print_eths(); #endif print_baudrate(); -#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) +#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) print_num("TLB addr", gd->arch.tlb_addr); #endif print_num("relocaddr", gd->relocaddr); print_num("reloc off", gd->reloc_off); print_num("irq_sp", gd->irq_sp); /* irq stack pointer */ print_num("sp start ", gd->start_addr_sp); -#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) +#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO) print_num("FB base ", gd->fb_base); #endif /* @@ -347,6 +349,9 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, CONFIG_VAL(SYS_MALLOC_F_LEN)); #endif +#if CONFIG_IS_ENABLED(MULTI_DTB_FIT) + print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit); +#endif if (gd->fdt_blob) print_num("fdt_blob", (ulong)gd->fdt_blob);