]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
board: freescale: t104xrdb: implement get_serial_clock
authorCamelia Groza <camelia.groza@nxp.com>
Tue, 11 Jul 2023 12:49:25 +0000 (15:49 +0300)
committerPeng Fan <peng.fan@nxp.com>
Thu, 13 Jul 2023 08:54:38 +0000 (16:54 +0800)
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 <camelia.groza@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
board/freescale/t104xrdb/t104xrdb.c
include/configs/T104xRDB.h

index 562360de5291c41d9e6cbd423cbffe11cbc3ad08..b3080492716780a59f47d2cd89de587985df2edb 100644 (file)
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright 2013 Freescale Semiconductor, Inc.
+ * Copyright 2023 NXP
  */
 
 #include <common.h>
@@ -22,6 +23,7 @@
 #include <asm/fsl_law.h>
 #include <asm/fsl_serdes.h>
 #include <asm/fsl_liodn.h>
+#include <clock_legacy.h>
 #include <fm_eth.h>
 #include "../common/sleep.h"
 #include "t104xrdb.h"
 
 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;
index f196bd76e6ecd73f81e0c96656a4948fce13b7fa..01db298f38e317a4d9d933d14c5d1ee9b225bbce 100644 (file)
@@ -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
  * 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}