Re: [U-Boot] [PATCH v2 2/2] video: bcm2835: respect the pitch value

2013-11-07 Thread Anatolij Gustschin
On Thu, 24 Oct 2013 20:00:41 +0200 Andre Heider a.hei...@gmail.com wrote: ... @@ -90,6 +94,7 @@ void lcd_ctrl_init(void *lcdbase) w = msg_setup-physical_w_h.body.resp.width; h = msg_setup-physical_w_h.body.resp.height; + bcm2835_pitch = msg_setup-pitch.body.resp.pitch;

[U-Boot] [PATCH v2 2/2] video: bcm2835: respect the pitch value

2013-10-24 Thread Andre Heider
Depending on the firmware's video options [1] the active SDTV or HDTV mode can yield a framebuffer with noncontiguous horizontal lines, giving a messed up display, for both, u-boot and the loaded kernel. Fix this by setting lcd_line_length to the pitch value of the configured framebuffer. [1]

Re: [U-Boot] [PATCH v2 2/2] video: bcm2835: respect the pitch value

2013-10-24 Thread Stephen Warren
On 10/24/2013 07:00 PM, Andre Heider wrote: Depending on the firmware's video options [1] the active SDTV or HDTV mode can yield a framebuffer with noncontiguous horizontal lines, giving a messed up display, for both, u-boot and the loaded kernel. Fix this by setting lcd_line_length to the