blob: da09bb276f6e84ea26bd07e7ab463ffbb2cf4a5d [file] [log] [blame]
Simon Glass5233da52020-05-10 14:16:57 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * PPC-specific information for the 'bd' command
4 *
5 * (C) Copyright 2003
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 */
8
9#include <common.h>
10#include <init.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14void __weak board_detail(void)
15{
16 /* Please define board_detail() for your PPC platform */
17}
18
19void arch_print_bdinfo(void)
20{
21 bd_t *bd = gd->bd;
22
23#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
24 bdinfo_print_num("immr_base", bd->bi_immr_base);
25#endif
26 bdinfo_print_num("bootflags", bd->bi_bootflags);
27 bdinfo_print_mhz("intfreq", bd->bi_intfreq);
28#ifdef CONFIG_ENABLE_36BIT_PHYS
29 if (IS_ENABLED(CONFIG_PHYS_64BIT))
30 puts("addressing = 36-bit\n");
31 else
32 puts("addressing = 32-bit\n");
33#endif
34 board_detail();
35#if defined(CONFIG_CPM2)
36 bdinfo_print_mhz("cpmfreq", bd->bi_cpmfreq);
37 bdinfo_print_mhz("vco", bd->bi_vco);
38 bdinfo_print_mhz("sccfreq", bd->bi_sccfreq);
39 bdinfo_print_mhz("brgfreq", bd->bi_brgfreq);
40#endif
41}