mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	drm: switch drm_fb_xrgb8888_to_rgb888_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_rgb888_dstclip() accept a __iomem dst pointer and use memcpy_toio() instead of memcpy(). The helper function (drm_fb_xrgb8888_to_rgb888_line) has been changed to process a single scanline. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Noralf Trønnes <noralf@tronnes.org> Link: http://patchwork.freedesktop.org/patch/msgid/20190410063815.17062-4-kraxel@redhat.com
This commit is contained in:
		
							parent
							
								
									d653bd3948
								
							
						
					
					
						commit
						5c5373b51b
					
				
					 3 changed files with 27 additions and 34 deletions
				
			
		| 
						 | 
					@ -316,7 +316,7 @@ static int cirrus_fb_blit_rect(struct drm_framebuffer *fb,
 | 
				
			||||||
						  vmap, fb, rect, false);
 | 
											  vmap, fb, rect, false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	else if (fb->format->cpp[0] == 4 && cirrus->cpp == 3)
 | 
						else if (fb->format->cpp[0] == 4 && cirrus->cpp == 3)
 | 
				
			||||||
		drm_fb_xrgb8888_to_rgb888_dstclip(__io_virt(cirrus->vram),
 | 
							drm_fb_xrgb8888_to_rgb888_dstclip(cirrus->vram,
 | 
				
			||||||
						  cirrus->pitch,
 | 
											  cirrus->pitch,
 | 
				
			||||||
						  vmap, fb, rect);
 | 
											  vmap, fb, rect);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -216,33 +216,16 @@ void drm_fb_xrgb8888_to_rgb565_dstclip(void __iomem *dst, unsigned int dst_pitch
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb565_dstclip);
 | 
					EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb565_dstclip);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void drm_fb_xrgb8888_to_rgb888_lines(void *dst, unsigned int dst_pitch,
 | 
					static void drm_fb_xrgb8888_to_rgb888_line(u8 *dbuf, u32 *sbuf,
 | 
				
			||||||
					    void *src, unsigned int src_pitch,
 | 
										   unsigned int pixels)
 | 
				
			||||||
					    unsigned int src_linelength,
 | 
					 | 
				
			||||||
					    unsigned int lines)
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	unsigned int linepixels = src_linelength / 3;
 | 
						unsigned int x;
 | 
				
			||||||
	unsigned int x, y;
 | 
					 | 
				
			||||||
	u32 *sbuf;
 | 
					 | 
				
			||||||
	u8 *dbuf;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sbuf = kmalloc(src_linelength, GFP_KERNEL);
 | 
						for (x = 0; x < pixels; x++) {
 | 
				
			||||||
	if (!sbuf)
 | 
					 | 
				
			||||||
		return;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	for (y = 0; y < lines; y++) {
 | 
					 | 
				
			||||||
		memcpy(sbuf, src, src_linelength);
 | 
					 | 
				
			||||||
		dbuf = dst;
 | 
					 | 
				
			||||||
		for (x = 0; x < linepixels; x++) {
 | 
					 | 
				
			||||||
		*dbuf++ = (sbuf[x] & 0x000000FF) >>  0;
 | 
							*dbuf++ = (sbuf[x] & 0x000000FF) >>  0;
 | 
				
			||||||
		*dbuf++ = (sbuf[x] & 0x0000FF00) >>  8;
 | 
							*dbuf++ = (sbuf[x] & 0x0000FF00) >>  8;
 | 
				
			||||||
		*dbuf++ = (sbuf[x] & 0x00FF0000) >> 16;
 | 
							*dbuf++ = (sbuf[x] & 0x00FF0000) >> 16;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
		src += src_pitch;
 | 
					 | 
				
			||||||
		dst += dst_pitch;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	kfree(sbuf);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
| 
						 | 
					@ -264,15 +247,25 @@ 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)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	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 * 3;
 | 
				
			||||||
	unsigned int dst_offset = (clip->y1 * dst_pitch)
 | 
						unsigned y, lines = clip->y2 - clip->y1;
 | 
				
			||||||
		+ (clip->x1 * 3);
 | 
						void *dbuf;
 | 
				
			||||||
	size_t src_len = (clip->x2 - clip->x1) * sizeof(u32);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	drm_fb_xrgb8888_to_rgb888_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;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						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_rgb888_line(dbuf, vaddr, linepixels);
 | 
				
			||||||
 | 
							memcpy_toio(dst, dbuf, dst_len);
 | 
				
			||||||
 | 
							vaddr += fb->pitches[0];
 | 
				
			||||||
 | 
							dst += dst_len;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						kfree(dbuf);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb888_dstclip);
 | 
					EXPORT_SYMBOL(drm_fb_xrgb8888_to_rgb888_dstclip);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,7 +26,7 @@ void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr,
 | 
				
			||||||
void drm_fb_xrgb8888_to_rgb565_dstclip(void __iomem *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 swab);
 | 
									       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 __iomem *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);
 | 
				
			||||||
void drm_fb_xrgb8888_to_gray8(u8 *dst, void *vaddr, struct drm_framebuffer *fb,
 | 
					void drm_fb_xrgb8888_to_gray8(u8 *dst, void *vaddr, struct drm_framebuffer *fb,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue