[coreboot-gerrit] New patch to review for coreboot: d0cb994 storm: do not enable the ethernet switch by default

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Thu Apr 9 23:57:58 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9465

-gerrit

commit d0cb994922e5917038e66dfcf7f7ee2f85a81aa8
Author: Vadim Bendebury <vbendeb at chromium.org>
Date:   Wed Oct 22 12:14:29 2014 -0700

    storm: do not enable the ethernet switch by default
    
    The ethernet switch, as soon as it is taken out of reset comes up in
    default (bridging) mode, which allows traffic to flow freely across
    the ports.
    
    Let's keep it in reset such that there is no cross port traffic
    happening while the device boots up.
    
    BRANCH=storm
    BUG=chrome-os-partner:32646
    TEST=verified that the switch is held in reset during boot.
    
    Change-Id: Ia1dbb47d892d564145da17425a596bf9bad40d29
    Signed-off-by: Stefan Reinauer <reinauer at chromium.org>
    Original-Commit-Id: 50551d8c9a44d1b63e0948070f6573adf7729d37
    Original-Change-Id: I6bf698beddc98ce18fee6b3b39622e356c8cfbad
    Original-Signed-off-by: Vadim Bendebury <vbendeb at chromium.org>
    Original-Reviewed-on: https://chromium-review.googlesource.com/224989
    Original-Reviewed-by: Toshi Kikuchi <toshik at chromium.org>
---
 src/mainboard/google/storm/mainboard.c | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/src/mainboard/google/storm/mainboard.c b/src/mainboard/google/storm/mainboard.c
index acadce5..faf296a 100644
--- a/src/mainboard/google/storm/mainboard.c
+++ b/src/mainboard/google/storm/mainboard.c
@@ -92,28 +92,27 @@ static void setup_tpm(void)
 }
 
 #define SW_RESET_GPIO 26
-static void deassert_sw_reset(void)
+static void assert_sw_reset(void)
 {
 	if (board_id() == 0)
 		return;
 
 	/*
-	 * only proto0.2 and later care about this. This signal is eventually
-	 * driving the ehernet switch reset input, which is active low. But
-	 * since this signal gets inverted along the way, the GPIO needs to be
-	 * driven low to take the switch out of reset.
+	 * only proto0.2 and later care about this. We want to keep the
+	 * ethernet switch in reset, otherwise it comes up in default
+	 * (bridging) mode.
 	 */
 	gpio_tlmm_config_set(SW_RESET_GPIO, FUNC_SEL_GPIO,
 			     GPIO_PULL_UP, GPIO_4MA, GPIO_ENABLE);
 
-	gpio_set_out_value(SW_RESET_GPIO, 0);
+	gpio_set_out_value(SW_RESET_GPIO, 1);
 }
 
 static void mainboard_init(device_t dev)
 {
 	 setup_mmu();
 	 setup_usb();
-	 deassert_sw_reset();
+	 assert_sw_reset();
 	 setup_tpm();
 }
 



More information about the coreboot-gerrit mailing list