Sven Schnelle (svens(a)stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/330
-gerrit
commit d4af8c74697b12572a92d502bce2fc97800d36b2
Author: Sven Schnelle <svens(a)stackframe.org>
Date: Sun Oct 23 16:36:22 2011 +0200
T60: enable C4onC3 mode
It is safe to enable this setting on these Boards.
Change-Id: Iaa7377117743d18a95c496c25abf9fb4a1b20ad9
Signed-off-by: Sven Schnelle <svens(a)stackframe.org>
---
src/mainboard/lenovo/t60/devicetree.cb | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/mainboard/lenovo/t60/devicetree.cb b/src/mainboard/lenovo/t60/devicetree.cb
index 4d0476f..dba3fdd 100644
--- a/src/mainboard/lenovo/t60/devicetree.cb
+++ b/src/mainboard/lenovo/t60/devicetree.cb
@@ -68,6 +68,8 @@ chip northbridge/intel/i945
register "gpe0_en" = "0x11000006"
register "alt_gp_smi_en" = "0x1000"
+ register "c4onc3_enable" = "1"
+
device pci 1b.0 on # Audio Cnotroller
subsystemid 0x17aa 0x2010
end
Marc Jones (marcj303(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/318
-gerrit
commit 7e20b87c3ed60a8f3f4ac93c245c2e46e08b5c4e
Author: Marc Jones <marcj303(a)gmail.com>
Date: Fri Oct 7 17:20:30 2011 -0600
Allow XGCCPATH to be set on the make command line.
The xgcc toolchain may be moved by the user and passed in on the commandline. Updates the Makefile and the xcompile script.
Change-Id: I05797b2cabce39bdd7868c2515f30d34043fc8cc
Signed-off-by: Marc Jones <marcj303(a)gmail.com>
---
Makefile | 2 +-
util/xcompile/xcompile | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 44a1d63..c543897 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ ifeq ($(INNER_SCANBUILD),y)
CC_real:=$(CC)
endif
-$(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile)))
+$(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile $(XGCCPATH) > .xcompile)))
include .xcompile
ifeq ($(INNER_SCANBUILD),y)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index b68e1b3..9a0a295 100644
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -35,7 +35,8 @@ for make in make gmake gnumake; do
done
GCCPREFIX=invalid
-XGCCPATH="`pwd`/util/crossgcc/xgcc/bin/"
+XGCCPATH=${1:-"`pwd`/util/crossgcc/xgcc/bin/"}
+echo '#XGCCPATH='${XGCCPATH}
TMPFILE=`mktemp /tmp/temp.XXXX 2>/dev/null || echo /tmp/temp.78gOIUGz`
touch $TMPFILE
the following patch was just integrated into master:
commit 84aaa51051020920f5f42b7ea4c2410693cba36a
Author: Kerry Sheh <shekairui(a)gmail.com>
Date: Wed Oct 12 12:06:23 2011 +0800
SB800: Hide unused gpp ports
Add configure option SB_GPP_UNHIDE_PORTS for mainboard
to hide/unhide the unused sb800 gpp ports.
Certain gpp port should be hidden, if no device was detected and
hotplug feature is disabled for such port.
Hidden unused ports makes lspci -vvv get more accurate information under Linux.
Test on avalue/eax-785e mainboard.
Change-Id: I1d7df0f2ab6ad69b1b99b8bf046411ae7cdb09c0
Signed-off-by: Kerry Sheh <kerry.she(a)amd.com>
Signed-off-by: Kerry Sheh <shekairui(a)gmail.com>
Reviewed-By: Patrick Georgi <patrick(a)georgi-clan.de> at Sun Oct 23 14:07:27 2011, giving +2
See http://review.coreboot.org/207 for details.
-gerrit