mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00

Use full include paths like it is done for common includes. This cleanup was started in commit d40e0e08283a ("Sanitise includes across codebase"), but it only cleaned common files and drivers. This patch does the same to Arm platforms. Change-Id: If982e6450bbe84dceb56d464e282bcf5d6d9ab9b Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
88 lines
2.2 KiB
C
88 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <common/debug.h>
|
|
#include <drivers/arm/pl011.h>
|
|
#include <drivers/console.h>
|
|
#include <plat/arm/common/plat_arm.h>
|
|
|
|
/*******************************************************************************
|
|
* Functions that set up the console
|
|
******************************************************************************/
|
|
#if MULTI_CONSOLE_API
|
|
static console_pl011_t arm_boot_console;
|
|
static console_pl011_t arm_runtime_console;
|
|
#endif
|
|
|
|
/* Initialize the console to provide early debug support */
|
|
void __init arm_console_boot_init(void)
|
|
{
|
|
#if MULTI_CONSOLE_API
|
|
int rc = console_pl011_register(PLAT_ARM_BOOT_UART_BASE,
|
|
PLAT_ARM_BOOT_UART_CLK_IN_HZ,
|
|
ARM_CONSOLE_BAUDRATE,
|
|
&arm_boot_console);
|
|
if (rc == 0) {
|
|
/*
|
|
* The crash console doesn't use the multi console API, it uses
|
|
* the core console functions directly. It is safe to call panic
|
|
* and let it print debug information.
|
|
*/
|
|
panic();
|
|
}
|
|
|
|
console_set_scope(&arm_boot_console.console, CONSOLE_FLAG_BOOT);
|
|
#else
|
|
(void)console_init(PLAT_ARM_BOOT_UART_BASE,
|
|
PLAT_ARM_BOOT_UART_CLK_IN_HZ,
|
|
ARM_CONSOLE_BAUDRATE);
|
|
#endif /* MULTI_CONSOLE_API */
|
|
}
|
|
|
|
void arm_console_boot_end(void)
|
|
{
|
|
(void)console_flush();
|
|
|
|
#if MULTI_CONSOLE_API
|
|
(void)console_unregister(&arm_boot_console.console);
|
|
#else
|
|
console_uninit();
|
|
#endif /* MULTI_CONSOLE_API */
|
|
}
|
|
|
|
/* Initialize the runtime console */
|
|
void arm_console_runtime_init(void)
|
|
{
|
|
#if MULTI_CONSOLE_API
|
|
int rc = console_pl011_register(PLAT_ARM_BL31_RUN_UART_BASE,
|
|
PLAT_ARM_BL31_RUN_UART_CLK_IN_HZ,
|
|
ARM_CONSOLE_BAUDRATE,
|
|
&arm_runtime_console);
|
|
if (rc == 0)
|
|
panic();
|
|
|
|
console_set_scope(&arm_runtime_console.console, CONSOLE_FLAG_RUNTIME);
|
|
#else
|
|
(void)console_init(PLAT_ARM_BL31_RUN_UART_BASE,
|
|
PLAT_ARM_BL31_RUN_UART_CLK_IN_HZ,
|
|
ARM_CONSOLE_BAUDRATE);
|
|
#endif /* MULTI_CONSOLE_API */
|
|
}
|
|
|
|
void arm_console_runtime_end(void)
|
|
{
|
|
(void)console_flush();
|
|
|
|
#if MULTI_CONSOLE_API
|
|
(void)console_unregister(&arm_runtime_console.console);
|
|
#else
|
|
console_uninit();
|
|
#endif /* MULTI_CONSOLE_API */
|
|
}
|