You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
744 B
31 lines
744 B
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <drivers/console.h>
|
|
#include <drivers/arm/pl011.h>
|
|
|
|
#if MULTI_CONSOLE_API
|
|
static console_pl011_t console;
|
|
#endif /* MULTI_CONSOLE_API */
|
|
|
|
void qemu_console_init(void)
|
|
{
|
|
#if MULTI_CONSOLE_API
|
|
(void)console_pl011_register(PLAT_QEMU_BOOT_UART_BASE,
|
|
PLAT_QEMU_BOOT_UART_CLK_IN_HZ,
|
|
PLAT_QEMU_CONSOLE_BAUDRATE, &console);
|
|
|
|
console_set_scope(&console.console, CONSOLE_FLAG_BOOT |
|
|
CONSOLE_FLAG_RUNTIME);
|
|
#else
|
|
console_init(PLAT_QEMU_BOOT_UART_BASE,
|
|
PLAT_QEMU_BOOT_UART_CLK_IN_HZ,
|
|
PLAT_QEMU_CONSOLE_BAUDRATE);
|
|
#endif /* MULTI_CONSOLE_API */
|
|
}
|
|
|
|
|