mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion
@ 2022-02-23 19:37 Javier Martinez Canillas
  2022-02-23 19:40 ` Thomas Zimmermann
  2022-02-24 14:04 ` Noralf Trønnes
  0 siblings, 2 replies; 4+ messages in thread
From: Javier Martinez Canillas @ 2022-02-23 19:37 UTC (permalink / raw)
  To: linux-kernel
  Cc: Javier Martinez Canillas, Daniel Vetter, David Airlie,
	Noralf Trønnes, dri-devel

There is now a drm_fb_xrgb8888_to_mono_reversed() helper function to do
format conversion from XRGB8888 to reversed monochrome.

Use that helper and remove the open coded version in the repaper driver.

Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
---

This was only built tested because I don't have access to the hardware.

 drivers/gpu/drm/tiny/repaper.c | 24 +-----------------------
 1 file changed, 1 insertion(+), 23 deletions(-)

diff --git a/drivers/gpu/drm/tiny/repaper.c b/drivers/gpu/drm/tiny/repaper.c
index 97a775c48cea..5c74e236b16d 100644
--- a/drivers/gpu/drm/tiny/repaper.c
+++ b/drivers/gpu/drm/tiny/repaper.c
@@ -508,26 +508,6 @@ static void repaper_get_temperature(struct repaper_epd *epd)
 	epd->factored_stage_time = epd->stage_time * factor10x / 10;
 }
 
-static void repaper_gray8_to_mono_reversed(u8 *buf, u32 width, u32 height)
-{
-	u8 *gray8 = buf, *mono = buf;
-	int y, xb, i;
-
-	for (y = 0; y < height; y++)
-		for (xb = 0; xb < width / 8; xb++) {
-			u8 byte = 0x00;
-
-			for (i = 0; i < 8; i++) {
-				int x = xb * 8 + i;
-
-				byte >>= 1;
-				if (gray8[y * width + x] >> 7)
-					byte |= BIT(7);
-			}
-			*mono++ = byte;
-		}
-}
-
 static int repaper_fb_dirty(struct drm_framebuffer *fb)
 {
 	struct drm_gem_cma_object *cma_obj = drm_fb_cma_get_gem_obj(fb, 0);
@@ -560,12 +540,10 @@ static int repaper_fb_dirty(struct drm_framebuffer *fb)
 	if (ret)
 		goto out_free;
 
-	drm_fb_xrgb8888_to_gray8(buf, 0, cma_obj->vaddr, fb, &clip);
+	drm_fb_xrgb8888_to_mono_reversed(buf, 0, cma_obj->vaddr, fb, &clip);
 
 	drm_gem_fb_end_cpu_access(fb, DMA_FROM_DEVICE);
 
-	repaper_gray8_to_mono_reversed(buf, fb->width, fb->height);
-
 	if (epd->partial) {
 		repaper_frame_data_repeat(epd, buf, epd->current_frame,
 					  REPAPER_NORMAL);
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion
  2022-02-23 19:37 [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion Javier Martinez Canillas
@ 2022-02-23 19:40 ` Thomas Zimmermann
  2022-02-24 14:04 ` Noralf Trønnes
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Zimmermann @ 2022-02-23 19:40 UTC (permalink / raw)
  To: Javier Martinez Canillas, linux-kernel
  Cc: David Airlie, dri-devel, Noralf Trønnes


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

Hi

Am 23.02.22 um 20:37 schrieb Javier Martinez Canillas:
> There is now a drm_fb_xrgb8888_to_mono_reversed() helper function to do
> format conversion from XRGB8888 to reversed monochrome.
> 
> Use that helper and remove the open coded version in the repaper driver.
> 
> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>

Looks good.

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>

> ---
> 
> This was only built tested because I don't have access to the hardware.
> 
>   drivers/gpu/drm/tiny/repaper.c | 24 +-----------------------
>   1 file changed, 1 insertion(+), 23 deletions(-)
> 
> diff --git a/drivers/gpu/drm/tiny/repaper.c b/drivers/gpu/drm/tiny/repaper.c
> index 97a775c48cea..5c74e236b16d 100644
> --- a/drivers/gpu/drm/tiny/repaper.c
> +++ b/drivers/gpu/drm/tiny/repaper.c
> @@ -508,26 +508,6 @@ static void repaper_get_temperature(struct repaper_epd *epd)
>   	epd->factored_stage_time = epd->stage_time * factor10x / 10;
>   }
>   
> -static void repaper_gray8_to_mono_reversed(u8 *buf, u32 width, u32 height)
> -{
> -	u8 *gray8 = buf, *mono = buf;
> -	int y, xb, i;
> -
> -	for (y = 0; y < height; y++)
> -		for (xb = 0; xb < width / 8; xb++) {
> -			u8 byte = 0x00;
> -
> -			for (i = 0; i < 8; i++) {
> -				int x = xb * 8 + i;
> -
> -				byte >>= 1;
> -				if (gray8[y * width + x] >> 7)
> -					byte |= BIT(7);
> -			}
> -			*mono++ = byte;
> -		}
> -}
> -
>   static int repaper_fb_dirty(struct drm_framebuffer *fb)
>   {
>   	struct drm_gem_cma_object *cma_obj = drm_fb_cma_get_gem_obj(fb, 0);
> @@ -560,12 +540,10 @@ static int repaper_fb_dirty(struct drm_framebuffer *fb)
>   	if (ret)
>   		goto out_free;
>   
> -	drm_fb_xrgb8888_to_gray8(buf, 0, cma_obj->vaddr, fb, &clip);
> +	drm_fb_xrgb8888_to_mono_reversed(buf, 0, cma_obj->vaddr, fb, &clip);
>   
>   	drm_gem_fb_end_cpu_access(fb, DMA_FROM_DEVICE);
>   
> -	repaper_gray8_to_mono_reversed(buf, fb->width, fb->height);
> -
>   	if (epd->partial) {
>   		repaper_frame_data_repeat(epd, buf, epd->current_frame,
>   					  REPAPER_NORMAL);

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion
  2022-02-23 19:37 [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion Javier Martinez Canillas
  2022-02-23 19:40 ` Thomas Zimmermann
@ 2022-02-24 14:04 ` Noralf Trønnes
  2022-02-24 14:13   ` Javier Martinez Canillas
  1 sibling, 1 reply; 4+ messages in thread
From: Noralf Trønnes @ 2022-02-24 14:04 UTC (permalink / raw)
  To: Javier Martinez Canillas, linux-kernel
  Cc: Daniel Vetter, David Airlie, dri-devel, Noralf Trønnes



Den 23.02.2022 20.37, skrev Javier Martinez Canillas:
> There is now a drm_fb_xrgb8888_to_mono_reversed() helper function to do
> format conversion from XRGB8888 to reversed monochrome.
> 
> Use that helper and remove the open coded version in the repaper driver.
> 
> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
> ---

Tested-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Noralf Trønnes <noralf@tronnes.org>

Do you have commit rights and will apply this patch?

Noralf.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion
  2022-02-24 14:04 ` Noralf Trønnes
@ 2022-02-24 14:13   ` Javier Martinez Canillas
  0 siblings, 0 replies; 4+ messages in thread
From: Javier Martinez Canillas @ 2022-02-24 14:13 UTC (permalink / raw)
  To: Noralf Trønnes, linux-kernel; +Cc: Daniel Vetter, David Airlie, dri-devel

Hello Noralf,

On 2/24/22 15:04, Noralf Trønnes wrote:
> 
> 
> Den 23.02.2022 20.37, skrev Javier Martinez Canillas:
>> There is now a drm_fb_xrgb8888_to_mono_reversed() helper function to do
>> format conversion from XRGB8888 to reversed monochrome.
>>
>> Use that helper and remove the open coded version in the repaper driver.
>>
>> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
>> ---
> 
> Tested-by: Noralf Trønnes <noralf@tronnes.org>
> Reviewed-by: Noralf Trønnes <noralf@tronnes.org>
>

Thanks a lot for testing and for your review.
 
> Do you have commit rights and will apply this patch?
>

Yes, I do. Can apply this later today.

Best regards, -- 
Javier Martinez Canillas
Linux Engineering
Red Hat


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-02-24 14:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-23 19:37 [PATCH] drm/repaper: Use format helper for xrgb8888 to monochrome conversion Javier Martinez Canillas
2022-02-23 19:40 ` Thomas Zimmermann
2022-02-24 14:04 ` Noralf Trønnes
2022-02-24 14:13   ` Javier Martinez Canillas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®