From: Pali Rohár Date: Mon, 26 Jul 2021 12:58:59 +0000 (+0200) Subject: serial: a37xx: Do not call get_ref_clk() in _debug_uart_init() X-Git-Tag: v2021.10~75^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cc4be280c259ac1e8e74c643c72e0331266056f;p=platform%2Fkernel%2Fu-boot.git serial: a37xx: Do not call get_ref_clk() in _debug_uart_init() Static inline function _debug_uart_init() should avoid calling external (non-inline) functions. Therefore do not call get_ref_clk() in _debug_uart_init() and reimplement its functionality without external function calls. Signed-off-by: Pali Rohár Reviewed-by: Stefan Roese --- diff --git a/drivers/serial/serial_mvebu_a3700.c b/drivers/serial/serial_mvebu_a3700.c index 52dc3fd..6bca8e4 100644 --- a/drivers/serial/serial_mvebu_a3700.c +++ b/drivers/serial/serial_mvebu_a3700.c @@ -305,6 +305,7 @@ U_BOOT_DRIVER(serial_mvebu) = { #ifdef CONFIG_DEBUG_MVEBU_A3700_UART #include +#include static inline void _debug_uart_init(void) { @@ -322,7 +323,8 @@ static inline void _debug_uart_init(void) * Calculate divider * baudrate = clock / 16 / divider */ - parent_rate = get_ref_clk() * 1000000; + parent_rate = (readl(MVEBU_REGISTER(0x13808)) & BIT(9)) ? + 40000000 : 25000000; divider = DIV_ROUND_CLOSEST(parent_rate, CONFIG_BAUDRATE * 16); writel(divider, base + UART_BAUD_REG);