1. 31 5月, 2012 1 次提交
  2. 20 5月, 2012 1 次提交
  3. 22 4月, 2012 1 次提交
  4. 18 4月, 2012 1 次提交
  5. 10 4月, 2012 1 次提交
  6. 28 3月, 2012 1 次提交
    • D
      drm/i915/intel_i2c: refactor using intel_gmbus_get_adapter · 3bd7d909
      Daniel Kurtz 提交于
      Instead of letting other modules directly access the ->gmbus array,
      introduce intel_gmbus_get_adapter() for looking up an i2c_adapter
      for a given gmbus port identifier.  This will enable later refactoring
      of the gmbus port list.
      
      Note: Before requesting an adapter for a given gmbus port number, the
      driver must first check its validity using i2c_intel_gmbus_is_port_valid().
      If this check fails, a call to intel_gmbus_get_adapter() will WARN_ON and
      return NULL.  This is relevant for parts of the driver that read a port
      from VBIOS, which might be improperly initialized and contain an invalid
      port.  In these cases, the driver must fall back to using a safer default
      port.
      Signed-off-by: NDaniel Kurtz <djkurtz@chromium.org>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      3bd7d909
  7. 11 2月, 2012 1 次提交
  8. 13 1月, 2012 1 次提交
  9. 21 10月, 2011 1 次提交
  10. 20 9月, 2011 1 次提交
  11. 05 6月, 2011 1 次提交
  12. 11 5月, 2011 2 次提交
  13. 06 4月, 2011 1 次提交
  14. 08 2月, 2011 1 次提交
  15. 26 1月, 2011 1 次提交
  16. 12 1月, 2011 1 次提交
    • D
      drm/i915/crt: Check for a analog monitor in case of DVI-I · f5afcd3d
      David Müller 提交于
      Since Linux 2.6.36 the digital output on my system (855GME + DVI-I) is
      not working any longer. The analog output is always activated
      regardless of the type of monitor attached.
      
      The culprit seems to be intel_crt_detect_ddc(), which returns true as
      soon as an ACK from the EDID device is received. Obviously this
      approach does not work with DVI-I where the analog and digital outputs
      share a common DDC bus.
      
      In a similar manner to the shared DDC wire, ala the "Mac Mini Hack", we
      need an additional check to make sure that there really is an analog
      device attached to the DDC.
      Signed-off-by: NDavid Müller <d.mueller@elsoft.ch>
      Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
      Cc: stable@kernel.org
      f5afcd3d
  17. 19 11月, 2010 4 次提交
  18. 08 10月, 2010 1 次提交
  19. 23 9月, 2010 1 次提交
  20. 21 9月, 2010 1 次提交
  21. 18 9月, 2010 1 次提交
    • C
      drm/i915: use GMBUS to manage i2c links · f899fc64
      Chris Wilson 提交于
      Use the GMBUS interface rather than direct bit banging to grab the EDID
      over DDC (and for other forms of auxiliary communication with external
      display controllers). The hope is that this method will be much faster
      and more reliable than bit banging for fetching EDIDs from buggy monitors
      or through switches, though we still preserve the bit banging as a
      fallback in case GMBUS fails.
      
      Based on an original patch by Jesse Barnes.
      
      Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
      Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
      f899fc64
  22. 17 9月, 2010 1 次提交
  23. 15 9月, 2010 2 次提交
  24. 14 9月, 2010 1 次提交
  25. 13 9月, 2010 1 次提交
  26. 10 9月, 2010 2 次提交
  27. 08 9月, 2010 2 次提交
  28. 22 8月, 2010 2 次提交
  29. 10 8月, 2010 2 次提交
  30. 02 7月, 2010 1 次提交
    • A
      drm/i915: Fix CRT hotplug regression in 2.6.35-rc1 · 2d1c9752
      Andy Lutomirski 提交于
      Commit 7a772c49 has two bugs which
      made the hotplug problems on my laptop worse instead of better.
      
      First, it did not, in fact, disable the CRT plug interrupt -- it
      disabled all the other hotplug interrupts.  It seems rather doubtful
      that that bit of the patch fixed anything, so let's just remove it.
      (If you want to add it back, you probably meant ~CRT_HOTPLUG_INT_EN.)
      
      Second, on at least my GM45, setting CRT_HOTPLUG_ACTIVATION_PERIOD_64
      and CRT_HOTPLUG_VOLTAGE_COMPARE_50 (when they were previously unset)
      causes a hotplug interrupt about three seconds later.  The old code
      never restored PORT_HOTPLUG_EN so this could only happen once, but
      they new code restores those registers.  So just set those bits when
      we set up the interrupt in the first place.
      Signed-off-by: NAndy Lutomirski <luto@mit.edu>
      Signed-off-by: NEric Anholt <eric@anholt.net>
      2d1c9752
  31. 27 5月, 2010 1 次提交