Martin Roth has uploaded this change for review. ( https://review.coreboot.org/25014
Change subject: ec/google/chromeec: Add boardid.c to bootblock
......................................................................
ec/google/chromeec: Add boardid.c to bootblock
Update build so that we can get the board ID in bootblock.
BUG=b:74248569
TEST=build and boot grunt with follow-on patch.
Bayhub part is disabled.
Change-Id: I6353bcb4abcef4e8dc2b625082e33b73525c8525
Signed-off-by: Martin Roth <martinroth(a)chromium.org>
---
M src/ec/google/chromeec/Makefile.inc
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/14/25014/1
diff --git a/src/ec/google/chromeec/Makefile.inc b/src/ec/google/chromeec/Makefile.inc
index 7b43f63..240b16a 100644
--- a/src/ec/google/chromeec/Makefile.inc
+++ b/src/ec/google/chromeec/Makefile.inc
@@ -1,5 +1,6 @@
ifeq ($(CONFIG_EC_GOOGLE_CHROMEEC),y)
+bootblock-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c
romstage-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c
ramstage-$(CONFIG_EC_GOOGLE_CHROMEEC_BOARDID) += ec_boardid.c
--
To view, visit https://review.coreboot.org/25014
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: I6353bcb4abcef4e8dc2b625082e33b73525c8525
Gerrit-Change-Number: 25014
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth(a)google.com>
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/25013 )
Change subject: soc/intel/common/block/gspi: set cs polarity before using
......................................................................
Patch Set 1: Verified+1
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/22750/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/68314/ : SUCCESS
--
To view, visit https://review.coreboot.org/25013
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I20b4f584663477d751a07889bccc865efbf9c469
Gerrit-Change-Number: 25013
Gerrit-PatchSet: 1
Gerrit-Owner: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Sathya Prakash M R <sathya.prakash.m.r(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 06 Mar 2018 21:28:17 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Nick Vaccaro has uploaded this change for review. ( https://review.coreboot.org/25013
Change subject: soc/intel/common/block/gspi: set cs polarity before using
......................................................................
soc/intel/common/block/gspi: set cs polarity before using
Move call to __gspi_cs_change() in gspi_ctrlr_setup() to after
initialization of cs polarity since it requires polarity to be
set to work properly. Failure to do so confuses cr50.
BUG=b:70628116
BRANCH=chromeos-2016.05
TEST='emerge-meowth coreboot' and verify on scope that chip select
polarity is correct for the first transaction.
Change-Id: I20b4f584663477d751a07889bccc865efbf9c469
Signed-off-by: Nick Vaccaro <nvaccaro(a)google.com>
---
M src/soc/intel/common/block/gspi/gspi.c
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/13/25013/1
diff --git a/src/soc/intel/common/block/gspi/gspi.c b/src/soc/intel/common/block/gspi/gspi.c
index 2f574a4..60c7391 100644
--- a/src/soc/intel/common/block/gspi/gspi.c
+++ b/src/soc/intel/common/block/gspi/gspi.c
@@ -414,9 +414,6 @@
/* Take controller out of reset, keeping DMA in reset. */
gspi_write_mmio_reg(p, RESETS, CTRLR_ACTIVE | DMA_RESET);
- /* De-assert chip select. */
- __gspi_cs_change(p, CS_DEASSERT);
-
/*
* CS control:
* - Set SW mode.
@@ -430,6 +427,9 @@
cs_ctrl |= gspi_csctrl_state(pol, CS_DEASSERT);
gspi_write_mmio_reg(p, SPI_CS_CONTROL, cs_ctrl);
+ /* De-assert chip select. */
+ __gspi_cs_change(p, CS_DEASSERT);
+
/* Disable SPI controller. */
gspi_write_mmio_reg(p, SSCR0, SSCR0_SSE_DISABLE);
--
To view, visit https://review.coreboot.org/25013
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: I20b4f584663477d751a07889bccc865efbf9c469
Gerrit-Change-Number: 25013
Gerrit-PatchSet: 1
Gerrit-Owner: Nick Vaccaro <nvaccaro(a)google.com>
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/24981 )
Change subject: util/gitconfig: support pre-v2.5.0 git
......................................................................
Patch Set 2:
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/22749/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/68313/ : SUCCESS
--
To view, visit https://review.coreboot.org/24981
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I232499c51e30bee546994eedcd2534642cd534e6
Gerrit-Change-Number: 24981
Gerrit-PatchSet: 2
Gerrit-Owner: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
Gerrit-Reviewer: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: T Michael Turney <mturney(a)codeaurora.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 06 Mar 2018 21:01:55 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/23280 )
Change subject: util/gitconfig: Add timeout test
......................................................................
Patch Set 5:
Build Successful
https://qa.coreboot.org/job/coreboot-checkpatch/22745/ : SUCCESS
https://qa.coreboot.org/job/coreboot-gerrit/68309/ : SUCCESS
--
To view, visit https://review.coreboot.org/23280
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Id46f905b9f782e67be97a65d10045c3345dc996b
Gerrit-Change-Number: 23280
Gerrit-PatchSet: 5
Gerrit-Owner: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
Gerrit-Reviewer: Alex Thiessen <alex.thiessen.de+coreboot(a)gmail.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 06 Mar 2018 20:57:11 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No