blob: 9268f5d5aad7b0adc3c246f3814174b753956421 [file] [log] [blame]
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +09001/*
Masahiro Yamadaca971b52020-02-03 19:45:16 +09002 * Copyright (c) 2019-2020, Socionext Inc. All rights reserved.
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +09003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Masahiro Yamadaca971b52020-02-03 19:45:16 +09007#include <assert.h>
8
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +09009#include <drivers/console.h>
10#include <errno.h>
11#include <lib/mmio.h>
12#include <plat/common/platform.h>
13
14#include "uniphier.h"
15#include "uniphier_console.h"
16
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090017#define UNIPHIER_UART_OFFSET 0x100
Masahiro Yamadaca971b52020-02-03 19:45:16 +090018#define UNIPHIER_UART_NR_PORTS 4
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090019
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090020/* These callbacks are implemented in assembly to use crash_console_helpers.S */
21int uniphier_console_putc(int character, struct console *console);
22int uniphier_console_getc(struct console *console);
Jimmy Brisson39f9eee2020-08-05 13:44:05 -050023void uniphier_console_flush(struct console *console);
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090024
Andre Przywara33806312020-01-25 00:58:35 +000025static console_t uniphier_console = {
26 .flags = CONSOLE_FLAG_BOOT |
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090027#if DEBUG
Andre Przywara33806312020-01-25 00:58:35 +000028 CONSOLE_FLAG_RUNTIME |
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090029#endif
Andre Przywara33806312020-01-25 00:58:35 +000030 CONSOLE_FLAG_CRASH |
31 CONSOLE_FLAG_TRANSLATE_CRLF,
32 .putc = uniphier_console_putc,
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020033#if ENABLE_CONSOLE_GETC
Andre Przywara33806312020-01-25 00:58:35 +000034 .getc = uniphier_console_getc,
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020035#endif
Andre Przywara33806312020-01-25 00:58:35 +000036 .flush = uniphier_console_flush,
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090037};
38
Masahiro Yamadaca971b52020-02-03 19:45:16 +090039static const uintptr_t uniphier_uart_base[] = {
40 [UNIPHIER_SOC_LD11] = 0x54006800,
41 [UNIPHIER_SOC_LD20] = 0x54006800,
42 [UNIPHIER_SOC_PXS3] = 0x54006800,
43};
44
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090045/*
46 * There are 4 UART ports available on this platform. By default, we want to
47 * use the same one as used in the previous firmware stage.
48 */
Masahiro Yamadaca971b52020-02-03 19:45:16 +090049static uintptr_t uniphier_console_get_base(unsigned int soc)
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090050{
Masahiro Yamadaca971b52020-02-03 19:45:16 +090051 uintptr_t base, end;
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090052 uint32_t div;
53
Masahiro Yamadaca971b52020-02-03 19:45:16 +090054 assert(soc < ARRAY_SIZE(uniphier_uart_base));
55 base = uniphier_uart_base[soc];
56 end = base + UNIPHIER_UART_OFFSET * UNIPHIER_UART_NR_PORTS;
57
58 while (base < end) {
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090059 div = mmio_read_32(base + UNIPHIER_UART_DLR);
60 if (div)
61 return base;
62 base += UNIPHIER_UART_OFFSET;
63 }
64
65 return 0;
66}
67
68static void uniphier_console_init(uintptr_t base)
69{
70 mmio_write_32(base + UNIPHIER_UART_FCR, UNIPHIER_UART_FCR_ENABLE_FIFO);
71 mmio_write_32(base + UNIPHIER_UART_LCR_MCR,
72 UNIPHIER_UART_LCR_WLEN8 << 8);
73}
74
Masahiro Yamadaca971b52020-02-03 19:45:16 +090075void uniphier_console_setup(unsigned int soc)
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090076{
77 uintptr_t base;
78
Masahiro Yamadaca971b52020-02-03 19:45:16 +090079 base = uniphier_console_get_base(soc);
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090080 if (!base)
81 plat_error_handler(-EINVAL);
82
83 uniphier_console.base = base;
Andre Przywara33806312020-01-25 00:58:35 +000084 console_register(&uniphier_console);
Masahiro Yamadaca8b80e2019-07-02 22:03:16 +090085
86 /*
87 * The hardware might be still printing characters queued up in the
88 * previous firmware stage. Make sure the transmitter is empty before
89 * any initialization. Otherwise, the console might get corrupted.
90 */
91 console_flush();
92
93 uniphier_console_init(base);
94}