Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Masahiro Yamada | d5cf329 | 2016-03-18 16:41:52 +0900 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com> |
Masahiro Yamada | d5cf329 | 2016-03-18 16:41:52 +0900 | [diff] [blame] | 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 | } |