arm-trusted-firmware/plat/ti/k3/common/k3_console.c
Andrew Davis 7c85bfac1e refactor(ti): use console_set_scope() rather than empty function hack
Signed-off-by: Andrew Davis <afd@ti.com>
Change-Id: I62c1215bc02e95a7ea9fa1e2dfa9ef05e204fce1
2023-01-12 18:45:48 -06:00

24 lines
518 B
C

/*
* Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <platform_def.h>
#include <drivers/console.h>
#include <drivers/ti/uart/uart_16550.h>
#include <k3_console.h>
void k3_console_setup(void)
{
static console_t console;
console_16550_register(K3_USART_BASE, K3_USART_CLK_SPEED,
K3_USART_BAUD, &console);
console_set_scope(&console, CONSOLE_FLAG_BOOT |
CONSOLE_FLAG_RUNTIME |
CONSOLE_FLAG_CRASH);
}