From d25ead2589c47ae476975cb6c42354c3a12fb3f9 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Fri, 1 Aug 2014 16:50:27 -0500 Subject: tegra132: introduce romstage_mainboard_init() Instead of calling out with function names all the possible combinations of interface and device provide one call to the mainboard to configure all the necessary bits. BUG=chrome-os-partner:31104 BUG=chrome-os-partner:31105 BRANCH=None TEST=Built and ran on rush. Change-Id: Id7817e85065884d64f90ac514bf698bf539f2afe Signed-off-by: Patrick Georgi Original-Commit-Id: f4f63f5965d403a32872d7b52c180694f5ef679d Original-Change-Id: Id27d9c2da4dccdff38c48dc5cdeb1a68cf23cbfc Original-Signed-off-by: Aaron Durbin Original-Reviewed-on: https://chromium-review.googlesource.com/210838 Original-Reviewed-by: Furquan Shaikh Reviewed-on: http://review.coreboot.org/8901 Reviewed-by: Stefan Reinauer Tested-by: build bot (Jenkins) --- src/mainboard/google/rush/romstage.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/mainboard/google/rush') diff --git a/src/mainboard/google/rush/romstage.c b/src/mainboard/google/rush/romstage.c index 8edcba8d6a..b4d9714699 100644 --- a/src/mainboard/google/rush/romstage.c +++ b/src/mainboard/google/rush/romstage.c @@ -34,7 +34,7 @@ static void configure_tpm_i2c_bus(void) i2c_init(2); } -void mainboard_init_tpm_i2c(void) +static void mainboard_init_tpm_i2c(void) { clock_enable_clear_reset(0, 0, CLK_U_I2C3, 0, 0, 0); @@ -51,7 +51,7 @@ void mainboard_init_tpm_i2c(void) configure_tpm_i2c_bus(); } -void mainboard_init_ec_spi(void) +static void mainboard_init_ec_spi(void) { clock_enable_clear_reset(0, CLK_H_SBC1, 0, 0, 0, 0); @@ -75,9 +75,10 @@ void mainboard_init_ec_spi(void) clock_configure_source(sbc1, CLK_M, 500); } -void mainboard_init_ec_i2c(void) +void romstage_mainboard_init(void) { - /* Empty - Rush uses SPI to communicate with the EC */ + mainboard_init_tpm_i2c(); + mainboard_init_ec_spi(); } void mainboard_configure_pmc(void) -- cgit v1.2.3