public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: "Andy Yan" <andyshrk@163.com>
To: "Heiko Stübner" <heiko@sntech.de>
Cc: hjc@rock-chips.com, andy.yan@rock-chips.com,
	 maarten.lankhorst@linux.intel.com, mripard@kernel.org,
	 tzimmermann@suse.de, airlied@gmail.com, simona@ffwll.ch,
	 dri-devel@lists.freedesktop.org,
	 linux-arm-kernel@lists.infradead.org,
	 linux-rockchip@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	 "Piotr Zalewski" <pZ010001011111@proton.me>,
	 skhan@linuxfoundation.org, "Daniel Stone" <daniel@fooishbar.org>,
	 "Dragan Simic" <dsimic@manjaro.org>,
	 "Diederik de Haas" <didi.debian@cknow.org>
Subject: Re:Re: [PATCH v7] rockchip/drm: vop2: add support for gamma LUT
Date: Thu, 5 Dec 2024 20:53:25 +0800 (CST)	[thread overview]
Message-ID: <7877dddf.b3b8.19396e1df66.Coremail.andyshrk@163.com> (raw)
In-Reply-To: <12938960.VsHLxoZxqI@diego>


Hi Piotr,

At 2024-12-05 16:54:09, "Heiko Stübner" <heiko@sntech.de> wrote:
>Hi Piotr,
>
>Am Mittwoch, 4. Dezember 2024, 16:45:21 CET schrieb Piotr Zalewski:
>> I just noticed that after coming out of suspend gamma LUT is lost and must
>> be rewritten by userspace.
>> 
>> So I guess it will be needed to save LUT to a buffer and rewrite it after
>> going out of suspend during modeset?
>
>Most likely ... the old vop does this already too, so I guess you can
>get inspiration from there. (gamma_set call in vop_crtc_atomic_enable())

I guess it returned because crtc_state->color_mgmt_changed is false when called from 
vop2_crtc_atomic_enable from s2r.


static void vop2_crtc_atomic_try_set_gamma(struct vop2 *vop2,
                                           struct vop2_video_port *vp,
                                           struct drm_crtc *crtc,
                                           struct drm_crtc_state *crtc_state)
{
        if (!vop2->lut_regs || !crtc_state->color_mgmt_changed)
                return;

        if (!crtc_state->gamma_lut) {
                vop2_vp_dsp_lut_disable(vp);
                return;
        }

        if (vop2_supports_seamless_gamma_lut_update(vop2))
                vop2_crtc_atomic_set_gamma_seamless(vop2, vp, crtc);
        else
                vop2_crtc_atomic_set_gamma_rk356x(vop2, vp, crtc);
}
>
>> I checked the patch isn't yet in the "official" linux-next.
>
>The patch is in drm-misc-next:
>https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/4f537776340dab2b680a4d8554567f6884240d0b
>
>so should turn up in linux-next at some point. This also means, please
>provide a follow-up patch for the suspend handling.
>
>Thanks a lot
>Heiko
>

  reply	other threads:[~2024-12-05 12:58 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-01 19:01 [PATCH v7] rockchip/drm: vop2: add support for gamma LUT Piotr Zalewski
2024-11-05 12:30 ` Andy Yan
2024-11-09 22:51 ` [PATCH " Heiko Stuebner
2024-12-04 15:45 ` Piotr Zalewski
2024-12-05  8:54   ` Heiko Stübner
2024-12-05 12:53     ` Andy Yan [this message]
2024-12-05 18:58       ` Piotr Zalewski

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=7877dddf.b3b8.19396e1df66.Coremail.andyshrk@163.com \
    --to=andyshrk@163.com \
    --cc=airlied@gmail.com \
    --cc=andy.yan@rock-chips.com \
    --cc=daniel@fooishbar.org \
    --cc=didi.debian@cknow.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=dsimic@manjaro.org \
    --cc=heiko@sntech.de \
    --cc=hjc@rock-chips.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=pZ010001011111@proton.me \
    --cc=simona@ffwll.ch \
    --cc=skhan@linuxfoundation.org \
    --cc=tzimmermann@suse.de \
    /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