Skip to content
Snippets Groups Projects
Commit f8892657 authored by Kenneth Johansson's avatar Kenneth Johansson Committed by John Rigby
Browse files

fix DIU for small screens


The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
so it was not possible to set a slow pixel clock and thus prevented
display on small screens.

Signed-off-by: default avatarKenneth Johansson <kenneth@southpole.se>
Acked-by: default avatarJohn Rigby <jrigby@freescale.com>
parent b60b8573
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ void diu_set_pixel_clock(unsigned int pixclock)
/* Modify PXCLK in GUTS CLKDVDR */
debug("DIU: Current value of CLKDVDR = 0x%08x\n", *clkdvdr);
temp = *clkdvdr & 0xFFFFFF00;
*clkdvdr = temp | (pixval & 0x1F);
*clkdvdr = temp | (pixval & 0xFF);
debug("DIU: Modified value of CLKDVDR = 0x%08x\n", *clkdvdr);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment