From: Sean Paul <seanpaul@chromium.org>
To: Kristian Kristensen <hoegsberg@google.com>
Cc: "Kristian H. Kristensen" <hoegsberg@gmail.com>,
"Kristian H. Kristensen" <hoegsberg@chromium.org>,
DRI Development <dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH v2] drm/rockchip: Disable blending for win0
Date: Thu, 19 Apr 2018 11:46:49 -0400 [thread overview]
Message-ID: <20180419154649.GD73214@art_vandelay> (raw)
In-Reply-To: <CAOPc6T=ynvoyH5U9EUWmfDy5wSjs-v_1tqPJQOCHgCHMDKm-rA@mail.gmail.com>
On Wed, Apr 18, 2018 at 02:53:08PM -0700, Kristian Kristensen wrote:
> On Wed, Apr 18, 2018 at 11:23 AM, Sean Paul <seanpaul@chromium.org> wrote:
>
> > On Wed, Apr 18, 2018 at 10:31:52AM -0700, Kristian H. Kristensen wrote:
> > > Blending win0 with the background color doesn't seem to work
> > > correctly.
> >
> > Did you come to a conclusion about whether this applies across all Rk
> > vops, or
> > just 3399 big?
> >
>
> It didn't work on either big or little VOP on 3399, but oddly, 3288 seemed
> to work fine. Either way, what the patch is doing is correct and simpler,
> so I'm not sure it makes sense to try to be more specific about when we
> turn off blending.
Yeah, fair enough. We'll need to revisit if we ever support anything more than
pre-mult/black bg anyways, so
Reviewed-by: Sean Paul <seanpaul@chromium.org>
Sean
>
> Kristian
>
>
> > Sean
> >
> > > We only get the background color, no matter the contents of
> > > the win0 framebuffer. However, blending pre-multiplied color with the
> > > default opaque black default background color is a no-op, so we can
> > > just disable blending to get the correct result.
> > >
> > > Signed-off-by: Kristian H. Kristensen <hoegsberg@chromium.org>
> > > Cc: Sandy Huang <hjc@rock-chips.com>
> > > Cc: Sean Paul <seanpaul@chromium.org>
> > > ---
> > >
> > > v2: Drop CHROMIUM: prefix, rebase on Linus' master
> > >
> > > drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 13 ++++++++++++-
> > > 1 file changed, 12 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
> > b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
> > > index 53d4afe15278..753a7548da84 100644
> > > --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
> > > +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
> > > @@ -76,6 +76,9 @@
> > > #define VOP_WIN_GET_YRGBADDR(vop, win) \
> > > vop_readl(vop, win->base + win->phy->yrgb_mst.offset)
> > >
> > > +#define VOP_WIN_TO_INDEX(vop_win) \
> > > + ((vop_win) - (vop_win)->vop->win)
> > > +
> > > #define to_vop(x) container_of(x, struct vop, crtc)
> > > #define to_vop_win(x) container_of(x, struct vop_win, base)
> > >
> > > @@ -708,6 +711,7 @@ static void vop_plane_atomic_update(struct drm_plane
> > *plane,
> > > dma_addr_t dma_addr;
> > > uint32_t val;
> > > bool rb_swap;
> > > + int win_index = VOP_WIN_TO_INDEX(vop_win);
> > > int format;
> > >
> > > /*
> > > @@ -777,7 +781,14 @@ static void vop_plane_atomic_update(struct
> > drm_plane *plane,
> > > rb_swap = has_rb_swapped(fb->format->format);
> > > VOP_WIN_SET(vop, win, rb_swap, rb_swap);
> > >
> > > - if (fb->format->has_alpha) {
> > > + /*
> > > + * Blending win0 with the background color doesn't seem to work
> > > + * correctly. We only get the background color, no matter the
> > contents
> > > + * of the win0 framebuffer. However, blending pre-multiplied color
> > > + * with the default opaque black default background color is a
> > no-op,
> > > + * so we can just disable blending to get the correct result.
> > > + */
> > > + if (fb->format->has_alpha && win_index > 0) {
> > > VOP_WIN_SET(vop, win, dst_alpha_ctl,
> > > DST_FACTOR_M0(ALPHA_SRC_INVERSE));
> > > val = SRC_ALPHA_EN(1) | SRC_COLOR_M0(ALPHA_SRC_PRE_MUL) |
> > > --
> > > 2.17.0.484.g0c8726318c-goog
> > >
> >
> > --
> > Sean Paul, Software Engineer, Google / Chromium OS
> >
--
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2018-04-19 15:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-18 17:31 [PATCH v2] drm/rockchip: Disable blending for win0 Kristian H. Kristensen
2018-04-18 18:23 ` Sean Paul
2018-04-18 21:53 ` Kristian Kristensen
2018-04-19 15:46 ` Sean Paul [this message]
2018-05-01 20:08 ` Sean Paul
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=20180419154649.GD73214@art_vandelay \
--to=seanpaul@chromium.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=hoegsberg@chromium.org \
--cc=hoegsberg@gmail.com \
--cc=hoegsberg@google.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