public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] serial: ns16550: Add support for the BayTrail internal HS UART
@ 2016-07-13  6:03 Stefan Roese
  2016-07-14  0:52 ` Bin Meng
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Roese @ 2016-07-13  6:03 UTC (permalink / raw)
  To: u-boot

To support the BayTrail internal SIO HS UART, the internal UART clock
needs to get configured. This patch adds support for this clock
configuration which will be done, if a compatible DT node is found.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
---
 drivers/serial/ns16550.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c
index c6cb3eb..12499ec 100644
--- a/drivers/serial/ns16550.c
+++ b/drivers/serial/ns16550.c
@@ -94,6 +94,13 @@ static inline int serial_in_shift(void *addr, int shift)
 #define CONFIG_SYS_NS16550_CLK  0
 #endif
 
+/* Intel BayTrail defines */
+#define BYT_PRV_CLK			0x800
+#define BYT_PRV_CLK_EN			(1 << 0)
+#define BYT_PRV_CLK_M_VAL_SHIFT		1
+#define BYT_PRV_CLK_N_VAL_SHIFT		16
+#define BYT_PRV_CLK_UPDATE		(1 << 31)
+
 static void ns16550_writeb(NS16550_t port, int offset, int value)
 {
 	struct ns16550_platdata *plat = port->plat;
@@ -381,6 +388,25 @@ int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
 			return ret;
 
 		addr = bar;
+
+		/* Setup BayTrail UART clock */
+		ret = fdt_node_check_compatible(gd->fdt_blob, dev->of_offset,
+						"baytrail-hs-uart");
+		if (ret == 0) {
+			u32 m, n, reg;
+
+			/*
+			 * Configure the BayTrail UART clock for the internal
+			 * HS UARTs (PCI devices) to 58982400 Hz
+			 */
+			m = 0x2400;
+			n = 0x3d09;
+			reg = (m << BYT_PRV_CLK_M_VAL_SHIFT) |
+				(n << BYT_PRV_CLK_N_VAL_SHIFT);
+			writel(reg, bar + BYT_PRV_CLK);
+			reg |= BYT_PRV_CLK_EN | BYT_PRV_CLK_UPDATE;
+			writel(reg, bar + BYT_PRV_CLK);
+		}
 	}
 #endif
 
-- 
2.9.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-07-18 11:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-13  6:03 [U-Boot] [PATCH] serial: ns16550: Add support for the BayTrail internal HS UART Stefan Roese
2016-07-14  0:52 ` Bin Meng
2016-07-18  8:17   ` Stefan Roese
2016-07-18 11:24     ` Simon Glass
2016-07-18 11:46       ` Stefan Roese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox