* i915: wrong framebuffer size in 2.6.36-rc3
@ 2010-08-30 9:36 Sven Joachim
2010-08-30 9:57 ` Pekka Enberg
0 siblings, 1 reply; 4+ messages in thread
From: Sven Joachim @ 2010-08-30 9:36 UTC (permalink / raw)
To: linux-kernel; +Cc: dri-devel
On my laptop which has a 1280x800 display, only the upper left 848x480
pixels are used on the console in 2.6.36-rc3. The resolution is
correct, but /sys/class/graphics/fb0/modes looks like this:
U:848x480p-0
This is a regression from 2.6.35. The graphics card according to lspci:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS,
943/940GML Express Integrated Graphics Controller (rev 03)
Sven
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: i915: wrong framebuffer size in 2.6.36-rc3
2010-08-30 9:36 i915: wrong framebuffer size in 2.6.36-rc3 Sven Joachim
@ 2010-08-30 9:57 ` Pekka Enberg
2010-08-30 13:42 ` Sven Joachim
2010-08-30 13:46 ` Ivan Bulatovic
0 siblings, 2 replies; 4+ messages in thread
From: Pekka Enberg @ 2010-08-30 9:57 UTC (permalink / raw)
To: Sven Joachim
Cc: linux-kernel, dri-devel, Ivan Bulatovic, Chris Wilson,
Eric Anholt, Jesse Barnes, Linus Torvalds
On Mon, Aug 30, 2010 at 12:36 PM, Sven Joachim <svenjoac@gmx.de> wrote:
> On my laptop which has a 1280x800 display, only the upper left 848x480
> pixels are used on the console in 2.6.36-rc3. The resolution is
> correct, but /sys/class/graphics/fb0/modes looks like this:
>
> U:848x480p-0
>
> This is a regression from 2.6.35. The graphics card according to lspci:
>
> 00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS,
> 943/940GML Express Integrated Graphics Controller (rev 03)
Yeah, you're not alone on this:
http://lkml.org/lkml/2010/8/23/452
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: i915: wrong framebuffer size in 2.6.36-rc3
2010-08-30 9:57 ` Pekka Enberg
@ 2010-08-30 13:42 ` Sven Joachim
2010-08-30 13:46 ` Ivan Bulatovic
1 sibling, 0 replies; 4+ messages in thread
From: Sven Joachim @ 2010-08-30 13:42 UTC (permalink / raw)
To: Pekka Enberg
Cc: linux-kernel, dri-devel, Ivan Bulatovic, Chris Wilson,
Eric Anholt, Jesse Barnes, Linus Torvalds
On 2010-08-30 11:57 +0200, Pekka Enberg wrote:
> On Mon, Aug 30, 2010 at 12:36 PM, Sven Joachim <svenjoac@gmx.de> wrote:
>> On my laptop which has a 1280x800 display, only the upper left 848x480
>> pixels are used on the console in 2.6.36-rc3. The resolution is
>> correct, but /sys/class/graphics/fb0/modes looks like this:
>>
>> U:848x480p-0
>>
>> This is a regression from 2.6.35. The graphics card according to lspci:
>>
>> 00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS,
>> 943/940GML Express Integrated Graphics Controller (rev 03)
>
> Yeah, you're not alone on this:
>
> http://lkml.org/lkml/2010/8/23/452
Incidentally, I did not notice the problem initially described in this
thread, and 2.6.36-rc2 actually seems OK for me. But after this commit:
commit 9559fcdbff4f93d29af04478bbc48294519424f5
Author: Jesse Barnes <jbarnes@virtuousgeek.org>
Date: Tue Aug 24 11:31:16 2010 -0700
drm/i915: fix vblank wait test condition
When converting this to the new wait_for macro I inverted the wait
condition, which causes all sorts of problems. So correct it to fix
several failures caused by the bad wait (flickering, bad output
detection, tearing, etc.).
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Tested-by: Sitsofe Wheeler <sitsofe@yahoo.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
@ -992,7 +992,7 @@ void intel_wait_for_vblank(struct drm_device *dev, int pipe)
/* Wait for vblank interrupt bit to set */
if (wait_for((I915_READ(pipestat_reg) &
- PIPE_VBLANK_INTERRUPT_STATUS) == 0,
+ PIPE_VBLANK_INTERRUPT_STATUS),
50, 0))
DRM_DEBUG_KMS("vblank wait timed out\n");
}
only the upper left 848x480 pixels of the display are used for the
framebuffer. Booting with the video=1280x800 commandline option works
around this problem.
Sven
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: i915: wrong framebuffer size in 2.6.36-rc3
2010-08-30 9:57 ` Pekka Enberg
2010-08-30 13:42 ` Sven Joachim
@ 2010-08-30 13:46 ` Ivan Bulatovic
1 sibling, 0 replies; 4+ messages in thread
From: Ivan Bulatovic @ 2010-08-30 13:46 UTC (permalink / raw)
To: Pekka Enberg
Cc: Sven Joachim, linux-kernel, dri-devel, Chris Wilson, Eric Anholt,
Jesse Barnes, Linus Torvalds
On Mon, 2010-08-30 at 12:57 +0300, Pekka Enberg wrote:
> On Mon, Aug 30, 2010 at 12:36 PM, Sven Joachim <svenjoac@gmx.de> wrote:
> > On my laptop which has a 1280x800 display, only the upper left 848x480
> > pixels are used on the console in 2.6.36-rc3. The resolution is
> > correct, but /sys/class/graphics/fb0/modes looks like this:
> >
> > U:848x480p-0
> >
> > This is a regression from 2.6.35. The graphics card according to lspci:
> >
> > 00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS,
> > 943/940GML Express Integrated Graphics Controller (rev 03)
>
> Yeah, you're not alone on this:
>
> http://lkml.org/lkml/2010/8/23/452
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
If that's the only problem you have then revert this commit:
commit
9559fcdbff4f93d29af04478bbc48294519424f5
> drm/i915: fix vblank wait test condition
>
> When converting this to the new wait_for macro I inverted the wait
> condition, which causes all sorts of problems. So correct it to fix
> several failures caused by the bad wait (flickering, bad output
> detection, tearing, etc.).
>
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> Tested-by: Sitsofe Wheeler <sitsofe@yahoo.com>
> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
https://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9559fcdbff4f93d29af04478bbc48294519424f5
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-08-30 13:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-30 9:36 i915: wrong framebuffer size in 2.6.36-rc3 Sven Joachim
2010-08-30 9:57 ` Pekka Enberg
2010-08-30 13:42 ` Sven Joachim
2010-08-30 13:46 ` Ivan Bulatovic
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox