Patchwork How M2V-MX SE implemented the S4 sleep?

login
register
about
Submitter Rudolf Marek
Date 2010-11-21 15:33:37
Message ID <4CE93BD1.2020601@assembler.cz>
Download mbox | patch
Permalink /patch/2340/
State New
Headers show

Comments

Rudolf Marek - 2010-11-21 15:33:37
Hi all,

I resurrected the patch which should make S3 work again on AMD CPUs (famFh)
And it does work.

Signed-off-by: Rudolf Marek <r.marek@assembler.cz>

Although the patch still needs some work I present it here to get idea what 
needs to be done.

Thanks,
Rudolf

Patch

Index: src/southbridge/via/vt8237r/vt8237r_early_smbus.c
===================================================================
--- src/southbridge/via/vt8237r/vt8237r_early_smbus.c.orig	2010-11-14 14:45:01.000000000 +0100
+++ src/southbridge/via/vt8237r/vt8237r_early_smbus.c	2010-11-21 13:18:25.000000000 +0100
@@ -316,8 +316,7 @@ 
 	pci_write_config8(dev, 0x41, 0x7f);
 }
 
-#ifdef CONFIG_NORTHBRIDGE_AMD_K8 /* CN700 doesn't have the support yet */
-#define ACPI_IS_WAKEUP_EARLY 1
+//#ifdef CONFIG_NORTHBRIDGE_AMD_K8 /* CN700 doesn't have the support yet */
 
 static int acpi_is_wakeup_early(void) {
 	device_t dev;
@@ -341,7 +340,7 @@ 
 	print_debug_hex8(tmp);
 	return ((tmp & (7 << 10)) >> 10) == 1 ? 3 : 0 ;
 }
-#endif
+//#endif
 
 #if defined(__GNUC__)
 void vt8237_early_spi_init(void)
Index: src/southbridge/via/k8t890/k8t890.h
===================================================================
--- src/southbridge/via/k8t890/k8t890.h.orig	2010-11-14 14:45:01.000000000 +0100
+++ src/southbridge/via/k8t890/k8t890.h	2010-11-21 13:18:25.000000000 +0100
@@ -31,6 +31,7 @@ 
 
 /* The 256 bytes of NVRAM for S3 storage, 256B aligned */
 #define K8T890_NVRAM_IO_BASE	0xf00
+#define K8T890_NVRAM_CBMEM_TOC	0xfc
 
 #define K8T890_MMCONFIG_MBAR	0x61
 #define K8T890_MULTIPLE_FN_EN	0x4f
Index: src/southbridge/via/k8t890/k8t890_early_car.c
===================================================================
--- src/southbridge/via/k8t890/k8t890_early_car.c.orig	2010-11-14 14:45:01.000000000 +0100
+++ src/southbridge/via/k8t890/k8t890_early_car.c	2010-11-21 13:18:25.000000000 +0100
@@ -23,6 +23,8 @@ 
  */
 
 #include <stdlib.h>
+#include <cbmem.h>
+#include <arch/io.h>
 #include "k8t890.h"
 
 /* The 256 bytes of NVRAM for S3 storage, 256B aligned */
@@ -155,3 +157,11 @@ 
 	printk(BIOS_DEBUG, "Loading %x of size %d to nvram pos:%d\n", * old_dword, size, nvram_pos-size);
 	return nvram_pos;
 }
+
+struct cbmem_entry *get_cbmem_toc(void) {
+		return (struct cbmem_entry *) inl(K8T890_NVRAM_IO_BASE+K8T890_NVRAM_CBMEM_TOC);
+}
+
+void set_cbmem_toc(struct cbmem_entry *toc) {
+		outl((u32) toc, K8T890_NVRAM_IO_BASE+K8T890_NVRAM_CBMEM_TOC);
+}
Index: src/southbridge/via/k8t890/k8t890_host_ctrl.c
===================================================================
--- src/southbridge/via/k8t890/k8t890_host_ctrl.c.orig	2010-11-14 14:45:01.000000000 +0100
+++ src/southbridge/via/k8t890/k8t890_host_ctrl.c	2010-11-21 13:18:25.000000000 +0100
@@ -22,6 +22,8 @@ 
 #include <device/pci_ops.h>
 #include <device/pci_ids.h>
 #include <console/console.h>
+#include <cbmem.h>
+#include <arch/io.h>
 #include "k8t890.h"
 
 /* this may be later merged */
@@ -112,6 +114,14 @@ 
 
 }
 
+struct cbmem_entry *get_cbmem_toc(void) {
+		return (struct cbmem_entry *) inl(K8T890_NVRAM_IO_BASE+K8T890_NVRAM_CBMEM_TOC);
+}
+
+void set_cbmem_toc(struct cbmem_entry *toc) {
+		outl((u32) toc, K8T890_NVRAM_IO_BASE+K8T890_NVRAM_CBMEM_TOC);
+}
+
 static const struct device_operations host_ctrl_ops_t = {
 	.read_resources		= pci_dev_read_resources,
 	.set_resources		= pci_dev_set_resources,
Index: src/include/cbmem.h
===================================================================
--- src/include/cbmem.h.orig	2010-11-14 14:45:09.000000000 +0100
+++ src/include/cbmem.h	2010-11-21 13:18:25.000000000 +0100
@@ -24,7 +24,7 @@ 
 #define HIGH_MEMORY_TABLES	( 64 * 1024 )
 
 #if CONFIG_HAVE_ACPI_RESUME
-#define HIGH_MEMORY_SIZE	( 1024 * 1024 )
+#define HIGH_MEMORY_SIZE	((CONFIG_RAMTOP - CONFIG_RAMBASE) + HIGH_MEMORY_TABLES)
 #define HIGH_MEMORY_SAVE	( HIGH_MEMORY_SIZE - HIGH_MEMORY_TABLES )
 #else
 #define HIGH_MEMORY_SIZE	HIGH_MEMORY_TABLES
@@ -48,4 +48,9 @@ 
 void cbmem_list(void);
 void cbmem_arch_init(void);
 
+struct cbmem_entry *get_cbmem_toc(void);
+void set_cbmem_toc(struct cbmem_entry *);
+
+
+
 #endif
Index: src/cpu/amd/car/post_cache_as_ram.c
===================================================================
--- src/cpu/amd/car/post_cache_as_ram.c.orig	2010-11-14 14:45:10.000000000 +0100
+++ src/cpu/amd/car/post_cache_as_ram.c	2010-11-21 13:33:34.000000000 +0100
@@ -27,6 +27,48 @@ 
 			: "0" (bytes / 4), "g" (bytes), "1" ((long)dest), "2" ((long)src)
 			: "memory", "cc");
 }
+
+#if CONFIG_HAVE_ACPI_RESUME
+
+static inline void *backup_resume(void) {
+	unsigned long high_ram_base;
+	void *resume_backup_memory;
+#ifdef ACPI_IS_WAKEUP_EARLY
+	int suspend = acpi_is_wakeup_early();
+#else
+	int suspend = 0;
+#endif
+	if (!suspend)
+		return NULL;
+
+	/* Start address of high memory tables */
+	high_ram_base = (u32) get_cbmem_toc();
+
+	print_debug_pcar("CBMEM TOC is at: ", (uint32_t)high_ram_base);
+	print_debug_pcar("CBMEM TOC 0-size: ",(uint32_t)(high_ram_base + HIGH_MEMORY_SIZE + 4096));
+
+	cbmem_reinit((u64)high_ram_base);
+
+	resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
+
+	/* copy 1MB - 64K to high tables ram_base to prevent memory corruption
+	 * through stage 2. We could keep stuff like stack and heap in high tables
+	 * memory completely, but that's a wonderful clean up task for another
+	 * day.
+	 */
+
+	if (resume_backup_memory) {
+		print_debug_pcar("Will copy coreboot region to: ", (uint32_t) resume_backup_memory);
+		/* copy only backup only memory used for CAR */
+		memcopy(resume_backup_memory+HIGH_MEMORY_SAVE-CONFIG_DCACHE_RAM_SIZE,
+			(void *)((CONFIG_RAMTOP)-CONFIG_DCACHE_RAM_SIZE),
+			 CONFIG_DCACHE_RAM_SIZE); //inline
+	}
+
+	return resume_backup_memory;
+}
+#endif
+
 /* Disable Erratum 343 Workaround, see RevGuide for Fam10h, Pub#41322 Rev 3.33 */
 
 static void vErrata343(void)
@@ -43,7 +85,9 @@ 
 
 static void post_cache_as_ram(void)
 {
-
+#if CONFIG_HAVE_ACPI_RESUME
+	void *resume_backup_memory;
+#endif
 #if 1
 	{
 	/* Check value of esp to verify if we have enough rom for stack in Cache as RAM */
@@ -66,17 +110,16 @@ 
 	#error "You need to set CONFIG_RAMTOP greater than 1M"
 #endif
 
-	/* So we can access RAM from [1M, CONFIG_RAMTOP) */
-	set_var_mtrr(0, 0x00000000, CONFIG_RAMTOP, MTRR_TYPE_WRBACK);
+#if CONFIG_HAVE_ACPI_RESUME
+ 	resume_backup_memory = backup_resume();
+#endif
 
-//	dump_mem(CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x8000, CONFIG_DCACHE_RAM_BASE+CONFIG_DCACHE_RAM_SIZE-0x7c00);
 	print_debug("Copying data from cache to RAM -- switching to use RAM as stack... ");
 
 	/* from here don't store more data in CAR */
 	vErrata343();
 
 	memcopy((void *)((CONFIG_RAMTOP)-CONFIG_DCACHE_RAM_SIZE), (void *)CONFIG_DCACHE_RAM_BASE, CONFIG_DCACHE_RAM_SIZE); //inline
-//	dump_mem((CONFIG_RAMTOP) - 0x8000, (CONFIG_RAMTOP) - 0x7c00);
 
 	__asm__ volatile (
 		/* set new esp */ /* before CONFIG_RAMBASE */
@@ -94,9 +137,25 @@ 
 	print_debug_pcar("testx = ", testx);
 
 	print_debug("Disabling cache as ram now \n");
+
 	disable_cache_as_ram_bsp();
 
+	disable_cache();
+	set_var_mtrr(0, 0x00000000, CONFIG_RAMTOP, MTRR_TYPE_WRBACK);
+	enable_cache();
+
+#if CONFIG_HAVE_ACPI_RESUME
+	/* now copy the rest of the area, using the WB method because we already
+	   run normal RAM */
+	if (resume_backup_memory) {
+		memcopy(resume_backup_memory,
+				(void *)(CONFIG_RAMBASE),
+				(CONFIG_RAMTOP) - CONFIG_RAMBASE - CONFIG_DCACHE_RAM_SIZE);
+	}
+#endif
+
 	print_debug("Clearing initial memory region: ");
+
 #if CONFIG_HAVE_ACPI_RESUME == 1
 	/* clear only coreboot used region of memory. Note: this may break ECC enabled boards */
 	memset((void*) CONFIG_RAMBASE, 0, (CONFIG_RAMTOP) - CONFIG_RAMBASE - CONFIG_DCACHE_RAM_SIZE);
@@ -105,8 +164,6 @@ 
 #endif
 	print_debug("Done\n");
 
-//	dump_mem((CONFIG_RAMTOP) - 0x8000, (CONFIG_RAMTOP) - 0x7c00);
-
 	set_sysinfo_in_ram(1); // So other core0 could start to train mem
 
 #if CONFIG_MEM_TRAIN_SEQ == 1
Index: src/mainboard/asus/m2v-mx_se/Kconfig
===================================================================
--- src/mainboard/asus/m2v-mx_se/Kconfig.orig	2010-11-21 13:04:07.000000000 +0100
+++ src/mainboard/asus/m2v-mx_se/Kconfig	2010-11-21 13:18:25.000000000 +0100
@@ -35,6 +35,7 @@ 
 	select RAMINIT_SYSINFO
 	select VGA
 	select TINY_BOOTBLOCK
+	select HAVE_ACPI_RESUME
 	select HAVE_MAINBOARD_RESOURCES
 	select QRANK_DIMM_SUPPORT
 	select SET_FIDVID
Index: src/mainboard/asus/m2v-mx_se/romstage.c
===================================================================
--- src/mainboard/asus/m2v-mx_se/romstage.c.orig	2010-11-21 13:02:32.000000000 +0100
+++ src/mainboard/asus/m2v-mx_se/romstage.c	2010-11-21 13:38:19.000000000 +0100
@@ -24,6 +24,8 @@ 
 
 unsigned int get_sbdn(unsigned bus);
 
+#define ACPI_IS_WAKEUP_EARLY 1
+
 #if CONFIG_K8_REV_F_SUPPORT == 1
 #define K8_REV_F_SUPPORT_F0_F1_WORKAROUND 0
 #endif
@@ -83,6 +85,15 @@ 
 
 #define SB_VFSMAF 0
 
+
+// Now, this needs to be included because it relies on the symbol
+// __PRE_RAM__ being set during CAR stage (in order to compile the 
+// BSS free versions of the functions). Either rewrite the code
+// to be always BSS free, or invent a flag that's better suited than
+// __PRE_RAM__ to determine whether we're in ram init stage (stage 1)
+//
+#include "lib/cbmem.c"
+
 /* this function might fail on some K8 CPUs with errata #181 */
 static void ldtstop_sb(void)
 {
@@ -148,6 +159,7 @@ 
 	enable_rom_decode();
 
 	printk(BIOS_INFO, "now booting... \n");
+//	dump_mtrr();
 
 	if (bist == 0)
 		bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
Index: src/mainboard/asus/m2v-mx_se/mainboard.c
===================================================================
--- src/mainboard/asus/m2v-mx_se/mainboard.c.orig	2010-11-17 12:15:57.000000000 +0100
+++ src/mainboard/asus/m2v-mx_se/mainboard.c	2010-11-21 13:18:25.000000000 +0100
@@ -37,8 +37,6 @@ 
 
 #if CONFIG_HAVE_ACPI_RESUME == 1
 	lb_add_memory_range(mem, LB_MEM_RESERVED,
-		CONFIG_RAMBASE, ((CONFIG_RAMTOP) - CONFIG_RAMBASE));
-	lb_add_memory_range(mem, LB_MEM_RESERVED,
 		CONFIG_DCACHE_RAM_BASE, CONFIG_DCACHE_RAM_SIZE);
 #endif
 	return 0;
Index: src/lib/cbmem.c
===================================================================
--- src/lib/cbmem.c.orig	2010-11-14 14:45:09.000000000 +0100
+++ src/lib/cbmem.c	2010-11-21 13:18:25.000000000 +0100
@@ -36,11 +36,27 @@ 
 	u64 size;
 } __attribute__((packed));
 
-#ifndef __PRE_RAM__
-struct cbmem_entry *bss_cbmem_toc;
-#define get_cbmem_toc()	bss_cbmem_toc
+
+#ifdef __PRE_RAM__
+/*
+struct cbmem_entry *get_cbmem_toc(void)
+{
+	return (get_top_of_ram() - HIGH_MEMORY_SIZE);
+*/
 #else
-#define get_cbmem_toc()	(struct cbmem_entry *)(get_top_of_ram() - HIGH_MEMORY_SIZE)
+
+struct cbmem_entry *bss_cbmem_toc;
+
+struct cbmem_entry *__attribute__((weak)) get_cbmem_toc(void)
+{
+	return bss_cbmem_toc;
+}
+
+void __attribute__((weak)) set_cbmem_toc(struct cbmem_entry * x)
+{
+/* do nothing */
+}
+
 #endif
 
 /**
@@ -70,6 +86,10 @@ 
 		for (;;) ;
 	}
 
+	/* we don't need to call this in romstage, usefull only from ramstage */
+#ifndef __PRE_RAM__
+	set_cbmem_toc((struct cbmem_entry *)(unsigned long)baseaddr);
+#endif
 	memset(cbmem_toc, 0, CBMEM_TOC_RESERVED);
 
 	cbmem_toc[0] = (struct cbmem_entry) {
Index: src/northbridge/amd/amdk8/northbridge.c
===================================================================
--- src/northbridge/amd/amdk8/northbridge.c.orig	2010-11-21 13:02:36.000000000 +0100
+++ src/northbridge/amd/amdk8/northbridge.c	2010-11-21 13:23:40.000000000 +0100
@@ -822,7 +822,9 @@ 
 #endif
 
 #if CONFIG_WRITE_HIGH_TABLES==1
-#define HIGH_TABLES_SIZE 64	/* maximum size of high tables in KB */
+//fixme?
+#include <cbmem.h>
+#define HIGH_TABLES_SIZE ((HIGH_MEMORY_SIZE + 1024) / 1024)
 extern uint64_t high_tables_base, high_tables_size;
 #endif
 
Index: src/arch/i386/boot/tables.c
===================================================================
--- src/arch/i386/boot/tables.c.orig	2010-11-14 14:45:36.000000000 +0100
+++ src/arch/i386/boot/tables.c	2010-11-21 13:18:25.000000000 +0100
@@ -214,7 +214,7 @@ 
 	 * it begin there during reboot time. We don't need the pointer, nor
 	 * the result right now. If it fails, ACPI resume will be disabled.
 	 */
-	cbmem_add(CBMEM_ID_RESUME, 1024 * (1024-64));
+	cbmem_add(CBMEM_ID_RESUME, HIGH_MEMORY_SAVE);
 #endif
 
 #if CONFIG_MULTIBOOT