saa6752hs.c 26.8 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 23 24
 /*
    saa6752hs - i2c-driver for the saa6752hs by Philips

    Copyright (C) 2004 Andrew de Quincey

    AC-3 support:

    Copyright (C) 2008 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 vs 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., 675 Mvss Ave, Cambridge, MA 02139, USA.
  */

Linus Torvalds's avatar
Linus Torvalds committed
25 26 27 28 29 30 31 32 33 34
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/poll.h>
#include <linux/i2c.h>
#include <linux/types.h>
35
#include <linux/videodev2.h>
36
#include <media/v4l2-device.h>
37
#include <media/v4l2-common.h>
38
#include <media/v4l2-chip-ident.h>
Linus Torvalds's avatar
Linus Torvalds committed
39 40 41 42 43 44 45 46 47 48 49 50 51
#include <linux/init.h>
#include <linux/crc32.h>

#define MPEG_VIDEO_TARGET_BITRATE_MAX  27000
#define MPEG_VIDEO_MAX_BITRATE_MAX     27000
#define MPEG_TOTAL_TARGET_BITRATE_MAX  27000
#define MPEG_PID_MAX ((1 << 14) - 1)


MODULE_DESCRIPTION("device driver for saa6752hs MPEG2 encoder");
MODULE_AUTHOR("Andrew de Quincey");
MODULE_LICENSE("GPL");

52 53 54 55 56 57 58 59
enum saa6752hs_videoformat {
	SAA6752HS_VF_D1 = 0,    /* standard D1 video format: 720x576 */
	SAA6752HS_VF_2_3_D1 = 1,/* 2/3D1 video format: 480x576 */
	SAA6752HS_VF_1_2_D1 = 2,/* 1/2D1 video format: 352x576 */
	SAA6752HS_VF_SIF = 3,   /* SIF video format: 352x288 */
	SAA6752HS_VF_UNKNOWN,
};

60 61 62 63 64 65 66 67
struct saa6752hs_mpeg_params {
	/* transport streams */
	__u16				ts_pid_pmt;
	__u16				ts_pid_audio;
	__u16				ts_pid_video;
	__u16				ts_pid_pcr;

	/* audio */
68 69 70
	enum v4l2_mpeg_audio_encoding    au_encoding;
	enum v4l2_mpeg_audio_l2_bitrate  au_l2_bitrate;
	enum v4l2_mpeg_audio_ac3_bitrate au_ac3_bitrate;
71 72 73 74 75 76 77 78

	/* video */
	enum v4l2_mpeg_video_aspect	vi_aspect;
	enum v4l2_mpeg_video_bitrate_mode vi_bitrate_mode;
	__u32 				vi_bitrate;
	__u32 				vi_bitrate_peak;
};

79 80
static const struct v4l2_format v4l2_format_table[] =
{
81 82 83 84 85 86 87 88 89 90
	[SAA6752HS_VF_D1] =
		{ .fmt = { .pix = { .width = 720, .height = 576 }}},
	[SAA6752HS_VF_2_3_D1] =
		{ .fmt = { .pix = { .width = 480, .height = 576 }}},
	[SAA6752HS_VF_1_2_D1] =
		{ .fmt = { .pix = { .width = 352, .height = 576 }}},
	[SAA6752HS_VF_SIF] =
		{ .fmt = { .pix = { .width = 352, .height = 288 }}},
	[SAA6752HS_VF_UNKNOWN] =
		{ .fmt = { .pix = { .width = 0, .height = 0}}},
91 92
};

Linus Torvalds's avatar
Linus Torvalds committed
93
struct saa6752hs_state {
94
	struct v4l2_subdev            sd;
95 96 97
	int 			      chip;
	u32 			      revision;
	int 			      has_ac3;
98
	struct saa6752hs_mpeg_params  params;
99
	enum saa6752hs_videoformat    video_format;
100
	v4l2_std_id                   standard;
Linus Torvalds's avatar
Linus Torvalds committed
101 102 103 104
};

enum saa6752hs_command {
	SAA6752HS_COMMAND_RESET = 0,
105 106 107 108 109
	SAA6752HS_COMMAND_STOP = 1,
	SAA6752HS_COMMAND_START = 2,
	SAA6752HS_COMMAND_PAUSE = 3,
	SAA6752HS_COMMAND_RECONFIGURE = 4,
	SAA6752HS_COMMAND_SLEEP = 5,
Linus Torvalds's avatar
Linus Torvalds committed
110 111 112 113 114
	SAA6752HS_COMMAND_RECONFIGURE_FORCE = 6,

	SAA6752HS_COMMAND_MAX
};

115 116 117 118 119
static inline struct saa6752hs_state *to_state(struct v4l2_subdev *sd)
{
	return container_of(sd, struct saa6752hs_state, sd);
}

Linus Torvalds's avatar
Linus Torvalds committed
120 121 122
/* ---------------------------------------------------------------------- */

static u8 PAT[] = {
123 124
	0xc2, /* i2c register */
	0x00, /* table number for encoder */
Linus Torvalds's avatar
Linus Torvalds committed
125

126 127 128
	0x47, /* sync */
	0x40, 0x00, /* transport_error_indicator(0), payload_unit_start(1), transport_priority(0), pid(0) */
	0x10, /* transport_scrambling_control(00), adaptation_field_control(01), continuity_counter(0) */
Linus Torvalds's avatar
Linus Torvalds committed
129

130
	0x00, /* PSI pointer to start of table */
Linus Torvalds's avatar
Linus Torvalds committed
131

132 133
	0x00, /* tid(0) */
	0xb0, 0x0d, /* section_syntax_indicator(1), section_length(13) */
Linus Torvalds's avatar
Linus Torvalds committed
134

135
	0x00, 0x01, /* transport_stream_id(1) */
Linus Torvalds's avatar
Linus Torvalds committed
136

137
	0xc1, /* version_number(0), current_next_indicator(1) */
Linus Torvalds's avatar
Linus Torvalds committed
138

139
	0x00, 0x00, /* section_number(0), last_section_number(0) */
Linus Torvalds's avatar
Linus Torvalds committed
140

141
	0x00, 0x01, /* program_number(1) */
Linus Torvalds's avatar
Linus Torvalds committed
142

143
	0xe0, 0x00, /* PMT PID */
Linus Torvalds's avatar
Linus Torvalds committed
144

145
	0x00, 0x00, 0x00, 0x00 /* CRC32 */
Linus Torvalds's avatar
Linus Torvalds committed
146 147 148
};

static u8 PMT[] = {
149 150
	0xc2, /* i2c register */
	0x01, /* table number for encoder */
Linus Torvalds's avatar
Linus Torvalds committed
151

152 153 154
	0x47, /* sync */
	0x40, 0x00, /* transport_error_indicator(0), payload_unit_start(1), transport_priority(0), pid */
	0x10, /* transport_scrambling_control(00), adaptation_field_control(01), continuity_counter(0) */
Linus Torvalds's avatar
Linus Torvalds committed
155

156
	0x00, /* PSI pointer to start of table */
Linus Torvalds's avatar
Linus Torvalds committed
157

158 159
	0x02, /* tid(2) */
	0xb0, 0x17, /* section_syntax_indicator(1), section_length(23) */
Linus Torvalds's avatar
Linus Torvalds committed
160

161
	0x00, 0x01, /* program_number(1) */
Linus Torvalds's avatar
Linus Torvalds committed
162

163
	0xc1, /* version_number(0), current_next_indicator(1) */
Linus Torvalds's avatar
Linus Torvalds committed
164

165
	0x00, 0x00, /* section_number(0), last_section_number(0) */
Linus Torvalds's avatar
Linus Torvalds committed
166

167
	0xe0, 0x00, /* PCR_PID */
Linus Torvalds's avatar
Linus Torvalds committed
168

169
	0xf0, 0x00, /* program_info_length(0) */
Linus Torvalds's avatar
Linus Torvalds committed
170

171 172
	0x02, 0xe0, 0x00, 0xf0, 0x00, /* video stream type(2), pid */
	0x04, 0xe0, 0x00, 0xf0, 0x00, /* audio stream type(4), pid */
Linus Torvalds's avatar
Linus Torvalds committed
173

174
	0x00, 0x00, 0x00, 0x00 /* CRC32 */
Linus Torvalds's avatar
Linus Torvalds committed
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
static u8 PMT_AC3[] = {
	0xc2, /* i2c register */
	0x01, /* table number for encoder(1) */
	0x47, /* sync */

	0x40, /* transport_error_indicator(0), payload_unit_start(1), transport_priority(0) */
	0x10, /* PMT PID (0x0010) */
	0x10, /* transport_scrambling_control(00), adaptation_field_control(01), continuity_counter(0) */

	0x00, /* PSI pointer to start of table */

	0x02, /* TID (2) */
	0xb0, 0x1a, /* section_syntax_indicator(1), section_length(26) */

	0x00, 0x01, /* program_number(1) */

	0xc1, /* version_number(0), current_next_indicator(1) */

	0x00, 0x00, /* section_number(0), last_section_number(0) */

	0xe1, 0x04, /* PCR_PID (0x0104) */

	0xf0, 0x00, /* program_info_length(0) */

	0x02, 0xe1, 0x00, 0xf0, 0x00, /* video stream type(2), pid */
	0x06, 0xe1, 0x03, 0xf0, 0x03, /* audio stream type(6), pid */
	0x6a, /* AC3 */
	0x01, /* Descriptor_length(1) */
	0x00, /* component_type_flag(0), bsid_flag(0), mainid_flag(0), asvc_flag(0), reserved flags(0) */

	0xED, 0xDE, 0x2D, 0xF3 /* CRC32 BE */
};

210 211 212 213 214 215 216 217 218 219 220 221
static struct saa6752hs_mpeg_params param_defaults =
{
	.ts_pid_pmt      = 16,
	.ts_pid_video    = 260,
	.ts_pid_audio    = 256,
	.ts_pid_pcr      = 259,

	.vi_aspect       = V4L2_MPEG_VIDEO_ASPECT_4x3,
	.vi_bitrate      = 4000,
	.vi_bitrate_peak = 6000,
	.vi_bitrate_mode = V4L2_MPEG_VIDEO_BITRATE_MODE_VBR,

222
	.au_encoding     = V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
223
	.au_l2_bitrate   = V4L2_MPEG_AUDIO_L2_BITRATE_256K,
224
	.au_ac3_bitrate  = V4L2_MPEG_AUDIO_AC3_BITRATE_256K,
225 226
};

Linus Torvalds's avatar
Linus Torvalds committed
227 228
/* ---------------------------------------------------------------------- */

229
static int saa6752hs_chip_command(struct i2c_client *client,
Linus Torvalds's avatar
Linus Torvalds committed
230 231 232 233 234 235
				  enum saa6752hs_command command)
{
	unsigned char buf[3];
	unsigned long timeout;
	int status = 0;

236
	/* execute the command */
Linus Torvalds's avatar
Linus Torvalds committed
237
	switch(command) {
238 239
	case SAA6752HS_COMMAND_RESET:
		buf[0] = 0x00;
Linus Torvalds's avatar
Linus Torvalds committed
240 241 242
		break;

	case SAA6752HS_COMMAND_STOP:
243
		buf[0] = 0x03;
Linus Torvalds's avatar
Linus Torvalds committed
244 245 246
		break;

	case SAA6752HS_COMMAND_START:
247
		buf[0] = 0x02;
Linus Torvalds's avatar
Linus Torvalds committed
248 249 250
		break;

	case SAA6752HS_COMMAND_PAUSE:
251
		buf[0] = 0x04;
Linus Torvalds's avatar
Linus Torvalds committed
252 253 254 255 256 257
		break;

	case SAA6752HS_COMMAND_RECONFIGURE:
		buf[0] = 0x05;
		break;

258 259
	case SAA6752HS_COMMAND_SLEEP:
		buf[0] = 0x06;
Linus Torvalds's avatar
Linus Torvalds committed
260 261
		break;

262
	case SAA6752HS_COMMAND_RECONFIGURE_FORCE:
Linus Torvalds's avatar
Linus Torvalds committed
263 264 265 266 267 268 269
		buf[0] = 0x07;
		break;

	default:
		return -EINVAL;
	}

270
	/* set it and wait for it to be so */
Linus Torvalds's avatar
Linus Torvalds committed
271 272 273
	i2c_master_send(client, buf, 1);
	timeout = jiffies + HZ * 3;
	for (;;) {
274
		/* get the current status */
Linus Torvalds's avatar
Linus Torvalds committed
275
		buf[0] = 0x10;
276
		i2c_master_send(client, buf, 1);
Linus Torvalds's avatar
Linus Torvalds committed
277 278 279 280 281 282 283 284 285 286 287 288
		i2c_master_recv(client, buf, 1);

		if (!(buf[0] & 0x20))
			break;
		if (time_after(jiffies,timeout)) {
			status = -ETIMEDOUT;
			break;
		}

		msleep(10);
	}

289
	/* delay a bit to let encoder settle */
Linus Torvalds's avatar
Linus Torvalds committed
290 291
	msleep(50);

292
	return status;
Linus Torvalds's avatar
Linus Torvalds committed
293 294 295
}


296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
static inline void set_reg8(struct i2c_client *client, uint8_t reg, uint8_t val)
{
	u8 buf[2];

	buf[0] = reg;
	buf[1] = val;
	i2c_master_send(client, buf, 2);
}

static inline void set_reg16(struct i2c_client *client, uint8_t reg, uint16_t val)
{
	u8 buf[3];

	buf[0] = reg;
	buf[1] = val >> 8;
	buf[2] = val & 0xff;
	i2c_master_send(client, buf, 3);
}

static int saa6752hs_set_bitrate(struct i2c_client *client,
316
				 struct saa6752hs_state *h)
Linus Torvalds's avatar
Linus Torvalds committed
317
{
318
	struct saa6752hs_mpeg_params *params = &h->params;
319
	int tot_bitrate;
320
	int is_384k;
Linus Torvalds's avatar
Linus Torvalds committed
321

322
	/* set the bitrate mode */
323 324
	set_reg8(client, 0x71,
		params->vi_bitrate_mode != V4L2_MPEG_VIDEO_BITRATE_MODE_VBR);
Linus Torvalds's avatar
Linus Torvalds committed
325

326
	/* set the video bitrate */
327
	if (params->vi_bitrate_mode == V4L2_MPEG_VIDEO_BITRATE_MODE_VBR) {
328
		/* set the target bitrate */
329
		set_reg16(client, 0x80, params->vi_bitrate);
Linus Torvalds's avatar
Linus Torvalds committed
330

331
		/* set the max bitrate */
332
		set_reg16(client, 0x81, params->vi_bitrate_peak);
333
		tot_bitrate = params->vi_bitrate_peak;
Linus Torvalds's avatar
Linus Torvalds committed
334
	} else {
335
		/* set the target bitrate (no max bitrate for CBR) */
336
		set_reg16(client, 0x81, params->vi_bitrate);
337
		tot_bitrate = params->vi_bitrate;
Linus Torvalds's avatar
Linus Torvalds committed
338 339
	}

340
	/* set the audio encoding */
341 342
	set_reg8(client, 0x93,
			params->au_encoding == V4L2_MPEG_AUDIO_ENCODING_AC3);
343

344
	/* set the audio bitrate */
345
	if (params->au_encoding == V4L2_MPEG_AUDIO_ENCODING_AC3)
346
		is_384k = V4L2_MPEG_AUDIO_AC3_BITRATE_384K == params->au_ac3_bitrate;
347
	else
348 349 350
		is_384k = V4L2_MPEG_AUDIO_L2_BITRATE_384K == params->au_l2_bitrate;
	set_reg8(client, 0x94, is_384k);
	tot_bitrate += is_384k ? 384 : 256;
351 352 353 354 355 356 357 358

	/* Note: the total max bitrate is determined by adding the video and audio
	   bitrates together and also adding an extra 768kbit/s to stay on the
	   safe side. If more control should be required, then an extra MPEG control
	   should be added. */
	tot_bitrate += 768;
	if (tot_bitrate > MPEG_TOTAL_TARGET_BITRATE_MAX)
		tot_bitrate = MPEG_TOTAL_TARGET_BITRATE_MAX;
Linus Torvalds's avatar
Linus Torvalds committed
359

360
	/* set the total bitrate */
361
	set_reg16(client, 0xb1, tot_bitrate);
Linus Torvalds's avatar
Linus Torvalds committed
362 363 364
	return 0;
}

365

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
static int get_ctrl(int has_ac3, struct saa6752hs_mpeg_params *params,
		struct v4l2_ext_control *ctrl)
{
	switch (ctrl->id) {
	case V4L2_CID_MPEG_STREAM_TYPE:
		ctrl->value = V4L2_MPEG_STREAM_TYPE_MPEG2_TS;
		break;
	case V4L2_CID_MPEG_STREAM_PID_PMT:
		ctrl->value = params->ts_pid_pmt;
		break;
	case V4L2_CID_MPEG_STREAM_PID_AUDIO:
		ctrl->value = params->ts_pid_audio;
		break;
	case V4L2_CID_MPEG_STREAM_PID_VIDEO:
		ctrl->value = params->ts_pid_video;
		break;
	case V4L2_CID_MPEG_STREAM_PID_PCR:
		ctrl->value = params->ts_pid_pcr;
		break;
	case V4L2_CID_MPEG_AUDIO_ENCODING:
		ctrl->value = params->au_encoding;
		break;
	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
		ctrl->value = params->au_l2_bitrate;
		break;
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
		if (!has_ac3)
			return -EINVAL;
		ctrl->value = params->au_ac3_bitrate;
		break;
	case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
		ctrl->value = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000;
		break;
	case V4L2_CID_MPEG_VIDEO_ENCODING:
		ctrl->value = V4L2_MPEG_VIDEO_ENCODING_MPEG_2;
		break;
	case V4L2_CID_MPEG_VIDEO_ASPECT:
		ctrl->value = params->vi_aspect;
		break;
	case V4L2_CID_MPEG_VIDEO_BITRATE:
		ctrl->value = params->vi_bitrate * 1000;
		break;
	case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
		ctrl->value = params->vi_bitrate_peak * 1000;
		break;
	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
		ctrl->value = params->vi_bitrate_mode;
		break;
	default:
		return -EINVAL;
416
	}
417
	return 0;
418 419
}

420
static int handle_ctrl(int has_ac3, struct saa6752hs_mpeg_params *params,
421
		struct v4l2_ext_control *ctrl, int set)
422 423 424 425 426
{
	int old = 0, new;

	new = ctrl->value;
	switch (ctrl->id) {
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
	case V4L2_CID_MPEG_STREAM_TYPE:
		old = V4L2_MPEG_STREAM_TYPE_MPEG2_TS;
		if (set && new != old)
			return -ERANGE;
		new = old;
		break;
	case V4L2_CID_MPEG_STREAM_PID_PMT:
		old = params->ts_pid_pmt;
		if (set && new > MPEG_PID_MAX)
			return -ERANGE;
		if (new > MPEG_PID_MAX)
			new = MPEG_PID_MAX;
		params->ts_pid_pmt = new;
		break;
	case V4L2_CID_MPEG_STREAM_PID_AUDIO:
		old = params->ts_pid_audio;
		if (set && new > MPEG_PID_MAX)
			return -ERANGE;
		if (new > MPEG_PID_MAX)
			new = MPEG_PID_MAX;
		params->ts_pid_audio = new;
		break;
	case V4L2_CID_MPEG_STREAM_PID_VIDEO:
		old = params->ts_pid_video;
		if (set && new > MPEG_PID_MAX)
			return -ERANGE;
		if (new > MPEG_PID_MAX)
			new = MPEG_PID_MAX;
		params->ts_pid_video = new;
		break;
	case V4L2_CID_MPEG_STREAM_PID_PCR:
		old = params->ts_pid_pcr;
		if (set && new > MPEG_PID_MAX)
			return -ERANGE;
		if (new > MPEG_PID_MAX)
			new = MPEG_PID_MAX;
		params->ts_pid_pcr = new;
		break;
	case V4L2_CID_MPEG_AUDIO_ENCODING:
		old = params->au_encoding;
		if (set && new != V4L2_MPEG_AUDIO_ENCODING_LAYER_2 &&
		    (!has_ac3 || new != V4L2_MPEG_AUDIO_ENCODING_AC3))
			return -ERANGE;
470
		params->au_encoding = new;
471 472 473 474 475 476 477 478 479 480 481 482 483 484
		break;
	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
		old = params->au_l2_bitrate;
		if (set && new != V4L2_MPEG_AUDIO_L2_BITRATE_256K &&
			   new != V4L2_MPEG_AUDIO_L2_BITRATE_384K)
			return -ERANGE;
		if (new <= V4L2_MPEG_AUDIO_L2_BITRATE_256K)
			new = V4L2_MPEG_AUDIO_L2_BITRATE_256K;
		else
			new = V4L2_MPEG_AUDIO_L2_BITRATE_384K;
		params->au_l2_bitrate = new;
		break;
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
		if (!has_ac3)
485
			return -EINVAL;
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
		old = params->au_ac3_bitrate;
		if (set && new != V4L2_MPEG_AUDIO_AC3_BITRATE_256K &&
			   new != V4L2_MPEG_AUDIO_AC3_BITRATE_384K)
			return -ERANGE;
		if (new <= V4L2_MPEG_AUDIO_AC3_BITRATE_256K)
			new = V4L2_MPEG_AUDIO_AC3_BITRATE_256K;
		else
			new = V4L2_MPEG_AUDIO_AC3_BITRATE_384K;
		params->au_ac3_bitrate = new;
		break;
	case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
		old = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000;
		if (set && new != old)
			return -ERANGE;
		new = old;
		break;
	case V4L2_CID_MPEG_VIDEO_ENCODING:
		old = V4L2_MPEG_VIDEO_ENCODING_MPEG_2;
		if (set && new != old)
			return -ERANGE;
		new = old;
		break;
	case V4L2_CID_MPEG_VIDEO_ASPECT:
		old = params->vi_aspect;
		if (set && new != V4L2_MPEG_VIDEO_ASPECT_16x9 &&
			   new != V4L2_MPEG_VIDEO_ASPECT_4x3)
			return -ERANGE;
		if (new != V4L2_MPEG_VIDEO_ASPECT_16x9)
			new = V4L2_MPEG_VIDEO_ASPECT_4x3;
		params->vi_aspect = new;
		break;
	case V4L2_CID_MPEG_VIDEO_BITRATE:
		old = params->vi_bitrate * 1000;
		new = 1000 * (new / 1000);
		if (set && new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
			return -ERANGE;
		if (new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
			new = MPEG_VIDEO_TARGET_BITRATE_MAX * 1000;
		params->vi_bitrate = new / 1000;
		break;
	case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
		old = params->vi_bitrate_peak * 1000;
		new = 1000 * (new / 1000);
		if (set && new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
			return -ERANGE;
		if (new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
			new = MPEG_VIDEO_TARGET_BITRATE_MAX * 1000;
		params->vi_bitrate_peak = new / 1000;
		break;
	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
		old = params->vi_bitrate_mode;
		params->vi_bitrate_mode = new;
		break;
	default:
		return -EINVAL;
541
	}
542
	ctrl->value = new;
543
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
544 545
}

546 547

static int saa6752hs_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qctrl)
548
{
549
	struct saa6752hs_state *h = to_state(sd);
550
	struct saa6752hs_mpeg_params *params = &h->params;
551 552 553 554 555 556
	int err;

	switch (qctrl->id) {
	case V4L2_CID_MPEG_AUDIO_ENCODING:
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
557 558 559
				h->has_ac3 ? V4L2_MPEG_AUDIO_ENCODING_AC3 :
					V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
				1, V4L2_MPEG_AUDIO_ENCODING_LAYER_2);
560 561 562 563 564 565 566

	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_AUDIO_L2_BITRATE_256K,
				V4L2_MPEG_AUDIO_L2_BITRATE_384K, 1,
				V4L2_MPEG_AUDIO_L2_BITRATE_256K);

567 568 569 570 571 572 573 574
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
		if (!h->has_ac3)
			return -EINVAL;
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_AUDIO_AC3_BITRATE_256K,
				V4L2_MPEG_AUDIO_AC3_BITRATE_384K, 1,
				V4L2_MPEG_AUDIO_AC3_BITRATE_256K);

575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
	case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
				V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000, 1,
				V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000);

	case V4L2_CID_MPEG_VIDEO_ENCODING:
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_VIDEO_ENCODING_MPEG_2,
				V4L2_MPEG_VIDEO_ENCODING_MPEG_2, 1,
				V4L2_MPEG_VIDEO_ENCODING_MPEG_2);

	case V4L2_CID_MPEG_VIDEO_ASPECT:
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_VIDEO_ASPECT_4x3,
				V4L2_MPEG_VIDEO_ASPECT_16x9, 1,
				V4L2_MPEG_VIDEO_ASPECT_4x3);

	case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
594
		err = v4l2_ctrl_query_fill(qctrl, 0, 27000000, 1, 8000000);
595 596 597 598 599 600 601 602 603 604 605 606 607
		if (err == 0 &&
		    params->vi_bitrate_mode ==
				V4L2_MPEG_VIDEO_BITRATE_MODE_CBR)
			qctrl->flags |= V4L2_CTRL_FLAG_INACTIVE;
		return err;

	case V4L2_CID_MPEG_STREAM_TYPE:
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_STREAM_TYPE_MPEG2_TS,
				V4L2_MPEG_STREAM_TYPE_MPEG2_TS, 1,
				V4L2_MPEG_STREAM_TYPE_MPEG2_TS);

	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
608 609 610 611
		return v4l2_ctrl_query_fill(qctrl,
				V4L2_MPEG_VIDEO_BITRATE_MODE_VBR,
				V4L2_MPEG_VIDEO_BITRATE_MODE_CBR, 1,
				V4L2_MPEG_VIDEO_BITRATE_MODE_VBR);
612
	case V4L2_CID_MPEG_VIDEO_BITRATE:
613
		return v4l2_ctrl_query_fill(qctrl, 0, 27000000, 1, 6000000);
614
	case V4L2_CID_MPEG_STREAM_PID_PMT:
615
		return v4l2_ctrl_query_fill(qctrl, 0, (1 << 14) - 1, 1, 16);
616
	case V4L2_CID_MPEG_STREAM_PID_AUDIO:
617
		return v4l2_ctrl_query_fill(qctrl, 0, (1 << 14) - 1, 1, 260);
618
	case V4L2_CID_MPEG_STREAM_PID_VIDEO:
619
		return v4l2_ctrl_query_fill(qctrl, 0, (1 << 14) - 1, 1, 256);
620
	case V4L2_CID_MPEG_STREAM_PID_PCR:
621
		return v4l2_ctrl_query_fill(qctrl, 0, (1 << 14) - 1, 1, 259);
622 623 624 625 626 627 628

	default:
		break;
	}
	return -EINVAL;
}

629
static int saa6752hs_querymenu(struct v4l2_subdev *sd, struct v4l2_querymenu *qmenu)
630
{
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
	static const u32 mpeg_audio_encoding[] = {
		V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
		V4L2_CTRL_MENU_IDS_END
	};
	static const u32 mpeg_audio_ac3_encoding[] = {
		V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
		V4L2_MPEG_AUDIO_ENCODING_AC3,
		V4L2_CTRL_MENU_IDS_END
	};
	static u32 mpeg_audio_l2_bitrate[] = {
		V4L2_MPEG_AUDIO_L2_BITRATE_256K,
		V4L2_MPEG_AUDIO_L2_BITRATE_384K,
		V4L2_CTRL_MENU_IDS_END
	};
	static u32 mpeg_audio_ac3_bitrate[] = {
		V4L2_MPEG_AUDIO_AC3_BITRATE_256K,
		V4L2_MPEG_AUDIO_AC3_BITRATE_384K,
		V4L2_CTRL_MENU_IDS_END
649
	};
650
	struct saa6752hs_state *h = to_state(sd);
651 652 653 654
	struct v4l2_queryctrl qctrl;
	int err;

	qctrl.id = qmenu->id;
655
	err = saa6752hs_queryctrl(sd, &qctrl);
656 657
	if (err)
		return err;
658 659 660
	switch (qmenu->id) {
	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
		return v4l2_ctrl_query_menu_valid_items(qmenu,
661
				mpeg_audio_l2_bitrate);
662 663 664 665 666 667 668 669 670 671 672
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
		if (!h->has_ac3)
			return -EINVAL;
		return v4l2_ctrl_query_menu_valid_items(qmenu,
				mpeg_audio_ac3_bitrate);
	case V4L2_CID_MPEG_AUDIO_ENCODING:
		return v4l2_ctrl_query_menu_valid_items(qmenu,
			h->has_ac3 ? mpeg_audio_ac3_encoding :
				mpeg_audio_encoding);
	}
	return v4l2_ctrl_query_menu(qmenu, &qctrl, NULL);
673 674
}

675
static int saa6752hs_init(struct v4l2_subdev *sd, u32 leading_null_bytes)
Linus Torvalds's avatar
Linus Torvalds committed
676 677
{
	unsigned char buf[9], buf2[4];
678 679
	struct saa6752hs_state *h = to_state(sd);
	struct i2c_client *client = v4l2_get_subdevdata(sd);
680
	unsigned size;
Linus Torvalds's avatar
Linus Torvalds committed
681 682 683 684
	u32 crc;
	unsigned char localPAT[256];
	unsigned char localPMT[256];

685
	/* Set video format - must be done first as it resets other settings */
686
	set_reg8(client, 0x41, h->video_format);
Linus Torvalds's avatar
Linus Torvalds committed
687

688
	/* Set number of lines in input signal */
689
	set_reg8(client, 0x40, (h->standard & V4L2_STD_525_60) ? 1 : 0);
690

691
	/* set bitrate */
692
	saa6752hs_set_bitrate(client, h);
Linus Torvalds's avatar
Linus Torvalds committed
693

694
	/* Set GOP structure {3, 13} */
695
	set_reg16(client, 0x72, 0x030d);
Linus Torvalds's avatar
Linus Torvalds committed
696

697
	/* Set minimum Q-scale {4} */
698
	set_reg8(client, 0x82, 0x04);
Linus Torvalds's avatar
Linus Torvalds committed
699

700
	/* Set maximum Q-scale {12} */
701
	set_reg8(client, 0x83, 0x0c);
Linus Torvalds's avatar
Linus Torvalds committed
702

703
	/* Set Output Protocol */
704
	set_reg8(client, 0xd0, 0x81);
Linus Torvalds's avatar
Linus Torvalds committed
705

706
	/* Set video output stream format {TS} */
707
	set_reg8(client, 0xb0, 0x05);
Linus Torvalds's avatar
Linus Torvalds committed
708

709
	/* Set leading null byte for TS */
710
	set_reg16(client, 0xf6, leading_null_bytes);
711

Linus Torvalds's avatar
Linus Torvalds committed
712 713 714 715 716 717 718 719 720 721 722
	/* compute PAT */
	memcpy(localPAT, PAT, sizeof(PAT));
	localPAT[17] = 0xe0 | ((h->params.ts_pid_pmt >> 8) & 0x0f);
	localPAT[18] = h->params.ts_pid_pmt & 0xff;
	crc = crc32_be(~0, &localPAT[7], sizeof(PAT) - 7 - 4);
	localPAT[sizeof(PAT) - 4] = (crc >> 24) & 0xFF;
	localPAT[sizeof(PAT) - 3] = (crc >> 16) & 0xFF;
	localPAT[sizeof(PAT) - 2] = (crc >> 8) & 0xFF;
	localPAT[sizeof(PAT) - 1] = crc & 0xFF;

	/* compute PMT */
723 724 725 726 727 728 729
	if (h->params.au_encoding == V4L2_MPEG_AUDIO_ENCODING_AC3) {
		size = sizeof(PMT_AC3);
		memcpy(localPMT, PMT_AC3, size);
	} else {
		size = sizeof(PMT);
		memcpy(localPMT, PMT, size);
	}
730 731
	localPMT[3] = 0x40 | ((h->params.ts_pid_pmt >> 8) & 0x0f);
	localPMT[4] = h->params.ts_pid_pmt & 0xff;
Linus Torvalds's avatar
Linus Torvalds committed
732 733 734 735 736 737
	localPMT[15] = 0xE0 | ((h->params.ts_pid_pcr >> 8) & 0x0F);
	localPMT[16] = h->params.ts_pid_pcr & 0xFF;
	localPMT[20] = 0xE0 | ((h->params.ts_pid_video >> 8) & 0x0F);
	localPMT[21] = h->params.ts_pid_video & 0xFF;
	localPMT[25] = 0xE0 | ((h->params.ts_pid_audio >> 8) & 0x0F);
	localPMT[26] = h->params.ts_pid_audio & 0xFF;
738 739 740 741 742
	crc = crc32_be(~0, &localPMT[7], size - 7 - 4);
	localPMT[size - 4] = (crc >> 24) & 0xFF;
	localPMT[size - 3] = (crc >> 16) & 0xFF;
	localPMT[size - 2] = (crc >> 8) & 0xFF;
	localPMT[size - 1] = crc & 0xFF;
Linus Torvalds's avatar
Linus Torvalds committed
743

744
	/* Set Audio PID */
745
	set_reg16(client, 0xc1, h->params.ts_pid_audio);
Linus Torvalds's avatar
Linus Torvalds committed
746

747
	/* Set Video PID */
748
	set_reg16(client, 0xc0, h->params.ts_pid_video);
Linus Torvalds's avatar
Linus Torvalds committed
749

750
	/* Set PCR PID */
751
	set_reg16(client, 0xc4, h->params.ts_pid_pcr);
Linus Torvalds's avatar
Linus Torvalds committed
752

753
	/* Send SI tables */
754 755
	i2c_master_send(client, localPAT, sizeof(PAT));
	i2c_master_send(client, localPMT, size);
Linus Torvalds's avatar
Linus Torvalds committed
756

757
	/* mute then unmute audio. This removes buzzing artefacts */
758 759
	set_reg8(client, 0xa4, 1);
	set_reg8(client, 0xa4, 0);
Linus Torvalds's avatar
Linus Torvalds committed
760

761
	/* start it going */
Linus Torvalds's avatar
Linus Torvalds committed
762 763
	saa6752hs_chip_command(client, SAA6752HS_COMMAND_START);

764
	/* readout current state */
Linus Torvalds's avatar
Linus Torvalds committed
765 766 767 768 769 770 771 772
	buf[0] = 0xE1;
	buf[1] = 0xA7;
	buf[2] = 0xFE;
	buf[3] = 0x82;
	buf[4] = 0xB0;
	i2c_master_send(client, buf, 5);
	i2c_master_recv(client, buf2, 4);

773
	/* change aspect ratio */
Linus Torvalds's avatar
Linus Torvalds committed
774 775 776 777 778 779
	buf[0] = 0xE0;
	buf[1] = 0xA7;
	buf[2] = 0xFE;
	buf[3] = 0x82;
	buf[4] = 0xB0;
	buf[5] = buf2[0];
780
	switch (h->params.vi_aspect) {
781
	case V4L2_MPEG_VIDEO_ASPECT_16x9:
Linus Torvalds's avatar
Linus Torvalds committed
782 783
		buf[6] = buf2[1] | 0x40;
		break;
784
	case V4L2_MPEG_VIDEO_ASPECT_4x3:
Linus Torvalds's avatar
Linus Torvalds committed
785 786 787 788 789 790 791 792 793 794 795
	default:
		buf[6] = buf2[1] & 0xBF;
		break;
	}
	buf[7] = buf2[2];
	buf[8] = buf2[3];
	i2c_master_send(client, buf, 9);

	return 0;
}

796
static int saa6752hs_do_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls, int set)
Linus Torvalds's avatar
Linus Torvalds committed
797
{
798
	struct saa6752hs_state *h = to_state(sd);
799 800
	struct saa6752hs_mpeg_params params;
	int i;
Linus Torvalds's avatar
Linus Torvalds committed
801

802 803 804 805 806 807 808 809 810 811
	if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
		return -EINVAL;

	params = h->params;
	for (i = 0; i < ctrls->count; i++) {
		int err = handle_ctrl(h->has_ac3, &params, ctrls->controls + i, set);

		if (err) {
			ctrls->error_idx = i;
			return err;
812
		}
813
	}
814 815 816 817
	if (set)
		h->params = params;
	return 0;
}
818

819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
static int saa6752hs_s_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls)
{
	return saa6752hs_do_ext_ctrls(sd, ctrls, 1);
}

static int saa6752hs_try_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls)
{
	return saa6752hs_do_ext_ctrls(sd, ctrls, 0);
}

static int saa6752hs_g_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *ctrls)
{
	struct saa6752hs_state *h = to_state(sd);
	int i;

	if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
		return -EINVAL;

	for (i = 0; i < ctrls->count; i++) {
		int err = get_ctrl(h->has_ac3, &h->params, ctrls->controls + i);

		if (err) {
			ctrls->error_idx = i;
			return err;
		}
844
	}
845 846
	return 0;
}
847

848
static int saa6752hs_g_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *f)
849 850
{
	struct saa6752hs_state *h = to_state(sd);
851

852 853
	if (h->video_format == SAA6752HS_VF_UNKNOWN)
		h->video_format = SAA6752HS_VF_D1;
854 855 856 857 858
	f->width = v4l2_format_table[h->video_format].fmt.pix.width;
	f->height = v4l2_format_table[h->video_format].fmt.pix.height;
	f->code = V4L2_MBUS_FMT_FIXED;
	f->field = V4L2_FIELD_INTERLACED;
	f->colorspace = V4L2_COLORSPACE_SMPTE170M;
859 860 861
	return 0;
}

862
static int saa6752hs_s_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *f)
863 864 865 866
{
	struct saa6752hs_state *h = to_state(sd);
	int dist_352, dist_480, dist_720;

867 868 869
	if (f->code != V4L2_MBUS_FMT_FIXED)
		return -EINVAL;

870 871 872 873 874 875 876 877 878 879 880 881
	/*
	  FIXME: translate and round width/height into EMPRESS
	  subsample type:

	  type   |   PAL   |  NTSC
	  ---------------------------
	  SIF    | 352x288 | 352x240
	  1/2 D1 | 352x576 | 352x480
	  2/3 D1 | 480x576 | 480x480
	  D1     | 720x576 | 720x480
	*/

882 883 884
	dist_352 = abs(f->width - 352);
	dist_480 = abs(f->width - 480);
	dist_720 = abs(f->width - 720);
885
	if (dist_720 < dist_480) {
886 887
		f->width = 720;
		f->height = 576;
888 889
		h->video_format = SAA6752HS_VF_D1;
	} else if (dist_480 < dist_352) {
890 891
		f->width = 480;
		f->height = 576;
892 893
		h->video_format = SAA6752HS_VF_2_3_D1;
	} else {
894 895 896 897
		f->width = 352;
		if (abs(f->height - 576) <
		    abs(f->height - 288)) {
			f->height = 576;
898 899
			h->video_format = SAA6752HS_VF_1_2_D1;
		} else {
900
			f->height = 288;
901 902
			h->video_format = SAA6752HS_VF_SIF;
		}
Linus Torvalds's avatar
Linus Torvalds committed
903
	}
904 905
	f->field = V4L2_FIELD_INTERLACED;
	f->colorspace = V4L2_COLORSPACE_SMPTE170M;
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
	return 0;
}

static int saa6752hs_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
{
	struct saa6752hs_state *h = to_state(sd);

	h->standard = std;
	return 0;
}

static int saa6752hs_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
{
	struct i2c_client *client = v4l2_get_subdevdata(sd);
	struct saa6752hs_state *h = to_state(sd);

	return v4l2_chip_ident_i2c_client(client,
			chip, h->chip, h->revision);
}
Linus Torvalds's avatar
Linus Torvalds committed
925

926 927 928 929 930 931 932 933 934 935 936 937 938 939
/* ----------------------------------------------------------------------- */

static const struct v4l2_subdev_core_ops saa6752hs_core_ops = {
	.g_chip_ident = saa6752hs_g_chip_ident,
	.init = saa6752hs_init,
	.queryctrl = saa6752hs_queryctrl,
	.querymenu = saa6752hs_querymenu,
	.g_ext_ctrls = saa6752hs_g_ext_ctrls,
	.s_ext_ctrls = saa6752hs_s_ext_ctrls,
	.try_ext_ctrls = saa6752hs_try_ext_ctrls,
	.s_std = saa6752hs_s_std,
};

static const struct v4l2_subdev_video_ops saa6752hs_video_ops = {
940 941
	.s_mbus_fmt = saa6752hs_s_mbus_fmt,
	.g_mbus_fmt = saa6752hs_g_mbus_fmt,
942 943 944 945 946 947 948
};

static const struct v4l2_subdev_ops saa6752hs_ops = {
	.core = &saa6752hs_core_ops,
	.video = &saa6752hs_video_ops,
};

949
static int saa6752hs_probe(struct i2c_client *client,
950
		const struct i2c_device_id *id)
951 952
{
	struct saa6752hs_state *h = kzalloc(sizeof(*h), GFP_KERNEL);
953
	struct v4l2_subdev *sd;
954 955
	u8 addr = 0x13;
	u8 data[12];
Linus Torvalds's avatar
Linus Torvalds committed
956

957 958 959 960
	v4l_info(client, "chip found @ 0x%x (%s)\n",
			client->addr << 1, client->adapter->name);
	if (h == NULL)
		return -ENOMEM;
961 962
	sd = &h->sd;
	v4l2_i2c_subdev_init(sd, client, &saa6752hs_ops);
Linus Torvalds's avatar
Linus Torvalds committed
963

964 965 966 967 968 969 970 971 972 973 974 975 976
	i2c_master_send(client, &addr, 1);
	i2c_master_recv(client, data, sizeof(data));
	h->chip = V4L2_IDENT_SAA6752HS;
	h->revision = (data[8] << 8) | data[9];
	h->has_ac3 = 0;
	if (h->revision == 0x0206) {
		h->chip = V4L2_IDENT_SAA6752HS_AC3;
		h->has_ac3 = 1;
		v4l_info(client, "support AC-3\n");
	}
	h->params = param_defaults;
	h->standard = 0; /* Assume 625 input lines */
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
977 978
}

979
static int saa6752hs_remove(struct i2c_client *client)
Linus Torvalds's avatar
Linus Torvalds committed
980
{
981 982 983 984
	struct v4l2_subdev *sd = i2c_get_clientdata(client);

	v4l2_device_unregister_subdev(sd);
	kfree(to_state(sd));
985
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
986 987
}

988 989 990 991 992 993
static const struct i2c_device_id saa6752hs_id[] = {
	{ "saa6752hs", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, saa6752hs_id);

994 995 996 997 998 999 1000 1001
static struct i2c_driver saa6752hs_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "saa6752hs",
	},
	.probe		= saa6752hs_probe,
	.remove		= saa6752hs_remove,
	.id_table	= saa6752hs_id,
1002
};
Linus Torvalds's avatar
Linus Torvalds committed
1003

1004
module_i2c_driver(saa6752hs_driver);
1005

Linus Torvalds's avatar
Linus Torvalds committed
1006 1007 1008 1009 1010 1011 1012
/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */