Set LCDC clock frequency to 2*148500 KHz
Minimum LCDC is 2 so clock freq shouild be 2*max_pixel_clock. Maximum pixel clock for HDMI is 148500 (1920x1080). But AM335x can not run in this mode due to bandwidth and clock limitations
This commit is contained in:
parent
f773f195ea
commit
f100177dfb
@ -729,10 +729,10 @@ am335x_clk_lcdc_activate(struct ti_clock_dev *clkdev)
|
|||||||
DELAY(10);
|
DELAY(10);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For now set frequency to 5xSYSFREQ
|
* For now set frequency to 99*SYSFREQ/8 which is twice as
|
||||||
* More flexible control might be required
|
* HDMI 1080p pixel clock (minimum LCDC freq divisor is 2)
|
||||||
*/
|
*/
|
||||||
prcm_write_4(CM_WKUP_CM_CLKSEL_DPLL_DISP, (5 << 8) | 0);
|
prcm_write_4(CM_WKUP_CM_CLKSEL_DPLL_DISP, (99 << 8) | 8);
|
||||||
|
|
||||||
/* Locked mode */
|
/* Locked mode */
|
||||||
prcm_write_4(CM_WKUP_CM_CLKMODE_DPLL_DISP, 0x7);
|
prcm_write_4(CM_WKUP_CM_CLKMODE_DPLL_DISP, 0x7);
|
||||||
|
Loading…
Reference in New Issue
Block a user