Symbol: drm_format_info_block_height
drivers/gpu/drm/arm/display/komeda/d71/d71_component.c
200
block_h = drm_format_info_block_height(info, 1);
drivers/gpu/drm/arm/display/komeda/d71/d71_component.c
205
block_h = drm_format_info_block_height(info, 0);
drivers/gpu/drm/arm/display/komeda/komeda_framebuffer.c
133
block_h = drm_format_info_block_height(info, i);
drivers/gpu/drm/arm/display/komeda/komeda_framebuffer.c
216
u32 block_h = drm_format_info_block_height(fb->format, 0);
drivers/gpu/drm/arm/malidp_planes.c
520
if (((fb->pitches[i] * drm_format_info_block_height(fb->format, i))
drivers/gpu/drm/arm/malidp_planes.c
529
block_h = drm_format_info_block_height(fb->format, 0);
drivers/gpu/drm/arm/malidp_planes.c
624
unsigned int block_h = drm_format_info_block_height(mp->base.state->fb->format, i);
drivers/gpu/drm/drm_fb_dma_helper.c
81
u32 block_h = drm_format_info_block_height(fb->format, plane);
drivers/gpu/drm/drm_fb_helper.c
1079
(drm_format_info_block_height(format, 0) > 1))
drivers/gpu/drm/drm_fb_helper.c
1510
(drm_format_info_block_height(format, 0) > 1));
drivers/gpu/drm/drm_fourcc.c
482
EXPORT_SYMBOL(drm_format_info_block_height);
drivers/gpu/drm/drm_fourcc.c
499
drm_format_info_block_height(info, plane));
drivers/gpu/drm/drm_fourcc.c
521
drm_format_info_block_height(info, plane));
drivers/gpu/drm/tests/drm_format_test.c
106
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 0), 1);
drivers/gpu/drm/tests/drm_format_test.c
107
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
108
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 2), 1);
drivers/gpu/drm/tests/drm_format_test.c
109
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 3), 0);
drivers/gpu/drm/tests/drm_format_test.c
110
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, -1), 0);
drivers/gpu/drm/tests/drm_format_test.c
119
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 0), 2);
drivers/gpu/drm/tests/drm_format_test.c
120
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 1), 0);
drivers/gpu/drm/tests/drm_format_test.c
121
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, -1), 0);
drivers/gpu/drm/tests/drm_format_test.c
72
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
73
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, -1), 0);
drivers/gpu/drm/tests/drm_format_test.c
74
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 1), 0);
drivers/gpu/drm/tests/drm_format_test.c
83
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 0), 1);
drivers/gpu/drm/tests/drm_format_test.c
84
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, -1), 0);
drivers/gpu/drm/tests/drm_format_test.c
85
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 1), 0);
drivers/gpu/drm/tests/drm_format_test.c
94
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 0), 1);
drivers/gpu/drm/tests/drm_format_test.c
95
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
96
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, 2), 0);
drivers/gpu/drm/tests/drm_format_test.c
97
KUNIT_EXPECT_EQ(test, drm_format_info_block_height(info, -1), 0);
drivers/gpu/drm/vkms/vkms_formats.c
136
WARN_ONCE(drm_format_info_block_height(frame_info->fb->format,
drivers/gpu/drm/vkms/vkms_formats.c
386
WARN_ONCE(drm_format_info_block_height(plane->frame_info->fb->format, 0) != 1,
drivers/gpu/drm/vkms/vkms_formats.c
47
int block_y = y / drm_format_info_block_height(format, plane_index);
drivers/gpu/drm/vkms/vkms_formats.c
48
int block_pitch = fb->pitches[plane_index] * drm_format_info_block_height(format,
drivers/gpu/drm/vkms/vkms_formats.c
51
*rem_y = y % drm_format_info_block_height(format, plane_index);
include/drm/drm_fourcc.h
318
unsigned int drm_format_info_block_height(const struct drm_format_info *info,