aboutsummaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra132/bootblock.c
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2014-06-25 11:37:04 -0700
committerMarc Jones <marc.jones@se-eng.com>2015-03-04 18:16:09 +0100
commitf0d150e0bad67a6ffd6fb175ed1591f944df106e (patch)
treeb3a6defba7a31dd896e24699e73c94d3a247328b /src/soc/nvidia/tegra132/bootblock.c
parent84bbab9226163cca6ec58e4d5875fea1e53ec3b4 (diff)
coreboot t132: Remove init pllx for now
We suspect that the code was stuck on init pllx (PLLX - acts as a clock source for the CPU cluster). So, remove the init call for pllx. This needs to be added later when required. Also, add a few more printks to display the progress. BUG=None BRANCH=None TEST=Compiles successfully for rush. Print messages seen on serial console. Original-Change-Id: I70e908a9ce1f3598d68bda68c0401a78834597d1 Original-Signed-off-by: Furquan Shaikh <furquan@google.com> Original-Reviewed-on: https://chromium-review.googlesource.com/205680 Original-Tested-by: Furquan Shaikh <furquan@chromium.org> Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Original-Commit-Queue: Furquan Shaikh <furquan@chromium.org> (cherry picked from commit d557d99edb855fbf7b32231c6746c676041bf62a) Signed-off-by: Marc Jones <marc.jones@se-eng.com> Change-Id: Iaf56f2d587708c6e9fb01d4ced2edb5931075a81 Reviewed-on: http://review.coreboot.org/8571 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/soc/nvidia/tegra132/bootblock.c')
-rw-r--r--src/soc/nvidia/tegra132/bootblock.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/soc/nvidia/tegra132/bootblock.c b/src/soc/nvidia/tegra132/bootblock.c
index f377bc1ee0..46b7b3ab56 100644
--- a/src/soc/nvidia/tegra132/bootblock.c
+++ b/src/soc/nvidia/tegra132/bootblock.c
@@ -54,12 +54,16 @@ void main(void)
if (CONFIG_BOOTBLOCK_CONSOLE) {
console_init();
exception_init();
- printk(BIOS_INFO, "Tegra132: Bootblock here\n");
+ printk(BIOS_INFO, "T132: Bootblock here\n");
}
clock_init();
+ printk(BIOS_INFO, "T132 bootblock: Clock init done\n");
+
bootblock_mainboard_init();
+ printk(BIOS_INFO, "T132 bootblock: Mainboard bootblock init done\n");
+
while(1);
}