Commit d653bd39 authored by Gerd Hoffmann's avatar Gerd Hoffmann

drm: switch drm_fb_xrgb8888_to_rgb565_dstclip to accept __iomem dst

Not all archs have the __io_virt() macro, so cirrus can't simply convert
pointers that way.  The drm format helpers have to use memcpy_toio()
instead.

This patch makes drm_fb_xrgb8888_to_rgb565_dstclip() accept a __iomem
dst pointer and use memcpy_toio() instead of memcpy().  The helper
function (drm_fb_xrgb8888_to_rgb565_line) has been changed to process
a single scanline.
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Reviewed-by: default avatarNoralf Trønnes <noralf@tronnes.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20190410063815.17062-3-kraxel@redhat.com
parent bf4f6d16
...@@ -311,7 +311,7 @@ static int cirrus_fb_blit_rect(struct drm_framebuffer *fb, ...@@ -311,7 +311,7 @@ static int cirrus_fb_blit_rect(struct drm_framebuffer *fb,
vmap, fb, rect); vmap, fb, rect);
else if (fb->format->cpp[0] == 4 && cirrus->cpp == 2) else if (fb->format->cpp[0] == 4 && cirrus->cpp == 2)
drm_fb_xrgb8888_to_rgb565_dstclip(__io_virt(cirrus->vram), drm_fb_xrgb8888_to_rgb565_dstclip(cirrus->vram,
cirrus->pitch, cirrus->pitch,
vmap, fb, rect, false); vmap, fb, rect, false);
......
...@@ -113,42 +113,22 @@ void drm_fb_swab16(u16 *dst, void *vaddr, struct drm_framebuffer *fb, ...@@ -113,42 +113,22 @@ void drm_fb_swab16(u16 *dst, void *vaddr, struct drm_framebuffer *fb,
} }
EXPORT_SYMBOL(drm_fb_swab16); EXPORT_SYMBOL(drm_fb_swab16);
static void drm_fb_xrgb8888_to_rgb565_lines(void *dst, unsigned int dst_pitch, static void drm_fb_xrgb8888_to_rgb565_line(u16 *dbuf, u32 *sbuf,
void *src, unsigned int src_pitch, unsigned int pixels,
unsigned int src_linelength, bool swab)
unsigned int lines,
bool swap)
{ {
unsigned int linepixels = src_linelength / sizeof(u32); unsigned int x;
unsigned int x, y; u16 val16;
u32 *sbuf;
u16 *dbuf, val16;
/* for (x = 0; x < pixels; x++) {
* The cma memory is write-combined so reads are uncached. val16 = ((sbuf[x] & 0x00F80000) >> 8) |
* Speed up by fetching one line at a time. ((sbuf[x] & 0x0000FC00) >> 5) |
*/ ((sbuf[x] & 0x000000F8) >> 3);
sbuf = kmalloc(src_linelength, GFP_KERNEL); if (swab)
if (!sbuf) dbuf[x] = swab16(val16);
return; else
dbuf[x] = val16;
for (y = 0; y < lines; y++) {
memcpy(sbuf, src, src_linelength);
dbuf = dst;
for (x = 0; x < linepixels; x++) {
val16 = ((sbuf[x] & 0x00F80000) >> 8) |
((sbuf[x] & 0x0000FC00) >> 5) |
((sbuf[x] & 0x000000F8) >> 3);
if (swap)
*dbuf++ = swab16(val16);
else
*dbuf++ = val16;
}
src += src_pitch;
dst += dst_pitch;
} }
kfree(sbuf);
} }
/** /**
...@@ -157,7 +137,7 @@ static void drm_fb_xrgb8888_to_rgb565_lines(void *dst, unsigned int dst_pitch, ...@@ -157,7 +137,7 @@ static void drm_fb_xrgb8888_to_rgb565_lines(void *dst, unsigned int dst_pitch,
* @vaddr: XRGB8888 source buffer * @vaddr: XRGB8888 source buffer
* @fb: DRM framebuffer * @fb: DRM framebuffer
* @clip: Clip rectangle area to copy * @clip: Clip rectangle area to copy
* @swap: Swap bytes * @swab: Swap bytes
* *
* Drivers can use this function for RGB565 devices that don't natively * Drivers can use this function for RGB565 devices that don't natively
* support XRGB8888. * support XRGB8888.
...@@ -167,49 +147,72 @@ static void drm_fb_xrgb8888_to_rgb565_lines(void *dst, unsigned int dst_pitch, ...@@ -167,49 +147,72 @@ static void drm_fb_xrgb8888_to_rgb565_lines(void *dst, unsigned int dst_pitch,
*/ */
void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr, void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr,
struct drm_framebuffer *fb, struct drm_framebuffer *fb,
struct drm_rect *clip, bool swap) struct drm_rect *clip, bool swab)
{ {
unsigned int src_offset = (clip->y1 * fb->pitches[0]) size_t linepixels = clip->x2 - clip->x1;
+ (clip->x1 * sizeof(u32)); size_t src_len = linepixels * sizeof(u32);
size_t src_len = (clip->x2 - clip->x1) * sizeof(u32); size_t dst_len = linepixels * sizeof(u16);
size_t dst_len = (clip->x2 - clip->x1) * sizeof(u16); unsigned y, lines = clip->y2 - clip->y1;
void *sbuf;
drm_fb_xrgb8888_to_rgb565_lines(dst, dst_len, /*
vaddr + src_offset, fb->pitches[0], * The cma memory is write-combined so reads are uncached.
src_len, clip->y2 - clip->y1, * Speed up by fetching one line at a time.
swap); */
sbuf = kmalloc(src_len, GFP_KERNEL);
if (!sbuf)
return;
vaddr += clip_offset(clip, fb->pitches[0], sizeof(u32));
for (y = 0; y < lines; y++) {
memcpy(sbuf, vaddr, src_len);
drm_fb_xrgb8888_to_rgb565_line(dst, sbuf, linepixels, swab);
vaddr += fb->pitches[0];
dst += dst_len;
}
kfree(sbuf);
} }
EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb565); EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb565);
/** /**
* drm_fb_xrgb8888_to_rgb565_dstclip - Convert XRGB8888 to RGB565 clip buffer * drm_fb_xrgb8888_to_rgb565_dstclip - Convert XRGB8888 to RGB565 clip buffer
* @dst: RGB565 destination buffer * @dst: RGB565 destination buffer (iomem)
* @dst_pitch: destination buffer pitch * @dst_pitch: destination buffer pitch
* @vaddr: XRGB8888 source buffer * @vaddr: XRGB8888 source buffer
* @fb: DRM framebuffer * @fb: DRM framebuffer
* @clip: Clip rectangle area to copy * @clip: Clip rectangle area to copy
* @swap: Swap bytes * @swab: Swap bytes
* *
* Drivers can use this function for RGB565 devices that don't natively * Drivers can use this function for RGB565 devices that don't natively
* support XRGB8888. * support XRGB8888.
* *
* This function applies clipping on dst, i.e. the destination is a * This function applies clipping on dst, i.e. the destination is a
* full framebuffer but only the clip rect content is copied over. * full (iomem) framebuffer but only the clip rect content is copied over.
*/ */
void drm_fb_xrgb8888_to_rgb565_dstclip(void *dst, unsigned int dst_pitch, void drm_fb_xrgb8888_to_rgb565_dstclip(void __iomem *dst, unsigned int dst_pitch,
void *vaddr, struct drm_framebuffer *fb, void *vaddr, struct drm_framebuffer *fb,
struct drm_rect *clip, bool swap) struct drm_rect *clip, bool swab)
{ {
unsigned int src_offset = (clip->y1 * fb->pitches[0]) size_t linepixels = clip->x2 - clip->x1;
+ (clip->x1 * sizeof(u32)); size_t dst_len = linepixels * sizeof(u16);
unsigned int dst_offset = (clip->y1 * dst_pitch) unsigned y, lines = clip->y2 - clip->y1;
+ (clip->x1 * sizeof(u16)); void *dbuf;
size_t src_len = (clip->x2 - clip->x1) * sizeof(u32);
drm_fb_xrgb8888_to_rgb565_lines(dst + dst_offset, dst_pitch, dbuf = kmalloc(dst_len, GFP_KERNEL);
vaddr + src_offset, fb->pitches[0], if (!dbuf)
src_len, clip->y2 - clip->y1, return;
swap);
vaddr += clip_offset(clip, fb->pitches[0], sizeof(u32));
dst += clip_offset(clip, dst_pitch, sizeof(u16));
for (y = 0; y < lines; y++) {
drm_fb_xrgb8888_to_rgb565_line(dbuf, vaddr, linepixels, swab);
memcpy_toio(dst, dbuf, dst_len);
vaddr += fb->pitches[0];
dst += dst_len;
}
kfree(dbuf);
} }
EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb565_dstclip); EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb565_dstclip);
......
...@@ -22,10 +22,10 @@ void drm_fb_swab16(u16 *dst, void *vaddr, struct drm_framebuffer *fb, ...@@ -22,10 +22,10 @@ void drm_fb_swab16(u16 *dst, void *vaddr, struct drm_framebuffer *fb,
struct drm_rect *clip); struct drm_rect *clip);
void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr, void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr,
struct drm_framebuffer *fb, struct drm_framebuffer *fb,
struct drm_rect *clip, bool swap); struct drm_rect *clip, bool swab);
void drm_fb_xrgb8888_to_rgb565_dstclip(void *dst, unsigned int dst_pitch, void drm_fb_xrgb8888_to_rgb565_dstclip(void __iomem *dst, unsigned int dst_pitch,
void *vaddr, struct drm_framebuffer *fb, void *vaddr, struct drm_framebuffer *fb,
struct drm_rect *clip, bool swap); struct drm_rect *clip, bool swab);
void drm_fb_xrgb8888_to_rgb888_dstclip(void *dst, unsigned int dst_pitch, void drm_fb_xrgb8888_to_rgb888_dstclip(void *dst, unsigned int dst_pitch,
void *vaddr, struct drm_framebuffer *fb, void *vaddr, struct drm_framebuffer *fb,
struct drm_rect *clip); struct drm_rect *clip);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment