mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-03 09:29:57 +00:00

This will allow us to support more platforms that share commonalities like the k3_gicv3, console, helpers, etc. With this new common folder location, we can move the previously created ti_bl31_setup file into the new location so it can be shared across multiple TI SoCs when need comes. With this, also update all copyright dates. Change-Id: Ie4365e32cd3b4b5870fe2cd03843400506e46265 Signed-off-by: Dhruva Gole <d-gole@ti.com>
24 lines
518 B
C
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);
|
|
}
|