Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/20894
Change subject: driver/intel/gma: Allow use of GFX_GMA_ANALOG_I2C_HDMI_x in C NGI
......................................................................
driver/intel/gma: Allow use of GFX_GMA_ANALOG_I2C_HDMI_x in C NGI
These Kconfig option can be reused for the same purpose of selecting
the correct i2c pins for probing the analog output EDID in C native
graphic init. For this purpose this patch makes those options
independent of GFX_GMA and MAINBOARD_HAS_LIBGFXINIT.
Change-Id: If29c541d414e12b95d96ae9c249a7a20e863fe06
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/drivers/intel/gma/Kconfig
1 file changed, 11 insertions(+), 12 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/20894/1
diff --git a/src/drivers/intel/gma/Kconfig b/src/drivers/intel/gma/Kconfig
index 1e60a42..b63a1c0 100644
--- a/src/drivers/intel/gma/Kconfig
+++ b/src/drivers/intel/gma/Kconfig
@@ -47,6 +47,17 @@
supported platform with a choice seems to be Pineview, where the
alternative is 100MHz vs. the default 96MHz.
+config GFX_GMA_ANALOG_I2C_HDMI_B
+ bool
+ default n
+
+config GFX_GMA_ANALOG_I2C_HDMI_C
+ bool
+ default n
+
+config GFX_GMA_ANALOG_I2C_HDMI_D
+ bool
+ default n
config GFX_GMA
def_bool y
@@ -84,18 +95,6 @@
string
default "DP" if GFX_GMA_INTERNAL_IS_EDP
default "LVDS"
-
-config GFX_GMA_ANALOG_I2C_HDMI_B
- bool
- default n
-
-config GFX_GMA_ANALOG_I2C_HDMI_C
- bool
- default n
-
-config GFX_GMA_ANALOG_I2C_HDMI_D
- bool
- default n
config GFX_GMA_ANALOG_I2C_PORT
string
--
To view, visit https://review.coreboot.org/20894
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: If29c541d414e12b95d96ae9c249a7a20e863fe06
Gerrit-Change-Number: 20894
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Werner Zeh has uploaded this change for review. ( https://review.coreboot.org/20893
Change subject: rx6110sa: Make sure that VLF bit will be cleared
......................................................................
rx6110sa: Make sure that VLF bit will be cleared
Ensure that the VLF bit will be cleared after a power loss event even if
the stopwatch has expired before the code to clear the bit is reached.
Change-Id: Ib2cfdabf4cd4df834395d6a102c6ae70568e71db
Signed-off-by: Werner Zeh <werner.zeh(a)siemens.com>
---
M src/drivers/i2c/rx6110sa/rx6110sa.c
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/93/20893/1
diff --git a/src/drivers/i2c/rx6110sa/rx6110sa.c b/src/drivers/i2c/rx6110sa/rx6110sa.c
index 761d83d..2c62f23 100644
--- a/src/drivers/i2c/rx6110sa/rx6110sa.c
+++ b/src/drivers/i2c/rx6110sa/rx6110sa.c
@@ -163,7 +163,8 @@
* VLF-bit can be cleared.
*/
while (!stopwatch_expired(&sw))
- flags &= ~VLF_BIT;
+ ;
+ flags &= ~VLF_BIT;
rx6110sa_write(dev, FLAG_REGISTER, flags);
/* Before setting the clock stop oscillator. */
--
To view, visit https://review.coreboot.org/20893
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib2cfdabf4cd4df834395d6a102c6ae70568e71db
Gerrit-Change-Number: 20893
Gerrit-PatchSet: 1
Gerrit-Owner: Werner Zeh <werner.zeh(a)siemens.com>