Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964828AbeALO2m (ORCPT + 1 other); Fri, 12 Jan 2018 09:28:42 -0500 Received: from mga11.intel.com ([192.55.52.93]:20661 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933868AbeALO2k (ORCPT ); Fri, 12 Jan 2018 09:28:40 -0500 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,349,1511856000"; d="scan'208";a="18700252" Date: Fri, 12 Jan 2018 16:28:34 +0200 From: Ville =?iso-8859-1?Q?Syrj=E4l=E4?= To: Ayan Halder Cc: liviu.dudau@arm.com, brian.starkey@arm.com, daniel.vetter@intel.com, jani.nikula@linux.intel.com, seanpaul@chromium.org, airlied@linux.ie, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, nd@arm.com Subject: Re: [PATCH] drm: add drm_format_alpha_bits Message-ID: <20180112142834.GB10981@intel.com> References: <1515766876-14231-1-git-send-email-ayan.halder@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1515766876-14231-1-git-send-email-ayan.halder@arm.com> User-Agent: Mutt/1.7.2 (2016-11-26) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Fri, Jan 12, 2018 at 02:21:16PM +0000, Ayan Halder wrote: > drm_format_info does not describe the number of bits used for the alpha > channel. That information is useful in a central place like drm_fourcc.c > where it can be queried by the drivers that want to determine if 'alpha > blending' is to be enabled or not. > > Signed-off-by: Ayan Kumar Halder > Reviewed-by: Liviu Dudau > --- > drivers/gpu/drm/drm_fourcc.c | 154 ++++++++++++++++++++++++------------------- > include/drm/drm_fourcc.h | 3 + > 2 files changed, 89 insertions(+), 68 deletions(-) > > diff --git a/drivers/gpu/drm/drm_fourcc.c b/drivers/gpu/drm/drm_fourcc.c > index 9c0152d..073001b 100644 > --- a/drivers/gpu/drm/drm_fourcc.c > +++ b/drivers/gpu/drm/drm_fourcc.c > @@ -348,3 +348,21 @@ int drm_format_plane_height(int height, uint32_t format, int plane) > return height / info->vsub; > } > EXPORT_SYMBOL(drm_format_plane_height); > + > +/** > + * drm_format_alpha_bits - get the number of bits per pixel > + * representing alpha for format > + * @format: pixel format (DRM_FORMAT_*) > + * > + * Returns: > + * The number of bits per pixel representing alpha used by the > + * specified pixel format. > + */ > +int drm_format_alpha_bits(uint32_t format) > +{ > + const struct drm_format_info *info; > + > + info = drm_format_info(format); > + return info ? info->alpha : 0; > +} > +EXPORT_SYMBOL(drm_format_alpha_bits); Do you have an actual use for this function somewhere? > diff --git a/include/drm/drm_fourcc.h b/include/drm/drm_fourcc.h > index 6942e84..5513510 100644 > --- a/include/drm/drm_fourcc.h > +++ b/include/drm/drm_fourcc.h > @@ -38,6 +38,7 @@ struct drm_mode_fb_cmd2; > * @cpp: Number of bytes per pixel (per plane) > * @hsub: Horizontal chroma subsampling factor > * @vsub: Vertical chroma subsampling factor > + * @alpha: Number of bits per pixel representing alpha > */ > struct drm_format_info { > u32 format; > @@ -46,6 +47,7 @@ struct drm_format_info { > u8 cpp[3]; > u8 hsub; > u8 vsub; > + u8 alpha; > }; > > /** > @@ -57,6 +59,7 @@ struct drm_format_name_buf { > }; > > const struct drm_format_info *__drm_format_info(u32 format); > +int drm_format_alpha_bits(u32 format); > const struct drm_format_info *drm_format_info(u32 format); > const struct drm_format_info * > drm_get_format_info(struct drm_device *dev, > -- > 2.7.4 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel -- Ville Syrj?l? Intel OTC