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 removing the init call for pllx. This needs to be added later when required. Also added a few more printks to display the progress. BUG=None BRANCH=None TEST=Compiles successfully for rush. Print messages seen on serial console. Change-Id: I70e908a9ce1f3598d68bda68c0401a78834597d1 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://chromium-review.googlesource.com/205680 Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Commit-Queue: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
parent
e7aac54702
commit
d557d99edb
2 changed files with 5 additions and 8 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -520,9 +520,6 @@ void clock_init(void)
|
|||
clrsetbits_le32(&pmc->osc_edpd_over, PMC_OSC_EDPD_OVER_XOFS_MASK,
|
||||
OSC_DRIVE_STRENGTH << PMC_OSC_EDPD_OVER_XOFS_SHIFT);
|
||||
|
||||
/* Disable IDDQ for PLLX before we set it up (from U-Boot -- why?) */
|
||||
clrbits_le32(&clk_rst->pllx_misc3, PLLX_IDDQ_MASK);
|
||||
|
||||
/* Set up PLLP_OUT(1|2|3|4) divisor to generate (9.6|48|102|204)MHz */
|
||||
write32((CLK_DIVIDER(TEGRA_PLLP_KHZ, 9600) << PLL_OUT_RATIO_SHIFT |
|
||||
PLL_OUT_OVR | PLL_OUT_CLKEN | PLL_OUT_RSTN) << PLL_OUT1_SHIFT |
|
||||
|
|
@ -535,10 +532,6 @@ void clock_init(void)
|
|||
PLL_OUT_OVR | PLL_OUT_CLKEN | PLL_OUT_RSTN) << PLL_OUT4_SHIFT,
|
||||
&clk_rst->pllp_outb);
|
||||
|
||||
/* init pllx */
|
||||
init_pll(&clk_rst->pllx_base, &clk_rst->pllx_misc,
|
||||
osc_table[osc].pllx, PLLPAXS_MISC_LOCK_ENABLE);
|
||||
|
||||
/* init pllu */
|
||||
init_pll(&clk_rst->pllu_base, &clk_rst->pllu_misc,
|
||||
osc_table[osc].pllu, PLLUD_MISC_LOCK_ENABLE);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue