Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | // SPDX-License-Identifier: GPL-2.0-only /* * vivid-vbi-gen.c - vbi generator support functions. * * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved. */ #include <linux/errno.h> #include <linux/kernel.h> #include <linux/ktime.h> #include <linux/string.h> #include <linux/videodev2.h> #include "vivid-vbi-gen.h" static void wss_insert(u8 *wss, u32 val, unsigned size) { while (size--) *wss++ = (val & (1 << size)) ? 0xc0 : 0x10; } static void vivid_vbi_gen_wss_raw(const struct v4l2_sliced_vbi_data *data, u8 *buf, unsigned sampling_rate) { const unsigned rate = 5000000; /* WSS has a 5 MHz transmission rate */ u8 wss[29 + 24 + 24 + 24 + 18 + 18] = { 0 }; const unsigned zero = 0x07; const unsigned one = 0x38; unsigned bit = 0; u16 wss_data; int i; wss_insert(wss + bit, 0x1f1c71c7, 29); bit += 29; wss_insert(wss + bit, 0x1e3c1f, 24); bit += 24; wss_data = (data->data[1] << 8) | data->data[0]; for (i = 0; i <= 13; i++, bit += 6) wss_insert(wss + bit, (wss_data & (1 << i)) ? one : zero, 6); for (i = 0, bit = 0; bit < sizeof(wss); bit++) { unsigned n = ((bit + 1) * sampling_rate) / rate; while (i < n) buf[i++] = wss[bit]; } } static void vivid_vbi_gen_teletext_raw(const struct v4l2_sliced_vbi_data *data, u8 *buf, unsigned sampling_rate) { const unsigned rate = 6937500 / 10; /* Teletext has a 6.9375 MHz transmission rate */ u8 teletext[45] = { 0x55, 0x55, 0x27 }; unsigned bit = 0; int i; memcpy(teletext + 3, data->data, sizeof(teletext) - 3); /* prevents 32 bit overflow */ sampling_rate /= 10; for (i = 0, bit = 0; bit < sizeof(teletext) * 8; bit++) { unsigned n = ((bit + 1) * sampling_rate) / rate; u8 val = (teletext[bit / 8] & (1 << (bit & 7))) ? 0xc0 : 0x10; while (i < n) buf[i++] = val; } } static void cc_insert(u8 *cc, u8 ch) { unsigned tot = 0; unsigned i; for (i = 0; i < 7; i++) { cc[2 * i] = cc[2 * i + 1] = (ch & (1 << i)) ? 1 : 0; tot += cc[2 * i]; } cc[14] = cc[15] = !(tot & 1); } #define CC_PREAMBLE_BITS (14 + 4 + 2) static void vivid_vbi_gen_cc_raw(const struct v4l2_sliced_vbi_data *data, u8 *buf, unsigned sampling_rate) { const unsigned rate = 1000000; /* CC has a 1 MHz transmission rate */ u8 cc[CC_PREAMBLE_BITS + 2 * 16] = { /* Clock run-in: 7 cycles */ 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, /* 2 cycles of 0 */ 0, 0, 0, 0, /* Start bit of 1 (each bit is two cycles) */ 1, 1 }; unsigned bit, i; cc_insert(cc + CC_PREAMBLE_BITS, data->data[0]); cc_insert(cc + CC_PREAMBLE_BITS + 16, data->data[1]); for (i = 0, bit = 0; bit < sizeof(cc); bit++) { unsigned n = ((bit + 1) * sampling_rate) / rate; while (i < n) buf[i++] = cc[bit] ? 0xc0 : 0x10; } } void vivid_vbi_gen_raw(const struct vivid_vbi_gen_data *vbi, const struct v4l2_vbi_format *vbi_fmt, u8 *buf) { unsigned idx; for (idx = 0; idx < 25; idx++) { const struct v4l2_sliced_vbi_data *data = vbi->data + idx; unsigned start_2nd_field; unsigned line = data->line; u8 *linebuf = buf; start_2nd_field = (data->id & V4L2_SLICED_VBI_525) ? 263 : 313; if (data->field) line += start_2nd_field; line -= vbi_fmt->start[data->field]; if (vbi_fmt->flags & V4L2_VBI_INTERLACED) linebuf += (line * 2 + data->field) * vbi_fmt->samples_per_line; else linebuf += (line + data->field * vbi_fmt->count[0]) * vbi_fmt->samples_per_line; if (data->id == V4L2_SLICED_CAPTION_525) vivid_vbi_gen_cc_raw(data, linebuf, vbi_fmt->sampling_rate); else if (data->id == V4L2_SLICED_WSS_625) vivid_vbi_gen_wss_raw(data, linebuf, vbi_fmt->sampling_rate); else if (data->id == V4L2_SLICED_TELETEXT_B) vivid_vbi_gen_teletext_raw(data, linebuf, vbi_fmt->sampling_rate); } } static const u8 vivid_cc_sequence1[30] = { 0x14, 0x20, /* Resume Caption Loading */ 'H', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!', 0x14, 0x2f, /* End of Caption */ }; static const u8 vivid_cc_sequence2[30] = { 0x14, 0x20, /* Resume Caption Loading */ 'C', 'l', 'o', 's', 'e', 'd', ' ', 'c', 'a', 'p', 't', 'i', 'o', 'n', 's', ' ', 't', 'e', 's', 't', 0x14, 0x2f, /* End of Caption */ }; static u8 calc_parity(u8 val) { unsigned i; unsigned tot = 0; for (i = 0; i < 7; i++) tot += (val & (1 << i)) ? 1 : 0; return val | ((tot & 1) ? 0 : 0x80); } static void vivid_vbi_gen_set_time_of_day(u8 *packet) { struct tm tm; u8 checksum, i; time64_to_tm(ktime_get_real_seconds(), 0, &tm); packet[0] = calc_parity(0x07); packet[1] = calc_parity(0x01); packet[2] = calc_parity(0x40 | tm.tm_min); packet[3] = calc_parity(0x40 | tm.tm_hour); packet[4] = calc_parity(0x40 | tm.tm_mday); if (tm.tm_mday == 1 && tm.tm_mon == 2 && sys_tz.tz_minuteswest > tm.tm_min + tm.tm_hour * 60) packet[4] = calc_parity(0x60 | tm.tm_mday); packet[5] = calc_parity(0x40 | (1 + tm.tm_mon)); packet[6] = calc_parity(0x40 | (1 + tm.tm_wday)); packet[7] = calc_parity(0x40 | ((tm.tm_year - 90) & 0x3f)); packet[8] = calc_parity(0x0f); for (checksum = i = 0; i <= 8; i++) checksum += packet[i] & 0x7f; packet[9] = calc_parity(0x100 - checksum); packet[10] = calc_parity(0x07); packet[11] = calc_parity(0x04); if (sys_tz.tz_minuteswest >= 0) packet[12] = calc_parity(0x40 | ((sys_tz.tz_minuteswest / 60) & 0x1f)); else packet[12] = calc_parity(0x40 | ((24 + sys_tz.tz_minuteswest / 60) & 0x1f)); packet[13] = calc_parity(0); packet[14] = calc_parity(0x0f); for (checksum = 0, i = 10; i <= 14; i++) checksum += packet[i] & 0x7f; packet[15] = calc_parity(0x100 - checksum); } static const u8 hamming[16] = { 0x15, 0x02, 0x49, 0x5e, 0x64, 0x73, 0x38, 0x2f, 0xd0, 0xc7, 0x8c, 0x9b, 0xa1, 0xb6, 0xfd, 0xea }; static void vivid_vbi_gen_teletext(u8 *packet, unsigned line, unsigned frame) { unsigned offset = 2; unsigned i; packet[0] = hamming[1 + ((line & 1) << 3)]; packet[1] = hamming[line >> 1]; memset(packet + 2, 0x20, 40); if (line == 0) { /* subcode */ packet[2] = hamming[frame % 10]; packet[3] = hamming[frame / 10]; packet[4] = hamming[0]; packet[5] = hamming[0]; packet[6] = hamming[0]; packet[7] = hamming[0]; packet[8] = hamming[0]; packet[9] = hamming[1]; offset = 10; } packet += offset; memcpy(packet, "Page: 100 Row: 10", 17); packet[7] = '0' + frame / 10; packet[8] = '0' + frame % 10; packet[15] = '0' + line / 10; packet[16] = '0' + line % 10; for (i = 0; i < 42 - offset; i++) packet[i] = calc_parity(packet[i]); } void vivid_vbi_gen_sliced(struct vivid_vbi_gen_data *vbi, bool is_60hz, unsigned seqnr) { struct v4l2_sliced_vbi_data *data0 = vbi->data; struct v4l2_sliced_vbi_data *data1 = vbi->data + 1; unsigned frame = seqnr % 60; memset(vbi->data, 0, sizeof(vbi->data)); if (!is_60hz) { unsigned i; for (i = 0; i <= 11; i++) { data0->id = V4L2_SLICED_TELETEXT_B; data0->line = 7 + i; vivid_vbi_gen_teletext(data0->data, i, frame); data0++; } data0->id = V4L2_SLICED_WSS_625; data0->line = 23; /* 4x3 video aspect ratio */ data0->data[0] = 0x08; data0++; for (i = 0; i <= 11; i++) { data0->id = V4L2_SLICED_TELETEXT_B; data0->field = 1; data0->line = 7 + i; vivid_vbi_gen_teletext(data0->data, 12 + i, frame); data0++; } return; } data0->id = V4L2_SLICED_CAPTION_525; data0->line = 21; data1->id = V4L2_SLICED_CAPTION_525; data1->field = 1; data1->line = 21; if (frame < 15) { data0->data[0] = calc_parity(vivid_cc_sequence1[2 * frame]); data0->data[1] = calc_parity(vivid_cc_sequence1[2 * frame + 1]); } else if (frame >= 30 && frame < 45) { frame -= 30; data0->data[0] = calc_parity(vivid_cc_sequence2[2 * frame]); data0->data[1] = calc_parity(vivid_cc_sequence2[2 * frame + 1]); } else { data0->data[0] = calc_parity(0); data0->data[1] = calc_parity(0); } frame = seqnr % (30 * 60); switch (frame) { case 0: vivid_vbi_gen_set_time_of_day(vbi->time_of_day_packet); fallthrough; case 1 ... 7: data1->data[0] = vbi->time_of_day_packet[frame * 2]; data1->data[1] = vbi->time_of_day_packet[frame * 2 + 1]; break; default: data1->data[0] = calc_parity(0); data1->data[1] = calc_parity(0); break; } } |