build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/23548 )
Change subject: Fizz: Get OEM ID and SKU ID from EC
......................................................................
Patch Set 1: Verified-1
Build Failed
https://qa.coreboot.org/job/coreboot-gerrit/66908/ : ABORTED
https://qa.coreboot.org/job/coreboot-checkpatch/21493/ : SUCCESS
--
To view, visit https://review.coreboot.org/23548
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: I06d3a205275b46660b3974bc3673d4be8e13f6d1
Gerrit-Change-Number: 23548
Gerrit-PatchSet: 1
Gerrit-Owner: Daisuke Nojiri <dnojiri(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 01 Feb 2018 16:04:41 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Daisuke Nojiri has uploaded a new patch set (#2). ( https://review.coreboot.org/23548 )
Change subject: Fizz: Get OEM ID and SKU ID from EC
......................................................................
Fizz: Get OEM ID and SKU ID from EC
This patch makes coreboot fetch OEM ID and SKU ID from EC. If it fails,
it falls back to GPIO pins.
Devices with an invalid or uninitialized EEPROM will keep reading from
GPIOs because EC_CMD_GET_CROS_BOARD_INFO returns error.
BUG=b:70294260
BRANCH=none
TEST=Verify AP log shows expected OEM ID and SKU ID on Fizz.
Change-Id: I06d3a205275b46660b3974bc3673d4be8e13f6d1
Signed-off-by: Daisuke Nojiri <dnojiri(a)chromium.org>
---
M src/ec/google/chromeec/ec.c
M src/ec/google/chromeec/ec.h
M src/ec/google/chromeec/ec_commands.h
M src/mainboard/google/fizz/mainboard.c
4 files changed, 145 insertions(+), 14 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/23548/2
--
To view, visit https://review.coreboot.org/23548
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: I06d3a205275b46660b3974bc3673d4be8e13f6d1
Gerrit-Change-Number: 23548
Gerrit-PatchSet: 2
Gerrit-Owner: Daisuke Nojiri <dnojiri(a)chromium.org>
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/23546 )
Change subject: mb/google/nautilus: To work around the power issue of MIPI and USB cameras
......................................................................
Patch Set 1: Verified+1
Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/66905/ : SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/21491/ : SUCCESS
--
To view, visit https://review.coreboot.org/23546
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: Icaaf7e17447492f2e2f2d03eb9a35bcc53667f28
Gerrit-Change-Number: 23546
Gerrit-PatchSet: 1
Gerrit-Owner: Andy Yeh <andy.yeh(a)intel.corp-partner.google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Rajmohan Mani <rajmohan.mani(a)intel.com>
Gerrit-Reviewer: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 01 Feb 2018 16:03:01 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Andy Yeh has uploaded this change for review. ( https://review.coreboot.org/23546
Change subject: mb/google/nautilus: To work around the power issue of MIPI and USB cameras
......................................................................
mb/google/nautilus: To work around the power issue of MIPI and USB cameras
On EVT, the USB and MIPI cameras share the same power source; as a result,
when the MIPI camera driver turns of the camera, USB camera is turned off
as well. For USB cameras to work on EVT devices we will need a hack in
coreboot to leave the camera power always-on. This power issue will be fixed
on DVT build. Will revert this patch once confirmed power source could be
supplied standalone.
BUG=b:72616688
TEST: Verified the MIPI and USB camera function on DUT board
Change-Id: Icaaf7e17447492f2e2f2d03eb9a35bcc53667f28
Signed-off-by: Andy Yeh <andy.yeh(a)intel.com>
---
M src/mainboard/google/poppy/variants/baseboard/include/baseboard/acpi/camera_pmic.asl
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/46/23546/1
diff --git a/src/mainboard/google/poppy/variants/baseboard/include/baseboard/acpi/camera_pmic.asl b/src/mainboard/google/poppy/variants/baseboard/include/baseboard/acpi/camera_pmic.asl
index 5eaf5b7..2b97043 100644
--- a/src/mainboard/google/poppy/variants/baseboard/include/baseboard/acpi/camera_pmic.asl
+++ b/src/mainboard/google/poppy/variants/baseboard/include/baseboard/acpi/camera_pmic.asl
@@ -39,7 +39,13 @@
Method (PMOF, 0, Serialized) {
/* Make Sure all PMIC outputs are off. */
If (LEqual (VSIC, Zero)) {
+ /*
+ * On Nautilus Pre-EVT/EVT, the USB and MIPI share the same power source,
+ * before HW fix in DVT, temporarily disabled turn off 3V3_VDD
+ */
+#if !IS_ENABLED(CONFIG_BOARD_GOOGLE_NAUTILUS)
CTXS(EN_PP3300_DX_CAM)
+#endif
}
}
--
To view, visit https://review.coreboot.org/23546
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: Icaaf7e17447492f2e2f2d03eb9a35bcc53667f28
Gerrit-Change-Number: 23546
Gerrit-PatchSet: 1
Gerrit-Owner: Andy Yeh <andy.yeh(a)intel.corp-partner.google.com>