Hi Alan,
On Sat, Jan 28, 2012 at 20:37:50 +0000, you wrote:
Can you do the following. In gma500/framebuffer.c find the code that reads
info->flags = FBINFO_DEFAULT; if (dev_priv->ops->accel_2d && pitch_lines > 8) /* 2D engine */ info->fbops = &psbfb_ops; else if (gtt_roll) { /* GTT rolling seems best */ info->fbops = &psbfb_roll_ops; info->flags |= FBINFO_HWACCEL_YPAN; } else /* Software */ info->fbops = &psbfb_unaccel_ops;
and change it to read
info->flags = FBINFO_DEFAULT;
info->fbops = &psbfb_unaccel_ops;
Ok. I commented the code above and replaced it with the two lines. Correct?
and see if that fixes it.
Unfortunately not :-( It's the same behaviour.
If so I know what is going on.
And if not? ;-)
Alexander