* [PATCH] drm/i915: fix mode set on load pipe. (v2)
@ 2012-02-23 15:33 Dave Airlie
2012-02-23 15:54 ` Eugeni Dodonov
2012-02-23 15:56 ` Chris Wilson
0 siblings, 2 replies; 5+ messages in thread
From: Dave Airlie @ 2012-02-23 15:33 UTC (permalink / raw)
To: intel-gfx
From: Dave Airlie <airlied@redhat.com>
Booted my i965 machine and it started printing the unsupported pixel
format of 0 message (once I added content to it).
Oh looksie here, we pass 0. fix.
v2: compile it.
Signed-off-by: Dave Airlie <airlied@redhat.com>
---
drivers/gpu/drm/i915/intel_display.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 1efb5fc..c255ff7 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -6561,7 +6561,7 @@ intel_framebuffer_create_for_mode(struct drm_device *dev,
mode_cmd.height = mode->vdisplay;
mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
bpp);
- mode_cmd.pixel_format = 0;
+ mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
return intel_framebuffer_create(dev, &mode_cmd, obj);
}
--
1.7.7.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: fix mode set on load pipe. (v2)
2012-02-23 15:33 [PATCH] drm/i915: fix mode set on load pipe. (v2) Dave Airlie
@ 2012-02-23 15:54 ` Eugeni Dodonov
2012-02-23 15:57 ` Daniel Vetter
2012-02-23 15:56 ` Chris Wilson
1 sibling, 1 reply; 5+ messages in thread
From: Eugeni Dodonov @ 2012-02-23 15:54 UTC (permalink / raw)
To: Dave Airlie; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 471 bytes --]
On Thu, Feb 23, 2012 at 13:33, Dave Airlie <airlied@gmail.com> wrote:
> From: Dave Airlie <airlied@redhat.com>
>
> Booted my i965 machine and it started printing the unsupported pixel
> format of 0 message (once I added content to it).
>
> Oh looksie here, we pass 0. fix.
>
We already have patch1 in drm-intel-fixes I think.
And as for Patch2, I guess it should fix
https://bugs.freedesktop.org/show_bug.cgi?id=46043.
--
Eugeni Dodonov
<http://eugeni.dodonov.net/>
[-- Attachment #1.2: Type: text/html, Size: 888 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: fix mode set on load pipe. (v2)
2012-02-23 15:33 [PATCH] drm/i915: fix mode set on load pipe. (v2) Dave Airlie
2012-02-23 15:54 ` Eugeni Dodonov
@ 2012-02-23 15:56 ` Chris Wilson
2012-02-23 16:08 ` Jesse Barnes
1 sibling, 1 reply; 5+ messages in thread
From: Chris Wilson @ 2012-02-23 15:56 UTC (permalink / raw)
To: Dave Airlie, intel-gfx
On Thu, 23 Feb 2012 15:33:40 +0000, Dave Airlie <airlied@gmail.com> wrote:
> From: Dave Airlie <airlied@redhat.com>
>
> Booted my i965 machine and it started printing the unsupported pixel
> format of 0 message (once I added content to it).
>
> Oh looksie here, we pass 0. fix.
>
> v2: compile it.
>
> Signed-off-by: Dave Airlie <airlied@redhat.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=45966
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
--
Chris Wilson, Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915: fix mode set on load pipe. (v2)
2012-02-23 15:56 ` Chris Wilson
@ 2012-02-23 16:08 ` Jesse Barnes
0 siblings, 0 replies; 5+ messages in thread
From: Jesse Barnes @ 2012-02-23 16:08 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 760 bytes --]
On Thu, 23 Feb 2012 15:56:52 +0000
Chris Wilson <chris@chris-wilson.co.uk> wrote:
> On Thu, 23 Feb 2012 15:33:40 +0000, Dave Airlie <airlied@gmail.com> wrote:
> > From: Dave Airlie <airlied@redhat.com>
> >
> > Booted my i965 machine and it started printing the unsupported pixel
> > format of 0 message (once I added content to it).
> >
> > Oh looksie here, we pass 0. fix.
> >
> > v2: compile it.
> >
> > Signed-off-by: Dave Airlie <airlied@redhat.com>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=45966
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Pushed to drm-intel-fixes, thanks. We actually caught this bug last
week, but I never merged the fix...
--
Jesse Barnes, Intel Open Source Technology Center
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-02-23 16:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-23 15:33 [PATCH] drm/i915: fix mode set on load pipe. (v2) Dave Airlie
2012-02-23 15:54 ` Eugeni Dodonov
2012-02-23 15:57 ` Daniel Vetter
2012-02-23 15:56 ` Chris Wilson
2012-02-23 16:08 ` Jesse Barnes
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.