[coreboot] r3982 - in trunk/coreboot-v2/src: cpu/x86/smm include/cpu/x86 mainboard/kontron/986lcd-m southbridge/intel/i82801gx

svn at coreboot.org svn at coreboot.org
Fri Mar 6 20:52:36 CET 2009


Author: stepan
Date: 2009-03-06 20:52:36 +0100 (Fri, 06 Mar 2009)
New Revision: 3982

Added:
   trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/mainboard_smi.c
Modified:
   trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c
   trunk/coreboot-v2/src/include/cpu/x86/smm.h
   trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Config.lb
   trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smi.c
   trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smihandler.c
Log:
* fix a minor power state issue in the ich7 smm handler
* move mainboard dependent code into a mainboard SMI handler.

Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Peter Stuge <peter at stuge.se>



Modified: trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c
===================================================================
--- trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c	2009-03-06 19:11:52 UTC (rev 3981)
+++ trunk/coreboot-v2/src/cpu/x86/smm/smihandler.c	2009-03-06 19:52:36 UTC (rev 3982)
@@ -129,7 +129,18 @@
 
 void io_trap_handler(int smif)
 {
-	southbridge_io_trap_handler(smif);
+	/* If a handler function handled a given IO trap, it
+	 * shall return a non-zero value
+	 */
+        printk_debug("SMI function trap 0x%x: ", smif);
+
+	if (southbridge_io_trap_handler(smif))
+		return;
+
+	if (mainboard_io_trap_handler(smif))
+		return;
+
+	printk_debug("Unknown function\n");
 }
 
 /**

Modified: trunk/coreboot-v2/src/include/cpu/x86/smm.h
===================================================================
--- trunk/coreboot-v2/src/include/cpu/x86/smm.h	2009-03-06 19:11:52 UTC (rev 3981)
+++ trunk/coreboot-v2/src/include/cpu/x86/smm.h	2009-03-06 19:52:36 UTC (rev 3982)
@@ -249,3 +249,8 @@
 	};
 } smm_state_save_area_t;
 
+
+/* SMI handler function prototypes */
+int southbridge_io_trap_handler(int smif);
+int mainboard_io_trap_handler(int smif);
+

Modified: trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Config.lb
===================================================================
--- trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Config.lb	2009-03-06 19:11:52 UTC (rev 3981)
+++ trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Config.lb	2009-03-06 19:52:36 UTC (rev 3982)
@@ -76,6 +76,7 @@
 driver rtl8168.o
 if HAVE_MP_TABLE object mptable.o end
 if HAVE_PIRQ_TABLE object irq_tables.o end
+if HAVE_SMI_HANDLER smmobject mainboard_smi.o end
 
 if HAVE_ACPI_TABLES
 	object fadt.o

Added: trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/mainboard_smi.c
===================================================================
--- trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/mainboard_smi.c	                        (rev 0)
+++ trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/mainboard_smi.c	2009-03-06 19:52:36 UTC (rev 3982)
@@ -0,0 +1,50 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2008-2009 coresystems GmbH
+ *
+ * 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; version 2 of
+ * the License.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA 02110-1301 USA
+ */
+
+#include <arch/io.h>
+#include <arch/romcc_io.h>
+#include <console/console.h>
+#include "../../../southbridge/intel/i82801gx/i82801gx_nvs.h"
+
+int mainboard_io_trap_handler(int smif)
+{
+	global_nvs_t *gnvs = (global_nvs_t *)0xc00;
+
+	switch (smif) {
+	case 0x99:
+		printk_debug("Sample\n");
+		gnvs->smif = 0;
+		break;
+	default:
+		return 0;
+	}
+
+	/* On success, the IO Trap Handler returns 0
+	 * On failure, the IO Trap Handler returns a value != 0
+	 *
+	 * For now, we force the return value to 0 and log all traps to
+	 * see what's going on.
+	 */
+	//gnvs->smif = 0;
+	return 1;
+}
+
+

Modified: trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smi.c
===================================================================
--- trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smi.c	2009-03-06 19:11:52 UTC (rev 3981)
+++ trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smi.c	2009-03-06 19:52:36 UTC (rev 3982)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the coreboot project.
  *
- * Copyright (C) 2008 coresystems GmbH
+ * Copyright (C) 2008-2009 coresystems GmbH
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as

Modified: trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smihandler.c
===================================================================
--- trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smihandler.c	2009-03-06 19:11:52 UTC (rev 3981)
+++ trunk/coreboot-v2/src/southbridge/intel/i82801gx/i82801gx_smihandler.c	2009-03-06 19:52:36 UTC (rev 3982)
@@ -31,10 +31,11 @@
 
 #define DEBUG_SMI
 
-#define ACPI_DISABLE	0x1e
-#define ACPI_ENABLE	0xe1
+#define APM_CNT		0xb2
+#define APM_STS		0xb3
+#define   ACPI_DISABLE	0x1e
+#define   ACPI_ENABLE	0xe1
 
-
 /* I945 */
 #define SMRAM		0x9d
 #define   D_OPEN	(1 << 6)
@@ -241,37 +242,18 @@
  */
 #include "../../../northbridge/intel/i945/pcie_config.c"
 
-void southbridge_io_trap_handler(int smif)
+int southbridge_io_trap_handler(int smif)
 {
-	u8 reg8;
 	global_nvs_t *gnvs = (global_nvs_t *)0xc00;
 
-	printk_debug("SMI function trap 0x%x: ", smif);
-
 	switch (smif) {
 	case 0x32:
 		printk_debug("OS Init\n");
 		//gnvs->smif = 0;
 		break;
-	case 0xd5:
-		printk_debug("Set Brightness\n");
-		reg8 = gnvs->brtl;
-		printk_debug("brtl: %x\n", reg8);
-		outb(0x17, 0x66);
-		outb(reg8, 0x62);
-		//gnvs->smif = 0;
-		break;
-	case 0xd6:
-		printk_debug("Get Brightness\n");
-		outb(0x17, 0x66);
-		reg8 = inb(0x62);
-		printk_debug("brtl: %x\n", reg8);
-		gnvs->brtl = reg8;
-		//gnvs->smif = 0;
-		break;
 	default:
-		printk_debug("Unknown function\n");
-		break;
+		/* Not handled */
+		return 0;
 	}
 
 	/* On success, the IO Trap Handler returns 0
@@ -281,6 +263,7 @@
 	 * see what's going on.
 	 */
 	//gnvs->smif = 0;
+	return 1; /* IO trap handled */
 }
 
 /**
@@ -423,12 +406,13 @@
 		 */
 
 		/* Write back to the SLP register to cause the
-		 * originally intended event again.
+		 * originally intended event again. We need to set BIT13
+		 * (SLP_EN) though to make the sleep happen.
 		 */
 		reg32 = inl(pmbase + 0x04);
-		printk_debug("SMI#: SLP = 0x%08x\n");
+		printk_debug("SMI#: SLP = 0x%08x\n", reg32);
 		printk_debug("SMI#: Powering off.\n");
-		outl(reg32, pmbase + 0x04);
+		outl(reg32 | (1 << 13), pmbase + 0x04);
 	}
 
 }





More information about the coreboot mailing list