Path: blob/master/drivers/media/video/cx18/cx18-av-vbi.c
17900 views
/*1* cx18 ADEC VBI functions2*3* Derived from cx25840-vbi.c4*5* Copyright (C) 2007 Hans Verkuil <[email protected]>6*7* This program is free software; you can redistribute it and/or8* modify it under the terms of the GNU General Public License9* as published by the Free Software Foundation; either version 210* of the License, or (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17* You should have received a copy of the GNU General Public License18* along with this program; if not, write to the Free Software19* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA20* 02110-1301, USA.21*/222324#include "cx18-driver.h"2526/*27* For sliced VBI output, we set up to use VIP-1.1, 8-bit mode,28* NN counts 1 byte Dwords, an IDID with the VBI line # in it.29* Thus, according to the VIP-2 Spec, our VBI ancillary data lines30* (should!) look like:31* 4 byte EAV code: 0xff 0x00 0x00 0xRP32* unknown number of possible idle bytes33* 3 byte Anc data preamble: 0x00 0xff 0xff34* 1 byte data identifier: ne010iii (parity bits, 010, DID bits)35* 1 byte secondary data id: nessssss (parity bits, SDID bits)36* 1 byte data word count: necccccc (parity bits, NN Dword count)37* 2 byte Internal DID: VBI-line-# 0x8038* NN data bytes39* 1 byte checksum40* Fill bytes needed to fil out to 4*NN bytes of payload41*42* The RP codes for EAVs when in VIP-1.1 mode, not in raw mode, &43* in the vertical blanking interval are:44* 0xb0 (Task 0 VerticalBlank HorizontalBlank 0 0 0 0)45* 0xf0 (Task EvenField VerticalBlank HorizontalBlank 0 0 0 0)46*47* Since the V bit is only allowed to toggle in the EAV RP code, just48* before the first active region line and for active lines, they are:49* 0x90 (Task 0 0 HorizontalBlank 0 0 0 0)50* 0xd0 (Task EvenField 0 HorizontalBlank 0 0 0 0)51*52* The user application DID bytes we care about are:53* 0x91 (1 0 010 0 !ActiveLine AncDataPresent)54* 0x55 (0 1 010 2ndField !ActiveLine AncDataPresent)55*56*/57static const u8 sliced_vbi_did[2] = { 0x91, 0x55 };5859struct vbi_anc_data {60/* u8 eav[4]; */61/* u8 idle[]; Variable number of idle bytes */62u8 preamble[3];63u8 did;64u8 sdid;65u8 data_count;66u8 idid[2];67u8 payload[1]; /* data_count of payload */68/* u8 checksum; */69/* u8 fill[]; Variable number of fill bytes */70};7172static int odd_parity(u8 c)73{74c ^= (c >> 4);75c ^= (c >> 2);76c ^= (c >> 1);7778return c & 1;79}8081static int decode_vps(u8 *dst, u8 *p)82{83static const u8 biphase_tbl[] = {840xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,850xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,860xd2, 0x5a, 0x52, 0xd2, 0x96, 0x1e, 0x16, 0x96,870x92, 0x1a, 0x12, 0x92, 0xd2, 0x5a, 0x52, 0xd2,880xd0, 0x58, 0x50, 0xd0, 0x94, 0x1c, 0x14, 0x94,890x90, 0x18, 0x10, 0x90, 0xd0, 0x58, 0x50, 0xd0,900xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,910xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,920xe1, 0x69, 0x61, 0xe1, 0xa5, 0x2d, 0x25, 0xa5,930xa1, 0x29, 0x21, 0xa1, 0xe1, 0x69, 0x61, 0xe1,940xc3, 0x4b, 0x43, 0xc3, 0x87, 0x0f, 0x07, 0x87,950x83, 0x0b, 0x03, 0x83, 0xc3, 0x4b, 0x43, 0xc3,960xc1, 0x49, 0x41, 0xc1, 0x85, 0x0d, 0x05, 0x85,970x81, 0x09, 0x01, 0x81, 0xc1, 0x49, 0x41, 0xc1,980xe1, 0x69, 0x61, 0xe1, 0xa5, 0x2d, 0x25, 0xa5,990xa1, 0x29, 0x21, 0xa1, 0xe1, 0x69, 0x61, 0xe1,1000xe0, 0x68, 0x60, 0xe0, 0xa4, 0x2c, 0x24, 0xa4,1010xa0, 0x28, 0x20, 0xa0, 0xe0, 0x68, 0x60, 0xe0,1020xc2, 0x4a, 0x42, 0xc2, 0x86, 0x0e, 0x06, 0x86,1030x82, 0x0a, 0x02, 0x82, 0xc2, 0x4a, 0x42, 0xc2,1040xc0, 0x48, 0x40, 0xc0, 0x84, 0x0c, 0x04, 0x84,1050x80, 0x08, 0x00, 0x80, 0xc0, 0x48, 0x40, 0xc0,1060xe0, 0x68, 0x60, 0xe0, 0xa4, 0x2c, 0x24, 0xa4,1070xa0, 0x28, 0x20, 0xa0, 0xe0, 0x68, 0x60, 0xe0,1080xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,1090xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,1100xd2, 0x5a, 0x52, 0xd2, 0x96, 0x1e, 0x16, 0x96,1110x92, 0x1a, 0x12, 0x92, 0xd2, 0x5a, 0x52, 0xd2,1120xd0, 0x58, 0x50, 0xd0, 0x94, 0x1c, 0x14, 0x94,1130x90, 0x18, 0x10, 0x90, 0xd0, 0x58, 0x50, 0xd0,1140xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,1150xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,116};117118u8 c, err = 0;119int i;120121for (i = 0; i < 2 * 13; i += 2) {122err |= biphase_tbl[p[i]] | biphase_tbl[p[i + 1]];123c = (biphase_tbl[p[i + 1]] & 0xf) |124((biphase_tbl[p[i]] & 0xf) << 4);125dst[i / 2] = c;126}127128return err & 0xf0;129}130131int cx18_av_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)132{133struct cx18 *cx = v4l2_get_subdevdata(sd);134struct cx18_av_state *state = &cx->av_state;135static const u16 lcr2vbi[] = {1360, V4L2_SLICED_TELETEXT_B, 0, /* 1 */1370, V4L2_SLICED_WSS_625, 0, /* 4 */138V4L2_SLICED_CAPTION_525, /* 6 */1390, 0, V4L2_SLICED_VPS, 0, 0, /* 9 */1400, 0, 0, 0141};142int is_pal = !(state->std & V4L2_STD_525_60);143int i;144145memset(svbi, 0, sizeof(*svbi));146/* we're done if raw VBI is active */147if ((cx18_av_read(cx, 0x404) & 0x10) == 0)148return 0;149150if (is_pal) {151for (i = 7; i <= 23; i++) {152u8 v = cx18_av_read(cx, 0x424 + i - 7);153154svbi->service_lines[0][i] = lcr2vbi[v >> 4];155svbi->service_lines[1][i] = lcr2vbi[v & 0xf];156svbi->service_set |= svbi->service_lines[0][i] |157svbi->service_lines[1][i];158}159} else {160for (i = 10; i <= 21; i++) {161u8 v = cx18_av_read(cx, 0x424 + i - 10);162163svbi->service_lines[0][i] = lcr2vbi[v >> 4];164svbi->service_lines[1][i] = lcr2vbi[v & 0xf];165svbi->service_set |= svbi->service_lines[0][i] |166svbi->service_lines[1][i];167}168}169return 0;170}171172int cx18_av_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)173{174struct cx18 *cx = v4l2_get_subdevdata(sd);175struct cx18_av_state *state = &cx->av_state;176177/* Setup standard */178cx18_av_std_setup(cx);179180/* VBI Offset */181cx18_av_write(cx, 0x47f, state->slicer_line_delay);182cx18_av_write(cx, 0x404, 0x2e);183return 0;184}185186int cx18_av_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)187{188struct cx18 *cx = v4l2_get_subdevdata(sd);189struct cx18_av_state *state = &cx->av_state;190int is_pal = !(state->std & V4L2_STD_525_60);191int i, x;192u8 lcr[24];193194for (x = 0; x <= 23; x++)195lcr[x] = 0x00;196197/* Setup standard */198cx18_av_std_setup(cx);199200/* Sliced VBI */201cx18_av_write(cx, 0x404, 0x32); /* Ancillary data */202cx18_av_write(cx, 0x406, 0x13);203cx18_av_write(cx, 0x47f, state->slicer_line_delay);204205/* Force impossible lines to 0 */206if (is_pal) {207for (i = 0; i <= 6; i++)208svbi->service_lines[0][i] =209svbi->service_lines[1][i] = 0;210} else {211for (i = 0; i <= 9; i++)212svbi->service_lines[0][i] =213svbi->service_lines[1][i] = 0;214215for (i = 22; i <= 23; i++)216svbi->service_lines[0][i] =217svbi->service_lines[1][i] = 0;218}219220/* Build register values for requested service lines */221for (i = 7; i <= 23; i++) {222for (x = 0; x <= 1; x++) {223switch (svbi->service_lines[1-x][i]) {224case V4L2_SLICED_TELETEXT_B:225lcr[i] |= 1 << (4 * x);226break;227case V4L2_SLICED_WSS_625:228lcr[i] |= 4 << (4 * x);229break;230case V4L2_SLICED_CAPTION_525:231lcr[i] |= 6 << (4 * x);232break;233case V4L2_SLICED_VPS:234lcr[i] |= 9 << (4 * x);235break;236}237}238}239240if (is_pal) {241for (x = 1, i = 0x424; i <= 0x434; i++, x++)242cx18_av_write(cx, i, lcr[6 + x]);243} else {244for (x = 1, i = 0x424; i <= 0x430; i++, x++)245cx18_av_write(cx, i, lcr[9 + x]);246for (i = 0x431; i <= 0x434; i++)247cx18_av_write(cx, i, 0);248}249250cx18_av_write(cx, 0x43c, 0x16);251/* Should match vblank set in cx18_av_std_setup() */252cx18_av_write(cx, 0x474, is_pal ? 38 : 26);253return 0;254}255256int cx18_av_decode_vbi_line(struct v4l2_subdev *sd,257struct v4l2_decode_vbi_line *vbi)258{259struct cx18 *cx = v4l2_get_subdevdata(sd);260struct cx18_av_state *state = &cx->av_state;261struct vbi_anc_data *anc = (struct vbi_anc_data *)vbi->p;262u8 *p;263int did, sdid, l, err = 0;264265/*266* Check for the ancillary data header for sliced VBI267*/268if (anc->preamble[0] ||269anc->preamble[1] != 0xff || anc->preamble[2] != 0xff ||270(anc->did != sliced_vbi_did[0] &&271anc->did != sliced_vbi_did[1])) {272vbi->line = vbi->type = 0;273return 0;274}275276did = anc->did;277sdid = anc->sdid & 0xf;278l = anc->idid[0] & 0x3f;279l += state->slicer_line_offset;280p = anc->payload;281282/* Decode the SDID set by the slicer */283switch (sdid) {284case 1:285sdid = V4L2_SLICED_TELETEXT_B;286break;287case 4:288sdid = V4L2_SLICED_WSS_625;289break;290case 6:291sdid = V4L2_SLICED_CAPTION_525;292err = !odd_parity(p[0]) || !odd_parity(p[1]);293break;294case 9:295sdid = V4L2_SLICED_VPS;296if (decode_vps(p, p) != 0)297err = 1;298break;299default:300sdid = 0;301err = 1;302break;303}304305vbi->type = err ? 0 : sdid;306vbi->line = err ? 0 : l;307vbi->is_second_field = err ? 0 : (did == sliced_vbi_did[1]);308vbi->p = p;309return 0;310}311312313