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

This patch adds support for the UART used by the NOEL-V processor. Cobham Gaisler's NOEL-V RISC-V processor IP is available under GPL and commercial license and is described in more detail at https://www.gaisler.com/noelv. Signed-off-by: Daniel Cederman <cederman@gaisler.com> Reviewed-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
20 lines
622 B
Makefile
20 lines
622 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
#
|
|
# Authors:
|
|
# Anup Patel <anup.patel@wdc.com>
|
|
#
|
|
|
|
libsbiutils-objs-y += serial/fdt_serial.o
|
|
libsbiutils-objs-y += serial/fdt_serial_gaisler.o
|
|
libsbiutils-objs-y += serial/fdt_serial_htif.o
|
|
libsbiutils-objs-y += serial/fdt_serial_shakti.o
|
|
libsbiutils-objs-y += serial/fdt_serial_sifive.o
|
|
libsbiutils-objs-y += serial/fdt_serial_uart8250.o
|
|
libsbiutils-objs-y += serial/gaisler-uart.o
|
|
libsbiutils-objs-y += serial/shakti-uart.o
|
|
libsbiutils-objs-y += serial/sifive-uart.o
|
|
libsbiutils-objs-y += serial/uart8250.o
|