mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 23:03:57 -04:00
drm/format-helper: Add conversion from XRGB8888 to ARGB8888
Add dedicated helper to convert from XRGB8888 to ARGB8888. Sets all alpha bits to make pixels fully opaque. v3: * use __le32 for destination buffer (Jose, kernel test robot) v2: * use cpubuf_to_le32() * type fixes Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: José Expósito <jose.exposito89@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230102112927.26565-8-tzimmermann@suse.de
This commit is contained in:
@@ -37,6 +37,11 @@ struct convert_to_rgb888_result {
|
||||
const u8 expected[TEST_BUF_SIZE];
|
||||
};
|
||||
|
||||
struct convert_to_argb8888_result {
|
||||
unsigned int dst_pitch;
|
||||
const u32 expected[TEST_BUF_SIZE];
|
||||
};
|
||||
|
||||
struct convert_to_xrgb2101010_result {
|
||||
unsigned int dst_pitch;
|
||||
const u32 expected[TEST_BUF_SIZE];
|
||||
@@ -51,6 +56,7 @@ struct convert_xrgb8888_case {
|
||||
struct convert_to_rgb332_result rgb332_result;
|
||||
struct convert_to_rgb565_result rgb565_result;
|
||||
struct convert_to_rgb888_result rgb888_result;
|
||||
struct convert_to_argb8888_result argb8888_result;
|
||||
struct convert_to_xrgb2101010_result xrgb2101010_result;
|
||||
};
|
||||
|
||||
@@ -77,6 +83,10 @@ static struct convert_xrgb8888_case convert_xrgb8888_cases[] = {
|
||||
.dst_pitch = 0,
|
||||
.expected = { 0x00, 0x00, 0xFF },
|
||||
},
|
||||
.argb8888_result = {
|
||||
.dst_pitch = 0,
|
||||
.expected = { 0xFFFF0000 },
|
||||
},
|
||||
.xrgb2101010_result = {
|
||||
.dst_pitch = 0,
|
||||
.expected = { 0x3FF00000 },
|
||||
@@ -107,6 +117,10 @@ static struct convert_xrgb8888_case convert_xrgb8888_cases[] = {
|
||||
.dst_pitch = 0,
|
||||
.expected = { 0x00, 0x00, 0xFF },
|
||||
},
|
||||
.argb8888_result = {
|
||||
.dst_pitch = 0,
|
||||
.expected = { 0xFFFF0000 },
|
||||
},
|
||||
.xrgb2101010_result = {
|
||||
.dst_pitch = 0,
|
||||
.expected = { 0x3FF00000 },
|
||||
@@ -169,6 +183,15 @@ static struct convert_xrgb8888_case convert_xrgb8888_cases[] = {
|
||||
0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00,
|
||||
},
|
||||
},
|
||||
.argb8888_result = {
|
||||
.dst_pitch = 0,
|
||||
.expected = {
|
||||
0xFFFFFFFF, 0xFF000000,
|
||||
0xFFFF0000, 0xFF00FF00,
|
||||
0xFF0000FF, 0xFFFF00FF,
|
||||
0xFFFFFF00, 0xFF00FFFF,
|
||||
},
|
||||
},
|
||||
.xrgb2101010_result = {
|
||||
.dst_pitch = 0,
|
||||
.expected = {
|
||||
@@ -229,6 +252,14 @@ static struct convert_xrgb8888_case convert_xrgb8888_cases[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
},
|
||||
},
|
||||
.argb8888_result = {
|
||||
.dst_pitch = 20,
|
||||
.expected = {
|
||||
0xFF0E449C, 0xFF114D05, 0xFFA80303, 0x00000000, 0x00000000,
|
||||
0xFF6C7073, 0xFF0E449C, 0xFF114D05, 0x00000000, 0x00000000,
|
||||
0xFFA80303, 0xFF6C7073, 0xFF0E449C, 0x00000000, 0x00000000,
|
||||
},
|
||||
},
|
||||
.xrgb2101010_result = {
|
||||
.dst_pitch = 20,
|
||||
.expected = {
|
||||
@@ -448,6 +479,37 @@ static void drm_test_fb_xrgb8888_to_rgb888(struct kunit *test)
|
||||
KUNIT_EXPECT_EQ(test, memcmp(buf, result->expected, dst_size), 0);
|
||||
}
|
||||
|
||||
static void drm_test_fb_xrgb8888_to_argb8888(struct kunit *test)
|
||||
{
|
||||
const struct convert_xrgb8888_case *params = test->param_value;
|
||||
const struct convert_to_argb8888_result *result = ¶ms->argb8888_result;
|
||||
size_t dst_size;
|
||||
u32 *buf = NULL;
|
||||
__le32 *xrgb8888 = NULL;
|
||||
struct iosys_map dst, src;
|
||||
|
||||
struct drm_framebuffer fb = {
|
||||
.format = drm_format_info(DRM_FORMAT_XRGB8888),
|
||||
.pitches = { params->pitch, 0, 0 },
|
||||
};
|
||||
|
||||
dst_size = conversion_buf_size(DRM_FORMAT_ARGB8888,
|
||||
result->dst_pitch, ¶ms->clip);
|
||||
KUNIT_ASSERT_GT(test, dst_size, 0);
|
||||
|
||||
buf = kunit_kzalloc(test, dst_size, GFP_KERNEL);
|
||||
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, buf);
|
||||
iosys_map_set_vaddr(&dst, buf);
|
||||
|
||||
xrgb8888 = cpubuf_to_le32(test, params->xrgb8888, TEST_BUF_SIZE);
|
||||
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, xrgb8888);
|
||||
iosys_map_set_vaddr(&src, xrgb8888);
|
||||
|
||||
drm_fb_xrgb8888_to_argb8888(&dst, &result->dst_pitch, &src, &fb, ¶ms->clip);
|
||||
buf = le32buf_to_cpu(test, (__force const __le32 *)buf, dst_size / sizeof(u32));
|
||||
KUNIT_EXPECT_EQ(test, memcmp(buf, result->expected, dst_size), 0);
|
||||
}
|
||||
|
||||
static void drm_test_fb_xrgb8888_to_xrgb2101010(struct kunit *test)
|
||||
{
|
||||
const struct convert_xrgb8888_case *params = test->param_value;
|
||||
@@ -484,6 +546,7 @@ static struct kunit_case drm_format_helper_test_cases[] = {
|
||||
KUNIT_CASE_PARAM(drm_test_fb_xrgb8888_to_rgb332, convert_xrgb8888_gen_params),
|
||||
KUNIT_CASE_PARAM(drm_test_fb_xrgb8888_to_rgb565, convert_xrgb8888_gen_params),
|
||||
KUNIT_CASE_PARAM(drm_test_fb_xrgb8888_to_rgb888, convert_xrgb8888_gen_params),
|
||||
KUNIT_CASE_PARAM(drm_test_fb_xrgb8888_to_argb8888, convert_xrgb8888_gen_params),
|
||||
KUNIT_CASE_PARAM(drm_test_fb_xrgb8888_to_xrgb2101010, convert_xrgb8888_gen_params),
|
||||
{}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user