summaryrefslogtreecommitdiff
path: root/src/soc/intel/quark/reset.c
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2023-05-19 15:32:35 +0200
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-05-20 16:27:14 +0000
commit531023285ea4108d5b847625739d76992ce39200 (patch)
tree70b3d2c439363e6a654f2eb41e1307067215737f /src/soc/intel/quark/reset.c
parent037c25d4dd8dda28da64af1e29e787fb8b55c84b (diff)
soc/intel/quark: Drop support
As announced in the 4.20 release notes, support for the Intel Quark SoC is moved to the 4.20 branch and dropped from master. Change-Id: I8a1ca7a2092aaeaea9c72eac5a8dd8f7d72e8f09 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75341 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: ron minnich <rminnich@gmail.com> Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/soc/intel/quark/reset.c')
-rw-r--r--src/soc/intel/quark/reset.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/soc/intel/quark/reset.c b/src/soc/intel/quark/reset.c
deleted file mode 100644
index 4f8b169a35..0000000000
--- a/src/soc/intel/quark/reset.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <cf9_reset.h>
-#include <console/console.h>
-#include <fsp/util.h>
-
-void chipset_handle_reset(uint32_t status)
-{
- /* Do a hard reset if Quark FSP ever requests a reset */
- printk(BIOS_ERR, "Unknown reset type %x\n", status);
- full_reset();
-}