Skip to content

Commit a3f28ef

Browse files
committed
Merge tag 'drm-intel-fixes-2014-01-08' of git://people.freedesktop.org/~danvet/drm-intel into drm-fixes
Just a revert (gen4 backlight seems a lost cause) and a tlb coherency fix for bdw, plus the patch to sign up Jani for co-maintainer. Thanks to Ben for taking care of -fixes while I've enjoyed a bit of vacation. * tag 'drm-intel-fixes-2014-01-08' of git://people.freedesktop.org/~danvet/drm-intel: MAINTAINERS: Updates for drm/i915 Revert "drm/i915: assume all GM45 Acer laptops use inverted backlight PWM" drm/i915/bdw: Flush system agent on gen8 also
2 parents ef350bb + 47f9564 commit a3f28ef

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

MAINTAINERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2828,8 +2828,10 @@ F: include/uapi/drm/
28282828

28292829
INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
28302830
M: Daniel Vetter <[email protected]>
2831+
M: Jani Nikula <[email protected]>
28312832
28322833
2834+
Q: http://patchwork.freedesktop.org/project/intel-gfx/
28332835
T: git git://people.freedesktop.org/~danvet/drm-intel
28342836
S: Supported
28352837
F: drivers/gpu/drm/i915/

drivers/gpu/drm/i915/i915_gem_gtt.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -906,14 +906,12 @@ static void gen8_ggtt_insert_entries(struct i915_address_space *vm,
906906
WARN_ON(readq(&gtt_entries[i-1])
907907
!= gen8_pte_encode(addr, level, true));
908908

909-
#if 0 /* TODO: Still needed on GEN8? */
910909
/* This next bit makes the above posting read even more important. We
911910
* want to flush the TLBs only after we're certain all the PTE updates
912911
* have finished.
913912
*/
914913
I915_WRITE(GFX_FLSH_CNTL_GEN6, GFX_FLSH_CNTL_EN);
915914
POSTING_READ(GFX_FLSH_CNTL_GEN6);
916-
#endif
917915
}
918916

919917
/*

drivers/gpu/drm/i915/intel_display.c

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10541,11 +10541,20 @@ static struct intel_quirk intel_quirks[] = {
1054110541
/* Sony Vaio Y cannot use SSC on LVDS */
1054210542
{ 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
1054310543

10544-
/*
10545-
* All GM45 Acer (and its brands eMachines and Packard Bell) laptops
10546-
* seem to use inverted backlight PWM.
10547-
*/
10548-
{ 0x2a42, 0x1025, PCI_ANY_ID, quirk_invert_brightness },
10544+
/* Acer Aspire 5734Z must invert backlight brightness */
10545+
{ 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
10546+
10547+
/* Acer/eMachines G725 */
10548+
{ 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
10549+
10550+
/* Acer/eMachines e725 */
10551+
{ 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
10552+
10553+
/* Acer/Packard Bell NCL20 */
10554+
{ 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
10555+
10556+
/* Acer Aspire 4736Z */
10557+
{ 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
1054910558

1055010559
/* Dell XPS13 HD Sandy Bridge */
1055110560
{ 0x0116, 0x1028, 0x052e, quirk_no_pcm_pwm_enable },

0 commit comments

Comments
 (0)