Martin Roth has uploaded this change for review. ( https://review.coreboot.org/28649
Change subject: mainboard/google/kahlee: EMMC reset needs to be output low
......................................................................
mainboard/google/kahlee: EMMC reset needs to be output low
While the pin was set to a pull-down, with the external pull-up, this
wasn't enough to keep the pin low. Set to output low to drive to 0V.
TEST=Boot grunt, verify EMMC_BRIDGE_RST is 0V.
BUG=b:115661061
Change-Id: Ife014b8a879274df5d892c1de386976808de1df0
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
M src/mainboard/google/kahlee/variants/baseboard/gpio.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/28649/1
diff --git a/src/mainboard/google/kahlee/variants/baseboard/gpio.c b/src/mainboard/google/kahlee/variants/baseboard/gpio.c
index 75a8ab5..95064bc 100644
--- a/src/mainboard/google/kahlee/variants/baseboard/gpio.c
+++ b/src/mainboard/google/kahlee/variants/baseboard/gpio.c
@@ -54,7 +54,7 @@
PAD_NF(GPIO_26, PCIE_RST_L, PULL_NONE),
/* GPIO_40 - EMMC_BRIDGE_RST */
- PAD_GPI(GPIO_40, PULL_DOWN),
+ PAD_GPO(GPIO_40, LOW),
/* GPIO_70 - WLAN_PE_RST_L */
PAD_GPO(GPIO_70, HIGH),
--
To view, visit https://review.coreboot.org/28649
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: Ife014b8a879274df5d892c1de386976808de1df0
Gerrit-Change-Number: 28649
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth(a)google.com>
Hello Arthur Heymans, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/28648
to look at the new patch set (#2).
Change subject: nb/intel/i945: Set CxDRT1 tRPALL bit if populated with 8-bank
......................................................................
nb/intel/i945: Set CxDRT1 tRPALL bit if populated with 8-bank
CxDRT1 bit #16 "Pre-All to Activate Delay" must be set if any
rank is populated with 8-bank device technology.
Change-Id: Id6c7dccd295e187acfe00a08294010af53b4d0ee
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/northbridge/intel/i945/raminit.c
1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/28648/2
--
To view, visit https://review.coreboot.org/28648
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: Id6c7dccd295e187acfe00a08294010af53b4d0ee
Gerrit-Change-Number: 28648
Gerrit-PatchSet: 2
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/28648
Change subject: nb/intel/i945: Set CxDRT1 tRPALL bit if populated with 8-bank
......................................................................
nb/intel/i945: Set CxDRT1 tRPALL bit if populated with 8-bank
CxDRT1 bit #16 Pre-All to Activate Delay mut be set if any
rank is populated with 8-bank device technology.
Change-Id: Id6c7dccd295e187acfe00a08294010af53b4d0ee
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/northbridge/intel/i945/raminit.c
1 file changed, 5 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/28648/1
diff --git a/src/northbridge/intel/i945/raminit.c b/src/northbridge/intel/i945/raminit.c
index c259530..b53afac 100644
--- a/src/northbridge/intel/i945/raminit.c
+++ b/src/northbridge/intel/i945/raminit.c
@@ -1491,6 +1491,11 @@
temp_drt |= (sysinfo->trfc) << 10;
/* Pre-All to Activate Delay */
+ for (i = 0; i < 2*DIMM_SOCKETS; i++) {
+ if (sysinfo->banks[i] != 8)
+ continue;
+ temp_drt |= (1 << 16);
+ }
temp_drt |= (0 << 16);
/* Precharge to Precharge Delay stays at 1 clock */
--
To view, visit https://review.coreboot.org/28648
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: Id6c7dccd295e187acfe00a08294010af53b4d0ee
Gerrit-Change-Number: 28648
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/28464 )
Change subject: src/drivers/intel/fsp1_1: Configure UART after memory init
......................................................................
Patch Set 1:
> Patch Set 1:
>
> > Patch Set 1:
> >
> > There should be an UPD to configure FSP to enable / disable the onboard UART. Am I wrong ?
>
> Braswell FSP MR2 does not have UPD to enable/disable onboard UART.
There's PcdEnableHsuart0/PcdEnableHsuart1. Did you test if that works for you ?
--
To view, visit https://review.coreboot.org/28464
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: Ibb6c9e4153b3de58791b211c7f4241be3bceae9d
Gerrit-Change-Number: 28464
Gerrit-PatchSet: 1
Gerrit-Owner: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Reviewer: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Reviewer: Hannah Williams <hannah.williams(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Comment-Date: Mon, 17 Sep 2018 10:40:26 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/28646
to look at the new patch set (#2).
Change subject: arch/arm/include/armv7/arch: Don't hide pointer behind typedef
......................................................................
arch/arm/include/armv7/arch: Don't hide pointer behind typedef
Use of device_t has been abandoned in ramstage.
Change-Id: Id3199d130825a5f796108ae45ce965325511ce8b
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/arch/arm/include/armv7/arch/cpu.h
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/46/28646/2
--
To view, visit https://review.coreboot.org/28646
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: Id3199d130825a5f796108ae45ce965325511ce8b
Gerrit-Change-Number: 28646
Gerrit-PatchSet: 2
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Frans Hendriks has posted comments on this change. ( https://review.coreboot.org/28464 )
Change subject: src/drivers/intel/fsp1_1: Configure UART after memory init
......................................................................
Patch Set 1:
> Patch Set 1:
>
> There should be an UPD to configure FSP to enable / disable the onboard UART. Am I wrong ?
Braswell FSP MR2 does not have UPD to enable/disable onboard UART.
--
To view, visit https://review.coreboot.org/28464
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: Ibb6c9e4153b3de58791b211c7f4241be3bceae9d
Gerrit-Change-Number: 28464
Gerrit-PatchSet: 1
Gerrit-Owner: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Reviewer: Frans Hendriks <fhendriks(a)eltan.com>
Gerrit-Reviewer: Hannah Williams <hannah.williams(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Comment-Date: Mon, 17 Sep 2018 09:34:12 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: No