1. 23 9月, 2010 1 次提交
  2. 21 9月, 2010 1 次提交
  3. 14 9月, 2010 1 次提交
  4. 13 9月, 2010 1 次提交
  5. 12 9月, 2010 1 次提交
  6. 10 9月, 2010 2 次提交
  7. 08 9月, 2010 4 次提交
  8. 07 9月, 2010 1 次提交
  9. 22 8月, 2010 1 次提交
  10. 10 8月, 2010 1 次提交
  11. 02 8月, 2010 2 次提交
  12. 20 7月, 2010 1 次提交
  13. 20 4月, 2010 1 次提交
  14. 13 4月, 2010 2 次提交
  15. 10 4月, 2010 2 次提交
  16. 26 3月, 2010 1 次提交
    • E
      drm/i915: Rename intel_output to intel_encoder. · 21d40d37
      Eric Anholt 提交于
      The intel_output naming is inherited from the UMS code, which had a
      structure of screen -> CRTC -> output.  The DRM code has an additional
      notion of encoder/connector, so the structure is screen -> CRTC ->
      encoder -> connector.  This is a useful structure for SDVO encoders
      which can support multiple connectors (each of which requires
      different programming in the one encoder and could be connected to
      different CRTCs), or for DVI-I, where multiple encoders feed into the
      connector for whether it's used for digital or analog.  Most of our
      code is encoder-related, so transition it to talking about encoders
      before we start trying to distinguish connectors.
      
      This patch is produced by sed s/intel_output/intel_encoder/ over the
      driver.
      Signed-off-by: NEric Anholt <eric@anholt.net>
      21d40d37
  17. 08 1月, 2010 1 次提交
  18. 17 12月, 2009 1 次提交
  19. 02 12月, 2009 1 次提交
  20. 01 12月, 2009 2 次提交
  21. 06 11月, 2009 1 次提交
  22. 03 10月, 2009 1 次提交
  23. 09 9月, 2009 1 次提交
  24. 05 9月, 2009 1 次提交
  25. 25 8月, 2009 1 次提交
  26. 30 7月, 2009 1 次提交
  27. 23 6月, 2009 1 次提交
  28. 19 6月, 2009 1 次提交
  29. 05 6月, 2009 1 次提交
  30. 04 6月, 2009 1 次提交
    • K
      drm: Hook up DPMS property handling in drm_crtc.c. Add drm_helper_connector_dpms. · c9fb15f6
      Keith Packard 提交于
      Making the drm_crtc.c code recognize the DPMS property and invoke the
      connector->dpms function doesn't remove any capability from the driver while
      reducing code duplication.
      
      That just highlighted the problem with the existing DPMS functions which
      could turn off the connector, but failed to turn off any relevant crtcs. The
      new drm_helper_connector_dpms function manages all of that, using the
      drm_helper-specific crtc and encoder dpms functions, automatically computing
      the appropriate DPMS level for each object in the system.
      
      This fixes the current troubles in the i915 driver which left PLLs, pipes
      and planes running while in DPMS_OFF mode or even while they were unused.
      Signed-off-by: NKeith Packard <keithp@keithp.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      c9fb15f6
  31. 02 4月, 2009 2 次提交