Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@linux.intel.com>
To: Suraj Kandpal <suraj.kandpal@intel.com>,
	intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org, nouveau@lists.freedesktop.org,
	Lyude Paul <lyude@redhat.com>
Cc: arun.r.murthy@intel.com, Suraj Kandpal <suraj.kandpal@intel.com>
Subject: Re: [PATCH 00/13] Modify drm helpers to use luminance
Date: Wed, 25 Jun 2025 12:03:08 +0300	[thread overview]
Message-ID: <4962fc123ddc84edcf02dea8d57df32088c18d5a@intel.com> (raw)
In-Reply-To: <20250620063445.3603086-1-suraj.kandpal@intel.com>

On Fri, 20 Jun 2025, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> This series modifies drm dp edp helpers so that drivers can now use them
> to manipulate brightness using luminance value via the
> PANEL_TARGET_LUMINANCE_VALUE register. This feature was
> introduced frin eDP 1.5.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>
> Suraj Kandpal (13):
>   drm/dp: Introduce new member in drm_backlight_info
>   drm/dp: Add argument in drm_edp_backlight_init
>   drm/dp: Add argument for max luminance in drm_edp_backlight_init
>   drm/dp: Move from u16 to u32 for max in drm_edp_backlight_info
>   drm/dp: Change current_level argument type to u32
>   drm/dp: Modify drm_edp_probe_state
>   drm/dp: Change argument type for drm_edp_backlight_set_level
>   drm/dp: Modify drm_edp_backlight_set_level
>   drm/dp: Change argument type of drm_edp_backlight_enable
>   drm/dp: Enable backlight control using luminance
>   drm/i915/backlight: Use drm helper to initialize edp backlight
>   drm/i915/backlight: Use drm helper to set edp backlight
>   drm/i915/backlight: Use drm_edp_backlight_enable

Acked-by: Jani Nikula <jani.nikula@intel.com>

for merging the last three patches via drm-misc.

However, would be great to solicit feedback on the series from non-Intel
folks too. Cc: Lyude who's worked on DPCD brightness before.

BR,
Jani.

>
>  drivers/gpu/drm/display/drm_dp_helper.c       |  92 ++++++++----
>  .../drm/i915/display/intel_dp_aux_backlight.c | 140 ++++++------------
>  drivers/gpu/drm/nouveau/dispnv50/disp.c       |   2 +-
>  drivers/gpu/drm/nouveau/nouveau_backlight.c   |   7 +-
>  include/drm/display/drm_dp_helper.h           |  10 +-
>  5 files changed, 127 insertions(+), 124 deletions(-)

-- 
Jani Nikula, Intel

  parent reply	other threads:[~2025-06-25  9:03 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-20  6:34 [PATCH 00/13] Modify drm helpers to use luminance Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 01/13] drm/dp: Introduce new member in drm_backlight_info Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 02/13] drm/dp: Add argument in drm_edp_backlight_init Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 03/13] drm/dp: Add argument for max luminance " Suraj Kandpal
2025-06-24  4:42   ` Murthy, Arun R
2025-06-20  6:34 ` [PATCH v3 04/13] drm/dp: Move from u16 to u32 for max in drm_edp_backlight_info Suraj Kandpal
2025-06-24  4:44   ` Murthy, Arun R
2025-06-20  6:34 ` [PATCH v3 05/13] drm/dp: Change current_level argument type to u32 Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 06/13] drm/dp: Modify drm_edp_probe_state Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 07/13] drm/dp: Change argument type for drm_edp_backlight_set_level Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 08/13] drm/dp: Modify drm_edp_backlight_set_level Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 09/13] drm/dp: Change argument type of drm_edp_backlight_enable Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 10/13] drm/dp: Enable backlight control using luminance Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 11/13] drm/i915/backlight: Use drm helper to initialize edp backlight Suraj Kandpal
2025-06-24  4:47   ` Murthy, Arun R
2025-06-24  4:52     ` Kandpal, Suraj
2025-06-24  5:01       ` Murthy, Arun R
2025-06-24  5:13         ` Kandpal, Suraj
2025-06-24  5:20         ` Kandpal, Suraj
2025-06-20  6:34 ` [PATCH v3 12/13] drm/i915/backlight: Use drm helper to set " Suraj Kandpal
2025-06-20  6:34 ` [PATCH v3 13/13] drm/i915/backlight: Use drm_edp_backlight_enable Suraj Kandpal
2025-06-20  6:48 ` ✓ CI.KUnit: success for Modify drm helpers to use luminance (rev4) Patchwork
2025-06-20  7:02 ` ✗ CI.checksparse: warning " Patchwork
2025-06-20 18:07 ` ✓ Xe.CI.Full: success " Patchwork
2025-06-25  9:03 ` Jani Nikula [this message]
2025-06-25 11:20   ` [PATCH 00/13] Modify drm helpers to use luminance Kandpal, Suraj
2025-06-30  6:58     ` Kandpal, Suraj
  -- strict thread matches above, loose matches on Subject: below --
2025-05-09  5:18 Suraj Kandpal
2025-04-14  4:16 Suraj Kandpal
2025-04-11  4:28 Suraj Kandpal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4962fc123ddc84edcf02dea8d57df32088c18d5a@intel.com \
    --to=jani.nikula@linux.intel.com \
    --cc=arun.r.murthy@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=lyude@redhat.com \
    --cc=nouveau@lists.freedesktop.org \
    --cc=suraj.kandpal@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox