From 3a359c50002d18ab14ca750e8113cc5e63e2badd Mon Sep 17 00:00:00 2001 From: Camelia Groza Date: Tue, 11 Jul 2023 15:49:25 +0300 Subject: [PATCH] board: freescale: t104xrdb: implement get_serial_clock The serial clock is provided by the get_serial_clock() callback on PPC under DM_SERIAL. Use the same method to compute the clock as for non-DM_SERIAL use cases. Signed-off-by: Camelia Groza Signed-off-by: Peng Fan --- board/freescale/t104xrdb/t104xrdb.c | 9 +++++++++ include/configs/T104xRDB.h | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/board/freescale/t104xrdb/t104xrdb.c b/board/freescale/t104xrdb/t104xrdb.c index 562360de52..b308049271 100644 --- a/board/freescale/t104xrdb/t104xrdb.c +++ b/board/freescale/t104xrdb/t104xrdb.c @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2013 Freescale Semiconductor, Inc. + * Copyright 2023 NXP */ #include @@ -22,6 +23,7 @@ #include #include #include +#include #include #include "../common/sleep.h" #include "t104xrdb.h" @@ -29,6 +31,13 @@ DECLARE_GLOBAL_DATA_PTR; +#if CONFIG_IS_ENABLED(DM_SERIAL) +int get_serial_clock(void) +{ + return get_bus_freq(0) / 2; +} +#endif + int checkboard(void) { struct cpu_type *cpu = gd->arch.cpu; diff --git a/include/configs/T104xRDB.h b/include/configs/T104xRDB.h index f196bd76e6..01db298f38 100644 --- a/include/configs/T104xRDB.h +++ b/include/configs/T104xRDB.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright 2014 Freescale Semiconductor, Inc. - * Copyright 2020-2021 NXP + * Copyright 2020-2023 NXP */ #ifndef __CONFIG_H @@ -238,7 +238,9 @@ * open - index 2 * shorted - index 1 */ +#if !CONFIG_IS_ENABLED(DM_SERIAL) #define CFG_SYS_NS16550_CLK (get_bus_freq(0)/2) +#endif #define CFG_SYS_BAUDRATE_TABLE \ {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200} -- 2.39.5