[coreboot-gerrit] Patch set updated for coreboot: 6e18f0e tegra132: move common bootblock init into SoC code

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Wed Mar 25 23:17:41 CET 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8917

-gerrit

commit 6e18f0e3f5fa48f7cf39f825cfc38cf1e37c157f
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Wed Aug 6 15:27:12 2014 -0500

    tegra132: move common bootblock init into SoC code
    
    The current 2 boards were setting up clocks and enabling
    peripherals that apply to the SoC generically. Therefore,
    move the common pieces into the SoC code.
    
    BUG=chrome-os-partner:31105
    BRANCH=None
    TEST=Built and booted through depthcharge on ryu.
    
    Change-Id: I94ed4b5cc4fafee508d86eefe44cf3ba6f65dc3b
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 6dad573c8689b79bb4aa615811a10f44e7d8c809
    Original-Change-Id: I6df1813f88362b8beaf1a716f4f92e42e4b73406
    Original-Signed-off-by: Aaron Durbin <adurbin at chromium.org>
    Original-Reviewed-on: https://chromium-review.googlesource.com/211191
    Original-Reviewed-by: Furquan Shaikh <furquan at chromium.org>
    Original-Reviewed-by: Tom Warren <twarren at nvidia.com>
---
 src/mainboard/google/rush/bootblock.c     | 11 ++++-------
 src/mainboard/google/rush_ryu/bootblock.c |  9 ++++-----
 src/soc/nvidia/tegra132/bootblock.c       | 11 +++++++++++
 3 files changed, 19 insertions(+), 12 deletions(-)

diff --git a/src/mainboard/google/rush/bootblock.c b/src/mainboard/google/rush/bootblock.c
index 4df915e..17372bd 100644
--- a/src/mainboard/google/rush/bootblock.c
+++ b/src/mainboard/google/rush/bootblock.c
@@ -33,8 +33,8 @@
 static struct clk_rst_ctlr *clk_rst = (void *)TEGRA_CLK_RST_BASE;
 
 static const struct pad_config uart_console_pads[] = {
-	/* Hard coded pad usage for UARTA. */
-	PAD_CFG_SFIO(KB_ROW9, 0, UA3),
+	/* UARTA: tx and rx. */
+	PAD_CFG_SFIO(KB_ROW9, PINMUX_PULL_NONE, UA3),
 	PAD_CFG_SFIO(KB_ROW10, PINMUX_INPUT_ENABLE | PINMUX_PULL_UP, UA3),
 	/*
 	 * Disable UART2 pads as they are default connected to UARTA controller.
@@ -71,8 +71,6 @@ static void set_clock_sources(void)
 	/* UARTA gets PLLP, deactivate CLK_UART_DIV_OVERRIDE */
 	writel(PLLP << CLK_SOURCE_SHIFT, &clk_rst->clk_src_uarta);
 
-	clock_configure_source(mselect, PLLP, 102000);
-
 	/* The PMIC is on I2C5 and can run at 400 KHz. */
 	clock_configure_i2c_scl_freq(i2c5, PLLP, 400);
 
@@ -85,9 +83,8 @@ void bootblock_mainboard_init(void)
 {
 	set_clock_sources();
 
-	clock_enable_clear_reset(CLK_L_CACHE2 | CLK_L_TMR,
-				 CLK_H_I2C5 | CLK_H_APBDMA,
-				 0, CLK_V_MSELECT, 0, 0);
+	/* Enable PMIC I2C controller. */
+	clock_enable_clear_reset(0, CLK_H_I2C5, 0, 0, 0, 0);
 
 	/* Set up the pads required to load romstage. */
 	soc_configure_pads(padcfgs, ARRAY_SIZE(padcfgs));
diff --git a/src/mainboard/google/rush_ryu/bootblock.c b/src/mainboard/google/rush_ryu/bootblock.c
index a9de44a..e5975d2 100644
--- a/src/mainboard/google/rush_ryu/bootblock.c
+++ b/src/mainboard/google/rush_ryu/bootblock.c
@@ -33,8 +33,8 @@
 static struct clk_rst_ctlr *clk_rst = (void *)TEGRA_CLK_RST_BASE;
 
 static const struct pad_config uart_console_pads[] = {
-	/* Hard coded pad usage for UARTA. */
-	PAD_CFG_SFIO(KB_ROW9, 0, UA3),
+	/* UARTA: tx and rx. */
+	PAD_CFG_SFIO(KB_ROW9, PINMUX_PULL_NONE, UA3),
 	PAD_CFG_SFIO(KB_ROW10, PINMUX_INPUT_ENABLE | PINMUX_PULL_UP, UA3),
 	/*
 	 * Disable UART2 pads as they are default connected to UARTA controller.
@@ -83,9 +83,8 @@ void bootblock_mainboard_init(void)
 {
 	set_clock_sources();
 
-	clock_enable_clear_reset(CLK_L_CACHE2 | CLK_L_TMR,
-				 CLK_H_I2C5 | CLK_H_APBDMA,
-				 0, CLK_V_MSELECT, 0, 0);
+	/* Enable PMIC I2C controller. */
+	clock_enable_clear_reset(0, CLK_H_I2C5, 0, 0, 0, 0);
 
 	/* Set up the pads required to load romstage. */
 	soc_configure_pads(padcfgs, ARRAY_SIZE(padcfgs));
diff --git a/src/soc/nvidia/tegra132/bootblock.c b/src/soc/nvidia/tegra132/bootblock.c
index fc4c5cd..20a66a7 100644
--- a/src/soc/nvidia/tegra132/bootblock.c
+++ b/src/soc/nvidia/tegra132/bootblock.c
@@ -22,6 +22,7 @@
 #include <bootblock_common.h>
 #include <console/console.h>
 #include <program_loading.h>
+#include <soc/addressmap.h>
 #include <soc/bootblock.h>
 #include <soc/clock.h>
 #include <soc/nvidia/tegra/apbmisc.h>
@@ -33,6 +34,8 @@ void __attribute__((weak)) bootblock_mainboard_early_init(void)
 	/* Empty default implementation. */
 }
 
+static struct clk_rst_ctlr *clk_rst = (void *)TEGRA_CLK_RST_BASE;
+
 void main(void)
 {
 	// enable pinmux clamp inputs
@@ -43,6 +46,14 @@ void main(void)
 
 	clock_early_uart();
 
+	/* Configure mselect clock. */
+	clock_configure_source(mselect, PLLP, 102000);
+
+	/* Enable AVP cache, timer, APB dma, and mselect blocks.  */
+	clock_enable_clear_reset(CLK_L_CACHE2 | CLK_L_TMR,
+				 CLK_H_APBDMA,
+				 0, CLK_V_MSELECT, 0, 0);
+
 	bootblock_mainboard_early_init();
 
 	if (CONFIG_BOOTBLOCK_CONSOLE) {



More information about the coreboot-gerrit mailing list