mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

DCC driver to support boot and runtime console scope switch for dedicated boot and runtime consoles. Change-Id: I7769dc44860a5fda99ca42ce17a3a6009288d7e7 Signed-off-by: Maheedhar Bollapalli <MaheedharSai.Bollapalli@amd.com>
21 lines
459 B
C
21 lines
459 B
C
/*
|
|
* Copyright (c) 2021-2022, Xilinx Inc.
|
|
* Copyright (c) 2022-2024, Advanced Micro Devices, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef DCC_H
|
|
#define DCC_H
|
|
|
|
#include <stdint.h>
|
|
#include <drivers/console.h>
|
|
|
|
/*
|
|
* Initialize a new dcc console instance and register it with the console
|
|
* framework.
|
|
*/
|
|
int console_dcc_register(console_t *console);
|
|
void console_dcc_unregister(console_t *console);
|
|
|
|
#endif /* DCC_H */
|