Mathew King has uploaded this change for review.

View Change

soc/amd/cezanne: Add reset.c

Add an empty reset.c so that mainboards can use this chip.

Change-Id: Ie4f9712ff2b21f27c46f0f0d99dfd8a5e9a5db4f
---
M src/soc/amd/cezanne/Makefile.inc
A src/soc/amd/cezanne/reset.c
2 files changed, 11 insertions(+), 0 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/34/48534/1
diff --git a/src/soc/amd/cezanne/Makefile.inc b/src/soc/amd/cezanne/Makefile.inc
index df3355e..700b55a 100644
--- a/src/soc/amd/cezanne/Makefile.inc
+++ b/src/soc/amd/cezanne/Makefile.inc
@@ -5,10 +5,13 @@
all-y += config.c

bootblock-y += bootblock.c
+bootblock-y += reset.c

romstage-y += romstage.c
+romstage-y += reset.c

ramstage-y += chip.c
+ramstage-y += reset.c

CPPFLAGS_common += -I$(src)/soc/amd/cezanne/include

diff --git a/src/soc/amd/cezanne/reset.c b/src/soc/amd/cezanne/reset.c
new file mode 100644
index 0000000..7a280f2
--- /dev/null
+++ b/src/soc/amd/cezanne/reset.c
@@ -0,0 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <reset.h>
+
+void do_board_reset(void)
+{
+ /* TODO */
+}

To view, visit change 48534. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ie4f9712ff2b21f27c46f0f0d99dfd8a5e9a5db4f
Gerrit-Change-Number: 48534
Gerrit-PatchSet: 1
Gerrit-Owner: Mathew King <mathewk@chromium.org>
Gerrit-Reviewer: Felix Held <felix-coreboot@felixheld.de>
Gerrit-Reviewer: Jason Glenesk <jason.glenesk@gmail.com>
Gerrit-Reviewer: Marshall Dawson <marshalldawson3rd@gmail.com>
Gerrit-Reviewer: Martin Roth <martinroth@google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi@google.com>
Gerrit-MessageType: newchange