[coreboot-gerrit] Patch set updated for coreboot: soc/intel/apollolake: Add utility functions for global reset

Andrey Petrov (andrey.petrov@intel.com) gerrit at coreboot.org
Fri Jun 17 08:57:35 CEST 2016


Andrey Petrov (andrey.petrov at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15198

-gerrit

commit 78855f66c6aba29313bf79b954d6c69890d031b5
Author: Andrey Petrov <andrey.petrov at intel.com>
Date:   Tue Jun 14 22:19:14 2016 -0700

    soc/intel/apollolake: Add utility functions for global reset
    
    Apollolake defines Global Reset where Host, TXE and PMC are reset.
    During boot we may need to trigger a global reset as part of platform
    initialization (or for error handling). Define functions to trigger
    global reset, enable/disable it and lock global reset enable bit.
    Additionally, since FSP workarounds internally issues associated with
    cold reset, remove workaround for hard_reset().
    
    Change-Id: I84296cd1560a0740f33ef6b488f15f99d397998d
    Signed-off-by: Andrey Petrov <andrey.petrov at intel.com>
---
 src/soc/intel/apollolake/include/soc/pm.h    |  7 +++++++
 src/soc/intel/apollolake/include/soc/reset.h | 24 ++++++++++++++++++++++++
 src/soc/intel/apollolake/pmutil.c            | 24 ++++++++++++++++++++++++
 src/soc/intel/apollolake/reset.c             | 17 +++++++++++------
 4 files changed, 66 insertions(+), 6 deletions(-)

diff --git a/src/soc/intel/apollolake/include/soc/pm.h b/src/soc/intel/apollolake/include/soc/pm.h
index 856872e..7c8171e 100644
--- a/src/soc/intel/apollolake/include/soc/pm.h
+++ b/src/soc/intel/apollolake/include/soc/pm.h
@@ -128,6 +128,10 @@
 #define GEN_PMCON2		0x1024
 #       define RPS		(1 <<  2)
 #define GEN_PMCON3		0x1028
+#define ETR			0x1048
+#	define CF9_LOCK		(1 << 31)
+#	define CF9_GLB_RST	(1 << 20)
+
 
 /* Generic sleep state types */
 #define SLEEP_STATE_S0		0
@@ -168,4 +172,7 @@ void enable_gpe(uint32_t mask);
 void disable_gpe(uint32_t mask);
 void disable_all_gpe(void);
 
+void global_reset_enable(uint8_t enable);
+void global_reset_lock(void);
+
 #endif
diff --git a/src/soc/intel/apollolake/include/soc/reset.h b/src/soc/intel/apollolake/include/soc/reset.h
new file mode 100644
index 0000000..3049aef
--- /dev/null
+++ b/src/soc/intel/apollolake/include/soc/reset.h
@@ -0,0 +1,24 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2016 Intel Corp.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef _SOC_APOLLOLAKE_RESET_H_
+#define _SOC_APOLLOLAKE_RESET_H_
+
+#include <reset.h>
+
+void global_reset(void);
+
+#endif
diff --git a/src/soc/intel/apollolake/pmutil.c b/src/soc/intel/apollolake/pmutil.c
index 6e47911..6fa275a 100644
--- a/src/soc/intel/apollolake/pmutil.c
+++ b/src/soc/intel/apollolake/pmutil.c
@@ -365,3 +365,27 @@ int vboot_platform_is_resuming(void)
 	typ = (inl(ACPI_PMIO_BASE + PM1_CNT) & SLP_TYP) >> SLP_TYP_SHIFT;
 	return typ == SLP_TYP_S3;
 }
+
+/* if possible, lock 0xcf9 */
+void global_reset_lock(void)
+{
+	uintptr_t etr = read_pmc_mmio_bar() + ETR;
+	uint32_t reg;
+
+	reg = read32((void *)etr);
+	if (reg & CF9_LOCK)
+		return;
+	reg |= CF9_LOCK;
+	write32((void *)etr, reg);
+}
+
+/* enable or disable global reset */
+void global_reset_enable(uint8_t enable)
+{
+	uintptr_t etr = read_pmc_mmio_bar() + ETR;
+	uint32_t reg;
+
+	reg = read32((void *)etr);
+	reg = enable ? reg | CF9_GLB_RST : reg & ~CF9_GLB_RST;
+	write32((void *)etr, reg);
+}
diff --git a/src/soc/intel/apollolake/reset.c b/src/soc/intel/apollolake/reset.c
index eb43c41..1bd6e4a 100644
--- a/src/soc/intel/apollolake/reset.c
+++ b/src/soc/intel/apollolake/reset.c
@@ -18,7 +18,8 @@
 #include <arch/hlt.h>
 #include <arch/io.h>
 #include <halt.h>
-#include <reset.h>
+#include <soc/pm.h>
+#include <soc/reset.h>
 
 /* Reset control port */
 #define RST_CNT			0xcf9
@@ -26,13 +27,10 @@
 #define RST_CPU			(1 << 2)
 #define SYS_RST			(1 << 1)
 
-/*
- * Temporary disable cold reboot on Apollolake platform due to USB LDO issue.
- * Should be fixed in later stepping.
- */
 void hard_reset(void)
 {
-	soft_reset();
+	outb(FULL_RST | RST_CPU | SYS_RST, RST_CNT);
+	halt();
 }
 
 void soft_reset(void)
@@ -48,3 +46,10 @@ void cpu_reset(void)
 	outb(RST_CPU, RST_CNT);
 	halt();
 }
+
+void global_reset(void)
+{
+	global_reset_enable(1);
+	hard_reset();
+	halt();
+}



More information about the coreboot-gerrit mailing list