blob: 7f71932f0e6b2deeeadd58124e6206c20edc728c [file] [log] [blame]
Venkatesh Yadav Abbarapuf80014d2020-11-27 02:58:24 -07001/*
Maheedhar Bollapalli1f83d612024-09-23 09:04:23 +00002 * Copyright (c) 2021-2022, Xilinx Inc.
3 * Copyright (c) 2022-2024, Advanced Micro Devices, Inc. All rights reserved.
Venkatesh Yadav Abbarapuf80014d2020-11-27 02:58:24 -07004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#ifndef DCC_H
9#define DCC_H
10
11#include <stdint.h>
12#include <drivers/console.h>
13
14/*
15 * Initialize a new dcc console instance and register it with the console
16 * framework.
17 */
Maheedhar Bollapalli1f83d612024-09-23 09:04:23 +000018int console_dcc_register(console_t *console);
19void console_dcc_unregister(console_t *console);
Venkatesh Yadav Abbarapuf80014d2020-11-27 02:58:24 -070020
Maheedhar Bollapalli1f83d612024-09-23 09:04:23 +000021#endif /* DCC_H */