1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * v4l2-tpg.h - Test Pattern Generator
5 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
11 #include <linux/types.h>
12 #include <linux/errno.h>
13 #include <linux/random.h>
14 #include <linux/slab.h>
15 #include <linux/vmalloc.h>
16 #include <linux/videodev2.h>
18 struct tpg_rbg_color8
{
19 unsigned char r
, g
, b
;
22 struct tpg_rbg_color16
{
31 TPG_COLOR_CSC_MAGENTA
,
45 TPG_COLOR_100_MAGENTA
,
53 TPG_COLOR_MAX
= TPG_COLOR_RAMP
+ 256
56 extern const struct tpg_rbg_color8 tpg_colors
[TPG_COLOR_MAX
];
57 extern const unsigned short tpg_rec709_to_linear
[255 * 16 + 1];
58 extern const unsigned short tpg_linear_to_rec709
[255 * 16 + 1];
59 extern const struct tpg_rbg_color16 tpg_csc_colors
[V4L2_COLORSPACE_DCI_P3
+ 1]
60 [V4L2_XFER_FUNC_SMPTE2084
+ 1]
61 [TPG_COLOR_CSC_BLACK
+ 1];
66 TPG_PAT_100_HCOLORBAR
,
67 TPG_PAT_100_COLORSQUARES
,
73 TPG_PAT_CHECKERS_16X16
,
76 TPG_PAT_COLOR_CHECKERS_2X2
,
77 TPG_PAT_COLOR_CHECKERS_1X1
,
78 TPG_PAT_ALTERNATING_HLINES
,
79 TPG_PAT_ALTERNATING_VLINES
,
80 TPG_PAT_CROSS_1_PIXEL
,
81 TPG_PAT_CROSS_2_PIXELS
,
82 TPG_PAT_CROSS_10_PIXELS
,
85 /* Must be the last pattern */
89 extern const char * const tpg_pattern_strings
[];
97 enum tpg_video_aspect
{
98 TPG_VIDEO_ASPECT_IMAGE
,
100 TPG_VIDEO_ASPECT_14X9_CENTRE
,
101 TPG_VIDEO_ASPECT_16X9_CENTRE
,
102 TPG_VIDEO_ASPECT_16X9_ANAMORPHIC
,
105 enum tpg_pixel_aspect
{
106 TPG_PIXEL_ASPECT_SQUARE
,
107 TPG_PIXEL_ASPECT_NTSC
,
108 TPG_PIXEL_ASPECT_PAL
,
128 extern const char * const tpg_aspect_strings
[];
130 #define TPG_MAX_PLANES 3
131 #define TPG_MAX_PAT_LINES 8
134 /* Source frame size */
135 unsigned src_width
, src_height
;
138 /* Scaled output frame size */
139 unsigned scaled_width
;
141 bool field_alternate
;
142 /* crop coordinates are frame-based */
143 struct v4l2_rect crop
;
144 /* compose coordinates are format-based */
145 struct v4l2_rect compose
;
146 /* border and square coordinates are frame-based */
147 struct v4l2_rect border
;
148 struct v4l2_rect square
;
150 /* Color-related fields */
151 enum tpg_quality qual
;
152 unsigned qual_offset
;
160 enum tgp_color_enc color_enc
;
166 * Stores the actual transfer function, i.e. will never be
167 * V4L2_XFER_FUNC_DEFAULT.
171 * Stores the actual Y'CbCr encoding, i.e. will never be
172 * V4L2_YCBCR_ENC_DEFAULT.
178 * Stores the actual quantization, i.e. will never be
179 * V4L2_QUANTIZATION_DEFAULT.
181 u32 real_quantization
;
182 enum tpg_video_aspect vid_aspect
;
183 enum tpg_pixel_aspect pix_aspect
;
185 unsigned real_rgb_range
;
189 u8 vdownsampling
[TPG_MAX_PLANES
];
190 u8 hdownsampling
[TPG_MAX_PLANES
];
192 * horizontal positions must be ANDed with this value to enforce
193 * correct boundaries for packed YUYV values.
195 unsigned hmask
[TPG_MAX_PLANES
];
196 /* Used to store the colors in native format, either RGB or YUV */
197 u8 colors
[TPG_COLOR_MAX
][3];
198 u8 textfg
[TPG_MAX_PLANES
][8], textbg
[TPG_MAX_PLANES
][8];
199 /* size in bytes for two pixels in each plane */
200 unsigned twopixelsize
[TPG_MAX_PLANES
];
201 unsigned bytesperline
[TPG_MAX_PLANES
];
204 enum tpg_pattern pattern
;
208 bool perc_fill_blank
;
214 /* Test pattern movement */
215 enum tpg_move_mode mv_hor_mode
;
218 enum tpg_move_mode mv_vert_mode
;
224 bool recalc_square_border
;
226 /* Used to store TPG_MAX_PAT_LINES lines, each with up to two planes */
227 unsigned max_line_width
;
228 u8
*lines
[TPG_MAX_PAT_LINES
][TPG_MAX_PLANES
];
229 u8
*downsampled_lines
[TPG_MAX_PAT_LINES
][TPG_MAX_PLANES
];
230 u8
*random_line
[TPG_MAX_PLANES
];
231 u8
*contrast_line
[TPG_MAX_PLANES
];
232 u8
*black_line
[TPG_MAX_PLANES
];
235 void tpg_init(struct tpg_data
*tpg
, unsigned w
, unsigned h
);
236 int tpg_alloc(struct tpg_data
*tpg
, unsigned max_w
);
237 void tpg_free(struct tpg_data
*tpg
);
238 void tpg_reset_source(struct tpg_data
*tpg
, unsigned width
, unsigned height
,
240 void tpg_log_status(struct tpg_data
*tpg
);
242 void tpg_set_font(const u8
*f
);
243 void tpg_gen_text(const struct tpg_data
*tpg
,
244 u8
*basep
[TPG_MAX_PLANES
][2], int y
, int x
, char *text
);
245 void tpg_calc_text_basep(struct tpg_data
*tpg
,
246 u8
*basep
[TPG_MAX_PLANES
][2], unsigned p
, u8
*vbuf
);
247 unsigned tpg_g_interleaved_plane(const struct tpg_data
*tpg
, unsigned buf_line
);
248 void tpg_fill_plane_buffer(struct tpg_data
*tpg
, v4l2_std_id std
,
249 unsigned p
, u8
*vbuf
);
250 void tpg_fillbuffer(struct tpg_data
*tpg
, v4l2_std_id std
,
251 unsigned p
, u8
*vbuf
);
252 bool tpg_s_fourcc(struct tpg_data
*tpg
, u32 fourcc
);
253 void tpg_s_crop_compose(struct tpg_data
*tpg
, const struct v4l2_rect
*crop
,
254 const struct v4l2_rect
*compose
);
256 static inline void tpg_s_pattern(struct tpg_data
*tpg
, enum tpg_pattern pattern
)
258 if (tpg
->pattern
== pattern
)
260 tpg
->pattern
= pattern
;
261 tpg
->recalc_colors
= true;
264 static inline void tpg_s_quality(struct tpg_data
*tpg
,
265 enum tpg_quality qual
, unsigned qual_offset
)
267 if (tpg
->qual
== qual
&& tpg
->qual_offset
== qual_offset
)
270 tpg
->qual_offset
= qual_offset
;
271 tpg
->recalc_colors
= true;
274 static inline enum tpg_quality
tpg_g_quality(const struct tpg_data
*tpg
)
279 static inline void tpg_s_alpha_component(struct tpg_data
*tpg
,
282 if (tpg
->alpha_component
== alpha_component
)
284 tpg
->alpha_component
= alpha_component
;
285 tpg
->recalc_colors
= true;
288 static inline void tpg_s_alpha_mode(struct tpg_data
*tpg
,
291 if (tpg
->alpha_red_only
== red_only
)
293 tpg
->alpha_red_only
= red_only
;
294 tpg
->recalc_colors
= true;
297 static inline void tpg_s_brightness(struct tpg_data
*tpg
,
300 if (tpg
->brightness
== brightness
)
302 tpg
->brightness
= brightness
;
303 tpg
->recalc_colors
= true;
306 static inline void tpg_s_contrast(struct tpg_data
*tpg
,
309 if (tpg
->contrast
== contrast
)
311 tpg
->contrast
= contrast
;
312 tpg
->recalc_colors
= true;
315 static inline void tpg_s_saturation(struct tpg_data
*tpg
,
318 if (tpg
->saturation
== saturation
)
320 tpg
->saturation
= saturation
;
321 tpg
->recalc_colors
= true;
324 static inline void tpg_s_hue(struct tpg_data
*tpg
,
330 tpg
->recalc_colors
= true;
333 static inline void tpg_s_rgb_range(struct tpg_data
*tpg
,
336 if (tpg
->rgb_range
== rgb_range
)
338 tpg
->rgb_range
= rgb_range
;
339 tpg
->recalc_colors
= true;
342 static inline void tpg_s_real_rgb_range(struct tpg_data
*tpg
,
345 if (tpg
->real_rgb_range
== rgb_range
)
347 tpg
->real_rgb_range
= rgb_range
;
348 tpg
->recalc_colors
= true;
351 static inline void tpg_s_colorspace(struct tpg_data
*tpg
, u32 colorspace
)
353 if (tpg
->colorspace
== colorspace
)
355 tpg
->colorspace
= colorspace
;
356 tpg
->recalc_colors
= true;
359 static inline u32
tpg_g_colorspace(const struct tpg_data
*tpg
)
361 return tpg
->colorspace
;
364 static inline void tpg_s_ycbcr_enc(struct tpg_data
*tpg
, u32 ycbcr_enc
)
366 if (tpg
->ycbcr_enc
== ycbcr_enc
)
368 tpg
->ycbcr_enc
= ycbcr_enc
;
369 tpg
->recalc_colors
= true;
372 static inline u32
tpg_g_ycbcr_enc(const struct tpg_data
*tpg
)
374 return tpg
->ycbcr_enc
;
377 static inline void tpg_s_hsv_enc(struct tpg_data
*tpg
, u32 hsv_enc
)
379 if (tpg
->hsv_enc
== hsv_enc
)
381 tpg
->hsv_enc
= hsv_enc
;
382 tpg
->recalc_colors
= true;
385 static inline u32
tpg_g_hsv_enc(const struct tpg_data
*tpg
)
390 static inline void tpg_s_xfer_func(struct tpg_data
*tpg
, u32 xfer_func
)
392 if (tpg
->xfer_func
== xfer_func
)
394 tpg
->xfer_func
= xfer_func
;
395 tpg
->recalc_colors
= true;
398 static inline u32
tpg_g_xfer_func(const struct tpg_data
*tpg
)
400 return tpg
->xfer_func
;
403 static inline void tpg_s_quantization(struct tpg_data
*tpg
, u32 quantization
)
405 if (tpg
->quantization
== quantization
)
407 tpg
->quantization
= quantization
;
408 tpg
->recalc_colors
= true;
411 static inline u32
tpg_g_quantization(const struct tpg_data
*tpg
)
413 return tpg
->quantization
;
416 static inline unsigned tpg_g_buffers(const struct tpg_data
*tpg
)
421 static inline unsigned tpg_g_planes(const struct tpg_data
*tpg
)
423 return tpg
->interleaved
? 1 : tpg
->planes
;
426 static inline bool tpg_g_interleaved(const struct tpg_data
*tpg
)
428 return tpg
->interleaved
;
431 static inline unsigned tpg_g_twopixelsize(const struct tpg_data
*tpg
, unsigned plane
)
433 return tpg
->twopixelsize
[plane
];
436 static inline unsigned tpg_hdiv(const struct tpg_data
*tpg
,
437 unsigned plane
, unsigned x
)
439 return ((x
/ tpg
->hdownsampling
[plane
]) & tpg
->hmask
[plane
]) *
440 tpg
->twopixelsize
[plane
] / 2;
443 static inline unsigned tpg_hscale(const struct tpg_data
*tpg
, unsigned x
)
445 return (x
* tpg
->scaled_width
) / tpg
->src_width
;
448 static inline unsigned tpg_hscale_div(const struct tpg_data
*tpg
,
449 unsigned plane
, unsigned x
)
451 return tpg_hdiv(tpg
, plane
, tpg_hscale(tpg
, x
));
454 static inline unsigned tpg_g_bytesperline(const struct tpg_data
*tpg
, unsigned plane
)
456 return tpg
->bytesperline
[plane
];
459 static inline void tpg_s_bytesperline(struct tpg_data
*tpg
, unsigned plane
, unsigned bpl
)
463 if (tpg
->buffers
> 1) {
464 tpg
->bytesperline
[plane
] = bpl
;
468 for (p
= 0; p
< tpg_g_planes(tpg
); p
++) {
469 unsigned plane_w
= bpl
* tpg
->twopixelsize
[p
] / tpg
->twopixelsize
[0];
471 tpg
->bytesperline
[p
] = plane_w
/ tpg
->hdownsampling
[p
];
473 if (tpg_g_interleaved(tpg
))
474 tpg
->bytesperline
[1] = tpg
->bytesperline
[0];
478 static inline unsigned tpg_g_line_width(const struct tpg_data
*tpg
, unsigned plane
)
483 if (tpg
->buffers
> 1)
484 return tpg_g_bytesperline(tpg
, plane
);
485 for (p
= 0; p
< tpg_g_planes(tpg
); p
++) {
486 unsigned plane_w
= tpg_g_bytesperline(tpg
, p
);
488 w
+= plane_w
/ tpg
->vdownsampling
[p
];
493 static inline unsigned tpg_calc_line_width(const struct tpg_data
*tpg
,
494 unsigned plane
, unsigned bpl
)
499 if (tpg
->buffers
> 1)
501 for (p
= 0; p
< tpg_g_planes(tpg
); p
++) {
502 unsigned plane_w
= bpl
* tpg
->twopixelsize
[p
] / tpg
->twopixelsize
[0];
504 plane_w
/= tpg
->hdownsampling
[p
];
505 w
+= plane_w
/ tpg
->vdownsampling
[p
];
510 static inline unsigned tpg_calc_plane_size(const struct tpg_data
*tpg
, unsigned plane
)
512 if (plane
>= tpg_g_planes(tpg
))
515 return tpg_g_bytesperline(tpg
, plane
) * tpg
->buf_height
/
516 tpg
->vdownsampling
[plane
];
519 static inline void tpg_s_buf_height(struct tpg_data
*tpg
, unsigned h
)
524 static inline void tpg_s_field(struct tpg_data
*tpg
, unsigned field
, bool alternate
)
527 tpg
->field_alternate
= alternate
;
530 static inline void tpg_s_perc_fill(struct tpg_data
*tpg
,
533 tpg
->perc_fill
= perc_fill
;
536 static inline unsigned tpg_g_perc_fill(const struct tpg_data
*tpg
)
538 return tpg
->perc_fill
;
541 static inline void tpg_s_perc_fill_blank(struct tpg_data
*tpg
,
542 bool perc_fill_blank
)
544 tpg
->perc_fill_blank
= perc_fill_blank
;
547 static inline void tpg_s_video_aspect(struct tpg_data
*tpg
,
548 enum tpg_video_aspect vid_aspect
)
550 if (tpg
->vid_aspect
== vid_aspect
)
552 tpg
->vid_aspect
= vid_aspect
;
553 tpg
->recalc_square_border
= true;
556 static inline enum tpg_video_aspect
tpg_g_video_aspect(const struct tpg_data
*tpg
)
558 return tpg
->vid_aspect
;
561 static inline void tpg_s_pixel_aspect(struct tpg_data
*tpg
,
562 enum tpg_pixel_aspect pix_aspect
)
564 if (tpg
->pix_aspect
== pix_aspect
)
566 tpg
->pix_aspect
= pix_aspect
;
567 tpg
->recalc_square_border
= true;
570 static inline void tpg_s_show_border(struct tpg_data
*tpg
,
573 tpg
->show_border
= show_border
;
576 static inline void tpg_s_show_square(struct tpg_data
*tpg
,
579 tpg
->show_square
= show_square
;
582 static inline void tpg_s_insert_sav(struct tpg_data
*tpg
, bool insert_sav
)
584 tpg
->insert_sav
= insert_sav
;
587 static inline void tpg_s_insert_eav(struct tpg_data
*tpg
, bool insert_eav
)
589 tpg
->insert_eav
= insert_eav
;
592 void tpg_update_mv_step(struct tpg_data
*tpg
);
594 static inline void tpg_s_mv_hor_mode(struct tpg_data
*tpg
,
595 enum tpg_move_mode mv_hor_mode
)
597 tpg
->mv_hor_mode
= mv_hor_mode
;
598 tpg_update_mv_step(tpg
);
601 static inline void tpg_s_mv_vert_mode(struct tpg_data
*tpg
,
602 enum tpg_move_mode mv_vert_mode
)
604 tpg
->mv_vert_mode
= mv_vert_mode
;
605 tpg_update_mv_step(tpg
);
608 static inline void tpg_init_mv_count(struct tpg_data
*tpg
)
610 tpg
->mv_hor_count
= tpg
->mv_vert_count
= 0;
613 static inline void tpg_update_mv_count(struct tpg_data
*tpg
, bool frame_is_field
)
615 tpg
->mv_hor_count
+= tpg
->mv_hor_step
* (frame_is_field
? 1 : 2);
616 tpg
->mv_vert_count
+= tpg
->mv_vert_step
* (frame_is_field
? 1 : 2);
619 static inline void tpg_s_hflip(struct tpg_data
*tpg
, bool hflip
)
621 if (tpg
->hflip
== hflip
)
624 tpg_update_mv_step(tpg
);
625 tpg
->recalc_lines
= true;
628 static inline bool tpg_g_hflip(const struct tpg_data
*tpg
)
633 static inline void tpg_s_vflip(struct tpg_data
*tpg
, bool vflip
)
638 static inline bool tpg_g_vflip(const struct tpg_data
*tpg
)
643 static inline bool tpg_pattern_is_static(const struct tpg_data
*tpg
)
645 return tpg
->pattern
!= TPG_PAT_NOISE
&&
646 tpg
->mv_hor_mode
== TPG_MOVE_NONE
&&
647 tpg
->mv_vert_mode
== TPG_MOVE_NONE
;