* [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2
@ 2011-07-27 12:03 Michel Alexandre Salim
2011-07-27 12:12 ` Michel Alexandre Salim
0 siblings, 1 reply; 4+ messages in thread
From: Michel Alexandre Salim @ 2011-07-27 12:03 UTC (permalink / raw)
To: Chris Wilson, Intel graphics; +Cc: linux-kernel, DRI devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Using the new quirk added to support disabling SSC on Lenovo U160
(#36656, commit 435793dfb8aec7b2e19f72d5bce8a22fd0b57839), also register
the Vaio as a special case and disable SSC for it.
This patch fixes #34437 on fdo bugzilla:
https://bugs.freedesktop.org/show_bug.cgi?id=34437
- ---
drivers/gpu/drm/i915/intel_display.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_display.c
b/drivers/gpu/drm/i915/intel_display.c
index 0f1c799..11eb831 100644
- --- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -7851,6 +7851,9 @@ struct intel_quirk intel_quirks[] = {
/* Lenovo U160 cannot use SSC on LVDS */
{ 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
+
+ /* Sony Vaio Y cannot use SSC on LVDS */
+ { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
};
static void intel_init_quirks(struct drm_device *dev)
- --
1.7.6
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk4v/oUACgkQNd069XiIR3gZFgCfTcZBgVMmPfo5l2/Xxstl82fj
05QAn3lbi1rNHjhbfgwdURV8oLgfQrZK
=ghae
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2
2011-07-27 12:03 [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2 Michel Alexandre Salim
@ 2011-07-27 12:12 ` Michel Alexandre Salim
0 siblings, 0 replies; 4+ messages in thread
From: Michel Alexandre Salim @ 2011-07-27 12:12 UTC (permalink / raw)
To: Chris Wilson, Intel graphics; +Cc: linux-kernel, DRI devel
[-- Attachment #1: Type: text/plain, Size: 886 bytes --]
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 07/27/2011 02:03 PM, Michel Alexandre Salim wrote:
> Using the new quirk added to support disabling SSC on Lenovo U160
> (#36656, commit 435793dfb8aec7b2e19f72d5bce8a22fd0b57839), also
> register the Vaio as a special case and disable SSC for it.
>
Apologies; Thunderbird mangled the patch. I'm attaching it to make sure
it arrives intact.
- --
Michel Alexandre Salim
µblog: http://identi.ca/hircus
http://twitter.com/hircus
GPG key ID: 78884778
() ascii ribbon campaign - against html e-mail
/\ www.asciiribbon.org - against proprietary attachments
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk4wAJ4ACgkQNd069XiIR3gN3QCfehYUPl1e46D/0fahZkwwMOyp
i7AAnRhqEZOVfigArWU00dS+tr4HMOvC
=Y243
-----END PGP SIGNATURE-----
[-- Attachment #2: 0001-drm-i915-Add-quirk-to-disable-SSC-on-Sony-Vaio-Y2.patch --]
[-- Type: text/plain, Size: 1160 bytes --]
>From dc5ed070efda5e4d3c8aed79f9b3e2c97c489fcb Mon Sep 17 00:00:00 2001
From: Michel Alexandre Salim <salimma@fedoraproject.org>
Date: Wed, 27 Jul 2011 10:08:25 +0200
Subject: [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2
Using the new quirk added to support disabling SSC on Lenovo U160
(#36656, commit 435793dfb8aec7b2e19f72d5bce8a22fd0b57839), also register
the Vaio as a special case and disable SSC for it.
This patch fixes #34437 on fdo bugzilla:
https://bugs.freedesktop.org/show_bug.cgi?id=34437
---
drivers/gpu/drm/i915/intel_display.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 0f1c799..11eb831 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -7851,6 +7851,9 @@ struct intel_quirk intel_quirks[] = {
/* Lenovo U160 cannot use SSC on LVDS */
{ 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
+
+ /* Sony Vaio Y cannot use SSC on LVDS */
+ { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
};
static void intel_init_quirks(struct drm_device *dev)
--
1.7.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2
@ 2011-07-28 16:52 ` Michel Alexandre Salim
0 siblings, 0 replies; 4+ messages in thread
From: Michel Alexandre Salim @ 2011-07-28 16:52 UTC (permalink / raw)
To: intel-gfx; +Cc: Jesse Barnes, Keith Packard, linux-kernel
Using the new quirk added to support disabling SSC on Lenovo U160
(#36656, commit 435793dfb8aec7b2e19f72d5bce8a22fd0b57839), also register
the Vaio as a special case and disable SSC for it.
This patch fixes #34437 on fdo bugzilla:
https://bugs.freedesktop.org/show_bug.cgi?id=34437
Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
---
drivers/gpu/drm/i915/intel_display.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 0f1c799..11eb831 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -7851,6 +7851,9 @@ struct intel_quirk intel_quirks[] = {
/* Lenovo U160 cannot use SSC on LVDS */
{ 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
+
+ /* Sony Vaio Y cannot use SSC on LVDS */
+ { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
};
static void intel_init_quirks(struct drm_device *dev)
--
1.7.6
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2
@ 2011-07-28 16:52 ` Michel Alexandre Salim
0 siblings, 0 replies; 4+ messages in thread
From: Michel Alexandre Salim @ 2011-07-28 16:52 UTC (permalink / raw)
To: intel-gfx; +Cc: linux-kernel
Using the new quirk added to support disabling SSC on Lenovo U160
(#36656, commit 435793dfb8aec7b2e19f72d5bce8a22fd0b57839), also register
the Vaio as a special case and disable SSC for it.
This patch fixes #34437 on fdo bugzilla:
https://bugs.freedesktop.org/show_bug.cgi?id=34437
Signed-off-by: Michel Alexandre Salim <salimma@fedoraproject.org>
---
drivers/gpu/drm/i915/intel_display.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 0f1c799..11eb831 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -7851,6 +7851,9 @@ struct intel_quirk intel_quirks[] = {
/* Lenovo U160 cannot use SSC on LVDS */
{ 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
+
+ /* Sony Vaio Y cannot use SSC on LVDS */
+ { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
};
static void intel_init_quirks(struct drm_device *dev)
--
1.7.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-07-28 16:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-27 12:03 [PATCH] drm/i915: Add quirk to disable SSC on Sony Vaio Y2 Michel Alexandre Salim
2011-07-27 12:12 ` Michel Alexandre Salim
-- strict thread matches above, loose matches on Subject: below --
2011-07-28 16:52 Michel Alexandre Salim
2011-07-28 16:52 ` Michel Alexandre Salim
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.