2019-04-05 17:52:15 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Noralf Trønnes
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_DRM_FORMAT_HELPER_H
|
|
|
|
#define __LINUX_DRM_FORMAT_HELPER_H
|
|
|
|
|
|
|
|
struct drm_framebuffer;
|
|
|
|
struct drm_rect;
|
|
|
|
|
|
|
|
void drm_fb_memcpy(void *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
|
|
struct drm_rect *clip);
|
2019-04-10 14:38:13 +08:00
|
|
|
void drm_fb_memcpy_dstclip(void __iomem *dst, void *vaddr,
|
|
|
|
struct drm_framebuffer *fb,
|
2019-04-05 17:52:16 +08:00
|
|
|
struct drm_rect *clip);
|
2019-04-05 17:52:15 +08:00
|
|
|
void drm_fb_swab16(u16 *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
|
|
struct drm_rect *clip);
|
2019-04-05 17:52:17 +08:00
|
|
|
void drm_fb_xrgb8888_to_rgb565(void *dst, void *vaddr,
|
2019-04-05 17:52:15 +08:00
|
|
|
struct drm_framebuffer *fb,
|
2019-04-10 14:38:14 +08:00
|
|
|
struct drm_rect *clip, bool swab);
|
|
|
|
void drm_fb_xrgb8888_to_rgb565_dstclip(void __iomem *dst, unsigned int dst_pitch,
|
2019-04-05 17:52:17 +08:00
|
|
|
void *vaddr, struct drm_framebuffer *fb,
|
2019-04-10 14:38:14 +08:00
|
|
|
struct drm_rect *clip, bool swab);
|
2019-04-05 17:52:18 +08:00
|
|
|
void drm_fb_xrgb8888_to_rgb888_dstclip(void *dst, unsigned int dst_pitch,
|
|
|
|
void *vaddr, struct drm_framebuffer *fb,
|
|
|
|
struct drm_rect *clip);
|
2019-04-05 17:52:15 +08:00
|
|
|
void drm_fb_xrgb8888_to_gray8(u8 *dst, void *vaddr, struct drm_framebuffer *fb,
|
|
|
|
struct drm_rect *clip);
|
|
|
|
|
|
|
|
#endif /* __LINUX_DRM_FORMAT_HELPER_H */
|