saa6752hs.c 21.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/sched.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>
12 13
#include <linux/videodev2.h>
#include <media/v4l2-common.h>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#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)

/* Addresses to scan */
static unsigned short normal_i2c[] = {0x20, I2C_CLIENT_END};
I2C_CLIENT_INSMOD;

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

static struct i2c_driver driver;
static struct i2c_client client_template;

34 35 36 37 38 39 40 41
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,
};

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
struct saa6752hs_mpeg_params {
	/* transport streams */
	__u16				ts_pid_pmt;
	__u16				ts_pid_audio;
	__u16				ts_pid_video;
	__u16				ts_pid_pcr;

	/* audio */
	enum v4l2_mpeg_audio_l2_bitrate au_l2_bitrate;

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

59 60
static const struct v4l2_format v4l2_format_table[] =
{
61 62 63 64 65 66 67 68 69 70
	[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}}},
71 72
};

L
Linus Torvalds 已提交
73 74
struct saa6752hs_state {
	struct i2c_client             client;
75 76
	struct v4l2_mpeg_compression  old_params;
	struct saa6752hs_mpeg_params  params;
77
	enum saa6752hs_videoformat    video_format;
78
	v4l2_std_id                   standard;
L
Linus Torvalds 已提交
79 80 81 82
};

enum saa6752hs_command {
	SAA6752HS_COMMAND_RESET = 0,
83 84 85 86 87
	SAA6752HS_COMMAND_STOP = 1,
	SAA6752HS_COMMAND_START = 2,
	SAA6752HS_COMMAND_PAUSE = 3,
	SAA6752HS_COMMAND_RECONFIGURE = 4,
	SAA6752HS_COMMAND_SLEEP = 5,
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95
	SAA6752HS_COMMAND_RECONFIGURE_FORCE = 6,

	SAA6752HS_COMMAND_MAX
};

/* ---------------------------------------------------------------------- */

static u8 PAT[] = {
96 97
	0xc2, /* i2c register */
	0x00, /* table number for encoder */
L
Linus Torvalds 已提交
98

99 100 101
	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) */
L
Linus Torvalds 已提交
102

103
	0x00, /* PSI pointer to start of table */
L
Linus Torvalds 已提交
104

105 106
	0x00, /* tid(0) */
	0xb0, 0x0d, /* section_syntax_indicator(1), section_length(13) */
L
Linus Torvalds 已提交
107

108
	0x00, 0x01, /* transport_stream_id(1) */
L
Linus Torvalds 已提交
109

110
	0xc1, /* version_number(0), current_next_indicator(1) */
L
Linus Torvalds 已提交
111

112
	0x00, 0x00, /* section_number(0), last_section_number(0) */
L
Linus Torvalds 已提交
113

114
	0x00, 0x01, /* program_number(1) */
L
Linus Torvalds 已提交
115

116
	0xe0, 0x00, /* PMT PID */
L
Linus Torvalds 已提交
117

118
	0x00, 0x00, 0x00, 0x00 /* CRC32 */
L
Linus Torvalds 已提交
119 120 121
};

static u8 PMT[] = {
122 123
	0xc2, /* i2c register */
	0x01, /* table number for encoder */
L
Linus Torvalds 已提交
124

125 126 127
	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) */
L
Linus Torvalds 已提交
128

129
	0x00, /* PSI pointer to start of table */
L
Linus Torvalds 已提交
130

131 132
	0x02, /* tid(2) */
	0xb0, 0x17, /* section_syntax_indicator(1), section_length(23) */
L
Linus Torvalds 已提交
133

134
	0x00, 0x01, /* program_number(1) */
L
Linus Torvalds 已提交
135

136
	0xc1, /* version_number(0), current_next_indicator(1) */
L
Linus Torvalds 已提交
137

138
	0x00, 0x00, /* section_number(0), last_section_number(0) */
L
Linus Torvalds 已提交
139

140
	0xe0, 0x00, /* PCR_PID */
L
Linus Torvalds 已提交
141

142
	0xf0, 0x00, /* program_info_length(0) */
L
Linus Torvalds 已提交
143

144 145
	0x02, 0xe0, 0x00, 0xf0, 0x00, /* video stream type(2), pid */
	0x04, 0xe0, 0x00, 0xf0, 0x00, /* audio stream type(4), pid */
L
Linus Torvalds 已提交
146

147
	0x00, 0x00, 0x00, 0x00 /* CRC32 */
L
Linus Torvalds 已提交
148 149
};

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
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,

	.au_l2_bitrate   = V4L2_MPEG_AUDIO_L2_BITRATE_256K,
};

static struct v4l2_mpeg_compression old_param_defaults =
L
Linus Torvalds 已提交
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
{
	.st_type         = V4L2_MPEG_TS_2,
	.st_bitrate      = {
		.mode    = V4L2_BITRATE_CBR,
		.target  = 7000,
	},

	.ts_pid_pmt      = 16,
	.ts_pid_video    = 260,
	.ts_pid_audio    = 256,
	.ts_pid_pcr      = 259,

	.vi_type         = V4L2_MPEG_VI_2,
	.vi_aspect_ratio = V4L2_MPEG_ASPECT_4_3,
	.vi_bitrate      = {
		.mode    = V4L2_BITRATE_VBR,
		.target  = 4000,
		.max     = 6000,
	},

	.au_type         = V4L2_MPEG_AU_2_II,
	.au_bitrate      = {
		.mode    = V4L2_BITRATE_CBR,
		.target  = 256,
	},

};

/* ---------------------------------------------------------------------- */

static int saa6752hs_chip_command(struct i2c_client* client,
				  enum saa6752hs_command command)
{
	unsigned char buf[3];
	unsigned long timeout;
	int status = 0;

203
	/* execute the command */
L
Linus Torvalds 已提交
204
	switch(command) {
205 206
	case SAA6752HS_COMMAND_RESET:
		buf[0] = 0x00;
L
Linus Torvalds 已提交
207 208 209
		break;

	case SAA6752HS_COMMAND_STOP:
210
		buf[0] = 0x03;
L
Linus Torvalds 已提交
211 212 213
		break;

	case SAA6752HS_COMMAND_START:
214
		buf[0] = 0x02;
L
Linus Torvalds 已提交
215 216 217
		break;

	case SAA6752HS_COMMAND_PAUSE:
218
		buf[0] = 0x04;
L
Linus Torvalds 已提交
219 220 221 222 223 224
		break;

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

225 226
	case SAA6752HS_COMMAND_SLEEP:
		buf[0] = 0x06;
L
Linus Torvalds 已提交
227 228
		break;

229
	case SAA6752HS_COMMAND_RECONFIGURE_FORCE:
L
Linus Torvalds 已提交
230 231 232 233 234 235 236
		buf[0] = 0x07;
		break;

	default:
		return -EINVAL;
	}

237
	/* set it and wait for it to be so */
L
Linus Torvalds 已提交
238 239 240
	i2c_master_send(client, buf, 1);
	timeout = jiffies + HZ * 3;
	for (;;) {
241
		/* get the current status */
L
Linus Torvalds 已提交
242
		buf[0] = 0x10;
243
		i2c_master_send(client, buf, 1);
L
Linus Torvalds 已提交
244 245 246 247 248 249 250 251 252 253 254 255
		i2c_master_recv(client, buf, 1);

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

		msleep(10);
	}

256
	/* delay a bit to let encoder settle */
L
Linus Torvalds 已提交
257 258
	msleep(50);

259
	return status;
L
Linus Torvalds 已提交
260 261 262 263 264 265
}


static int saa6752hs_set_bitrate(struct i2c_client* client,
				 struct v4l2_mpeg_compression* params)
{
266
	u8 buf[3];
L
Linus Torvalds 已提交
267

268
	/* set the bitrate mode */
L
Linus Torvalds 已提交
269 270 271 272
	buf[0] = 0x71;
	buf[1] = (params->vi_bitrate.mode == V4L2_BITRATE_VBR) ? 0 : 1;
	i2c_master_send(client, buf, 2);

273
	/* set the video bitrate */
L
Linus Torvalds 已提交
274
	if (params->vi_bitrate.mode == V4L2_BITRATE_VBR) {
275
		/* set the target bitrate */
L
Linus Torvalds 已提交
276
		buf[0] = 0x80;
277
		buf[1] = params->vi_bitrate.target >> 8;
278
		buf[2] = params->vi_bitrate.target & 0xff;
L
Linus Torvalds 已提交
279 280
		i2c_master_send(client, buf, 3);

281
		/* set the max bitrate */
L
Linus Torvalds 已提交
282
		buf[0] = 0x81;
283
		buf[1] = params->vi_bitrate.max >> 8;
284
		buf[2] = params->vi_bitrate.max & 0xff;
L
Linus Torvalds 已提交
285 286
		i2c_master_send(client, buf, 3);
	} else {
287
		/* set the target bitrate (no max bitrate for CBR) */
288
		buf[0] = 0x81;
289
		buf[1] = params->vi_bitrate.target >> 8;
290
		buf[2] = params->vi_bitrate.target & 0xff;
L
Linus Torvalds 已提交
291 292 293
		i2c_master_send(client, buf, 3);
	}

294
	/* set the audio bitrate */
295
	buf[0] = 0x94;
L
Linus Torvalds 已提交
296 297 298
	buf[1] = (256 == params->au_bitrate.target) ? 0 : 1;
	i2c_master_send(client, buf, 2);

299
	/* set the total bitrate */
L
Linus Torvalds 已提交
300
	buf[0] = 0xb1;
301 302
	buf[1] = params->st_bitrate.target >> 8;
	buf[2] = params->st_bitrate.target & 0xff;
L
Linus Torvalds 已提交
303 304 305 306 307
	i2c_master_send(client, buf, 3);

	return 0;
}

308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
static void saa6752hs_set_subsampling(struct i2c_client* client,
				      struct v4l2_format* f)
{
	struct saa6752hs_state *h = i2c_get_clientdata(client);
	int dist_352, dist_480, dist_720;

	/*
	  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
	*/

	dist_352 = abs(f->fmt.pix.width - 352);
	dist_480 = abs(f->fmt.pix.width - 480);
	dist_720 = abs(f->fmt.pix.width - 720);
	if (dist_720 < dist_480) {
		f->fmt.pix.width = 720;
		f->fmt.pix.height = 576;
		h->video_format = SAA6752HS_VF_D1;
	}
	else if (dist_480 < dist_352) {
		f->fmt.pix.width = 480;
		f->fmt.pix.height = 576;
		h->video_format = SAA6752HS_VF_2_3_D1;
	}
	else {
		f->fmt.pix.width = 352;
		if (abs(f->fmt.pix.height - 576) <
		    abs(f->fmt.pix.height - 288)) {
			f->fmt.pix.height = 576;
			h->video_format = SAA6752HS_VF_1_2_D1;
		}
		else {
			f->fmt.pix.height = 288;
			h->video_format = SAA6752HS_VF_SIF;
		}
	}
}

L
Linus Torvalds 已提交
353

354
static void saa6752hs_old_set_params(struct i2c_client* client,
L
Linus Torvalds 已提交
355 356 357 358 359
				 struct v4l2_mpeg_compression* params)
{
	struct saa6752hs_state *h = i2c_get_clientdata(client);

	/* check PIDs */
360 361
	if (params->ts_pid_pmt <= MPEG_PID_MAX) {
		h->old_params.ts_pid_pmt = params->ts_pid_pmt;
L
Linus Torvalds 已提交
362
		h->params.ts_pid_pmt = params->ts_pid_pmt;
363 364 365
	}
	if (params->ts_pid_pcr <= MPEG_PID_MAX) {
		h->old_params.ts_pid_pcr = params->ts_pid_pcr;
L
Linus Torvalds 已提交
366
		h->params.ts_pid_pcr = params->ts_pid_pcr;
367 368 369
	}
	if (params->ts_pid_video <= MPEG_PID_MAX) {
		h->old_params.ts_pid_video = params->ts_pid_video;
L
Linus Torvalds 已提交
370
		h->params.ts_pid_video = params->ts_pid_video;
371 372 373
	}
	if (params->ts_pid_audio <= MPEG_PID_MAX) {
		h->old_params.ts_pid_audio = params->ts_pid_audio;
L
Linus Torvalds 已提交
374
		h->params.ts_pid_audio = params->ts_pid_audio;
375
	}
L
Linus Torvalds 已提交
376 377 378

	/* check bitrate parameters */
	if ((params->vi_bitrate.mode == V4L2_BITRATE_CBR) ||
379 380 381 382 383
	    (params->vi_bitrate.mode == V4L2_BITRATE_VBR)) {
		h->old_params.vi_bitrate.mode = params->vi_bitrate.mode;
		h->params.vi_bitrate_mode = (params->vi_bitrate.mode == V4L2_BITRATE_VBR) ?
		       V4L2_MPEG_VIDEO_BITRATE_MODE_VBR : V4L2_MPEG_VIDEO_BITRATE_MODE_CBR;
	}
L
Linus Torvalds 已提交
384
	if (params->vi_bitrate.mode != V4L2_BITRATE_NONE)
385
		h->old_params.st_bitrate.target = params->st_bitrate.target;
L
Linus Torvalds 已提交
386
	if (params->vi_bitrate.mode != V4L2_BITRATE_NONE)
387
		h->old_params.vi_bitrate.target = params->vi_bitrate.target;
L
Linus Torvalds 已提交
388
	if (params->vi_bitrate.mode == V4L2_BITRATE_VBR)
389
		h->old_params.vi_bitrate.max = params->vi_bitrate.max;
L
Linus Torvalds 已提交
390
	if (params->au_bitrate.mode != V4L2_BITRATE_NONE)
391
		h->old_params.au_bitrate.target = params->au_bitrate.target;
L
Linus Torvalds 已提交
392 393 394

	/* aspect ratio */
	if (params->vi_aspect_ratio == V4L2_MPEG_ASPECT_4_3 ||
395 396 397 398 399 400 401
	    params->vi_aspect_ratio == V4L2_MPEG_ASPECT_16_9) {
		h->old_params.vi_aspect_ratio = params->vi_aspect_ratio;
		if (params->vi_aspect_ratio == V4L2_MPEG_ASPECT_4_3)
			h->params.vi_aspect = V4L2_MPEG_VIDEO_ASPECT_4x3;
		else
			h->params.vi_aspect = V4L2_MPEG_VIDEO_ASPECT_16x9;
	}
L
Linus Torvalds 已提交
402 403

	/* range checks */
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 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
	if (h->old_params.st_bitrate.target > MPEG_TOTAL_TARGET_BITRATE_MAX)
		h->old_params.st_bitrate.target = MPEG_TOTAL_TARGET_BITRATE_MAX;
	if (h->old_params.vi_bitrate.target > MPEG_VIDEO_TARGET_BITRATE_MAX)
		h->old_params.vi_bitrate.target = MPEG_VIDEO_TARGET_BITRATE_MAX;
	if (h->old_params.vi_bitrate.max > MPEG_VIDEO_MAX_BITRATE_MAX)
		h->old_params.vi_bitrate.max = MPEG_VIDEO_MAX_BITRATE_MAX;
	h->params.vi_bitrate = params->vi_bitrate.target;
	h->params.vi_bitrate_peak = params->vi_bitrate.max;
	if (h->old_params.au_bitrate.target <= 256) {
		h->old_params.au_bitrate.target = 256;
		h->params.au_l2_bitrate = V4L2_MPEG_AUDIO_L2_BITRATE_256K;
	}
	else {
		h->old_params.au_bitrate.target = 384;
		h->params.au_l2_bitrate = V4L2_MPEG_AUDIO_L2_BITRATE_384K;
	}
}

static int handle_ctrl(struct saa6752hs_mpeg_params *params,
		struct v4l2_ext_control *ctrl, int cmd)
{
	int old = 0, new;
	int set = cmd == VIDIOC_S_EXT_CTRLS;

	new = ctrl->value;
	switch (ctrl->id) {
		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 = V4L2_MPEG_AUDIO_ENCODING_LAYER_2;
			if (set && new != old)
				return -ERANGE;
			new = old;
			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_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;
	}
	if (cmd == VIDIOC_G_EXT_CTRLS)
		ctrl->value = old;
L
Linus Torvalds 已提交
533
	else
534 535
		ctrl->value = new;
	return 0;
L
Linus Torvalds 已提交
536 537 538 539 540 541 542 543 544 545 546 547
}

static int saa6752hs_init(struct i2c_client* client)
{
	unsigned char buf[9], buf2[4];
	struct saa6752hs_state *h;
	u32 crc;
	unsigned char localPAT[256];
	unsigned char localPMT[256];

	h = i2c_get_clientdata(client);

548
	/* Set video format - must be done first as it resets other settings */
L
Linus Torvalds 已提交
549
	buf[0] = 0x41;
550
	buf[1] = h->video_format;
L
Linus Torvalds 已提交
551 552
	i2c_master_send(client, buf, 2);

553 554 555 556 557 558 559
	/* Set number of lines in input signal */
	buf[0] = 0x40;
	buf[1] = 0x00;
	if (h->standard & V4L2_STD_525_60)
		buf[1] = 0x01;
	i2c_master_send(client, buf, 2);

560 561
	/* set bitrate */
	saa6752hs_set_bitrate(client, &h->params);
L
Linus Torvalds 已提交
562

563
	/* Set GOP structure {3, 13} */
L
Linus Torvalds 已提交
564 565 566 567 568
	buf[0] = 0x72;
	buf[1] = 0x03;
	buf[2] = 0x0D;
	i2c_master_send(client,buf,3);

569
	/* Set minimum Q-scale {4} */
L
Linus Torvalds 已提交
570 571 572 573
	buf[0] = 0x82;
	buf[1] = 0x04;
	i2c_master_send(client,buf,2);

574
	/* Set maximum Q-scale {12} */
L
Linus Torvalds 已提交
575 576 577 578
	buf[0] = 0x83;
	buf[1] = 0x0C;
	i2c_master_send(client,buf,2);

579
	/* Set Output Protocol */
L
Linus Torvalds 已提交
580 581 582 583
	buf[0] = 0xD0;
	buf[1] = 0x81;
	i2c_master_send(client,buf,2);

584
	/* Set video output stream format {TS} */
L
Linus Torvalds 已提交
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
	buf[0] = 0xB0;
	buf[1] = 0x05;
	i2c_master_send(client,buf,2);

	/* 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 */
600 601 602
	memcpy(localPMT, PMT, sizeof(PMT));
	localPMT[3] = 0x40 | ((h->params.ts_pid_pmt >> 8) & 0x0f);
	localPMT[4] = h->params.ts_pid_pmt & 0xff;
L
Linus Torvalds 已提交
603 604 605 606 607 608 609 610 611 612 613 614
	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;
	crc = crc32_be(~0, &localPMT[7], sizeof(PMT) - 7 - 4);
	localPMT[sizeof(PMT) - 4] = (crc >> 24) & 0xFF;
	localPMT[sizeof(PMT) - 3] = (crc >> 16) & 0xFF;
	localPMT[sizeof(PMT) - 2] = (crc >> 8) & 0xFF;
	localPMT[sizeof(PMT) - 1] = crc & 0xFF;

615
	/* Set Audio PID */
L
Linus Torvalds 已提交
616 617 618 619 620
	buf[0] = 0xC1;
	buf[1] = (h->params.ts_pid_audio >> 8) & 0xFF;
	buf[2] = h->params.ts_pid_audio & 0xFF;
	i2c_master_send(client,buf,3);

621
	/* Set Video PID */
L
Linus Torvalds 已提交
622 623 624 625 626
	buf[0] = 0xC0;
	buf[1] = (h->params.ts_pid_video >> 8) & 0xFF;
	buf[2] = h->params.ts_pid_video & 0xFF;
	i2c_master_send(client,buf,3);

627
	/* Set PCR PID */
L
Linus Torvalds 已提交
628 629 630 631 632
	buf[0] = 0xC4;
	buf[1] = (h->params.ts_pid_pcr >> 8) & 0xFF;
	buf[2] = h->params.ts_pid_pcr & 0xFF;
	i2c_master_send(client,buf,3);

633
	/* Send SI tables */
L
Linus Torvalds 已提交
634 635 636
	i2c_master_send(client,localPAT,sizeof(PAT));
	i2c_master_send(client,localPMT,sizeof(PMT));

637
	/* mute then unmute audio. This removes buzzing artefacts */
L
Linus Torvalds 已提交
638 639 640
	buf[0] = 0xa4;
	buf[1] = 1;
	i2c_master_send(client, buf, 2);
641
	buf[1] = 0;
L
Linus Torvalds 已提交
642 643
	i2c_master_send(client, buf, 2);

644
	/* start it going */
L
Linus Torvalds 已提交
645 646
	saa6752hs_chip_command(client, SAA6752HS_COMMAND_START);

647
	/* readout current state */
L
Linus Torvalds 已提交
648 649 650 651 652 653 654 655
	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);

656
	/* change aspect ratio */
L
Linus Torvalds 已提交
657 658 659 660 661 662
	buf[0] = 0xE0;
	buf[1] = 0xA7;
	buf[2] = 0xFE;
	buf[3] = 0x82;
	buf[4] = 0xB0;
	buf[5] = buf2[0];
663 664
	switch(h->params.vi_aspect) {
	case V4L2_MPEG_VIDEO_ASPECT_16x9:
L
Linus Torvalds 已提交
665 666
		buf[6] = buf2[1] | 0x40;
		break;
667
	case V4L2_MPEG_VIDEO_ASPECT_4x3:
L
Linus Torvalds 已提交
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
	default:
		buf[6] = buf2[1] & 0xBF;
		break;
		break;
	}
	buf[7] = buf2[2];
	buf[8] = buf2[3];
	i2c_master_send(client, buf, 9);

	return 0;
}

static int saa6752hs_attach(struct i2c_adapter *adap, int addr, int kind)
{
	struct saa6752hs_state *h;


P
 
Panagiotis Issaris 已提交
685
	if (NULL == (h = kzalloc(sizeof(*h), GFP_KERNEL)))
686
		return -ENOMEM;
L
Linus Torvalds 已提交
687 688
	h->client = client_template;
	h->params = param_defaults;
689
	h->old_params = old_param_defaults;
L
Linus Torvalds 已提交
690 691 692
	h->client.adapter = adap;
	h->client.addr = addr;

693 694 695
	/* Assume 625 input lines */
	h->standard = 0;

L
Linus Torvalds 已提交
696
	i2c_set_clientdata(&h->client, h);
697
	i2c_attach_client(&h->client);
698

699 700
	v4l_info(&h->client,"saa6752hs: chip found @ 0x%x\n", addr<<1);

L
Linus Torvalds 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
	return 0;
}

static int saa6752hs_probe(struct i2c_adapter *adap)
{
	if (adap->class & I2C_CLASS_TV_ANALOG)
		return i2c_probe(adap, &addr_data, saa6752hs_attach);
	return 0;
}

static int saa6752hs_detach(struct i2c_client *client)
{
	struct saa6752hs_state *h;

	h = i2c_get_clientdata(client);
	i2c_detach_client(client);
	kfree(h);
	return 0;
}

static int
saa6752hs_command(struct i2c_client *client, unsigned int cmd, void *arg)
{
	struct saa6752hs_state *h = i2c_get_clientdata(client);
725 726 727
	struct v4l2_ext_controls *ctrls = arg;
	struct v4l2_mpeg_compression *old_params = arg;
	struct saa6752hs_mpeg_params params;
L
Linus Torvalds 已提交
728
	int err = 0;
729
	int i;
L
Linus Torvalds 已提交
730

731
	switch (cmd) {
L
Linus Torvalds 已提交
732
	case VIDIOC_S_MPEGCOMP:
733
		if (NULL == old_params) {
L
Linus Torvalds 已提交
734 735 736 737
			/* apply settings and start encoder */
			saa6752hs_init(client);
			break;
		}
738
		saa6752hs_old_set_params(client, old_params);
L
Linus Torvalds 已提交
739 740
		/* fall through */
	case VIDIOC_G_MPEGCOMP:
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
		*old_params = h->old_params;
		break;
	case VIDIOC_S_EXT_CTRLS:
		if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
			return -EINVAL;
		if (ctrls->count == 0) {
			/* apply settings and start encoder */
			saa6752hs_init(client);
			break;
		}
		/* fall through */
	case VIDIOC_TRY_EXT_CTRLS:
	case VIDIOC_G_EXT_CTRLS:
		if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
			return -EINVAL;
		params = h->params;
		for (i = 0; i < ctrls->count; i++) {
			if ((err = handle_ctrl(&params, ctrls->controls + i, cmd))) {
				ctrls->error_idx = i;
				return err;
			}
		}
		h->params = params;
L
Linus Torvalds 已提交
764
		break;
765 766
	case VIDIOC_G_FMT:
	{
767
	   struct v4l2_format *f = arg;
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783

	   if (h->video_format == SAA6752HS_VF_UNKNOWN)
		   h->video_format = SAA6752HS_VF_D1;
	   f->fmt.pix.width =
		   v4l2_format_table[h->video_format].fmt.pix.width;
	   f->fmt.pix.height =
		   v4l2_format_table[h->video_format].fmt.pix.height;
	   break ;
	}
	case VIDIOC_S_FMT:
	{
		struct v4l2_format *f = arg;

		saa6752hs_set_subsampling(client, f);
		break;
	}
784 785 786
	case VIDIOC_S_STD:
		h->standard = *((v4l2_std_id *) arg);
		break;
L
Linus Torvalds 已提交
787 788 789 790 791 792 793 794 795 796 797
	default:
		/* nothing */
		break;
	}

	return err;
}

/* ----------------------------------------------------------------------- */

static struct i2c_driver driver = {
798
	.driver = {
799
		.name   = "saa6752hs",
800
	},
801 802 803 804
	.id             = I2C_DRIVERID_SAA6752HS,
	.attach_adapter = saa6752hs_probe,
	.detach_client  = saa6752hs_detach,
	.command        = saa6752hs_command,
L
Linus Torvalds 已提交
805 806 807 808
};

static struct i2c_client client_template =
{
809
	.name       = "saa6752hs",
810
	.driver     = &driver,
L
Linus Torvalds 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
};

static int __init saa6752hs_init_module(void)
{
	return i2c_add_driver(&driver);
}

static void __exit saa6752hs_cleanup_module(void)
{
	i2c_del_driver(&driver);
}

module_init(saa6752hs_init_module);
module_exit(saa6752hs_cleanup_module);

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */