Masahiro Yamada | d5cf329 | 2016-03-18 16:41:52 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <config.h> |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/io.h> |
| 10 | |
| 11 | #include "../sc-regs.h" |
| 12 | #include "../sg-regs.h" |
| 13 | #include "debug-uart.h" |
| 14 | |
| 15 | #define UNIPHIER_PRO4_UART_CLK 73728000 |
| 16 | |
| 17 | unsigned int uniphier_pro4_debug_uart_init(void) |
| 18 | { |
| 19 | u32 tmp; |
| 20 | |
| 21 | sg_set_iectrl(0); |
| 22 | sg_set_pinsel(128, 0, 4, 8); /* TXD0 -> TXD0 */ |
| 23 | |
| 24 | writel(1, SG_LOADPINCTRL); |
| 25 | |
| 26 | tmp = readl(SC_CLKCTRL); |
| 27 | tmp |= SC_CLKCTRL_CEN_PERI; |
| 28 | writel(tmp, SC_CLKCTRL); |
| 29 | |
| 30 | return DIV_ROUND_CLOSEST(UNIPHIER_PRO4_UART_CLK, 16 * CONFIG_BAUDRATE); |
| 31 | } |