Unverified Commit 9b13a3fc authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Javier Martinez Canillas
Browse files

drm/format-helper: Rename drm_fb_xrgb8888_to_mono_reversed()



There is no "reversed" handling in drm_fb_xrgb8888_to_mono_reversed():
the function just converts from color to grayscale, and reduces the
number of grayscale levels from 256 to 2 (i.e. brightness 0-127 is
mapped to 0, 128-255 to 1).  All "reversed" handling is done in the
repaper driver, where this function originated.

Hence make this clear by renaming drm_fb_xrgb8888_to_mono_reversed() to
drm_fb_xrgb8888_to_mono(), and documenting the black/white pixel
mapping.

Fixes: bcf8b616 ("drm/format-helper: Add drm_fb_xrgb8888_to_mono_reversed()")
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Acked-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220317081830.1211400-2-geert@linux-m68k.org
parent aa457ff1
Loading
Loading
Loading
Loading
+15 −16
Original line number Original line Diff line number Diff line
@@ -594,7 +594,7 @@ int drm_fb_blit_toio(void __iomem *dst, unsigned int dst_pitch, uint32_t dst_for
}
}
EXPORT_SYMBOL(drm_fb_blit_toio);
EXPORT_SYMBOL(drm_fb_blit_toio);


static void drm_fb_gray8_to_mono_reversed_line(u8 *dst, const u8 *src, unsigned int pixels,
static void drm_fb_gray8_to_mono_line(u8 *dst, const u8 *src, unsigned int pixels,
				      unsigned int start_offset, unsigned int end_len)
				      unsigned int start_offset, unsigned int end_len)
{
{
	unsigned int xb, i;
	unsigned int xb, i;
@@ -621,8 +621,8 @@ static void drm_fb_gray8_to_mono_reversed_line(u8 *dst, const u8 *src, unsigned
}
}


/**
/**
 * drm_fb_xrgb8888_to_mono_reversed - Convert XRGB8888 to reversed monochrome
 * drm_fb_xrgb8888_to_mono - Convert XRGB8888 to monochrome
 * @dst: reversed monochrome destination buffer
 * @dst: monochrome destination buffer (0=black, 1=white)
 * @dst_pitch: Number of bytes between two consecutive scanlines within dst
 * @dst_pitch: Number of bytes between two consecutive scanlines within dst
 * @src: XRGB8888 source buffer
 * @src: XRGB8888 source buffer
 * @fb: DRM framebuffer
 * @fb: DRM framebuffer
@@ -633,9 +633,9 @@ static void drm_fb_gray8_to_mono_reversed_line(u8 *dst, const u8 *src, unsigned
 * and use this function to convert to the native format.
 * and use this function to convert to the native format.
 *
 *
 * This function uses drm_fb_xrgb8888_to_gray8() to convert to grayscale and
 * This function uses drm_fb_xrgb8888_to_gray8() to convert to grayscale and
 * then the result is converted from grayscale to reversed monohrome.
 * then the result is converted from grayscale to monochrome.
 */
 */
void drm_fb_xrgb8888_to_mono_reversed(void *dst, unsigned int dst_pitch, const void *vaddr,
void drm_fb_xrgb8888_to_mono(void *dst, unsigned int dst_pitch, const void *vaddr,
			     const struct drm_framebuffer *fb, const struct drm_rect *clip)
			     const struct drm_framebuffer *fb, const struct drm_rect *clip)
{
{
	unsigned int linepixels = drm_rect_width(clip);
	unsigned int linepixels = drm_rect_width(clip);
@@ -652,8 +652,8 @@ void drm_fb_xrgb8888_to_mono_reversed(void *dst, unsigned int dst_pitch, const v
		return;
		return;


	/*
	/*
	 * The reversed mono destination buffer contains 1 bit per pixel
	 * The mono destination buffer contains 1 bit per pixel and
	 * and destination scanlines have to be in multiple of 8 pixels.
	 * destination scanlines have to be in multiple of 8 pixels.
	 */
	 */
	if (!dst_pitch)
	if (!dst_pitch)
		dst_pitch = DIV_ROUND_UP(linepixels, 8);
		dst_pitch = DIV_ROUND_UP(linepixels, 8);
@@ -664,9 +664,9 @@ void drm_fb_xrgb8888_to_mono_reversed(void *dst, unsigned int dst_pitch, const v
	 * The cma memory is write-combined so reads are uncached.
	 * The cma memory is write-combined so reads are uncached.
	 * Speed up by fetching one line at a time.
	 * Speed up by fetching one line at a time.
	 *
	 *
	 * Also, format conversion from XR24 to reversed monochrome
	 * Also, format conversion from XR24 to monochrome are done
	 * are done line-by-line but are converted to 8-bit grayscale
	 * line-by-line but are converted to 8-bit grayscale as an
	 * as an intermediate step.
	 * intermediate step.
	 *
	 *
	 * Allocate a buffer to be used for both copying from the cma
	 * Allocate a buffer to be used for both copying from the cma
	 * memory and to store the intermediate grayscale line pixels.
	 * memory and to store the intermediate grayscale line pixels.
@@ -683,7 +683,7 @@ void drm_fb_xrgb8888_to_mono_reversed(void *dst, unsigned int dst_pitch, const v
	 * are not aligned to multiple of 8.
	 * are not aligned to multiple of 8.
	 *
	 *
	 * Calculate if the start and end pixels are not aligned and set the
	 * Calculate if the start and end pixels are not aligned and set the
	 * offsets for the reversed mono line conversion function to adjust.
	 * offsets for the mono line conversion function to adjust.
	 */
	 */
	start_offset = clip->x1 % 8;
	start_offset = clip->x1 % 8;
	end_len = clip->x2 % 8;
	end_len = clip->x2 % 8;
@@ -692,12 +692,11 @@ void drm_fb_xrgb8888_to_mono_reversed(void *dst, unsigned int dst_pitch, const v
	for (y = 0; y < lines; y++) {
	for (y = 0; y < lines; y++) {
		src32 = memcpy(src32, vaddr, len_src32);
		src32 = memcpy(src32, vaddr, len_src32);
		drm_fb_xrgb8888_to_gray8_line(gray8, src32, linepixels);
		drm_fb_xrgb8888_to_gray8_line(gray8, src32, linepixels);
		drm_fb_gray8_to_mono_reversed_line(mono, gray8, dst_pitch,
		drm_fb_gray8_to_mono_line(mono, gray8, dst_pitch, start_offset, end_len);
						   start_offset, end_len);
		vaddr += fb->pitches[0];
		vaddr += fb->pitches[0];
		mono += dst_pitch;
		mono += dst_pitch;
	}
	}


	kfree(src32);
	kfree(src32);
}
}
EXPORT_SYMBOL(drm_fb_xrgb8888_to_mono_reversed);
EXPORT_SYMBOL(drm_fb_xrgb8888_to_mono);
+1 −1
Original line number Original line Diff line number Diff line
@@ -458,7 +458,7 @@ static int ssd130x_fb_blit_rect(struct drm_framebuffer *fb, const struct dma_buf
	if (!buf)
	if (!buf)
		return -ENOMEM;
		return -ENOMEM;


	drm_fb_xrgb8888_to_mono_reversed(buf, 0, vmap, fb, rect);
	drm_fb_xrgb8888_to_mono(buf, 0, vmap, fb, rect);


	ssd130x_update_rect(ssd130x, buf, rect);
	ssd130x_update_rect(ssd130x, buf, rect);


+1 −1
Original line number Original line Diff line number Diff line
@@ -540,7 +540,7 @@ static int repaper_fb_dirty(struct drm_framebuffer *fb)
	if (ret)
	if (ret)
		goto out_free;
		goto out_free;


	drm_fb_xrgb8888_to_mono_reversed(buf, 0, cma_obj->vaddr, fb, &clip);
	drm_fb_xrgb8888_to_mono(buf, 0, cma_obj->vaddr, fb, &clip);


	drm_gem_fb_end_cpu_access(fb, DMA_FROM_DEVICE);
	drm_gem_fb_end_cpu_access(fb, DMA_FROM_DEVICE);


+2 −3
Original line number Original line Diff line number Diff line
@@ -43,8 +43,7 @@ int drm_fb_blit_toio(void __iomem *dst, unsigned int dst_pitch, uint32_t dst_for
		     const void *vmap, const struct drm_framebuffer *fb,
		     const void *vmap, const struct drm_framebuffer *fb,
		     const struct drm_rect *rect);
		     const struct drm_rect *rect);


void drm_fb_xrgb8888_to_mono_reversed(void *dst, unsigned int dst_pitch, const void *src,
void drm_fb_xrgb8888_to_mono(void *dst, unsigned int dst_pitch, const void *src,
				      const struct drm_framebuffer *fb,
			     const struct drm_framebuffer *fb, const struct drm_rect *clip);
				      const struct drm_rect *clip);


#endif /* __LINUX_DRM_FORMAT_HELPER_H */
#endif /* __LINUX_DRM_FORMAT_HELPER_H */