mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-13 16:14:20 +00:00

The legacy console is gone. Re-add the console support based on the multi-console framework. I am still keeping the putc, getc, and flush callbacks in uniphier_console.S to use plat/common/aarch64/crash_console_helpers.S The console registration code already relies on that C environment has been set up. So, I just filled the struct console fields with the callback pointers, then called console_register() directly. I also re-implemented the init function in C to improve the readability. Removing the custom crash console implementation has one disadvantage; we cannot use the crash console on very early crashes because crash_console_helpers.S works only after the console is registered. I can live with this limitation. Tested on my boards, and confirmed this worked like before. Change-Id: Ieab9c849853ff6c525c15ea894a85944f257db59 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
25 lines
978 B
C
25 lines
978 B
C
/*
|
|
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef UNIPHIER_CONSOLE_H
|
|
#define UNIPHIER_CONSOLE_H
|
|
|
|
#define UNIPHIER_UART_RX 0x00 /* In: Receive buffer */
|
|
#define UNIPHIER_UART_TX 0x00 /* Out: Transmit buffer */
|
|
|
|
#define UNIPHIER_UART_FCR 0x0c /* Char/FIFO Control Register */
|
|
#define UNIPHIER_UART_FCR_ENABLE_FIFO 0x01 /* Enable the FIFO */
|
|
|
|
#define UNIPHIER_UART_LCR_MCR 0x10 /* Line/Modem Control Register */
|
|
#define UNIPHIER_UART_LCR_WLEN8 0x03 /* Wordlength: 8 bits */
|
|
#define UNIPHIER_UART_LSR 0x14 /* Line Status Register */
|
|
#define UNIPHIER_UART_LSR_TEMT 0x40 /* Transmitter empty */
|
|
#define UNIPHIER_UART_LSR_TEMT_BIT 6 /* Transmitter empty */
|
|
#define UNIPHIER_UART_LSR_THRE_BIT 5 /* Transmit-hold-register empty */
|
|
#define UNIPHIER_UART_LSR_DR_BIT 0 /* Receiver data ready */
|
|
#define UNIPHIER_UART_DLR 0x24 /* Divisor Latch Register */
|
|
|
|
#endif /* UNIPHIER_CONSOLE_H */
|