forked from Mirrors/opensbi

We add simple serial framework which will select and use serial driver based on details in FDT passed by previous booting stage. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
16 lines
436 B
Makefile
16 lines
436 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_htif.o
|
|
libsbiutils-objs-y += serial/fdt_serial_sifive.o
|
|
libsbiutils-objs-y += serial/fdt_serial_uart8250.o
|
|
libsbiutils-objs-y += serial/sifive-uart.o
|
|
libsbiutils-objs-y += serial/uart8250.o
|