qemu_console.c 744 Bytes
Newer Older
1
2
3
4
5
/*
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
6

7
8
#include <platform_def.h>

9
10
11
#include <drivers/console.h>
#include <drivers/arm/pl011.h>

12
#if MULTI_CONSOLE_API
13
static console_pl011_t console;
14
#endif /* MULTI_CONSOLE_API */
15
16
17
18
19
20
21

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);
22
23
24

	console_set_scope(&console.console, CONSOLE_FLAG_BOOT |
			  CONSOLE_FLAG_RUNTIME);
25
26
27
28
29
30
31
#else
	console_init(PLAT_QEMU_BOOT_UART_BASE,
		     PLAT_QEMU_BOOT_UART_CLK_IN_HZ,
		     PLAT_QEMU_CONSOLE_BAUDRATE);
#endif /* MULTI_CONSOLE_API */
}