debug-uart-ld20.c 848 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <config.h>
  7. #include <linux/kernel.h>
  8. #include <linux/io.h>
  9. #include "../sc64-regs.h"
  10. #include "../sg-regs.h"
  11. #include "debug-uart.h"
  12. #define UNIPHIER_LD20_UART_CLK 58820000
  13. unsigned int uniphier_ld20_debug_uart_init(void)
  14. {
  15. u32 tmp;
  16. sg_set_iectrl(54); /* TXD0 */
  17. sg_set_iectrl(58); /* TXD1 */
  18. sg_set_iectrl(90); /* TXD2 */
  19. sg_set_iectrl(94); /* TXD3 */
  20. sg_set_pinsel(54, 0, 8, 4); /* TXD0 -> TXD0 */
  21. sg_set_pinsel(58, 1, 8, 4); /* SPITXD1 -> TXD1 */
  22. sg_set_pinsel(90, 1, 8, 4); /* PC0WE -> TXD2 */
  23. sg_set_pinsel(94, 1, 8, 4); /* PCD00 -> TXD3 */
  24. tmp = readl(SC_CLKCTRL4);
  25. tmp |= SC_CLKCTRL4_PERI;
  26. writel(tmp, SC_CLKCTRL4);
  27. return DIV_ROUND_CLOSEST(UNIPHIER_LD20_UART_CLK, 16 * CONFIG_BAUDRATE);
  28. }