diff options
author | Moteen Shah <m-shah@ti.com> | 2025-06-09 13:44:34 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-18 12:20:25 -0600 |
commit | 003e7d70cd59e2221a463faaa9e8d1bd8e8e054f (patch) | |
tree | 22b7835f349f7c7ee2a5aec7e8bf0754c3f0ed16 /arch/arm/mach-k3/am62ax/am62a7_init.c | |
parent | 7bdbda262c1c76a4c5800e1f105e2473d5ead2e1 (diff) |
arm: mach-k3: Print version of DM firmware during boot process
Print DM firmware's version in the boot up process of K3 devices,
having DM capability(DM as a separate binary).
Signed-off-by: Moteen Shah <m-shah@ti.com>
Diffstat (limited to 'arch/arm/mach-k3/am62ax/am62a7_init.c')
-rw-r--r-- | arch/arm/mach-k3/am62ax/am62a7_init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-k3/am62ax/am62a7_init.c b/arch/arm/mach-k3/am62ax/am62a7_init.c index edd43a1d78d..ac4d30052f3 100644 --- a/arch/arm/mach-k3/am62ax/am62a7_init.c +++ b/arch/arm/mach-k3/am62ax/am62a7_init.c @@ -172,6 +172,10 @@ void board_init_f(ulong dummy) /* Output System Firmware version info */ k3_sysfw_print_ver(); + /* Output DM Firmware version info */ + if (IS_ENABLED(CONFIG_ARM64)) + k3_dm_print_ver(); + if (IS_ENABLED(CONFIG_ESM_K3)) { /* Probe/configure ESM0 */ ret = uclass_get_device_by_name(UCLASS_MISC, "esm@420000", &dev); |