[coreboot-gerrit] Patch set updated for coreboot: 44d3785 google/snow: Don't spew output with GPIO config

Gabe Black (gabeblack@chromium.org) gerrit at coreboot.org
Tue Jul 9 22:43:31 CEST 2013


Gabe Black (gabeblack at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3661

-gerrit

commit 44d378590dd17f5587065c102ab1287ab486fe25
Author: Stefan Reinauer <reinauer at chromium.org>
Date:   Fri May 17 10:34:25 2013 -0700

    google/snow: Don't spew output with GPIO config
    
    There are hundreds of GPIOs on the Exynos5250. Don't
    always print all of them per default.
    
    Change-Id: Ie349f2a4117883302b743027ed13cc9705b804f8
    Signed-off-by: Stefan Reinauer <reinauer at chromium.org>
    Signed-off-by: Gabe Black <gabeblack at chromium.org>
---
 src/mainboard/google/snow/mainboard.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/mainboard/google/snow/mainboard.c b/src/mainboard/google/snow/mainboard.c
index 76605bb..a0d6a61 100644
--- a/src/mainboard/google/snow/mainboard.c
+++ b/src/mainboard/google/snow/mainboard.c
@@ -229,6 +229,8 @@ static void mainboard_init(device_t dev)
 	set_vbe_mode_info_valid(&edid, (uintptr_t)fb_addr);
 
 	lcd_vdd();
+
+	// FIXME: should timeout
 	do {
 		udelay(50);
 	} while (!exynos_dp_hotplug());
@@ -256,7 +258,8 @@ static void mainboard_init(device_t dev)
 	if (dp_tries > MAX_DP_TRIES)
 		printk(BIOS_ERR, "%s: Failed to set up displayport\n", __func__);
 
-	gpio_info();
+	// Uncomment to get excessive GPIO output:
+	// gpio_info();
 }
 
 static void mainboard_enable(device_t dev)



More information about the coreboot-gerrit mailing list