blob: f2535341df9db9954c59d660384a43a663fcf73a [file] [log] [blame]
/*
* Copyright (c) 2023, Advanced Micro Devices, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <common/debug.h>
#include <common/fdt_fixup.h>
#include <common/fdt_wrappers.h>
#include <drivers/arm/dcc.h>
#include <drivers/arm/pl011.h>
#include <drivers/cadence/cdns_uart.h>
#include <drivers/console.h>
#include <libfdt.h>
#include <plat_console.h>
#include <plat_fdt.h>
#include <platform_def.h>
#include <plat_private.h>
static console_t boot_console;
#if (CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE))) || defined(CONSOLE_RUNTIME)
/**
* register_console() - Registers the runtime uart with console list.
* @uart_base: UART base address
* @clock: UART clock.
* @baud_rate: UART buad rate
* @console: Pointer to the console information structure.
* @flags: console flags.
*/
static void register_console(uintptr_t uart_base, uint32_t clock,
uint32_t baud_rate, console_t *console,
uint32_t flags, uint8_t console_type)
{
int32_t rc = 0;
if (console_type == PLAT_XLNX_CONSOLE_TYPE_DEFAULT) {
#if defined(PLAT_zynqmp)
rc = console_cdns_register(uart_base,
clock,
baud_rate,
console);
#elif defined(PLAT_versal) || defined(PLAT_versal_net) || defined(PLAT_versal2)
rc = console_pl011_register(uart_base,
clock,
baud_rate,
console);
#endif
} else if (console_type == PLAT_XLNX_CONSOLE_TYPE_DEBUG) {
rc = console_dcc_register(console);
} else {
INFO("Invalid console type\n");
}
if (rc == 0) {
panic();
}
console_set_scope(console, flags);
}
#endif
#if (CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE)))
static console_t dt_console;
/**
* get_baudrate() - Get the baudrate form DTB.
* @dtb: Address of the Device Tree Blob (DTB).
*
* Return: On success returns the baudrate; on failure returns an error.
*/
static int32_t get_baudrate(void *dtb)
{
int node;
int32_t ret = 0;
const char *prop, *path;
char *end;
int32_t baud_rate = 0;
node = fdt_path_offset(dtb, "/secure-chosen");
if (node < 0) {
node = fdt_path_offset(dtb, "/chosen");
if (node < 0) {
ret = -FDT_ERR_NOTFOUND;
goto error;
}
}
prop = fdt_getprop(dtb, node, "stdout-path", NULL);
if (prop == NULL) {
ret = -FDT_ERR_NOTFOUND;
goto error;
}
/* Parse string serial0:115200n8 */
path = strchr(prop, ':');
if (!path) {
ret = -FDT_ERR_NOTFOUND;
goto error;
} else {
baud_rate = strtoul(path + 1, &end, 10);
if (baud_rate == 0 && end == path) {
ERROR("Conversion error occurred: %d\n", baud_rate);
ret = -FDT_ERR_NOTFOUND;
goto error;
}
ret = baud_rate;
}
error:
return ret;
}
/**
* get_node_status() - Get the DTB node status.
* @dtb: Address of the Device Tree Blob (DTB).
* @node: Node address in the device tree.
*
* Return: On success, it returns 1; on failure, it returns an 0.
*/
static uint32_t get_node_status(void *dtb, int node)
{
const char *status_cell;
uint32_t status = 0;
status_cell = fdt_getprop(dtb, node, "status", NULL);
if (!status_cell || strcmp(status_cell, "okay") == 0) {
status = 1;
} else {
status = 0;
}
return status;
}
/**
* fdt_add_uart_info() - Add DTB information to a UART structure.
* @info: Pointer to the UART information structure.
* @node: Node address in the device tree.
* @dtb: Address of the Device Tree Blob(DTB).
*
* Return: On success, it returns 1; on failure, it returns an 0.
*/
static uint32_t fdt_add_uart_info(dt_uart_info_t *info, int node, void *dtb)
{
uintptr_t base_addr;
const char *com;
int32_t ret = 0;
com = fdt_getprop(dtb, node, "compatible", NULL);
if (com != NULL) {
strlcpy(info->compatible, com, sizeof(info->compatible));
} else {
ERROR("Compatible property not found in DTB node\n");
ret = -FDT_ERR_NOTFOUND;
goto error;
}
info->status = get_node_status(dtb, node);
if (info->status == 0) {
ERROR("Uart node is disabled in DTB\n");
ret = -FDT_ERR_NOTFOUND;
goto error;
}
if (strncmp(info->compatible, DT_UART_DCC_COMPAT, strlen(DT_UART_DCC_COMPAT)) != 0) {
ret = fdt_get_reg_props_by_index(dtb, node, 0, &base_addr, NULL);
if (ret >= 0) {
info->base = base_addr;
} else {
ERROR("Failed to retrieve base address. Error code: %d\n", ret);
ret = -FDT_ERR_NOTFOUND;
goto error;
}
info->baud_rate = get_baudrate(dtb);
}
error:
return ret;
}
/**
* fdt_get_uart_info() - Get the uart information form DTB.
* @info: Pointer to the UART information structure.
*
* Return: On success, it returns 0; on failure, it returns an error+reason.
*/
static int fdt_get_uart_info(dt_uart_info_t *info)
{
int node = 0, ret = 0;
void *dtb = (void *)XILINX_OF_BOARD_DTB_ADDR;
ret = is_valid_dtb(dtb);
if (ret < 0) {
ERROR("Invalid Device Tree at %p: error %d\n", dtb, ret);
goto error;
}
node = fdt_get_stdout_node_offset(dtb);
if (node < 0) {
ERROR("DT get stdout node failed : %d\n", node);
goto error;
}
ret = fdt_add_uart_info(info, node, dtb);
if (ret < 0) {
ERROR("Failed to add DT UART info: %d\n", ret);
goto error;
}
error:
return ret;
}
/**
* check_fdt_uart_info() - Check early uart info with DTB uart info.
* @info: Pointer to the UART information structure.
*
* Return: On success, it returns 0; on failure, it returns an error+reason.
*/
static int32_t check_fdt_uart_info(dt_uart_info_t *info)
{
int32_t ret = 0;
if (info->status == 0) {
ret = -ENODEV;
goto error;
}
if ((info->base == boot_console.base) &&
(info->baud_rate == UART_BAUDRATE) && !CONSOLE_IS(dcc)) {
ret = -ENODEV;
goto error;
}
error:
return ret;
}
/**
* console_end() - Unregister the console_t instance form the console list.
* @console: Pointer to the console information structure.
*/
static void console_end(console_t *console)
{
if (CONSOLE_IS(dcc)) {
console_dcc_unregister(console);
} else {
if (console != NULL) {
console_flush();
(void)console_unregister(console);
}
}
}
/**
* parse_uart_info() - Parse UART information from Device Tree Blob.
* @uart_info: Pointer to the UART information structure.
*
* Return: On success, it returns 0; on failure, it returns an error+reason;
*/
static int32_t parse_uart_info(dt_uart_info_t *uart_info)
{
int32_t rc = fdt_get_uart_info(uart_info);
if (rc < 0) {
rc = -FDT_ERR_NOTFOUND;
}
return rc;
}
/**
* handle_dt_console() - Registers the DT console
* @uart_info: Pointer to the UART information structure.
* @console: Pointer to the console information structure.
* @clock: UART clock.
* @end_console: Pointer to the console information structure.
*/
static void handle_dt_console(dt_uart_info_t *uart_info, console_t *console,
uint32_t clock, console_t *end_console)
{
register_console(uart_info->base, clock, uart_info->baud_rate,
console, CONSOLE_FLAG_BOOT |
CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_CRASH,
PLAT_XLNX_CONSOLE_TYPE_DEFAULT);
console_end(end_console);
INFO("DTB console setup\n");
}
/**
* handle_dcc_console() - Registers the DCC console
* @console: Pointer to the console information structure.
*/
static void handle_dcc_console(console_t *console)
{
int32_t rc = console_dcc_register(console);
if (rc == 0) {
panic();
}
console_end(console);
}
/**
* dt_console_init() - Initializes the DT console information.
* @uart_info: Pointer to the UART information structure.
* @console: Pointer to the console information structure.
* @clock: UART clock.
*
* Return: On success, it returns 0; on failure, it returns an error+reason;
*/
static int32_t dt_console_init(dt_uart_info_t *uart_info,
console_t *console,
uint32_t clock)
{
int32_t rc = 0;
/* Parse UART information from Device Tree Blob (DTB) */
rc = parse_uart_info(uart_info);
if (rc < 0) {
goto error;
}
rc = check_fdt_uart_info(uart_info);
if (rc < 0) {
goto error;
}
rc = check_fdt_uart_info(uart_info);
if (rc < 0) {
goto error;
}
if (strncmp(uart_info->compatible, DT_UART_COMPAT,
strlen(DT_UART_COMPAT)) == 0) {
handle_dt_console(uart_info, &dt_console, clock, console);
} else if (strncmp(uart_info->compatible, DT_UART_DCC_COMPAT,
strlen(DT_UART_DCC_COMPAT)) == 0) {
handle_dcc_console(console);
} else {
WARN("BL31: No console device found in DT.\n");
}
error:
return rc;
}
#endif
#if defined(CONSOLE_RUNTIME)
void console_runtime_init(void)
{
uint32_t uart_clk = get_uart_clk();
static console_t runtime_console;
uintptr_t rt_uart_base = 0;
uint32_t buad_rate = 0;
#if (CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE)))
console_t *console = &dt_console;
#else
console_t *console = &boot_console;
#endif
#if (RT_CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE)))
static dt_uart_info_t dt_info = {0};
uint32_t rc = parse_uart_info(&dt_info);
if (rc < 0) {
goto error;
} else {
rt_uart_base = dt_info.base;
buad_rate = dt_info.baud_rate;
}
#elif defined(PLAT_zynqmp)
if (RT_CONSOLE_IS(cadence) || (RT_CONSOLE_IS(cadence1))) {
rt_uart_base = (uintptr_t)RT_UART_BASE;
buad_rate = (uint32_t)UART_BAUDRATE;
}
#else
if (RT_CONSOLE_IS(pl011) || (RT_CONSOLE_IS(pl011_1))) {
rt_uart_base = (uintptr_t)RT_UART_BASE;
buad_rate = (uint32_t)UART_BAUDRATE;
}
#endif
/*skip console registration if runtime and boot console are same */
if (console->base != rt_uart_base) {
/* Remove runtime flag from boot console */
console_set_scope(console, CONSOLE_FLAG_BOOT | CONSOLE_FLAG_CRASH);
register_console(rt_uart_base, uart_clk, buad_rate, &runtime_console,
CONSOLE_FLAG_RUNTIME, PLAT_XLNX_CONSOLE_TYPE_DEFAULT);
INFO("Successfully initialized runtime console\n");
}
#if (RT_CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE)))
error:
if (rc < 0) {
ERROR("Failed to parse uart info in runtime console\n");
}
#endif
}
#endif
void setup_console(void)
{
int32_t rc;
uint32_t uart_clk = get_uart_clk();
#if (CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE)))
static dt_uart_info_t uart_info = {0};
/* Initialize the DTB console using UART information from the DTB */
rc = dt_console_init(&uart_info, &boot_console, uart_clk);
if (rc < 0) {
ERROR("Failed to initialize DT console: %d\n", rc);
} else {
goto cnslsetup;
}
#endif
#if defined(PLAT_zynqmp)
if (CONSOLE_IS(cadence) || (CONSOLE_IS(cadence1))) {
rc = console_cdns_register(UART_BASE,
uart_clk,
UART_BAUDRATE,
&boot_console);
if (rc == 0) {
panic();
}
console_set_scope(&boot_console, CONSOLE_FLAG_BOOT |
CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_CRASH);
}
#else
if (CONSOLE_IS(pl011) || (CONSOLE_IS(pl011_1))) {
/* Initialize the console to provide early debug support */
rc = console_pl011_register((uint32_t)UART_BASE,
uart_clk,
(uint32_t)UART_BAUDRATE,
&boot_console);
if (rc == 0) {
panic();
}
console_set_scope(&boot_console, CONSOLE_FLAG_BOOT |
CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_CRASH);
}
#endif
if (CONSOLE_IS(dcc)) {
/* Initialize the dcc console for debug */
rc = console_dcc_register(&boot_console);
if (rc == 0) {
panic();
}
}
#if (CONSOLE_IS(dtb) && defined(XILINX_OF_BOARD_DTB_ADDR)) && \
(!defined(PLAT_zynqmp) || (defined(PLAT_zynqmp) && \
!IS_TFA_IN_OCM(BL31_BASE)))
cnslsetup:
#endif
INFO("BL31: Early console setup\n");
}