blob: d2e5e6057b34b3e2d8ac05071fe11024ee9092ff [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>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Simon Glass5233da52020-05-10 14:16:57 -060012
13DECLARE_GLOBAL_DATA_PTR;
14
Ovidiu Panait399aeb62020-07-24 14:12:19 +030015int arch_setup_bdinfo(void)
16{
17 struct bd_info *bd = gd->bd;
18
19#if defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
20 bd->bi_immr_base = CONFIG_SYS_IMMR; /* base of IMMR register */
21#endif
22
23#if defined(CONFIG_MPC83xx)
24 bd->bi_immrbar = CONFIG_SYS_IMMR;
25#endif
26
27 bd->bi_intfreq = gd->cpu_clk; /* Internal Freq, in Hz */
28 bd->bi_busfreq = gd->bus_clk; /* Bus Freq, in Hz */
29
30#if defined(CONFIG_CPM2)
31 bd->bi_cpmfreq = gd->arch.cpm_clk;
32 bd->bi_brgfreq = gd->arch.brg_clk;
33 bd->bi_sccfreq = gd->arch.scc_clk;
34 bd->bi_vco = gd->arch.vco_out;
35#endif /* CONFIG_CPM2 */
36
37 return 0;
38}
39
Simon Glass5233da52020-05-10 14:16:57 -060040void __weak board_detail(void)
41{
42 /* Please define board_detail() for your PPC platform */
43}
44
45void arch_print_bdinfo(void)
46{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090047 struct bd_info *bd = gd->bd;
Simon Glass5233da52020-05-10 14:16:57 -060048
Simon Glass227b24b2020-05-10 14:16:59 -060049 bdinfo_print_mhz("busfreq", bd->bi_busfreq);
Simon Glass5233da52020-05-10 14:16:57 -060050#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
Bin Meng1ae7a0c2021-01-31 20:36:05 +080051 bdinfo_print_num_l("immr_base", bd->bi_immr_base);
Simon Glass5233da52020-05-10 14:16:57 -060052#endif
Bin Meng1ae7a0c2021-01-31 20:36:05 +080053 bdinfo_print_num_l("bootflags", bd->bi_bootflags);
Simon Glass5233da52020-05-10 14:16:57 -060054 bdinfo_print_mhz("intfreq", bd->bi_intfreq);
55#ifdef CONFIG_ENABLE_36BIT_PHYS
56 if (IS_ENABLED(CONFIG_PHYS_64BIT))
57 puts("addressing = 36-bit\n");
58 else
59 puts("addressing = 32-bit\n");
60#endif
61 board_detail();
62#if defined(CONFIG_CPM2)
63 bdinfo_print_mhz("cpmfreq", bd->bi_cpmfreq);
64 bdinfo_print_mhz("vco", bd->bi_vco);
65 bdinfo_print_mhz("sccfreq", bd->bi_sccfreq);
66 bdinfo_print_mhz("brgfreq", bd->bi_brgfreq);
67#endif
68}