From de27499b520fb8bf5ec63da8dd582e7b1ef023c3 Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Tue, 26 May 2020 09:31:41 +0300 Subject: soc/ucb/riscv: Add chip_operations stub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie4f70429c516fff613d372fec7c1c955645f1c6d Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/41715 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph Reviewed-by: Angel Pons Reviewed-by: Philipp Hug --- src/soc/ucb/riscv/Makefile.inc | 2 ++ src/soc/ucb/riscv/chip.c | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 src/soc/ucb/riscv/chip.c (limited to 'src') diff --git a/src/soc/ucb/riscv/Makefile.inc b/src/soc/ucb/riscv/Makefile.inc index 80899d570f..6d2c36a340 100644 --- a/src/soc/ucb/riscv/Makefile.inc +++ b/src/soc/ucb/riscv/Makefile.inc @@ -4,4 +4,6 @@ romstage-y += cbmem.c ramstage-y += cbmem.c +ramstage-y += chip.c + endif diff --git a/src/soc/ucb/riscv/chip.c b/src/soc/ucb/riscv/chip.c new file mode 100644 index 0000000000..187e96d274 --- /dev/null +++ b/src/soc/ucb/riscv/chip.c @@ -0,0 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include + +struct chip_operations soc_ucb_riscv_ops = { + CHIP_NAME("UCB RISC-V") +}; -- cgit v1.2.3