xref: /openbmc/u-boot/arch/arm/mach-uniphier/debug-uart/debug-uart-ld4.c (revision 872cfa20cd694fdbfa76abddd3cd00b05ad5355b)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
4  */
5 
6 #include <config.h>
7 #include <linux/kernel.h>
8 
9 #include "../sg-regs.h"
10 #include "debug-uart.h"
11 
12 #define UNIPHIER_LD4_UART_CLK		36864000
13 
14 unsigned int uniphier_ld4_debug_uart_init(void)
15 {
16 	sg_set_iectrl(0);
17 	sg_set_pinsel(88, 1, 8, 4);	/* HSDOUT6 -> TXD0 */
18 
19 	return DIV_ROUND_CLOSEST(UNIPHIER_LD4_UART_CLK, 16 * CONFIG_BAUDRATE);
20 }
21