mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
imx6: clock: print real pixel clock rate
Add debug messages to print the real pixel clock rate, which may not be the requested one. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
This commit is contained in:
parent
82863a99c0
commit
1490292a07
1 changed files with 2 additions and 0 deletions
|
@ -802,6 +802,7 @@ void mxs_set_lcdclk(u32 base_addr, u32 freq)
|
|||
}
|
||||
|
||||
enable_lcdif_clock(base_addr, 1);
|
||||
debug("pixel clock = %u\n", mxc_get_clock(MXC_LCDIF1_CLK));
|
||||
} else if (is_mx6sx()) {
|
||||
/* Setting LCDIF2 for i.MX6SX */
|
||||
if (enable_pll_video(pll_div, pll_num, pll_denom, post_div))
|
||||
|
@ -823,6 +824,7 @@ void mxs_set_lcdclk(u32 base_addr, u32 freq)
|
|||
MXC_CCM_CSCMR1_LCDIF2_PODF_OFFSET));
|
||||
|
||||
enable_lcdif_clock(base_addr, 1);
|
||||
debug("pixel clock = %u\n", mxc_get_clock(MXC_LCDIF2_CLK));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue