All of lore.kernel.org
 help / color / mirror / Atom feed
* [Nouveau] [PATCH v6 0/9] drm: Extract DPCD backlight helpers from i915, add support in nouveau
@ 2021-05-14 18:14 ` Lyude Paul
  0 siblings, 0 replies; 62+ messages in thread
From: Lyude Paul @ 2021-05-14 18:14 UTC (permalink / raw)
  To: intel-gfx, dri-devel, nouveau; +Cc: greg.depoire, Rajeev Nandan

This series:
* Cleans up i915's DPCD backlight code a little bit
* Extracts i915's DPCD backlight code into a set of shared DRM helpers
* Starts using those helpers in nouveau to add support to nouveau for
  DPCD backlight control

v2 series-wide changes:
* Rebase
v3 series-wide changes:
* Split up the changes to intel's backlight code into separate patches
v4 series-wide changes:
* Don't forget to actually include the patch that starts using these
  helpers in nouveau
v5 series-wide changes:
* Rebase
* Use new drm_dbg_*() logging helpers
v6 series-wide changes:
* Add a bunch of R-bs that got dropped by accident

Lyude Paul (9):
  drm/i915/dpcd_bl: Remove redundant AUX backlight frequency
    calculations
  drm/i915/dpcd_bl: Handle drm_dpcd_read/write() return values correctly
  drm/i915/dpcd_bl: Cleanup intel_dp_aux_vesa_enable_backlight() a bit
  drm/i915/dpcd_bl: Cache some backlight capabilities in
    intel_panel.backlight
  drm/i915/dpcd_bl: Move VESA backlight enabling code closer together
  drm/i915/dpcd_bl: Return early in vesa_calc_max_backlight if we can't
    read PWMGEN_BIT_COUNT
  drm/i915/dpcd_bl: Print return codes for VESA backlight failures
  drm/dp: Extract i915's eDP backlight code into DRM helpers
  drm/nouveau/kms/nv50-: Add basic DPCD backlight support for nouveau

 drivers/gpu/drm/drm_dp_helper.c               | 347 ++++++++++++++++++
 .../drm/i915/display/intel_display_types.h    |   2 +-
 .../drm/i915/display/intel_dp_aux_backlight.c | 329 ++---------------
 drivers/gpu/drm/nouveau/dispnv50/disp.c       |  28 ++
 drivers/gpu/drm/nouveau/nouveau_backlight.c   | 166 ++++++++-
 drivers/gpu/drm/nouveau/nouveau_connector.h   |   9 +-
 drivers/gpu/drm/nouveau/nouveau_encoder.h     |   1 +
 include/drm/drm_dp_helper.h                   |  48 +++
 8 files changed, 622 insertions(+), 308 deletions(-)

-- 
2.31.1

_______________________________________________
Nouveau mailing list
Nouveau@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/nouveau

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

end of thread, other threads:[~2021-06-01 19:13 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-14 18:14 [Nouveau] [PATCH v6 0/9] drm: Extract DPCD backlight helpers from i915, add support in nouveau Lyude Paul
2021-05-14 18:14 ` [Intel-gfx] " Lyude Paul
2021-05-14 18:14 ` Lyude Paul
2021-05-14 18:14 ` [PATCH v6 1/9] drm/i915/dpcd_bl: Remove redundant AUX backlight frequency calculations Lyude Paul
2021-05-14 18:14   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:14   ` Lyude Paul
2021-05-14 18:14   ` [Nouveau] " Lyude Paul
2021-05-21 20:03   ` Rodrigo Vivi
2021-05-21 20:03     ` [Intel-gfx] " Rodrigo Vivi
2021-05-21 20:03     ` Rodrigo Vivi
2021-05-21 20:03     ` [Nouveau] " Rodrigo Vivi
2021-06-01 19:13     ` Jani Nikula
2021-06-01 19:13       ` [Intel-gfx] " Jani Nikula
2021-06-01 19:13       ` Jani Nikula
2021-06-01 19:13       ` [Nouveau] " Jani Nikula
2021-05-14 18:14 ` [PATCH v6 2/9] drm/i915/dpcd_bl: Handle drm_dpcd_read/write() return values correctly Lyude Paul
2021-05-14 18:14   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:14   ` Lyude Paul
2021-05-14 18:14   ` [Nouveau] " Lyude Paul
2021-05-14 18:14 ` [PATCH v6 3/9] drm/i915/dpcd_bl: Cleanup intel_dp_aux_vesa_enable_backlight() a bit Lyude Paul
2021-05-14 18:14   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:14   ` Lyude Paul
2021-05-14 18:14   ` [Nouveau] " Lyude Paul
2021-05-14 18:14 ` [PATCH v6 4/9] drm/i915/dpcd_bl: Cache some backlight capabilities in intel_panel.backlight Lyude Paul
2021-05-14 18:14   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:14   ` Lyude Paul
2021-05-14 18:14   ` [Nouveau] " Lyude Paul
2021-05-14 18:14 ` [PATCH v6 5/9] drm/i915/dpcd_bl: Move VESA backlight enabling code closer together Lyude Paul
2021-05-14 18:14   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:14   ` Lyude Paul
2021-05-14 18:14   ` [Nouveau] " Lyude Paul
2021-05-14 18:15 ` [PATCH v6 6/9] drm/i915/dpcd_bl: Return early in vesa_calc_max_backlight if we can't read PWMGEN_BIT_COUNT Lyude Paul
2021-05-14 18:15   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:15   ` Lyude Paul
2021-05-14 18:15   ` [Nouveau] " Lyude Paul
2021-05-14 18:15 ` [PATCH v6 7/9] drm/i915/dpcd_bl: Print return codes for VESA backlight failures Lyude Paul
2021-05-14 18:15   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:15   ` Lyude Paul
2021-05-14 18:15   ` [Nouveau] " Lyude Paul
2021-05-14 18:15 ` [PATCH v6 8/9] drm/dp: Extract i915's eDP backlight code into DRM helpers Lyude Paul
2021-05-14 18:15   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:15   ` Lyude Paul
2021-05-14 18:15   ` [Nouveau] " Lyude Paul
2021-05-21 20:02   ` Rodrigo Vivi
2021-05-21 20:02     ` [Intel-gfx] " Rodrigo Vivi
2021-05-21 20:02     ` Rodrigo Vivi
2021-05-21 20:02     ` [Nouveau] " Rodrigo Vivi
2021-05-14 18:15 ` [PATCH v6 9/9] drm/nouveau/kms/nv50-: Add basic DPCD backlight support for nouveau Lyude Paul
2021-05-14 18:15   ` [Intel-gfx] " Lyude Paul
2021-05-14 18:15   ` Lyude Paul
2021-05-14 18:15   ` [Nouveau] " Lyude Paul
2021-05-14 18:32 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm: Extract DPCD backlight helpers from i915, add support in nouveau (rev8) Patchwork
2021-05-14 18:35 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-05-14 19:02 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-05-15  4:09 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-17 17:01 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm: Extract DPCD backlight helpers from i915, add support in nouveau (rev9) Patchwork
2021-05-17 17:03 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-05-17 17:31 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2021-05-18 19:41 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm: Extract DPCD backlight helpers from i915, add support in nouveau (rev10) Patchwork
2021-05-18 19:44 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-05-18 20:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-05-19 23:29 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

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.