From: Sean Paul <sean@poorly.run>
To: Fritz Koenig <frkoenig@google.com>
Cc: sean@poorly.run, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 1/5] drm/msm/dpu: Remove unused format tables.
Date: Wed, 12 Dec 2018 11:05:33 -0500 [thread overview]
Message-ID: <20181212160533.GF154160@art_vandelay> (raw)
In-Reply-To: <20181211184224.131478-1-frkoenig@google.com>
On Tue, Dec 11, 2018 at 10:42:20AM -0800, Fritz Koenig wrote:
> Signed-off-by: Fritz Koenig <frkoenig@google.com>
In future, can you please cc freedreno@lists.freedesktop.org and
linux-arm-msm@vger.kernel.org on msm patches?
Reviewed-by: Sean Paul <sean@poorly.run>
> ---
> .../drm/msm/disp/dpu1/dpu_hw_catalog_format.h | 73 -------------------
> 1 file changed, 73 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog_format.h b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog_format.h
> index 3c9f028628ef..c37ba38ac83d 100644
> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog_format.h
> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog_format.h
> @@ -93,76 +93,3 @@ static const struct dpu_format_extended plane_formats_yuv[] = {
> {DRM_FORMAT_YVU420, 0},
> {0, 0},
> };
> -
> -static const struct dpu_format_extended cursor_formats[] = {
> - {DRM_FORMAT_ARGB8888, 0},
> - {DRM_FORMAT_ABGR8888, 0},
> - {DRM_FORMAT_RGBA8888, 0},
> - {DRM_FORMAT_BGRA8888, 0},
> - {DRM_FORMAT_XRGB8888, 0},
> - {DRM_FORMAT_ARGB1555, 0},
> - {DRM_FORMAT_ABGR1555, 0},
> - {DRM_FORMAT_RGBA5551, 0},
> - {DRM_FORMAT_BGRA5551, 0},
> - {DRM_FORMAT_ARGB4444, 0},
> - {DRM_FORMAT_ABGR4444, 0},
> - {DRM_FORMAT_RGBA4444, 0},
> - {DRM_FORMAT_BGRA4444, 0},
> - {0, 0},
> -};
> -
> -static const struct dpu_format_extended wb2_formats[] = {
> - {DRM_FORMAT_RGB565, 0},
> - {DRM_FORMAT_BGR565, DRM_FORMAT_MOD_QCOM_COMPRESSED},
> - {DRM_FORMAT_RGB888, 0},
> - {DRM_FORMAT_ARGB8888, 0},
> - {DRM_FORMAT_RGBA8888, 0},
> - {DRM_FORMAT_ABGR8888, DRM_FORMAT_MOD_QCOM_COMPRESSED},
> - {DRM_FORMAT_XRGB8888, 0},
> - {DRM_FORMAT_RGBX8888, 0},
> - {DRM_FORMAT_XBGR8888, DRM_FORMAT_MOD_QCOM_COMPRESSED},
> - {DRM_FORMAT_ARGB1555, 0},
> - {DRM_FORMAT_RGBA5551, 0},
> - {DRM_FORMAT_XRGB1555, 0},
> - {DRM_FORMAT_RGBX5551, 0},
> - {DRM_FORMAT_ARGB4444, 0},
> - {DRM_FORMAT_RGBA4444, 0},
> - {DRM_FORMAT_RGBX4444, 0},
> - {DRM_FORMAT_XRGB4444, 0},
> -
> - {DRM_FORMAT_BGR565, 0},
> - {DRM_FORMAT_BGR888, 0},
> - {DRM_FORMAT_ABGR8888, 0},
> - {DRM_FORMAT_BGRA8888, 0},
> - {DRM_FORMAT_BGRX8888, 0},
> - {DRM_FORMAT_XBGR8888, 0},
> - {DRM_FORMAT_ABGR1555, 0},
> - {DRM_FORMAT_BGRA5551, 0},
> - {DRM_FORMAT_XBGR1555, 0},
> - {DRM_FORMAT_BGRX5551, 0},
> - {DRM_FORMAT_ABGR4444, 0},
> - {DRM_FORMAT_BGRA4444, 0},
> - {DRM_FORMAT_BGRX4444, 0},
> - {DRM_FORMAT_XBGR4444, 0},
> -
> - {DRM_FORMAT_YUV420, 0},
> - {DRM_FORMAT_NV12, 0},
> - {DRM_FORMAT_NV12, DRM_FORMAT_MOD_QCOM_COMPRESSED},
> - {DRM_FORMAT_NV16, 0},
> - {DRM_FORMAT_YUYV, 0},
> -
> - {0, 0},
> -};
> -
> -static const struct dpu_format_extended rgb_10bit_formats[] = {
> - {DRM_FORMAT_BGRA1010102, 0},
> - {DRM_FORMAT_BGRX1010102, 0},
> - {DRM_FORMAT_RGBA1010102, 0},
> - {DRM_FORMAT_RGBX1010102, 0},
> - {DRM_FORMAT_ABGR2101010, 0},
> - {DRM_FORMAT_ABGR2101010, DRM_FORMAT_MOD_QCOM_COMPRESSED},
> - {DRM_FORMAT_XBGR2101010, 0},
> - {DRM_FORMAT_XBGR2101010, DRM_FORMAT_MOD_QCOM_COMPRESSED},
> - {DRM_FORMAT_ARGB2101010, 0},
> - {DRM_FORMAT_XRGB2101010, 0},
> -};
> --
> 2.20.0.rc2.403.gdbc3b29805-goog
>
--
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
prev parent reply other threads:[~2018-12-12 16:05 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-11 18:42 [PATCH 1/5] drm/msm/dpu: Remove unused format tables Fritz Koenig
2018-12-11 18:42 ` [PATCH 2/5] drm/msm/dpu: Use simple list for plane format init Fritz Koenig
2018-12-12 16:08 ` Sean Paul
2018-12-11 18:42 ` [PATCH 3/5] drm/msm/dpu: Plane helper for modifiers Fritz Koenig
2018-12-12 16:11 ` Sean Paul
2018-12-11 18:42 ` [PATCH 4/5] drm/msm/dpu: Initialize supported modifiers Fritz Koenig
2018-12-12 16:12 ` Sean Paul
2018-12-12 18:02 ` Fritz Koenig
2018-12-12 20:35 ` Sean Paul
2018-12-11 18:42 ` [PATCH 5/5] drm/msm/dpu: Correct initialization of modifiers Fritz Koenig
2018-12-12 16:13 ` Sean Paul
2018-12-12 16:05 ` Sean Paul [this message]
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=20181212160533.GF154160@art_vandelay \
--to=sean@poorly.run \
--cc=dri-devel@lists.freedesktop.org \
--cc=frkoenig@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