blob: 1fb6eccdade32ac5f22a1c6493914e6ce041bc8c [file] [log] [blame]
Hans Verkuile281db582008-08-08 12:43:59 -03001 /*
2 saa6752hs - i2c-driver for the saa6752hs by Philips
3
4 Copyright (C) 2004 Andrew de Quincey
5
6 AC-3 support:
7
8 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License vs published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mvss Ave, Cambridge, MA 02139, USA.
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/string.h>
28#include <linux/timer.h>
29#include <linux/delay.h>
30#include <linux/errno.h>
31#include <linux/slab.h>
32#include <linux/poll.h>
33#include <linux/i2c.h>
34#include <linux/types.h>
Mauro Carvalho Chehabcab462f2006-01-09 15:53:26 -020035#include <linux/videodev2.h>
36#include <media/v4l2-common.h>
Hans Verkuile281db582008-08-08 12:43:59 -030037#include <media/v4l2-chip-ident.h>
38#include <media/v4l2-i2c-drv-legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/init.h>
40#include <linux/crc32.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define MPEG_VIDEO_TARGET_BITRATE_MAX 27000
43#define MPEG_VIDEO_MAX_BITRATE_MAX 27000
44#define MPEG_TOTAL_TARGET_BITRATE_MAX 27000
45#define MPEG_PID_MAX ((1 << 14) - 1)
46
47/* Addresses to scan */
48static unsigned short normal_i2c[] = {0x20, I2C_CLIENT_END};
Hans Verkuilf87086e2008-07-18 00:50:58 -030049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050I2C_CLIENT_INSMOD;
51
52MODULE_DESCRIPTION("device driver for saa6752hs MPEG2 encoder");
53MODULE_AUTHOR("Andrew de Quincey");
54MODULE_LICENSE("GPL");
55
Frederic CAND0a4c9c92005-05-05 16:15:52 -070056enum saa6752hs_videoformat {
57 SAA6752HS_VF_D1 = 0, /* standard D1 video format: 720x576 */
58 SAA6752HS_VF_2_3_D1 = 1,/* 2/3D1 video format: 480x576 */
59 SAA6752HS_VF_1_2_D1 = 2,/* 1/2D1 video format: 352x576 */
60 SAA6752HS_VF_SIF = 3, /* SIF video format: 352x288 */
61 SAA6752HS_VF_UNKNOWN,
62};
63
Hans Verkuil86b79d62006-06-18 16:40:10 -030064struct saa6752hs_mpeg_params {
65 /* transport streams */
66 __u16 ts_pid_pmt;
67 __u16 ts_pid_audio;
68 __u16 ts_pid_video;
69 __u16 ts_pid_pcr;
70
71 /* audio */
Hans Verkuile281db582008-08-08 12:43:59 -030072 enum v4l2_mpeg_audio_encoding au_encoding;
73 enum v4l2_mpeg_audio_l2_bitrate au_l2_bitrate;
74 enum v4l2_mpeg_audio_ac3_bitrate au_ac3_bitrate;
Hans Verkuil86b79d62006-06-18 16:40:10 -030075
76 /* video */
77 enum v4l2_mpeg_video_aspect vi_aspect;
78 enum v4l2_mpeg_video_bitrate_mode vi_bitrate_mode;
79 __u32 vi_bitrate;
80 __u32 vi_bitrate_peak;
81};
82
Frederic CAND0a4c9c92005-05-05 16:15:52 -070083static const struct v4l2_format v4l2_format_table[] =
84{
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -070085 [SAA6752HS_VF_D1] =
86 { .fmt = { .pix = { .width = 720, .height = 576 }}},
87 [SAA6752HS_VF_2_3_D1] =
88 { .fmt = { .pix = { .width = 480, .height = 576 }}},
89 [SAA6752HS_VF_1_2_D1] =
90 { .fmt = { .pix = { .width = 352, .height = 576 }}},
91 [SAA6752HS_VF_SIF] =
92 { .fmt = { .pix = { .width = 352, .height = 288 }}},
93 [SAA6752HS_VF_UNKNOWN] =
94 { .fmt = { .pix = { .width = 0, .height = 0}}},
Frederic CAND0a4c9c92005-05-05 16:15:52 -070095};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097struct saa6752hs_state {
Hans Verkuile281db582008-08-08 12:43:59 -030098 int chip;
99 u32 revision;
100 int has_ac3;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300101 struct saa6752hs_mpeg_params params;
Frederic CAND0a4c9c92005-05-05 16:15:52 -0700102 enum saa6752hs_videoformat video_format;
Robert W. Boone9b715212005-11-08 21:36:45 -0800103 v4l2_std_id standard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106enum saa6752hs_command {
107 SAA6752HS_COMMAND_RESET = 0,
Trent Piepho657de3c2006-06-20 00:30:57 -0300108 SAA6752HS_COMMAND_STOP = 1,
109 SAA6752HS_COMMAND_START = 2,
110 SAA6752HS_COMMAND_PAUSE = 3,
111 SAA6752HS_COMMAND_RECONFIGURE = 4,
112 SAA6752HS_COMMAND_SLEEP = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 SAA6752HS_COMMAND_RECONFIGURE_FORCE = 6,
114
115 SAA6752HS_COMMAND_MAX
116};
117
118/* ---------------------------------------------------------------------- */
119
120static u8 PAT[] = {
Robert W. Boone9b715212005-11-08 21:36:45 -0800121 0xc2, /* i2c register */
122 0x00, /* table number for encoder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Robert W. Boone9b715212005-11-08 21:36:45 -0800124 0x47, /* sync */
125 0x40, 0x00, /* transport_error_indicator(0), payload_unit_start(1), transport_priority(0), pid(0) */
126 0x10, /* transport_scrambling_control(00), adaptation_field_control(01), continuity_counter(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Robert W. Boone9b715212005-11-08 21:36:45 -0800128 0x00, /* PSI pointer to start of table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Robert W. Boone9b715212005-11-08 21:36:45 -0800130 0x00, /* tid(0) */
131 0xb0, 0x0d, /* section_syntax_indicator(1), section_length(13) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Robert W. Boone9b715212005-11-08 21:36:45 -0800133 0x00, 0x01, /* transport_stream_id(1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Robert W. Boone9b715212005-11-08 21:36:45 -0800135 0xc1, /* version_number(0), current_next_indicator(1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Robert W. Boone9b715212005-11-08 21:36:45 -0800137 0x00, 0x00, /* section_number(0), last_section_number(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Robert W. Boone9b715212005-11-08 21:36:45 -0800139 0x00, 0x01, /* program_number(1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Robert W. Boone9b715212005-11-08 21:36:45 -0800141 0xe0, 0x00, /* PMT PID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Robert W. Boone9b715212005-11-08 21:36:45 -0800143 0x00, 0x00, 0x00, 0x00 /* CRC32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146static u8 PMT[] = {
Robert W. Boone9b715212005-11-08 21:36:45 -0800147 0xc2, /* i2c register */
148 0x01, /* table number for encoder */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Robert W. Boone9b715212005-11-08 21:36:45 -0800150 0x47, /* sync */
151 0x40, 0x00, /* transport_error_indicator(0), payload_unit_start(1), transport_priority(0), pid */
152 0x10, /* transport_scrambling_control(00), adaptation_field_control(01), continuity_counter(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Robert W. Boone9b715212005-11-08 21:36:45 -0800154 0x00, /* PSI pointer to start of table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Robert W. Boone9b715212005-11-08 21:36:45 -0800156 0x02, /* tid(2) */
157 0xb0, 0x17, /* section_syntax_indicator(1), section_length(23) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Robert W. Boone9b715212005-11-08 21:36:45 -0800159 0x00, 0x01, /* program_number(1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Robert W. Boone9b715212005-11-08 21:36:45 -0800161 0xc1, /* version_number(0), current_next_indicator(1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Robert W. Boone9b715212005-11-08 21:36:45 -0800163 0x00, 0x00, /* section_number(0), last_section_number(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Robert W. Boone9b715212005-11-08 21:36:45 -0800165 0xe0, 0x00, /* PCR_PID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Robert W. Boone9b715212005-11-08 21:36:45 -0800167 0xf0, 0x00, /* program_info_length(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Robert W. Boone9b715212005-11-08 21:36:45 -0800169 0x02, 0xe0, 0x00, 0xf0, 0x00, /* video stream type(2), pid */
170 0x04, 0xe0, 0x00, 0xf0, 0x00, /* audio stream type(4), pid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Robert W. Boone9b715212005-11-08 21:36:45 -0800172 0x00, 0x00, 0x00, 0x00 /* CRC32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
Hans Verkuil3eea5432008-08-08 13:27:16 -0300175static u8 PMT_AC3[] = {
176 0xc2, /* i2c register */
177 0x01, /* table number for encoder(1) */
178 0x47, /* sync */
179
180 0x40, /* transport_error_indicator(0), payload_unit_start(1), transport_priority(0) */
181 0x10, /* PMT PID (0x0010) */
182 0x10, /* transport_scrambling_control(00), adaptation_field_control(01), continuity_counter(0) */
183
184 0x00, /* PSI pointer to start of table */
185
186 0x02, /* TID (2) */
187 0xb0, 0x1a, /* section_syntax_indicator(1), section_length(26) */
188
189 0x00, 0x01, /* program_number(1) */
190
191 0xc1, /* version_number(0), current_next_indicator(1) */
192
193 0x00, 0x00, /* section_number(0), last_section_number(0) */
194
195 0xe1, 0x04, /* PCR_PID (0x0104) */
196
197 0xf0, 0x00, /* program_info_length(0) */
198
199 0x02, 0xe1, 0x00, 0xf0, 0x00, /* video stream type(2), pid */
200 0x06, 0xe1, 0x03, 0xf0, 0x03, /* audio stream type(6), pid */
201 0x6a, /* AC3 */
202 0x01, /* Descriptor_length(1) */
203 0x00, /* component_type_flag(0), bsid_flag(0), mainid_flag(0), asvc_flag(0), reserved flags(0) */
204
205 0xED, 0xDE, 0x2D, 0xF3 /* CRC32 BE */
206};
207
Hans Verkuil86b79d62006-06-18 16:40:10 -0300208static struct saa6752hs_mpeg_params param_defaults =
209{
210 .ts_pid_pmt = 16,
211 .ts_pid_video = 260,
212 .ts_pid_audio = 256,
213 .ts_pid_pcr = 259,
214
215 .vi_aspect = V4L2_MPEG_VIDEO_ASPECT_4x3,
216 .vi_bitrate = 4000,
217 .vi_bitrate_peak = 6000,
218 .vi_bitrate_mode = V4L2_MPEG_VIDEO_BITRATE_MODE_VBR,
219
Hans Verkuile281db582008-08-08 12:43:59 -0300220 .au_encoding = V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
Hans Verkuil86b79d62006-06-18 16:40:10 -0300221 .au_l2_bitrate = V4L2_MPEG_AUDIO_L2_BITRATE_256K,
Hans Verkuil3eea5432008-08-08 13:27:16 -0300222 .au_ac3_bitrate = V4L2_MPEG_AUDIO_AC3_BITRATE_256K,
Hans Verkuil86b79d62006-06-18 16:40:10 -0300223};
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* ---------------------------------------------------------------------- */
226
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300227static int saa6752hs_chip_command(struct i2c_client *client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 enum saa6752hs_command command)
229{
230 unsigned char buf[3];
231 unsigned long timeout;
232 int status = 0;
233
Robert W. Boone9b715212005-11-08 21:36:45 -0800234 /* execute the command */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 switch(command) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800236 case SAA6752HS_COMMAND_RESET:
237 buf[0] = 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239
240 case SAA6752HS_COMMAND_STOP:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800241 buf[0] = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243
244 case SAA6752HS_COMMAND_START:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800245 buf[0] = 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247
248 case SAA6752HS_COMMAND_PAUSE:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800249 buf[0] = 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251
252 case SAA6752HS_COMMAND_RECONFIGURE:
253 buf[0] = 0x05;
254 break;
255
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800256 case SAA6752HS_COMMAND_SLEEP:
257 buf[0] = 0x06;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
259
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800260 case SAA6752HS_COMMAND_RECONFIGURE_FORCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 buf[0] = 0x07;
262 break;
263
264 default:
265 return -EINVAL;
266 }
267
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800268 /* set it and wait for it to be so */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 i2c_master_send(client, buf, 1);
270 timeout = jiffies + HZ * 3;
271 for (;;) {
Robert W. Boone9b715212005-11-08 21:36:45 -0800272 /* get the current status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 buf[0] = 0x10;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800274 i2c_master_send(client, buf, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 i2c_master_recv(client, buf, 1);
276
277 if (!(buf[0] & 0x20))
278 break;
279 if (time_after(jiffies,timeout)) {
280 status = -ETIMEDOUT;
281 break;
282 }
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 msleep(10);
285 }
286
Robert W. Boone9b715212005-11-08 21:36:45 -0800287 /* delay a bit to let encoder settle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 msleep(50);
289
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800290 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300294static inline void set_reg8(struct i2c_client *client, uint8_t reg, uint8_t val)
295{
296 u8 buf[2];
297
298 buf[0] = reg;
299 buf[1] = val;
300 i2c_master_send(client, buf, 2);
301}
302
303static inline void set_reg16(struct i2c_client *client, uint8_t reg, uint16_t val)
304{
305 u8 buf[3];
306
307 buf[0] = reg;
308 buf[1] = val >> 8;
309 buf[2] = val & 0xff;
310 i2c_master_send(client, buf, 3);
311}
312
313static int saa6752hs_set_bitrate(struct i2c_client *client,
Hans Verkuile281db582008-08-08 12:43:59 -0300314 struct saa6752hs_state *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Hans Verkuile281db582008-08-08 12:43:59 -0300316 struct saa6752hs_mpeg_params *params = &h->params;
Mauro Carvalho Chehabb57e5572006-06-23 16:13:56 -0300317 int tot_bitrate;
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300318 int is_384k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Robert W. Boone9b715212005-11-08 21:36:45 -0800320 /* set the bitrate mode */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300321 set_reg8(client, 0x71,
322 params->vi_bitrate_mode != V4L2_MPEG_VIDEO_BITRATE_MODE_VBR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Robert W. Boone9b715212005-11-08 21:36:45 -0800324 /* set the video bitrate */
Mauro Carvalho Chehabb57e5572006-06-23 16:13:56 -0300325 if (params->vi_bitrate_mode == V4L2_MPEG_VIDEO_BITRATE_MODE_VBR) {
Robert W. Boone9b715212005-11-08 21:36:45 -0800326 /* set the target bitrate */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300327 set_reg16(client, 0x80, params->vi_bitrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Robert W. Boone9b715212005-11-08 21:36:45 -0800329 /* set the max bitrate */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300330 set_reg16(client, 0x81, params->vi_bitrate_peak);
Mauro Carvalho Chehabb57e5572006-06-23 16:13:56 -0300331 tot_bitrate = params->vi_bitrate_peak;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 } else {
Robert W. Boone9b715212005-11-08 21:36:45 -0800333 /* set the target bitrate (no max bitrate for CBR) */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300334 set_reg16(client, 0x81, params->vi_bitrate);
Mauro Carvalho Chehabb57e5572006-06-23 16:13:56 -0300335 tot_bitrate = params->vi_bitrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337
Hans Verkuile281db582008-08-08 12:43:59 -0300338 /* set the audio encoding */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300339 set_reg8(client, 0x93,
340 params->au_encoding == V4L2_MPEG_AUDIO_ENCODING_AC3);
Hans Verkuile281db582008-08-08 12:43:59 -0300341
Robert W. Boone9b715212005-11-08 21:36:45 -0800342 /* set the audio bitrate */
Hans Verkuile281db582008-08-08 12:43:59 -0300343 if (params->au_encoding == V4L2_MPEG_AUDIO_ENCODING_AC3)
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300344 is_384k = V4L2_MPEG_AUDIO_AC3_BITRATE_384K == params->au_ac3_bitrate;
Hans Verkuile281db582008-08-08 12:43:59 -0300345 else
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300346 is_384k = V4L2_MPEG_AUDIO_L2_BITRATE_384K == params->au_l2_bitrate;
347 set_reg8(client, 0x94, is_384k);
348 tot_bitrate += is_384k ? 384 : 256;
Mauro Carvalho Chehabb57e5572006-06-23 16:13:56 -0300349
350 /* Note: the total max bitrate is determined by adding the video and audio
351 bitrates together and also adding an extra 768kbit/s to stay on the
352 safe side. If more control should be required, then an extra MPEG control
353 should be added. */
354 tot_bitrate += 768;
355 if (tot_bitrate > MPEG_TOTAL_TARGET_BITRATE_MAX)
356 tot_bitrate = MPEG_TOTAL_TARGET_BITRATE_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Robert W. Boone9b715212005-11-08 21:36:45 -0800358 /* set the total bitrate */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300359 set_reg16(client, 0xb1, tot_bitrate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361}
362
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300363static void saa6752hs_set_subsampling(struct i2c_client *client,
364 struct v4l2_format *f)
Frederic CAND0a4c9c92005-05-05 16:15:52 -0700365{
366 struct saa6752hs_state *h = i2c_get_clientdata(client);
367 int dist_352, dist_480, dist_720;
368
369 /*
370 FIXME: translate and round width/height into EMPRESS
371 subsample type:
372
373 type | PAL | NTSC
374 ---------------------------
375 SIF | 352x288 | 352x240
376 1/2 D1 | 352x576 | 352x480
377 2/3 D1 | 480x576 | 480x480
378 D1 | 720x576 | 720x480
379 */
380
381 dist_352 = abs(f->fmt.pix.width - 352);
382 dist_480 = abs(f->fmt.pix.width - 480);
383 dist_720 = abs(f->fmt.pix.width - 720);
384 if (dist_720 < dist_480) {
385 f->fmt.pix.width = 720;
386 f->fmt.pix.height = 576;
387 h->video_format = SAA6752HS_VF_D1;
388 }
389 else if (dist_480 < dist_352) {
390 f->fmt.pix.width = 480;
391 f->fmt.pix.height = 576;
392 h->video_format = SAA6752HS_VF_2_3_D1;
393 }
394 else {
395 f->fmt.pix.width = 352;
396 if (abs(f->fmt.pix.height - 576) <
397 abs(f->fmt.pix.height - 288)) {
398 f->fmt.pix.height = 576;
399 h->video_format = SAA6752HS_VF_1_2_D1;
400 }
401 else {
402 f->fmt.pix.height = 288;
403 h->video_format = SAA6752HS_VF_SIF;
404 }
405 }
406}
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Hans Verkuile281db582008-08-08 12:43:59 -0300409static int handle_ctrl(int has_ac3, struct saa6752hs_mpeg_params *params,
Hans Verkuil4d6b5ae2006-06-26 09:31:18 -0300410 struct v4l2_ext_control *ctrl, unsigned int cmd)
Hans Verkuil86b79d62006-06-18 16:40:10 -0300411{
412 int old = 0, new;
Hans Verkuil4d6b5ae2006-06-26 09:31:18 -0300413 int set = (cmd == VIDIOC_S_EXT_CTRLS);
Hans Verkuil86b79d62006-06-18 16:40:10 -0300414
415 new = ctrl->value;
416 switch (ctrl->id) {
417 case V4L2_CID_MPEG_STREAM_TYPE:
418 old = V4L2_MPEG_STREAM_TYPE_MPEG2_TS;
419 if (set && new != old)
420 return -ERANGE;
421 new = old;
422 break;
423 case V4L2_CID_MPEG_STREAM_PID_PMT:
424 old = params->ts_pid_pmt;
425 if (set && new > MPEG_PID_MAX)
426 return -ERANGE;
427 if (new > MPEG_PID_MAX)
428 new = MPEG_PID_MAX;
429 params->ts_pid_pmt = new;
430 break;
431 case V4L2_CID_MPEG_STREAM_PID_AUDIO:
432 old = params->ts_pid_audio;
433 if (set && new > MPEG_PID_MAX)
434 return -ERANGE;
435 if (new > MPEG_PID_MAX)
436 new = MPEG_PID_MAX;
437 params->ts_pid_audio = new;
438 break;
439 case V4L2_CID_MPEG_STREAM_PID_VIDEO:
440 old = params->ts_pid_video;
441 if (set && new > MPEG_PID_MAX)
442 return -ERANGE;
443 if (new > MPEG_PID_MAX)
444 new = MPEG_PID_MAX;
445 params->ts_pid_video = new;
446 break;
447 case V4L2_CID_MPEG_STREAM_PID_PCR:
448 old = params->ts_pid_pcr;
449 if (set && new > MPEG_PID_MAX)
450 return -ERANGE;
451 if (new > MPEG_PID_MAX)
452 new = MPEG_PID_MAX;
453 params->ts_pid_pcr = new;
454 break;
455 case V4L2_CID_MPEG_AUDIO_ENCODING:
Hans Verkuile281db582008-08-08 12:43:59 -0300456 old = params->au_encoding;
457 if (set && new != V4L2_MPEG_AUDIO_ENCODING_LAYER_2 &&
458 (!has_ac3 || new != V4L2_MPEG_AUDIO_ENCODING_AC3))
Hans Verkuil86b79d62006-06-18 16:40:10 -0300459 return -ERANGE;
460 new = old;
461 break;
462 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
463 old = params->au_l2_bitrate;
464 if (set && new != V4L2_MPEG_AUDIO_L2_BITRATE_256K &&
465 new != V4L2_MPEG_AUDIO_L2_BITRATE_384K)
466 return -ERANGE;
467 if (new <= V4L2_MPEG_AUDIO_L2_BITRATE_256K)
468 new = V4L2_MPEG_AUDIO_L2_BITRATE_256K;
469 else
470 new = V4L2_MPEG_AUDIO_L2_BITRATE_384K;
471 params->au_l2_bitrate = new;
472 break;
Hans Verkuile281db582008-08-08 12:43:59 -0300473 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
474 if (!has_ac3)
475 return -EINVAL;
476 old = params->au_ac3_bitrate;
477 if (set && new != V4L2_MPEG_AUDIO_AC3_BITRATE_256K &&
478 new != V4L2_MPEG_AUDIO_AC3_BITRATE_384K)
479 return -ERANGE;
480 if (new <= V4L2_MPEG_AUDIO_AC3_BITRATE_256K)
481 new = V4L2_MPEG_AUDIO_AC3_BITRATE_256K;
482 else
483 new = V4L2_MPEG_AUDIO_AC3_BITRATE_384K;
484 params->au_ac3_bitrate = new;
485 break;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300486 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
487 old = V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000;
488 if (set && new != old)
489 return -ERANGE;
490 new = old;
491 break;
492 case V4L2_CID_MPEG_VIDEO_ENCODING:
493 old = V4L2_MPEG_VIDEO_ENCODING_MPEG_2;
494 if (set && new != old)
495 return -ERANGE;
496 new = old;
497 break;
498 case V4L2_CID_MPEG_VIDEO_ASPECT:
499 old = params->vi_aspect;
500 if (set && new != V4L2_MPEG_VIDEO_ASPECT_16x9 &&
501 new != V4L2_MPEG_VIDEO_ASPECT_4x3)
502 return -ERANGE;
503 if (new != V4L2_MPEG_VIDEO_ASPECT_16x9)
504 new = V4L2_MPEG_VIDEO_ASPECT_4x3;
505 params->vi_aspect = new;
506 break;
507 case V4L2_CID_MPEG_VIDEO_BITRATE:
508 old = params->vi_bitrate * 1000;
509 new = 1000 * (new / 1000);
510 if (set && new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
511 return -ERANGE;
512 if (new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
513 new = MPEG_VIDEO_TARGET_BITRATE_MAX * 1000;
514 params->vi_bitrate = new / 1000;
515 break;
516 case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
517 old = params->vi_bitrate_peak * 1000;
518 new = 1000 * (new / 1000);
519 if (set && new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
520 return -ERANGE;
521 if (new > MPEG_VIDEO_TARGET_BITRATE_MAX * 1000)
522 new = MPEG_VIDEO_TARGET_BITRATE_MAX * 1000;
523 params->vi_bitrate_peak = new / 1000;
524 break;
525 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
526 old = params->vi_bitrate_mode;
527 params->vi_bitrate_mode = new;
528 break;
529 default:
530 return -EINVAL;
531 }
532 if (cmd == VIDIOC_G_EXT_CTRLS)
533 ctrl->value = old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 else
Hans Verkuil86b79d62006-06-18 16:40:10 -0300535 ctrl->value = new;
536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Hans Verkuile281db582008-08-08 12:43:59 -0300539static int saa6752hs_qctrl(struct saa6752hs_state *h,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300540 struct v4l2_queryctrl *qctrl)
541{
Hans Verkuile281db582008-08-08 12:43:59 -0300542 struct saa6752hs_mpeg_params *params = &h->params;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300543 int err;
544
545 switch (qctrl->id) {
546 case V4L2_CID_MPEG_AUDIO_ENCODING:
547 return v4l2_ctrl_query_fill(qctrl,
548 V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
Hans Verkuile281db582008-08-08 12:43:59 -0300549 h->has_ac3 ? V4L2_MPEG_AUDIO_ENCODING_AC3 :
550 V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
551 1, V4L2_MPEG_AUDIO_ENCODING_LAYER_2);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300552
553 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
554 return v4l2_ctrl_query_fill(qctrl,
555 V4L2_MPEG_AUDIO_L2_BITRATE_256K,
556 V4L2_MPEG_AUDIO_L2_BITRATE_384K, 1,
557 V4L2_MPEG_AUDIO_L2_BITRATE_256K);
558
Hans Verkuile281db582008-08-08 12:43:59 -0300559 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
560 if (!h->has_ac3)
561 return -EINVAL;
562 return v4l2_ctrl_query_fill(qctrl,
563 V4L2_MPEG_AUDIO_AC3_BITRATE_256K,
564 V4L2_MPEG_AUDIO_AC3_BITRATE_384K, 1,
565 V4L2_MPEG_AUDIO_AC3_BITRATE_256K);
566
Hans Verkuil8b53b392008-06-27 21:18:15 -0300567 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
568 return v4l2_ctrl_query_fill(qctrl,
569 V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000,
570 V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000, 1,
571 V4L2_MPEG_AUDIO_SAMPLING_FREQ_48000);
572
573 case V4L2_CID_MPEG_VIDEO_ENCODING:
574 return v4l2_ctrl_query_fill(qctrl,
575 V4L2_MPEG_VIDEO_ENCODING_MPEG_2,
576 V4L2_MPEG_VIDEO_ENCODING_MPEG_2, 1,
577 V4L2_MPEG_VIDEO_ENCODING_MPEG_2);
578
579 case V4L2_CID_MPEG_VIDEO_ASPECT:
580 return v4l2_ctrl_query_fill(qctrl,
581 V4L2_MPEG_VIDEO_ASPECT_4x3,
582 V4L2_MPEG_VIDEO_ASPECT_16x9, 1,
583 V4L2_MPEG_VIDEO_ASPECT_4x3);
584
585 case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:
586 err = v4l2_ctrl_query_fill_std(qctrl);
587 if (err == 0 &&
588 params->vi_bitrate_mode ==
589 V4L2_MPEG_VIDEO_BITRATE_MODE_CBR)
590 qctrl->flags |= V4L2_CTRL_FLAG_INACTIVE;
591 return err;
592
593 case V4L2_CID_MPEG_STREAM_TYPE:
594 return v4l2_ctrl_query_fill(qctrl,
595 V4L2_MPEG_STREAM_TYPE_MPEG2_TS,
596 V4L2_MPEG_STREAM_TYPE_MPEG2_TS, 1,
597 V4L2_MPEG_STREAM_TYPE_MPEG2_TS);
598
599 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
600 case V4L2_CID_MPEG_VIDEO_BITRATE:
601 case V4L2_CID_MPEG_STREAM_PID_PMT:
602 case V4L2_CID_MPEG_STREAM_PID_AUDIO:
603 case V4L2_CID_MPEG_STREAM_PID_VIDEO:
604 case V4L2_CID_MPEG_STREAM_PID_PCR:
605 return v4l2_ctrl_query_fill_std(qctrl);
606
607 default:
608 break;
609 }
610 return -EINVAL;
611}
612
Hans Verkuile281db582008-08-08 12:43:59 -0300613static int saa6752hs_qmenu(struct saa6752hs_state *h,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300614 struct v4l2_querymenu *qmenu)
615{
Hans Verkuile281db582008-08-08 12:43:59 -0300616 static const u32 mpeg_audio_encoding[] = {
617 V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
618 V4L2_CTRL_MENU_IDS_END
619 };
620 static const u32 mpeg_audio_ac3_encoding[] = {
621 V4L2_MPEG_AUDIO_ENCODING_LAYER_2,
622 V4L2_MPEG_AUDIO_ENCODING_AC3,
623 V4L2_CTRL_MENU_IDS_END
624 };
625 static u32 mpeg_audio_l2_bitrate[] = {
626 V4L2_MPEG_AUDIO_L2_BITRATE_256K,
627 V4L2_MPEG_AUDIO_L2_BITRATE_384K,
628 V4L2_CTRL_MENU_IDS_END
629 };
630 static u32 mpeg_audio_ac3_bitrate[] = {
631 V4L2_MPEG_AUDIO_AC3_BITRATE_256K,
632 V4L2_MPEG_AUDIO_AC3_BITRATE_384K,
633 V4L2_CTRL_MENU_IDS_END
Hans Verkuil8b53b392008-06-27 21:18:15 -0300634 };
635 struct v4l2_queryctrl qctrl;
636 int err;
637
638 qctrl.id = qmenu->id;
Hans Verkuile281db582008-08-08 12:43:59 -0300639 err = saa6752hs_qctrl(h, &qctrl);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300640 if (err)
641 return err;
Hans Verkuile281db582008-08-08 12:43:59 -0300642 switch (qmenu->id) {
643 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
644 return v4l2_ctrl_query_menu_valid_items(qmenu,
Hans Verkuil8b53b392008-06-27 21:18:15 -0300645 mpeg_audio_l2_bitrate);
Hans Verkuile281db582008-08-08 12:43:59 -0300646 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
647 if (!h->has_ac3)
648 return -EINVAL;
649 return v4l2_ctrl_query_menu_valid_items(qmenu,
650 mpeg_audio_ac3_bitrate);
651 case V4L2_CID_MPEG_AUDIO_ENCODING:
652 return v4l2_ctrl_query_menu_valid_items(qmenu,
653 h->has_ac3 ? mpeg_audio_ac3_encoding :
654 mpeg_audio_encoding);
655 }
656 return v4l2_ctrl_query_menu(qmenu, &qctrl, NULL);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300657}
658
Dmitry Belimovf03813e2008-08-26 13:44:40 -0300659static int saa6752hs_init(struct i2c_client *client, u32 leading_null_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 unsigned char buf[9], buf2[4];
662 struct saa6752hs_state *h;
Hans Verkuil3eea5432008-08-08 13:27:16 -0300663 unsigned size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 u32 crc;
665 unsigned char localPAT[256];
666 unsigned char localPMT[256];
667
668 h = i2c_get_clientdata(client);
669
Robert W. Boone9b715212005-11-08 21:36:45 -0800670 /* Set video format - must be done first as it resets other settings */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300671 set_reg8(client, 0x41, h->video_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Robert W. Boone9b715212005-11-08 21:36:45 -0800673 /* Set number of lines in input signal */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300674 set_reg8(client, 0x40, (h->standard & V4L2_STD_525_60) ? 1 : 0);
Robert W. Boone9b715212005-11-08 21:36:45 -0800675
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800676 /* set bitrate */
Hans Verkuile281db582008-08-08 12:43:59 -0300677 saa6752hs_set_bitrate(client, h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Robert W. Boone9b715212005-11-08 21:36:45 -0800679 /* Set GOP structure {3, 13} */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300680 set_reg16(client, 0x72, 0x030d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Trent Piepho657de3c2006-06-20 00:30:57 -0300682 /* Set minimum Q-scale {4} */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300683 set_reg8(client, 0x82, 0x04);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Trent Piepho657de3c2006-06-20 00:30:57 -0300685 /* Set maximum Q-scale {12} */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300686 set_reg8(client, 0x83, 0x0c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Trent Piepho657de3c2006-06-20 00:30:57 -0300688 /* Set Output Protocol */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300689 set_reg8(client, 0xd0, 0x81);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Trent Piepho657de3c2006-06-20 00:30:57 -0300691 /* Set video output stream format {TS} */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300692 set_reg8(client, 0xb0, 0x05);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Dmitry Belimovf03813e2008-08-26 13:44:40 -0300694 /* Set leading null byte for TS */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300695 set_reg16(client, 0xf6, leading_null_bytes);
Dmitry Belimovf03813e2008-08-26 13:44:40 -0300696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /* compute PAT */
698 memcpy(localPAT, PAT, sizeof(PAT));
699 localPAT[17] = 0xe0 | ((h->params.ts_pid_pmt >> 8) & 0x0f);
700 localPAT[18] = h->params.ts_pid_pmt & 0xff;
701 crc = crc32_be(~0, &localPAT[7], sizeof(PAT) - 7 - 4);
702 localPAT[sizeof(PAT) - 4] = (crc >> 24) & 0xFF;
703 localPAT[sizeof(PAT) - 3] = (crc >> 16) & 0xFF;
704 localPAT[sizeof(PAT) - 2] = (crc >> 8) & 0xFF;
705 localPAT[sizeof(PAT) - 1] = crc & 0xFF;
706
707 /* compute PMT */
Hans Verkuil3eea5432008-08-08 13:27:16 -0300708 if (h->params.au_encoding == V4L2_MPEG_AUDIO_ENCODING_AC3) {
709 size = sizeof(PMT_AC3);
710 memcpy(localPMT, PMT_AC3, size);
711 } else {
712 size = sizeof(PMT);
713 memcpy(localPMT, PMT, size);
714 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800715 localPMT[3] = 0x40 | ((h->params.ts_pid_pmt >> 8) & 0x0f);
716 localPMT[4] = h->params.ts_pid_pmt & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 localPMT[15] = 0xE0 | ((h->params.ts_pid_pcr >> 8) & 0x0F);
718 localPMT[16] = h->params.ts_pid_pcr & 0xFF;
719 localPMT[20] = 0xE0 | ((h->params.ts_pid_video >> 8) & 0x0F);
720 localPMT[21] = h->params.ts_pid_video & 0xFF;
721 localPMT[25] = 0xE0 | ((h->params.ts_pid_audio >> 8) & 0x0F);
722 localPMT[26] = h->params.ts_pid_audio & 0xFF;
Hans Verkuil3eea5432008-08-08 13:27:16 -0300723 crc = crc32_be(~0, &localPMT[7], size - 7 - 4);
724 localPMT[size - 4] = (crc >> 24) & 0xFF;
725 localPMT[size - 3] = (crc >> 16) & 0xFF;
726 localPMT[size - 2] = (crc >> 8) & 0xFF;
727 localPMT[size - 1] = crc & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Trent Piepho657de3c2006-06-20 00:30:57 -0300729 /* Set Audio PID */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300730 set_reg16(client, 0xc1, h->params.ts_pid_audio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Robert W. Boone9b715212005-11-08 21:36:45 -0800732 /* Set Video PID */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300733 set_reg16(client, 0xc0, h->params.ts_pid_video);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800735 /* Set PCR PID */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300736 set_reg16(client, 0xc4, h->params.ts_pid_pcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Robert W. Boone9b715212005-11-08 21:36:45 -0800738 /* Send SI tables */
Hans Verkuil3eea5432008-08-08 13:27:16 -0300739 i2c_master_send(client, localPAT, sizeof(PAT));
740 i2c_master_send(client, localPMT, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Robert W. Boone9b715212005-11-08 21:36:45 -0800742 /* mute then unmute audio. This removes buzzing artefacts */
Hans Verkuilff5f26b2008-09-06 07:00:24 -0300743 set_reg8(client, 0xa4, 1);
744 set_reg8(client, 0xa4, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Robert W. Boone9b715212005-11-08 21:36:45 -0800746 /* start it going */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 saa6752hs_chip_command(client, SAA6752HS_COMMAND_START);
748
Robert W. Boone9b715212005-11-08 21:36:45 -0800749 /* readout current state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 buf[0] = 0xE1;
751 buf[1] = 0xA7;
752 buf[2] = 0xFE;
753 buf[3] = 0x82;
754 buf[4] = 0xB0;
755 i2c_master_send(client, buf, 5);
756 i2c_master_recv(client, buf2, 4);
757
Robert W. Boone9b715212005-11-08 21:36:45 -0800758 /* change aspect ratio */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 buf[0] = 0xE0;
760 buf[1] = 0xA7;
761 buf[2] = 0xFE;
762 buf[3] = 0x82;
763 buf[4] = 0xB0;
764 buf[5] = buf2[0];
Hans Verkuil86b79d62006-06-18 16:40:10 -0300765 switch(h->params.vi_aspect) {
766 case V4L2_MPEG_VIDEO_ASPECT_16x9:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 buf[6] = buf2[1] | 0x40;
768 break;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300769 case V4L2_MPEG_VIDEO_ASPECT_4x3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 default:
771 buf[6] = buf2[1] & 0xBF;
772 break;
773 break;
774 }
775 buf[7] = buf2[2];
776 buf[8] = buf2[3];
777 i2c_master_send(client, buf, 9);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782static int
783saa6752hs_command(struct i2c_client *client, unsigned int cmd, void *arg)
784{
785 struct saa6752hs_state *h = i2c_get_clientdata(client);
Hans Verkuil86b79d62006-06-18 16:40:10 -0300786 struct v4l2_ext_controls *ctrls = arg;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300787 struct saa6752hs_mpeg_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int err = 0;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300789 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800791 switch (cmd) {
Dmitry Belimovf03813e2008-08-26 13:44:40 -0300792 case VIDIOC_INT_INIT:
793 /* apply settings and start encoder */
794 saa6752hs_init(client, *(u32 *)arg);
795 break;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300796 case VIDIOC_S_EXT_CTRLS:
797 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
798 return -EINVAL;
Hans Verkuil86b79d62006-06-18 16:40:10 -0300799 /* fall through */
800 case VIDIOC_TRY_EXT_CTRLS:
801 case VIDIOC_G_EXT_CTRLS:
802 if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG)
803 return -EINVAL;
804 params = h->params;
805 for (i = 0; i < ctrls->count; i++) {
Hans Verkuile281db582008-08-08 12:43:59 -0300806 err = handle_ctrl(h->has_ac3, &params, ctrls->controls + i, cmd);
807 if (err) {
Hans Verkuil86b79d62006-06-18 16:40:10 -0300808 ctrls->error_idx = i;
809 return err;
810 }
811 }
812 h->params = params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 break;
Hans Verkuil8b53b392008-06-27 21:18:15 -0300814 case VIDIOC_QUERYCTRL:
Hans Verkuile281db582008-08-08 12:43:59 -0300815 return saa6752hs_qctrl(h, arg);
Hans Verkuil8b53b392008-06-27 21:18:15 -0300816 case VIDIOC_QUERYMENU:
Hans Verkuile281db582008-08-08 12:43:59 -0300817 return saa6752hs_qmenu(h, arg);
Frederic CAND0a4c9c92005-05-05 16:15:52 -0700818 case VIDIOC_G_FMT:
819 {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800820 struct v4l2_format *f = arg;
Frederic CAND0a4c9c92005-05-05 16:15:52 -0700821
822 if (h->video_format == SAA6752HS_VF_UNKNOWN)
823 h->video_format = SAA6752HS_VF_D1;
824 f->fmt.pix.width =
825 v4l2_format_table[h->video_format].fmt.pix.width;
826 f->fmt.pix.height =
827 v4l2_format_table[h->video_format].fmt.pix.height;
828 break ;
829 }
830 case VIDIOC_S_FMT:
831 {
832 struct v4l2_format *f = arg;
833
834 saa6752hs_set_subsampling(client, f);
835 break;
836 }
Robert W. Boone9b715212005-11-08 21:36:45 -0800837 case VIDIOC_S_STD:
838 h->standard = *((v4l2_std_id *) arg);
839 break;
Hans Verkuile281db582008-08-08 12:43:59 -0300840
841 case VIDIOC_G_CHIP_IDENT:
842 return v4l2_chip_ident_i2c_client(client,
843 arg, h->chip, h->revision);
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 default:
846 /* nothing */
847 break;
848 }
849
850 return err;
851}
852
Hans Verkuile281db582008-08-08 12:43:59 -0300853static int saa6752hs_probe(struct i2c_client *client,
854 const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Hans Verkuile281db582008-08-08 12:43:59 -0300856 struct saa6752hs_state *h = kzalloc(sizeof(*h), GFP_KERNEL);
857 u8 addr = 0x13;
858 u8 data[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Hans Verkuile281db582008-08-08 12:43:59 -0300860 v4l_info(client, "chip found @ 0x%x (%s)\n",
861 client->addr << 1, client->adapter->name);
862 if (h == NULL)
863 return -ENOMEM;
864
865 i2c_master_send(client, &addr, 1);
866 i2c_master_recv(client, data, sizeof(data));
867 h->chip = V4L2_IDENT_SAA6752HS;
868 h->revision = (data[8] << 8) | data[9];
869 h->has_ac3 = 0;
870 if (h->revision == 0x0206) {
871 h->chip = V4L2_IDENT_SAA6752HS_AC3;
872 h->has_ac3 = 1;
873 v4l_info(client, "support AC-3\n");
874 }
875 h->params = param_defaults;
876 h->standard = 0; /* Assume 625 input lines */
877
878 i2c_set_clientdata(client, h);
879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Hans Verkuile281db582008-08-08 12:43:59 -0300882static int saa6752hs_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Hans Verkuile281db582008-08-08 12:43:59 -0300884 kfree(i2c_get_clientdata(client));
885 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Hans Verkuile281db582008-08-08 12:43:59 -0300888static const struct i2c_device_id saa6752hs_id[] = {
889 { "saa6752hs", 0 },
890 { }
891};
892MODULE_DEVICE_TABLE(i2c, saa6752hs_id);
893
894static struct v4l2_i2c_driver_data v4l2_i2c_data = {
895 .name = "saa6752hs",
896 .driverid = I2C_DRIVERID_SAA6752HS,
897 .command = saa6752hs_command,
898 .probe = saa6752hs_probe,
899 .remove = saa6752hs_remove,
900 .id_table = saa6752hs_id,
901};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903/*
904 * Overrides for Emacs so that we follow Linus's tabbing style.
905 * ---------------------------------------------------------------------------
906 * Local variables:
907 * c-basic-offset: 8
908 * End:
909 */