From bd4e6e38b4448aee815862ce8e4dc213ccd2a8cd Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Tue, 26 May 2020 09:31:41 +0300 Subject: soc/sifive/fu540: Add chip_operations stub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: If06695745bb72f883314e5514c616223b0210a2f Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/41716 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph Reviewed-by: Angel Pons Reviewed-by: Philipp Hug --- src/soc/sifive/fu540/Makefile.inc | 1 + src/soc/sifive/fu540/chip.c | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 src/soc/sifive/fu540/chip.c (limited to 'src/soc/sifive') diff --git a/src/soc/sifive/fu540/Makefile.inc b/src/soc/sifive/fu540/Makefile.inc index 734b4a258a..807c390bb3 100644 --- a/src/soc/sifive/fu540/Makefile.inc +++ b/src/soc/sifive/fu540/Makefile.inc @@ -23,6 +23,7 @@ ramstage-y += sdram.c ramstage-y += cbmem.c ramstage-y += otp.c ramstage-y += clock.c +ramstage-y += chip.c CPPFLAGS_common += -Isrc/soc/sifive/fu540/include diff --git a/src/soc/sifive/fu540/chip.c b/src/soc/sifive/fu540/chip.c new file mode 100644 index 0000000000..6eab45c61c --- /dev/null +++ b/src/soc/sifive/fu540/chip.c @@ -0,0 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include + +struct chip_operations soc_sifive_fu540_ops = { + CHIP_NAME("SIFIVE FU540") +}; -- cgit v1.2.3