2 * vivid-tpg.h - Test Pattern Generator
4 * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
6 * This program is free software; you may redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
11 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
12 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
13 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
14 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
15 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
16 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 #include <linux/types.h>
24 #include <linux/errno.h>
25 #include <linux/random.h>
26 #include <linux/slab.h>
27 #include <linux/vmalloc.h>
28 #include <linux/videodev2.h>
30 #include "vivid-tpg-colors.h"
36 TPG_PAT_100_HCOLORBAR
,
37 TPG_PAT_100_COLORSQUARES
,
43 TPG_PAT_CHECKERS_16X16
,
46 TPG_PAT_COLOR_CHECKERS_2X2
,
47 TPG_PAT_COLOR_CHECKERS_1X1
,
48 TPG_PAT_ALTERNATING_HLINES
,
49 TPG_PAT_ALTERNATING_VLINES
,
50 TPG_PAT_CROSS_1_PIXEL
,
51 TPG_PAT_CROSS_2_PIXELS
,
52 TPG_PAT_CROSS_10_PIXELS
,
55 /* Must be the last pattern */
59 extern const char * const tpg_pattern_strings
[];
67 enum tpg_video_aspect
{
68 TPG_VIDEO_ASPECT_IMAGE
,
70 TPG_VIDEO_ASPECT_14X9_CENTRE
,
71 TPG_VIDEO_ASPECT_16X9_CENTRE
,
72 TPG_VIDEO_ASPECT_16X9_ANAMORPHIC
,
75 enum tpg_pixel_aspect
{
76 TPG_PIXEL_ASPECT_SQUARE
,
77 TPG_PIXEL_ASPECT_NTSC
,
91 extern const char * const tpg_aspect_strings
[];
93 #define TPG_MAX_PLANES 3
94 #define TPG_MAX_PAT_LINES 8
97 /* Source frame size */
98 unsigned src_width
, src_height
;
101 /* Scaled output frame size */
102 unsigned scaled_width
;
104 bool field_alternate
;
105 /* crop coordinates are frame-based */
106 struct v4l2_rect crop
;
107 /* compose coordinates are format-based */
108 struct v4l2_rect compose
;
109 /* border and square coordinates are frame-based */
110 struct v4l2_rect border
;
111 struct v4l2_rect square
;
113 /* Color-related fields */
114 enum tpg_quality qual
;
115 unsigned qual_offset
;
128 * Stores the actual transfer function, i.e. will never be
129 * V4L2_XFER_FUNC_DEFAULT.
133 * Stores the actual Y'CbCr encoding, i.e. will never be
134 * V4L2_YCBCR_ENC_DEFAULT.
139 * Stores the actual quantization, i.e. will never be
140 * V4L2_QUANTIZATION_DEFAULT.
142 u32 real_quantization
;
143 enum tpg_video_aspect vid_aspect
;
144 enum tpg_pixel_aspect pix_aspect
;
146 unsigned real_rgb_range
;
150 u8 vdownsampling
[TPG_MAX_PLANES
];
151 u8 hdownsampling
[TPG_MAX_PLANES
];
153 * horizontal positions must be ANDed with this value to enforce
154 * correct boundaries for packed YUYV values.
156 unsigned hmask
[TPG_MAX_PLANES
];
157 /* Used to store the colors in native format, either RGB or YUV */
158 u8 colors
[TPG_COLOR_MAX
][3];
159 u8 textfg
[TPG_MAX_PLANES
][8], textbg
[TPG_MAX_PLANES
][8];
160 /* size in bytes for two pixels in each plane */
161 unsigned twopixelsize
[TPG_MAX_PLANES
];
162 unsigned bytesperline
[TPG_MAX_PLANES
];
165 enum tpg_pattern pattern
;
169 bool perc_fill_blank
;
175 /* Test pattern movement */
176 enum tpg_move_mode mv_hor_mode
;
179 enum tpg_move_mode mv_vert_mode
;
185 bool recalc_square_border
;
187 /* Used to store TPG_MAX_PAT_LINES lines, each with up to two planes */
188 unsigned max_line_width
;
189 u8
*lines
[TPG_MAX_PAT_LINES
][TPG_MAX_PLANES
];
190 u8
*downsampled_lines
[TPG_MAX_PAT_LINES
][TPG_MAX_PLANES
];
191 u8
*random_line
[TPG_MAX_PLANES
];
192 u8
*contrast_line
[TPG_MAX_PLANES
];
193 u8
*black_line
[TPG_MAX_PLANES
];
196 void tpg_init(struct tpg_data
*tpg
, unsigned w
, unsigned h
);
197 int tpg_alloc(struct tpg_data
*tpg
, unsigned max_w
);
198 void tpg_free(struct tpg_data
*tpg
);
199 void tpg_reset_source(struct tpg_data
*tpg
, unsigned width
, unsigned height
,
201 void tpg_log_status(struct tpg_data
*tpg
);
203 void tpg_set_font(const u8
*f
);
204 void tpg_gen_text(const struct tpg_data
*tpg
,
205 u8
*basep
[TPG_MAX_PLANES
][2], int y
, int x
, char *text
);
206 void tpg_calc_text_basep(struct tpg_data
*tpg
,
207 u8
*basep
[TPG_MAX_PLANES
][2], unsigned p
, u8
*vbuf
);
208 unsigned tpg_g_interleaved_plane(const struct tpg_data
*tpg
, unsigned buf_line
);
209 void tpg_fill_plane_buffer(struct tpg_data
*tpg
, v4l2_std_id std
,
210 unsigned p
, u8
*vbuf
);
211 void tpg_fillbuffer(struct tpg_data
*tpg
, v4l2_std_id std
,
212 unsigned p
, u8
*vbuf
);
213 bool tpg_s_fourcc(struct tpg_data
*tpg
, u32 fourcc
);
214 void tpg_s_crop_compose(struct tpg_data
*tpg
, const struct v4l2_rect
*crop
,
215 const struct v4l2_rect
*compose
);
217 static inline void tpg_s_pattern(struct tpg_data
*tpg
, enum tpg_pattern pattern
)
219 if (tpg
->pattern
== pattern
)
221 tpg
->pattern
= pattern
;
222 tpg
->recalc_colors
= true;
225 static inline void tpg_s_quality(struct tpg_data
*tpg
,
226 enum tpg_quality qual
, unsigned qual_offset
)
228 if (tpg
->qual
== qual
&& tpg
->qual_offset
== qual_offset
)
231 tpg
->qual_offset
= qual_offset
;
232 tpg
->recalc_colors
= true;
235 static inline enum tpg_quality
tpg_g_quality(const struct tpg_data
*tpg
)
240 static inline void tpg_s_alpha_component(struct tpg_data
*tpg
,
243 if (tpg
->alpha_component
== alpha_component
)
245 tpg
->alpha_component
= alpha_component
;
246 tpg
->recalc_colors
= true;
249 static inline void tpg_s_alpha_mode(struct tpg_data
*tpg
,
252 if (tpg
->alpha_red_only
== red_only
)
254 tpg
->alpha_red_only
= red_only
;
255 tpg
->recalc_colors
= true;
258 static inline void tpg_s_brightness(struct tpg_data
*tpg
,
261 if (tpg
->brightness
== brightness
)
263 tpg
->brightness
= brightness
;
264 tpg
->recalc_colors
= true;
267 static inline void tpg_s_contrast(struct tpg_data
*tpg
,
270 if (tpg
->contrast
== contrast
)
272 tpg
->contrast
= contrast
;
273 tpg
->recalc_colors
= true;
276 static inline void tpg_s_saturation(struct tpg_data
*tpg
,
279 if (tpg
->saturation
== saturation
)
281 tpg
->saturation
= saturation
;
282 tpg
->recalc_colors
= true;
285 static inline void tpg_s_hue(struct tpg_data
*tpg
,
291 tpg
->recalc_colors
= true;
294 static inline void tpg_s_rgb_range(struct tpg_data
*tpg
,
297 if (tpg
->rgb_range
== rgb_range
)
299 tpg
->rgb_range
= rgb_range
;
300 tpg
->recalc_colors
= true;
303 static inline void tpg_s_real_rgb_range(struct tpg_data
*tpg
,
306 if (tpg
->real_rgb_range
== rgb_range
)
308 tpg
->real_rgb_range
= rgb_range
;
309 tpg
->recalc_colors
= true;
312 static inline void tpg_s_colorspace(struct tpg_data
*tpg
, u32 colorspace
)
314 if (tpg
->colorspace
== colorspace
)
316 tpg
->colorspace
= colorspace
;
317 tpg
->recalc_colors
= true;
320 static inline u32
tpg_g_colorspace(const struct tpg_data
*tpg
)
322 return tpg
->colorspace
;
325 static inline void tpg_s_ycbcr_enc(struct tpg_data
*tpg
, u32 ycbcr_enc
)
327 if (tpg
->ycbcr_enc
== ycbcr_enc
)
329 tpg
->ycbcr_enc
= ycbcr_enc
;
330 tpg
->recalc_colors
= true;
333 static inline u32
tpg_g_ycbcr_enc(const struct tpg_data
*tpg
)
335 return tpg
->ycbcr_enc
;
338 static inline void tpg_s_xfer_func(struct tpg_data
*tpg
, u32 xfer_func
)
340 if (tpg
->xfer_func
== xfer_func
)
342 tpg
->xfer_func
= xfer_func
;
343 tpg
->recalc_colors
= true;
346 static inline u32
tpg_g_xfer_func(const struct tpg_data
*tpg
)
348 return tpg
->xfer_func
;
351 static inline void tpg_s_quantization(struct tpg_data
*tpg
, u32 quantization
)
353 if (tpg
->quantization
== quantization
)
355 tpg
->quantization
= quantization
;
356 tpg
->recalc_colors
= true;
359 static inline u32
tpg_g_quantization(const struct tpg_data
*tpg
)
361 return tpg
->quantization
;
364 static inline unsigned tpg_g_buffers(const struct tpg_data
*tpg
)
369 static inline unsigned tpg_g_planes(const struct tpg_data
*tpg
)
371 return tpg
->interleaved
? 1 : tpg
->planes
;
374 static inline bool tpg_g_interleaved(const struct tpg_data
*tpg
)
376 return tpg
->interleaved
;
379 static inline unsigned tpg_g_twopixelsize(const struct tpg_data
*tpg
, unsigned plane
)
381 return tpg
->twopixelsize
[plane
];
384 static inline unsigned tpg_hdiv(const struct tpg_data
*tpg
,
385 unsigned plane
, unsigned x
)
387 return ((x
/ tpg
->hdownsampling
[plane
]) & tpg
->hmask
[plane
]) *
388 tpg
->twopixelsize
[plane
] / 2;
391 static inline unsigned tpg_hscale(const struct tpg_data
*tpg
, unsigned x
)
393 return (x
* tpg
->scaled_width
) / tpg
->src_width
;
396 static inline unsigned tpg_hscale_div(const struct tpg_data
*tpg
,
397 unsigned plane
, unsigned x
)
399 return tpg_hdiv(tpg
, plane
, tpg_hscale(tpg
, x
));
402 static inline unsigned tpg_g_bytesperline(const struct tpg_data
*tpg
, unsigned plane
)
404 return tpg
->bytesperline
[plane
];
407 static inline void tpg_s_bytesperline(struct tpg_data
*tpg
, unsigned plane
, unsigned bpl
)
411 if (tpg
->buffers
> 1) {
412 tpg
->bytesperline
[plane
] = bpl
;
416 for (p
= 0; p
< tpg_g_planes(tpg
); p
++) {
417 unsigned plane_w
= bpl
* tpg
->twopixelsize
[p
] / tpg
->twopixelsize
[0];
419 tpg
->bytesperline
[p
] = plane_w
/ tpg
->hdownsampling
[p
];
424 static inline unsigned tpg_g_line_width(const struct tpg_data
*tpg
, unsigned plane
)
429 if (tpg
->buffers
> 1)
430 return tpg_g_bytesperline(tpg
, plane
);
431 for (p
= 0; p
< tpg_g_planes(tpg
); p
++) {
432 unsigned plane_w
= tpg_g_bytesperline(tpg
, p
);
434 w
+= plane_w
/ tpg
->vdownsampling
[p
];
439 static inline unsigned tpg_calc_line_width(const struct tpg_data
*tpg
,
440 unsigned plane
, unsigned bpl
)
445 if (tpg
->buffers
> 1)
447 for (p
= 0; p
< tpg_g_planes(tpg
); p
++) {
448 unsigned plane_w
= bpl
* tpg
->twopixelsize
[p
] / tpg
->twopixelsize
[0];
450 plane_w
/= tpg
->hdownsampling
[p
];
451 w
+= plane_w
/ tpg
->vdownsampling
[p
];
456 static inline unsigned tpg_calc_plane_size(const struct tpg_data
*tpg
, unsigned plane
)
458 if (plane
>= tpg_g_planes(tpg
))
461 return tpg_g_bytesperline(tpg
, plane
) * tpg
->buf_height
/
462 tpg
->vdownsampling
[plane
];
465 static inline void tpg_s_buf_height(struct tpg_data
*tpg
, unsigned h
)
470 static inline void tpg_s_field(struct tpg_data
*tpg
, unsigned field
, bool alternate
)
473 tpg
->field_alternate
= alternate
;
476 static inline void tpg_s_perc_fill(struct tpg_data
*tpg
,
479 tpg
->perc_fill
= perc_fill
;
482 static inline unsigned tpg_g_perc_fill(const struct tpg_data
*tpg
)
484 return tpg
->perc_fill
;
487 static inline void tpg_s_perc_fill_blank(struct tpg_data
*tpg
,
488 bool perc_fill_blank
)
490 tpg
->perc_fill_blank
= perc_fill_blank
;
493 static inline void tpg_s_video_aspect(struct tpg_data
*tpg
,
494 enum tpg_video_aspect vid_aspect
)
496 if (tpg
->vid_aspect
== vid_aspect
)
498 tpg
->vid_aspect
= vid_aspect
;
499 tpg
->recalc_square_border
= true;
502 static inline enum tpg_video_aspect
tpg_g_video_aspect(const struct tpg_data
*tpg
)
504 return tpg
->vid_aspect
;
507 static inline void tpg_s_pixel_aspect(struct tpg_data
*tpg
,
508 enum tpg_pixel_aspect pix_aspect
)
510 if (tpg
->pix_aspect
== pix_aspect
)
512 tpg
->pix_aspect
= pix_aspect
;
513 tpg
->recalc_square_border
= true;
516 static inline void tpg_s_show_border(struct tpg_data
*tpg
,
519 tpg
->show_border
= show_border
;
522 static inline void tpg_s_show_square(struct tpg_data
*tpg
,
525 tpg
->show_square
= show_square
;
528 static inline void tpg_s_insert_sav(struct tpg_data
*tpg
, bool insert_sav
)
530 tpg
->insert_sav
= insert_sav
;
533 static inline void tpg_s_insert_eav(struct tpg_data
*tpg
, bool insert_eav
)
535 tpg
->insert_eav
= insert_eav
;
538 void tpg_update_mv_step(struct tpg_data
*tpg
);
540 static inline void tpg_s_mv_hor_mode(struct tpg_data
*tpg
,
541 enum tpg_move_mode mv_hor_mode
)
543 tpg
->mv_hor_mode
= mv_hor_mode
;
544 tpg_update_mv_step(tpg
);
547 static inline void tpg_s_mv_vert_mode(struct tpg_data
*tpg
,
548 enum tpg_move_mode mv_vert_mode
)
550 tpg
->mv_vert_mode
= mv_vert_mode
;
551 tpg_update_mv_step(tpg
);
554 static inline void tpg_init_mv_count(struct tpg_data
*tpg
)
556 tpg
->mv_hor_count
= tpg
->mv_vert_count
= 0;
559 static inline void tpg_update_mv_count(struct tpg_data
*tpg
, bool frame_is_field
)
561 tpg
->mv_hor_count
+= tpg
->mv_hor_step
* (frame_is_field
? 1 : 2);
562 tpg
->mv_vert_count
+= tpg
->mv_vert_step
* (frame_is_field
? 1 : 2);
565 static inline void tpg_s_hflip(struct tpg_data
*tpg
, bool hflip
)
567 if (tpg
->hflip
== hflip
)
570 tpg_update_mv_step(tpg
);
571 tpg
->recalc_lines
= true;
574 static inline bool tpg_g_hflip(const struct tpg_data
*tpg
)
579 static inline void tpg_s_vflip(struct tpg_data
*tpg
, bool vflip
)
584 static inline bool tpg_g_vflip(const struct tpg_data
*tpg
)
589 static inline bool tpg_pattern_is_static(const struct tpg_data
*tpg
)
591 return tpg
->pattern
!= TPG_PAT_NOISE
&&
592 tpg
->mv_hor_mode
== TPG_MOVE_NONE
&&
593 tpg
->mv_vert_mode
== TPG_MOVE_NONE
;