blob: 8c44c17e249b1d9683393fbc3ca927d3a2c94c63 [file] [log] [blame]
Nishanth Menonfff6ffc2016-10-14 01:13:44 +00001/*
2 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Nishanth Menonfff6ffc2016-10-14 01:13:44 +00007#include <platform_def.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00008
9#include <drivers/console.h>
10#include <drivers/ti/uart/uart_16550.h>
11
12#include <k3_console.h>
Nishanth Menonfff6ffc2016-10-14 01:13:44 +000013
14void bl31_console_setup(void)
15{
Andre Przywara98964f02020-01-25 00:58:35 +000016 static console_t console;
Nishanth Menonfff6ffc2016-10-14 01:13:44 +000017
18 /* Initialize the console to provide early debug support */
Andrew F. Davisa481f8b2019-01-22 13:36:48 -060019 console_16550_register(K3_USART_BASE, K3_USART_CLK_SPEED,
Nishanth Menonfff6ffc2016-10-14 01:13:44 +000020 K3_USART_BAUD, &console);
21}