All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Geert Uytterhoeven <geert@linux-m68k.org>,
	Javier Martinez Canillas <javierm@redhat.com>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>
Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 7/8] drm/fb-helper: Add support for DRM_FORMAT_R1
Date: Thu, 31 Aug 2023 10:57:28 +0200	[thread overview]
Message-ID: <24ba6014-ce85-9013-fa89-17a4c7fcfc21@suse.de> (raw)
In-Reply-To: <62cb6e8c7aba2a037fb3704d46f60b93d7218b90.1692888745.git.geert@linux-m68k.org>


[-- Attachment #1.1: Type: text/plain, Size: 5203 bytes --]

Hi

Am 24.08.23 um 17:08 schrieb Geert Uytterhoeven:
> Add support for the monochrome light-on-dark buffer format (R1) to the
> fb helper, so this format can be used for fbdev emulation and for the
> text console.  This avoids the overhead of using XR24 and the associated
> conversions on display hardware that supports only a simple monochrome
> format.
> 
> R1 is very similar to C1 (monochrome indexed color), and shares the same
> depth and bpp.  As drm_mode_legacy_fb_format() returns a format based on
> only depth and bpp, it cannot distinguish between R1 and C1.  Hence

Could we rather add another parameter to drm_mode_legacy_fb_format(); 
say 'bool indexed'. If set to true, it prefers _Cx formats, otherwise _Rx.

The parameter would be 'true' for most calls; except in 
drm_fb_helper_find_format(). There, we can go through the array of given 
formats and check if there's one that has is_color_indexed set. If so, 
we specify true, if not we specify false.

Best regards
Thomas

> drm_fb_helper_find_format() is modified to try to fall back to R1 if C1
> is not supported.
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
> Tested-by: Javier Martinez Canillas <javierm@redhat.com>
> ---
> v2:
>    - Add Reviewed-by, Tested-by.
> ---
>   drivers/gpu/drm/drm_fb_helper.c | 41 ++++++++++++++++++++++++---------
>   1 file changed, 30 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
> index 4dc28fdcc1e0a6a4..71baf8597516e9fd 100644
> --- a/drivers/gpu/drm/drm_fb_helper.c
> +++ b/drivers/gpu/drm/drm_fb_helper.c
> @@ -1130,7 +1130,7 @@ static void drm_fb_helper_fill_pixel_fmt(struct fb_var_screeninfo *var,
>   {
>   	u8 depth = format->depth;
>   
> -	if (format->is_color_indexed) {
> +	if (format->format == DRM_FORMAT_R1 || format->is_color_indexed) {
>   		var->red.offset = 0;
>   		var->green.offset = 0;
>   		var->blue.offset = 0;
> @@ -1236,6 +1236,7 @@ int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
>   	case DRM_FORMAT_C1:
>   	case DRM_FORMAT_C2:
>   	case DRM_FORMAT_C4:
> +	case DRM_FORMAT_R1:
>   		/* supported format with sub-byte pixels */
>   		break;
>   
> @@ -1439,12 +1440,24 @@ int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
>   }
>   EXPORT_SYMBOL(drm_fb_helper_pan_display);
>   
> +static bool is_supported_format(uint32_t format, const uint32_t *formats,
> +				size_t format_count)
> +{
> +	size_t i;
> +
> +	for (i = 0; i < format_count; ++i) {
> +		if (formats[i] == format)
> +			return true;
> +	}
> +
> +	return false;
> +}
> +
>   static uint32_t drm_fb_helper_find_format(struct drm_fb_helper *fb_helper, const uint32_t *formats,
>   					  size_t format_count, uint32_t bpp, uint32_t depth)
>   {
>   	struct drm_device *dev = fb_helper->dev;
>   	uint32_t format;
> -	size_t i;
>   
>   	/*
>   	 * Do not consider YUV or other complicated formats
> @@ -1457,10 +1470,12 @@ static uint32_t drm_fb_helper_find_format(struct drm_fb_helper *fb_helper, const
>   	if (!format)
>   		goto err;
>   
> -	for (i = 0; i < format_count; ++i) {
> -		if (formats[i] == format)
> -			return format;
> -	}
> +	if (is_supported_format(format, formats, format_count))
> +		return format;
> +
> +	if (format == DRM_FORMAT_C1 &&
> +	    is_supported_format(DRM_FORMAT_R1, formats, format_count))
> +		return DRM_FORMAT_R1;
>   
>   err:
>   	/* We found nothing. */
> @@ -1680,11 +1695,15 @@ static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper)
>   }
>   
>   static void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
> -				   bool is_color_indexed)
> +				   const struct drm_format_info *format)
>   {
>   	info->fix.type = FB_TYPE_PACKED_PIXELS;
> -	info->fix.visual = is_color_indexed ? FB_VISUAL_PSEUDOCOLOR
> -					    : FB_VISUAL_TRUECOLOR;
> +	if (format->format == DRM_FORMAT_R1)
> +		info->fix.visual = FB_VISUAL_MONO10;
> +	else if (format->is_color_indexed)
> +		info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
> +	else
> +		info->fix.visual = FB_VISUAL_TRUECOLOR;
>   	info->fix.mmio_start = 0;
>   	info->fix.mmio_len = 0;
>   	info->fix.type_aux = 0;
> @@ -1707,6 +1726,7 @@ static void drm_fb_helper_fill_var(struct fb_info *info,
>   	case DRM_FORMAT_C1:
>   	case DRM_FORMAT_C2:
>   	case DRM_FORMAT_C4:
> +	case DRM_FORMAT_R1:
>   		/* supported format with sub-byte pixels */
>   		break;
>   
> @@ -1747,8 +1767,7 @@ void drm_fb_helper_fill_info(struct fb_info *info,
>   {
>   	struct drm_framebuffer *fb = fb_helper->fb;
>   
> -	drm_fb_helper_fill_fix(info, fb->pitches[0],
> -			       fb->format->is_color_indexed);
> +	drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format);
>   	drm_fb_helper_fill_var(info, fb_helper,
>   			       sizes->fb_width, sizes->fb_height);
>   

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

  reply	other threads:[~2023-08-31  8:57 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-24 15:08 [PATCH v2 0/8] drm: fb-helper/ssd130x: Add support for DRM_FORMAT_R1 Geert Uytterhoeven
2023-08-24 15:08 ` [PATCH v2 1/8] drm/dumb-buffers: Fix drm_mode_create_dumb() for bpp < 8 Geert Uytterhoeven
2023-08-31  7:40   ` Thomas Zimmermann
2023-08-31  7:56     ` Geert Uytterhoeven
2023-08-24 15:08 ` [PATCH v2 2/8] drm/ssd130x: Fix screen clearing Geert Uytterhoeven
2023-08-29  8:40   ` Javier Martinez Canillas
2023-08-29 21:12     ` Javier Martinez Canillas
2023-08-24 15:08 ` [PATCH v2 3/8] drm/ssd130x: Use bool for ssd130x_deviceinfo flags Geert Uytterhoeven
2023-08-29  8:44   ` Javier Martinez Canillas
2023-08-29 21:16     ` Javier Martinez Canillas
2023-08-24 15:08 ` [PATCH v2 4/8] drm/ssd130x: Add support for DRM_FORMAT_R1 Geert Uytterhoeven
2023-08-29  9:01   ` Javier Martinez Canillas
2023-08-29 21:12     ` Javier Martinez Canillas
2023-08-31  8:01   ` Thomas Zimmermann
2023-08-31  8:22     ` Geert Uytterhoeven
2023-08-24 15:08 ` [PATCH v2 5/8] drm/client: Convert drm_client_buffer_addfb() to drm_mode_addfb2() Geert Uytterhoeven
2023-08-24 15:11   ` Daniel Stone
2023-08-24 15:22     ` Geert Uytterhoeven
2023-08-29  9:19       ` Javier Martinez Canillas
2023-08-31  8:15       ` Thomas Zimmermann
2023-08-24 15:08 ` [PATCH v2 6/8] drm/fb-helper: Pass buffer format via drm_fb_helper_surface_size Geert Uytterhoeven
2023-08-31  8:24   ` Thomas Zimmermann
2023-08-24 15:08 ` [PATCH v2 7/8] drm/fb-helper: Add support for DRM_FORMAT_R1 Geert Uytterhoeven
2023-08-31  8:57   ` Thomas Zimmermann [this message]
2023-08-24 15:08 ` [PATCH v2 8/8] drm/ssd130x: Switch preferred_bpp/depth to 1 Geert Uytterhoeven

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=24ba6014-ce85-9013-fa89-17a4c7fcfc21@suse.de \
    --to=tzimmermann@suse.de \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=geert@linux-m68k.org \
    --cc=javierm@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.