From: Joonyoung Shim <jy0922.shim@samsung.com>
To: Gustavo Padovan <gustavo@padovan.org>, linux-samsung-soc@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org, inki.dae@samsung.com,
Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Subject: Re: [PATCH 3/3] drm/exynos: enable/disable blend based on pixel format
Date: Fri, 17 Apr 2015 15:16:50 +0900 [thread overview]
Message-ID: <5530A552.7060600@samsung.com> (raw)
In-Reply-To: <1426775270-31137-3-git-send-email-gustavo@padovan.org>
Hi Gustavo,
On 03/19/2015 11:27 PM, Gustavo Padovan wrote:
> From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
>
> Change the switch to use the pixel_format instead of bpp to figure out
> if we need to enable or disable the layer blending.
>
The default concept is ok about enable or disable of pixel blending
feature by pixel_format, but it will make to possible blending with
background layer. I'm not sure whether it's proper or not.
Thanks.
> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
> ---
> drivers/gpu/drm/exynos/exynos_mixer.c | 29 +++++++++++++++++++++++++----
> 1 file changed, 25 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mixer.c
> index 7aff88f..0c54098 100644
> --- a/drivers/gpu/drm/exynos/exynos_mixer.c
> +++ b/drivers/gpu/drm/exynos/exynos_mixer.c
> @@ -529,7 +529,7 @@ static void mixer_graph_buffer(struct mixer_context *ctx, int win)
> unsigned int x_ratio, y_ratio;
> unsigned int src_x_offset, src_y_offset, dst_x_offset, dst_y_offset;
> dma_addr_t dma_addr;
> - unsigned int fmt;
> + unsigned int fmt, blend;
> u32 val;
>
> win_data = &ctx->win_data[win];
> @@ -539,15 +539,26 @@ static void mixer_graph_buffer(struct mixer_context *ctx, int win)
> #define ARGB4444 6
> #define ARGB8888 7
>
> - switch (win_data->bpp) {
> - case 16:
> + switch (win_data->pixel_format) {
> + case DRM_FORMAT_ARGB4444:
> fmt = ARGB4444;
> + blend = 1;
> break;
> - case 32:
> +
> + case DRM_FORMAT_ARGB8888:
> + fmt = ARGB8888;
> + blend = 1;
> + break;
> +
> + case DRM_FORMAT_XRGB8888:
> fmt = ARGB8888;
> + blend = 0;
> break;
> +
> default:
> fmt = ARGB8888;
> + blend = 0;
> + break;
> }
>
> if (win_data->crtc_width != win_data->src_width ||
> @@ -586,6 +597,16 @@ static void mixer_graph_buffer(struct mixer_context *ctx, int win)
> mixer_reg_write(res, MXR_GRAPHIC_SPAN(win),
> win_data->fb_pitch / (win_data->bpp >> 3));
>
> + if (blend) {
> + val = MXR_GRP_CFG_BLEND_PRE_MUL;
> + val |= MXR_GRP_CFG_PIXEL_BLEND_EN;
> + } else {
> + val = 0;
> + }
> + mixer_reg_writemask(res, MXR_GRAPHIC_CFG(win), val,
> + MXR_GRP_CFG_BLEND_PRE_MUL
> + | MXR_GRP_CFG_PIXEL_BLEND_EN);
> +
> /* setup display size */
> if (ctx->mxr_ver == MXR_VER_128_0_0_184 &&
> win == MIXER_DEFAULT_WIN) {
>
next prev parent reply other threads:[~2015-04-17 6:16 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-19 14:27 [PATCH 1/3] drm/exynos: don't commit if plane scaling is required Gustavo Padovan
2015-03-19 14:27 ` [PATCH 2/3] drm/exynos: reset temporary value after write to register Gustavo Padovan
2015-04-17 5:49 ` Joonyoung Shim
2015-03-19 14:27 ` [PATCH 3/3] drm/exynos: enable/disable blend based on pixel format Gustavo Padovan
2015-04-17 6:16 ` Joonyoung Shim [this message]
[not found] ` <trinity-82a40b8e-a2bb-425f-a1c6-15696573bf32-1429273719156@3capp-gmx-bs40>
2015-04-17 12:31 ` Fw: " Tobias Jakobi
2015-04-17 12:55 ` Tobias Jakobi
2015-04-17 13:07 ` Ville Syrjälä
2015-03-19 23:11 ` [PATCH 1/3] drm/exynos: don't commit if plane scaling is required Tobias Jakobi
2015-03-25 23:19 ` Tobias Jakobi
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=5530A552.7060600@samsung.com \
--to=jy0922.shim@samsung.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=gustavo.padovan@collabora.co.uk \
--cc=gustavo@padovan.org \
--cc=inki.dae@samsung.com \
--cc=linux-samsung-soc@vger.kernel.org \
/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