mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

Initial commit of the xlnx-uartlite device and FDT support. This was tested by running OpenSBI on a modified QEMU virt machine using the xlnx-uartlite for serial. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Xiang W <wxjstz@126.com> Reviewed-by: Anup Patel <anup@brainfault.org>
17 lines
335 B
C
17 lines
335 B
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2022 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Alistair Francis <alistair.francis@wdc.com>
|
|
*/
|
|
#ifndef __SERIAL_XLNX_UARTLITE_H__
|
|
#define __SERIAL_XLNX_UARTLITE_H__
|
|
|
|
#include <sbi/sbi_types.h>
|
|
|
|
int xlnx_uartlite_init(unsigned long base);
|
|
|
|
#endif
|