All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: no-lvds quirk on MSI DC500
@ 2012-03-07 17:36 Anisse Astier
  2012-03-13 14:16 ` Anisse Astier
  2012-03-22 22:58 ` Chris Wilson
  0 siblings, 2 replies; 6+ messages in thread
From: Anisse Astier @ 2012-03-07 17:36 UTC (permalink / raw)
  To: dri-devel; +Cc: ajax

This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect
LVDS detection.

Cc: stable@kernel.org
Signed-off-by: Anisse Astier <anisse@astier.eu>
---
 drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
index b103c3b..2dee11e 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -739,6 +739,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"),
 		},
 	},
+	{
+		.callback = intel_no_lvds_dmi_callback,
+		.ident = "MSI Wind Box DC500",
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
+			DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
+		},
+	},
 
 	{ }	/* terminating entry */
 };
-- 
1.7.9

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915: no-lvds quirk on MSI DC500
  2012-03-07 17:36 [PATCH] drm/i915: no-lvds quirk on MSI DC500 Anisse Astier
@ 2012-03-13 14:16 ` Anisse Astier
  2012-03-22 22:12   ` Anisse Astier
  2012-03-22 22:58 ` Chris Wilson
  1 sibling, 1 reply; 6+ messages in thread
From: Anisse Astier @ 2012-03-13 14:16 UTC (permalink / raw)
  To: dri-devel; +Cc: ajax

Any opinion on this quirk ?

On Wed,  7 Mar 2012 18:36:35 +0100, Anisse Astier <anisse@astier.eu> wrote :

> This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect
> LVDS detection.
> 
> Cc: stable@kernel.org
> Signed-off-by: Anisse Astier <anisse@astier.eu>
> ---
>  drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
>  1 files changed, 8 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
> index b103c3b..2dee11e 100644
> --- a/drivers/gpu/drm/i915/intel_lvds.c
> +++ b/drivers/gpu/drm/i915/intel_lvds.c
> @@ -739,6 +739,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
>  			DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"),
>  		},
>  	},
> +	{
> +		.callback = intel_no_lvds_dmi_callback,
> +		.ident = "MSI Wind Box DC500",
> +		.matches = {
> +			DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
> +			DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
> +		},
> +	},
>  
>  	{ }	/* terminating entry */
>  };

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915: no-lvds quirk on MSI DC500
  2012-03-13 14:16 ` Anisse Astier
@ 2012-03-22 22:12   ` Anisse Astier
  2012-03-28 18:43     ` Jesse Barnes
  0 siblings, 1 reply; 6+ messages in thread
From: Anisse Astier @ 2012-03-22 22:12 UTC (permalink / raw)
  To: dri-devel; +Cc: ajax, Daniel Vetter

Hi again,

Could anyone have a look at this ?

On Tue, Mar 13, 2012 at 3:16 PM, Anisse Astier <anisse@astier.eu> wrote:
>
> Any opinion on this quirk ?
>
> On Wed,  7 Mar 2012 18:36:35 +0100, Anisse Astier <anisse@astier.eu> wrote
> :
>
> > This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect
> > LVDS detection.
> >
> > Cc: stable@kernel.org
> > Signed-off-by: Anisse Astier <anisse@astier.eu>
> > ---
> >  drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
> >  1 files changed, 8 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_lvds.c
> > b/drivers/gpu/drm/i915/intel_lvds.c
> > index b103c3b..2dee11e 100644
> > --- a/drivers/gpu/drm/i915/intel_lvds.c
> > +++ b/drivers/gpu/drm/i915/intel_lvds.c
> > @@ -739,6 +739,14 @@ static const struct dmi_system_id intel_no_lvds[] =
> > {
> >                       DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"),
> >               },
> >       },
> > +     {
> > +             .callback = intel_no_lvds_dmi_callback,
> > +             .ident = "MSI Wind Box DC500",
> > +             .matches = {
> > +                     DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR
> > INTERNATIONAL CO., LTD"),
> > +                     DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
> > +             },
> > +     },
> >
> >       { }     /* terminating entry */
> >  };

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915: no-lvds quirk on MSI DC500
  2012-03-07 17:36 [PATCH] drm/i915: no-lvds quirk on MSI DC500 Anisse Astier
  2012-03-13 14:16 ` Anisse Astier
@ 2012-03-22 22:58 ` Chris Wilson
  1 sibling, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2012-03-22 22:58 UTC (permalink / raw)
  To: Anisse Astier, dri-devel; +Cc: ajax

On Wed,  7 Mar 2012 18:36:35 +0100, Anisse Astier <anisse@astier.eu> wrote:
> This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect
> LVDS detection.
> 
> Cc: stable@kernel.org
> Signed-off-by: Anisse Astier <anisse@astier.eu>
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>

*sigh*
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915: no-lvds quirk on MSI DC500
  2012-03-22 22:12   ` Anisse Astier
@ 2012-03-28 18:43     ` Jesse Barnes
  2012-03-28 20:01       ` Daniel Vetter
  0 siblings, 1 reply; 6+ messages in thread
From: Jesse Barnes @ 2012-03-28 18:43 UTC (permalink / raw)
  To: Anisse Astier; +Cc: ajax, Daniel Vetter, dri-devel, Eric


[-- Attachment #1.1: Type: text/plain, Size: 1706 bytes --]

Fine with me.

Daniel?

On Thu, 22 Mar 2012 23:12:38 +0100
Anisse Astier <anisse@astier.eu> wrote:

> Hi again,
> 
> Could anyone have a look at this ?
> 
> On Tue, Mar 13, 2012 at 3:16 PM, Anisse Astier <anisse@astier.eu> wrote:
> >
> > Any opinion on this quirk ?
> >
> > On Wed,  7 Mar 2012 18:36:35 +0100, Anisse Astier <anisse@astier.eu> wrote
> > :
> >
> > > This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect
> > > LVDS detection.
> > >
> > > Cc: stable@kernel.org
> > > Signed-off-by: Anisse Astier <anisse@astier.eu>
> > > ---
> > >  drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
> > >  1 files changed, 8 insertions(+), 0 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/intel_lvds.c
> > > b/drivers/gpu/drm/i915/intel_lvds.c
> > > index b103c3b..2dee11e 100644
> > > --- a/drivers/gpu/drm/i915/intel_lvds.c
> > > +++ b/drivers/gpu/drm/i915/intel_lvds.c
> > > @@ -739,6 +739,14 @@ static const struct dmi_system_id intel_no_lvds[] =
> > > {
> > >                       DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"),
> > >               },
> > >       },
> > > +     {
> > > +             .callback = intel_no_lvds_dmi_callback,
> > > +             .ident = "MSI Wind Box DC500",
> > > +             .matches = {
> > > +                     DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR
> > > INTERNATIONAL CO., LTD"),
> > > +                     DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
> > > +             },
> > > +     },
> > >
> > >       { }     /* terminating entry */
> > >  };
> 


-- 
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 --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] drm/i915: no-lvds quirk on MSI DC500
  2012-03-28 18:43     ` Jesse Barnes
@ 2012-03-28 20:01       ` Daniel Vetter
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Vetter @ 2012-03-28 20:01 UTC (permalink / raw)
  To: Jesse Barnes, Keith Packard; +Cc: ajax, Daniel Vetter, dri-devel

On Wed, Mar 28, 2012 at 11:43:23AM -0700, Jesse Barnes wrote:
> Fine with me.
> 
> Daniel?

Contrary to the other quirks I've queued up for 3.5 this one is
standalone, i.e. imo -fixes material.

Keith?

> 
> On Thu, 22 Mar 2012 23:12:38 +0100
> Anisse Astier <anisse@astier.eu> wrote:
> 
> > Hi again,
> > 
> > Could anyone have a look at this ?
> > 
> > On Tue, Mar 13, 2012 at 3:16 PM, Anisse Astier <anisse@astier.eu> wrote:
> > >
> > > Any opinion on this quirk ?
> > >
> > > On Wed,  7 Mar 2012 18:36:35 +0100, Anisse Astier <anisse@astier.eu> wrote
> > > :
> > >
> > > > This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect
> > > > LVDS detection.
> > > >
> > > > Cc: stable@kernel.org
> > > > Signed-off-by: Anisse Astier <anisse@astier.eu>
> > > > ---
> > > >  drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
> > > >  1 files changed, 8 insertions(+), 0 deletions(-)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/intel_lvds.c
> > > > b/drivers/gpu/drm/i915/intel_lvds.c
> > > > index b103c3b..2dee11e 100644
> > > > --- a/drivers/gpu/drm/i915/intel_lvds.c
> > > > +++ b/drivers/gpu/drm/i915/intel_lvds.c
> > > > @@ -739,6 +739,14 @@ static const struct dmi_system_id intel_no_lvds[] =
> > > > {
> > > >                       DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"),
> > > >               },
> > > >       },
> > > > +     {
> > > > +             .callback = intel_no_lvds_dmi_callback,
> > > > +             .ident = "MSI Wind Box DC500",
> > > > +             .matches = {
> > > > +                     DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR
> > > > INTERNATIONAL CO., LTD"),
> > > > +                     DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
> > > > +             },
> > > > +     },
> > > >
> > > >       { }     /* terminating entry */
> > > >  };
> > 
> 
> 
> -- 
> Jesse Barnes, Intel Open Source Technology Center



-- 
Daniel Vetter
Mail: daniel@ffwll.ch
Mobile: +41 (0)79 365 57 48

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-03-28 20:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-07 17:36 [PATCH] drm/i915: no-lvds quirk on MSI DC500 Anisse Astier
2012-03-13 14:16 ` Anisse Astier
2012-03-22 22:12   ` Anisse Astier
2012-03-28 18:43     ` Jesse Barnes
2012-03-28 20:01       ` Daniel Vetter
2012-03-22 22:58 ` Chris Wilson

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.