cx18-controls.c 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 *  cx18 ioctl control functions
 *
 *  Derived from ivtv-controls.c
 *
 *  Copyright (C) 2007  Hans Verkuil <hverkuil@xs4all.nl>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 *  02111-1307  USA
 */
23
#include <linux/kernel.h>
24 25 26 27 28 29 30 31

#include "cx18-driver.h"
#include "cx18-cards.h"
#include "cx18-ioctl.h"
#include "cx18-audio.h"
#include "cx18-mailbox.h"
#include "cx18-controls.h"

32
/* Must be sorted from low to high control ID! */
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
static const u32 user_ctrls[] = {
	V4L2_CID_USER_CLASS,
	V4L2_CID_BRIGHTNESS,
	V4L2_CID_CONTRAST,
	V4L2_CID_SATURATION,
	V4L2_CID_HUE,
	V4L2_CID_AUDIO_VOLUME,
	V4L2_CID_AUDIO_BALANCE,
	V4L2_CID_AUDIO_BASS,
	V4L2_CID_AUDIO_TREBLE,
	V4L2_CID_AUDIO_MUTE,
	V4L2_CID_AUDIO_LOUDNESS,
	0
};

static const u32 *ctrl_classes[] = {
	user_ctrls,
	cx2341x_mpeg_ctrls,
	NULL
};

54
int cx18_queryctrl(struct file *file, void *fh, struct v4l2_queryctrl *qctrl)
55
{
56
	struct cx18 *cx = ((struct cx18_open_id *)fh)->cx;
57 58 59 60 61 62 63 64
	const char *name;

	qctrl->id = v4l2_ctrl_next(ctrl_classes, qctrl->id);
	if (qctrl->id == 0)
		return -EINVAL;

	switch (qctrl->id) {
	/* Standard V4L2 controls */
65 66
	case V4L2_CID_USER_CLASS:
		return v4l2_ctrl_query_fill(qctrl, 0, 0, 0, 0);
67 68 69 70
	case V4L2_CID_BRIGHTNESS:
	case V4L2_CID_HUE:
	case V4L2_CID_SATURATION:
	case V4L2_CID_CONTRAST:
71
		if (v4l2_subdev_call(cx->sd_av, core, queryctrl, qctrl))
72 73 74 75 76 77 78 79 80
			qctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
		return 0;

	case V4L2_CID_AUDIO_VOLUME:
	case V4L2_CID_AUDIO_MUTE:
	case V4L2_CID_AUDIO_BALANCE:
	case V4L2_CID_AUDIO_BASS:
	case V4L2_CID_AUDIO_TREBLE:
	case V4L2_CID_AUDIO_LOUDNESS:
81
		if (v4l2_subdev_call(cx->sd_av, core, queryctrl, qctrl))
82 83 84 85 86 87 88 89 90 91 92 93 94
			qctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
		return 0;

	default:
		if (cx2341x_ctrl_query(&cx->params, qctrl))
			qctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
		return 0;
	}
	strncpy(qctrl->name, name, sizeof(qctrl->name) - 1);
	qctrl->name[sizeof(qctrl->name) - 1] = 0;
	return 0;
}

95
int cx18_querymenu(struct file *file, void *fh, struct v4l2_querymenu *qmenu)
96
{
97
	struct cx18 *cx = ((struct cx18_open_id *)fh)->cx;
98 99 100
	struct v4l2_queryctrl qctrl;

	qctrl.id = qmenu->id;
101
	cx18_queryctrl(file, fh, &qctrl);
102 103
	return v4l2_ctrl_query_menu(qmenu, &qctrl,
			cx2341x_ctrl_get_menu(&cx->params, qmenu->id));
104 105
}

106 107
static int cx18_try_ctrl(struct file *file, void *fh,
					struct v4l2_ext_control *vctrl)
108
{
109 110 111
	struct v4l2_queryctrl qctrl;
	const char **menu_items = NULL;
	int err;
112

113 114 115 116 117 118 119 120
	qctrl.id = vctrl->id;
	err = cx18_queryctrl(file, fh, &qctrl);
	if (err)
		return err;
	if (qctrl.type == V4L2_CTRL_TYPE_MENU)
		menu_items = v4l2_ctrl_get_menu(qctrl.id);
	return v4l2_ctrl_check(vctrl, &qctrl, menu_items);
}
121

122 123
static int cx18_s_ctrl(struct cx18 *cx, struct v4l2_control *vctrl)
{
124 125 126 127 128 129
	switch (vctrl->id) {
		/* Standard V4L2 controls */
	case V4L2_CID_BRIGHTNESS:
	case V4L2_CID_HUE:
	case V4L2_CID_SATURATION:
	case V4L2_CID_CONTRAST:
130
		return v4l2_subdev_call(cx->sd_av, core, s_ctrl, vctrl);
131 132 133 134 135 136 137

	case V4L2_CID_AUDIO_VOLUME:
	case V4L2_CID_AUDIO_MUTE:
	case V4L2_CID_AUDIO_BALANCE:
	case V4L2_CID_AUDIO_BASS:
	case V4L2_CID_AUDIO_TREBLE:
	case V4L2_CID_AUDIO_LOUDNESS:
138
		return v4l2_subdev_call(cx->sd_av, core, s_ctrl, vctrl);
139 140

	default:
141
		CX18_DEBUG_IOCTL("invalid control 0x%x\n", vctrl->id);
142 143 144 145 146
		return -EINVAL;
	}
	return 0;
}

147
static int cx18_g_ctrl(struct cx18 *cx, struct v4l2_control *vctrl)
148 149 150 151 152 153 154
{
	switch (vctrl->id) {
		/* Standard V4L2 controls */
	case V4L2_CID_BRIGHTNESS:
	case V4L2_CID_HUE:
	case V4L2_CID_SATURATION:
	case V4L2_CID_CONTRAST:
155
		return v4l2_subdev_call(cx->sd_av, core, g_ctrl, vctrl);
156 157 158 159 160 161 162

	case V4L2_CID_AUDIO_VOLUME:
	case V4L2_CID_AUDIO_MUTE:
	case V4L2_CID_AUDIO_BALANCE:
	case V4L2_CID_AUDIO_BASS:
	case V4L2_CID_AUDIO_TREBLE:
	case V4L2_CID_AUDIO_LOUDNESS:
163 164
		return v4l2_subdev_call(cx->sd_av, core, g_ctrl, vctrl);

165
	default:
166
		CX18_DEBUG_IOCTL("invalid control 0x%x\n", vctrl->id);
167 168 169 170 171
		return -EINVAL;
	}
	return 0;
}

172 173 174
static int cx18_setup_vbi_fmt(struct cx18 *cx,
			      enum v4l2_mpeg_stream_vbi_fmt fmt,
			      enum v4l2_mpeg_stream_type type)
175 176 177
{
	if (!(cx->v4l2_cap & V4L2_CAP_SLICED_VBI_CAPTURE))
		return -EINVAL;
178
	if (atomic_read(&cx->ana_capturing) > 0)
179 180
		return -EBUSY;

181
	if (fmt != V4L2_MPEG_STREAM_VBI_FMT_IVTV ||
182 183 184 185
	    !(type == V4L2_MPEG_STREAM_TYPE_MPEG2_PS ||
	      type == V4L2_MPEG_STREAM_TYPE_MPEG2_DVD ||
	      type == V4L2_MPEG_STREAM_TYPE_MPEG2_SVCD)) {
		/* Only IVTV fmt VBI insertion & only MPEG-2 PS type streams */
186 187 188 189 190 191 192 193
		cx->vbi.insert_mpeg = V4L2_MPEG_STREAM_VBI_FMT_NONE;
		CX18_DEBUG_INFO("disabled insertion of sliced VBI data into "
				"the MPEG stream\n");
		return 0;
	}

	/* Allocate sliced VBI buffers if needed. */
	if (cx->vbi.sliced_mpeg_data[0] == NULL) {
194 195 196
		int i;

		for (i = 0; i < CX18_VBI_FRAMES; i++) {
197 198
			cx->vbi.sliced_mpeg_data[i] =
			       kmalloc(CX18_SLICED_MPEG_DATA_BUFSZ, GFP_KERNEL);
199 200 201 202 203
			if (cx->vbi.sliced_mpeg_data[i] == NULL) {
				while (--i >= 0) {
					kfree(cx->vbi.sliced_mpeg_data[i]);
					cx->vbi.sliced_mpeg_data[i] = NULL;
				}
204 205 206 207
				cx->vbi.insert_mpeg =
						  V4L2_MPEG_STREAM_VBI_FMT_NONE;
				CX18_WARN("Unable to allocate buffers for "
					  "sliced VBI data insertion\n");
208 209 210 211 212 213
				return -ENOMEM;
			}
		}
	}

	cx->vbi.insert_mpeg = fmt;
214 215
	CX18_DEBUG_INFO("enabled insertion of sliced VBI data into the MPEG PS,"
			"when sliced VBI is enabled\n");
216

217 218 219 220
	/*
	 * If our current settings have no lines set for capture, store a valid,
	 * default set of service lines to capture, in our current settings.
	 */
221
	if (cx18_get_service_set(cx->vbi.sliced_in) == 0) {
222
		if (cx->is_60hz)
223 224
			cx->vbi.sliced_in->service_set =
							V4L2_SLICED_CAPTION_525;
225 226
		else
			cx->vbi.sliced_in->service_set = V4L2_SLICED_WSS_625;
227
		cx18_expand_service_set(cx->vbi.sliced_in, cx->is_50hz);
228 229 230 231
	}
	return 0;
}

232
int cx18_g_ext_ctrls(struct file *file, void *fh, struct v4l2_ext_controls *c)
233
{
234
	struct cx18 *cx = ((struct cx18_open_id *)fh)->cx;
235 236
	struct v4l2_control ctrl;

237 238 239 240 241 242 243
	if (c->ctrl_class == V4L2_CTRL_CLASS_USER) {
		int i;
		int err = 0;

		for (i = 0; i < c->count; i++) {
			ctrl.id = c->controls[i].id;
			ctrl.value = c->controls[i].value;
244
			err = cx18_g_ctrl(cx, &ctrl);
245 246 247 248
			c->controls[i].value = ctrl.value;
			if (err) {
				c->error_idx = i;
				break;
249 250
			}
		}
251 252 253 254 255 256
		return err;
	}
	if (c->ctrl_class == V4L2_CTRL_CLASS_MPEG)
		return cx2341x_ext_ctrls(&cx->params, 0, c, VIDIOC_G_EXT_CTRLS);
	return -EINVAL;
}
257

258 259 260 261 262 263
int cx18_s_ext_ctrls(struct file *file, void *fh, struct v4l2_ext_controls *c)
{
	struct cx18_open_id *id = fh;
	struct cx18 *cx = id->cx;
	int ret;
	struct v4l2_control ctrl;
264

265 266 267
	ret = v4l2_prio_check(&cx->prio, &id->prio);
	if (ret)
		return ret;
268

269 270 271 272 273 274 275
	if (c->ctrl_class == V4L2_CTRL_CLASS_USER) {
		int i;
		int err = 0;

		for (i = 0; i < c->count; i++) {
			ctrl.id = c->controls[i].id;
			ctrl.value = c->controls[i].value;
276
			err = cx18_s_ctrl(cx, &ctrl);
277 278 279 280
			c->controls[i].value = ctrl.value;
			if (err) {
				c->error_idx = i;
				break;
281 282
			}
		}
283
		return err;
284
	}
285
	if (c->ctrl_class == V4L2_CTRL_CLASS_MPEG) {
286
		static u32 freqs[3] = { 44100, 48000, 32000 };
287
		struct cx18_api_func_private priv;
288 289 290
		struct cx2341x_mpeg_params p = cx->params;
		int err = cx2341x_ext_ctrls(&p, atomic_read(&cx->ana_capturing),
						c, VIDIOC_S_EXT_CTRLS);
291
		unsigned int idx;
292

293
		if (err)
294 295
			return err;

296 297 298 299 300 301 302 303 304 305
		if (p.video_encoding != cx->params.video_encoding) {
			int is_mpeg1 = p.video_encoding ==
						V4L2_MPEG_VIDEO_ENCODING_MPEG_1;
			struct v4l2_format fmt;

			/* fix videodecoder resolution */
			fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
			fmt.fmt.pix.width = cx->params.width
						/ (is_mpeg1 ? 2 : 1);
			fmt.fmt.pix.height = cx->params.height;
306
			v4l2_subdev_call(cx->sd_av, video, s_fmt, &fmt);
307
		}
308 309 310
		priv.cx = cx;
		priv.s = &cx->streams[id->type];
		err = cx2341x_update(&priv, cx18_api_func, &cx->params, &p);
311 312 313 314 315
		if (!err &&
		    (cx->params.stream_vbi_fmt != p.stream_vbi_fmt ||
		     cx->params.stream_type != p.stream_type))
			err = cx18_setup_vbi_fmt(cx, p.stream_vbi_fmt,
						 p.stream_type);
316 317
		cx->params = p;
		cx->dualwatch_stereo_mode = p.audio_properties & 0x0300;
318 319 320
		idx = p.audio_properties & 0x03;
		/* The audio clock of the digitizer must match the codec sample
		   rate otherwise you get some very strange effects. */
321
		if (idx < ARRAY_SIZE(freqs))
322
			cx18_call_all(cx, audio, s_clock_freq, freqs[idx]);
323
		return err;
324
	}
325 326
	return -EINVAL;
}
327

328 329 330 331
int cx18_try_ext_ctrls(struct file *file, void *fh, struct v4l2_ext_controls *c)
{
	struct cx18 *cx = ((struct cx18_open_id *)fh)->cx;

332 333 334 335 336 337 338 339 340 341 342 343 344
	if (c->ctrl_class == V4L2_CTRL_CLASS_USER) {
		int i;
		int err = 0;

		for (i = 0; i < c->count; i++) {
			err = cx18_try_ctrl(file, fh, &c->controls[i]);
			if (err) {
				c->error_idx = i;
				break;
			}
		}
		return err;
	}
345 346 347 348 349
	if (c->ctrl_class == V4L2_CTRL_CLASS_MPEG)
		return cx2341x_ext_ctrls(&cx->params,
						atomic_read(&cx->ana_capturing),
						c, VIDIOC_TRY_EXT_CTRLS);
	return -EINVAL;
350
}