Matt Delco has uploaded this change for review. ( https://review.coreboot.org/28102
Change subject: mb/google/eve: enable eist
......................................................................
mb/google/eve: enable eist
Enable Enhanced Intel SpeedStep (EIST) on eve.
Change-Id: I49b18b817cda570f5c3c4d048c4e03329ac10b87
Signed-off-by: Matt Delco <delco(a)chromium.org>
---
M src/mainboard/google/eve/devicetree.cb
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/02/28102/1
diff --git a/src/mainboard/google/eve/devicetree.cb b/src/mainboard/google/eve/devicetree.cb
index 16bfc47..c1482c6 100644
--- a/src/mainboard/google/eve/devicetree.cb
+++ b/src/mainboard/google/eve/devicetree.cb
@@ -7,6 +7,8 @@
register "deep_s5_enable_dc" = "1"
register "deep_sx_config" = "DSX_EN_LAN_WAKE_PIN | DSX_EN_WAKE_PIN"
+ register "eist_enable" = "1"
+
# GPE configuration
# Note that GPE events called out in ASL code rely on this
# route. i.e. If this route changes then the affected GPE
--
To view, visit https://review.coreboot.org/28102
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I49b18b817cda570f5c3c4d048c4e03329ac10b87
Gerrit-Change-Number: 28102
Gerrit-PatchSet: 1
Gerrit-Owner: Matt Delco <delco(a)chromium.org>
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/28068
to look at the new patch set (#4).
Change subject: cpu/intel/common: add function to init cppc_config
......................................................................
cpu/intel/common: add function to init cppc_config
This change adds a method to init a cppc_config structure in a way that
should ideally work across Intel processors that support EIST.
Change-Id: Ib767df63d796bd1f21e36bcf575cf912e09090a1
Signed-off-by: Matt Delco <delco(a)chromium.org>
---
M src/cpu/intel/common/common.h
M src/cpu/intel/common/common_init.c
2 files changed, 188 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/68/28068/4
--
To view, visit https://review.coreboot.org/28068
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Ib767df63d796bd1f21e36bcf575cf912e09090a1
Gerrit-Change-Number: 28068
Gerrit-PatchSet: 4
Gerrit-Owner: Matt Delco <delco(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Patrick Rudolph <siro(a)das-labor.org>
Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/28101
Change subject: Makefile: Write .xcompile to $(obj)
......................................................................
Makefile: Write .xcompile to $(obj)
This file was being written to the root src directory. It is the only
file being written to src while all others are being written to obj. I
decided to leave .xcompile in the cleanup targets so any stale compies
will get removed on clean.
This is part of my incremental rebuild work. It saves a few targets from
being rebuilt.
BUG=b:112267918
TEST=ran emerge-grunt coreboot
Change-Id: Ia83f234447b977efa824751c9674154b77d606b0
Signed-off-by: Raul E Rangel <rrangel(a)chromium.org>
---
M Makefile
M Makefile.inc
2 files changed, 5 insertions(+), 5 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/28101/1
diff --git a/Makefile b/Makefile
index 1d4a488..ad4609d 100644
--- a/Makefile
+++ b/Makefile
@@ -142,18 +142,18 @@
# in addition to the dependency below, create the file if it doesn't exist
# to silence stupid warnings about a file that would be generated anyway.
-$(if $(wildcard .xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > .xcompile || rm -f .xcompile)))
+ $(if $(wildcard $(obj)/.xcompile)$(NOCOMPILE),,$(eval $(shell util/xcompile/xcompile $(XGCCPATH) > $(obj)/.xcompile || rm -f $(obj)/.xcompile)))
-.xcompile: util/xcompile/xcompile
+$(obj)/.xcompile: util/xcompile/xcompile
rm -f $@
$< $(XGCCPATH) > $@.tmp
\mv -f $@.tmp $@ 2> /dev/null
rm -f $@.tmp
--include .xcompile
+-include $(obj)/.xcompile
ifneq ($(XCOMPILE_COMPLETE),1)
-$(shell rm -f .xcompile)
+$(shell rm -f $(obj)/.xcompile)
$(error .xcompile deleted because it's invalid. \
Restarting the build should fix that, or explain the problem)
endif
diff --git a/Makefile.inc b/Makefile.inc
index 7ce2360..6d60b6c 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -464,7 +464,7 @@
#######################################################################
# generate build support files
-$(obj)/build.h: .xcompile
+$(obj)/build.h: $(obj)/.xcompile
@printf " GEN build.h\n"
rm -f $(obj)/build.h
util/genbuild_h/genbuild_h.sh > $(obj)/build.ht
--
To view, visit https://review.coreboot.org/28101
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia83f234447b977efa824751c9674154b77d606b0
Gerrit-Change-Number: 28101
Gerrit-PatchSet: 1
Gerrit-Owner: Raul Rangel <rrangel(a)chromium.org>
Charles Marslett has abandoned this change. ( https://review.coreboot.org/27681 )
Change subject: Remove use of coreboot/src/vendorcode/amd/pi/00670F00/Proc/Psp
......................................................................
Abandoned
Duplicate of patch set 27619
--
To view, visit https://review.coreboot.org/27681
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: abandon
Gerrit-Change-Id: Ib21954a82827b5bb5854fa9a6672376c9bbb6539
Gerrit-Change-Number: 27681
Gerrit-PatchSet: 3
Gerrit-Owner: Charles Marslett <charles.marslett(a)amd.corp-partner.google.com>
Gerrit-Reviewer: Charles Marslett <charles.marslett(a)silverbackltd.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Martin Roth <martinroth(a)google.com>