blob: 3e4e5584c5d0eebe98c2b9aa3e3f2f3d29121ead [file] [log] [blame]
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001/* saa7115 - Philips SAA7114/SAA7115 video decoder driver
2 *
3 * Based on saa7114 driver by Maxim Yevtyushkin, which is based on
4 * the saa7111 driver by Dave Perks.
5 *
6 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
7 * Copyright (C) 2002 Maxim Yevtyushkin <max@linuxmedialabs.com>
8 *
9 * Slight changes for video timing and attachment output by
10 * Wolfgang Scherr <scherr@net4you.net>
11 *
12 * Moved over to the linux >= 2.4.x i2c protocol (1/1/2003)
13 * by Ronald Bultje <rbultje@ronald.bitfreak.net>
14 *
15 * Added saa7115 support by Kevin Thayer <nufan_wfk at yahoo.com>
16 * (2/17/2003)
17 *
18 * VBI support (2004) and cleanups (2005) by Hans Verkuil <hverkuil@xs4all.nl>
19 *
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License
22 * as published by the Free Software Foundation; either version 2
23 * of the License, or (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
33 */
34
35
36#include <linux/kernel.h>
37#include <linux/module.h>
38#include <linux/slab.h>
39#include <linux/i2c.h>
40#include <linux/videodev2.h>
Hans Verkuile19b2fc2005-11-13 16:08:04 -080041#include <media/v4l2-common.h>
Hans Verkuil3578d3d2006-01-09 15:25:41 -020042#include <asm/div64.h>
Hans Verkuile19b2fc2005-11-13 16:08:04 -080043
44MODULE_DESCRIPTION("Philips SAA7114/SAA7115 video decoder driver");
Hans Verkuil1f4b3362005-11-13 16:08:05 -080045MODULE_AUTHOR("Maxim Yevtyushkin, Kevin Thayer, Chris Kennedy, Hans Verkuil");
Hans Verkuile19b2fc2005-11-13 16:08:04 -080046MODULE_LICENSE("GPL");
47
48static int debug = 0;
49module_param(debug, int, 0644);
50
51MODULE_PARM_DESC(debug, "Debug level (0-1)");
52
53#define saa7115_dbg(fmt,arg...) \
54 do { \
55 if (debug) \
Laurent Riffard604f28e2005-11-26 20:43:39 +010056 printk(KERN_INFO "%s debug %d-%04x: " fmt, \
57 client->driver->driver.name, \
Hans Verkuile19b2fc2005-11-13 16:08:04 -080058 i2c_adapter_id(client->adapter), client->addr , ## arg); \
59 } while (0)
60
61#define saa7115_err(fmt, arg...) do { \
Laurent Riffard604f28e2005-11-26 20:43:39 +010062 printk(KERN_ERR "%s %d-%04x: " fmt, client->driver->driver.name, \
Hans Verkuile19b2fc2005-11-13 16:08:04 -080063 i2c_adapter_id(client->adapter), client->addr , ## arg); } while (0)
64#define saa7115_info(fmt, arg...) do { \
Laurent Riffard604f28e2005-11-26 20:43:39 +010065 printk(KERN_INFO "%s %d-%04x: " fmt, client->driver->driver.name, \
Hans Verkuile19b2fc2005-11-13 16:08:04 -080066 i2c_adapter_id(client->adapter), client->addr , ## arg); } while (0)
67
68static unsigned short normal_i2c[] = { 0x42 >> 1, 0x40 >> 1, I2C_CLIENT_END };
69
70
71I2C_CLIENT_INSMOD;
72
73struct saa7115_state {
74 v4l2_std_id std;
75 int input;
76 int enable;
77 int bright;
78 int contrast;
79 int hue;
80 int sat;
81 enum v4l2_chip_ident ident;
Hans Verkuil3578d3d2006-01-09 15:25:41 -020082 u32 audclk_freq;
Hans Verkuile19b2fc2005-11-13 16:08:04 -080083};
84
85/* ----------------------------------------------------------------------- */
86
87static inline int saa7115_write(struct i2c_client *client, u8 reg, u8 value)
88{
89 return i2c_smbus_write_byte_data(client, reg, value);
90}
91
92static int saa7115_writeregs(struct i2c_client *client, const unsigned char *regs)
93{
94 unsigned char reg, data;
95
96 while (*regs != 0x00) {
97 reg = *(regs++);
98 data = *(regs++);
99 if (saa7115_write(client, reg, data) < 0)
100 return -1;
101 }
102 return 0;
103}
104
105static inline int saa7115_read(struct i2c_client *client, u8 reg)
106{
107 return i2c_smbus_read_byte_data(client, reg);
108}
109
110/* ----------------------------------------------------------------------- */
111
112/* If a value differs from the Hauppauge driver values, then the comment starts with
113 'was 0xXX' to denote the Hauppauge value. Otherwise the value is identical to what the
114 Hauppauge driver sets. */
115
116static const unsigned char saa7115_init_auto_input[] = {
117 0x01, 0x48, /* white peak control disabled */
118 0x03, 0x20, /* was 0x30. 0x20: long vertical blanking */
119 0x04, 0x90, /* analog gain set to 0 */
120 0x05, 0x90, /* analog gain set to 0 */
121 0x06, 0xeb, /* horiz sync begin = -21 */
122 0x07, 0xe0, /* horiz sync stop = -17 */
123 0x0a, 0x80, /* was 0x88. decoder brightness, 0x80 is itu standard */
124 0x0b, 0x44, /* was 0x48. decoder contrast, 0x44 is itu standard */
125 0x0c, 0x40, /* was 0x47. decoder saturation, 0x40 is itu standard */
126 0x0d, 0x00, /* chrominance hue control */
127 0x0f, 0x00, /* chrominance gain control: use automicatic mode */
128 0x10, 0x06, /* chrominance/luminance control: active adaptive combfilter */
129 0x11, 0x00, /* delay control */
130 0x12, 0x9d, /* RTS0 output control: VGATE */
131 0x13, 0x80, /* X-port output control: ITU656 standard mode, RTCO output enable RTCE */
132 0x14, 0x00, /* analog/ADC/auto compatibility control */
133 0x18, 0x40, /* raw data gain 0x00 = nominal */
134 0x19, 0x80, /* raw data offset 0x80 = 0 LSB */
135 0x1a, 0x77, /* color killer level control 0x77 = recommended */
136 0x1b, 0x42, /* misc chroma control 0x42 = recommended */
137 0x1c, 0xa9, /* combfilter control 0xA9 = recommended */
138 0x1d, 0x01, /* combfilter control 0x01 = recommended */
139 0x88, 0xd0, /* reset device */
140 0x88, 0xf0, /* set device programmed, all in operational mode */
141 0x00, 0x00
142};
143
144static const unsigned char saa7115_cfg_reset_scaler[] = {
145 0x87, 0x00, /* disable I-port output */
146 0x88, 0xd0, /* reset scaler */
147 0x88, 0xf0, /* activate scaler */
148 0x87, 0x01, /* enable I-port output */
149 0x00, 0x00
150};
151
152/* ============== SAA7715 VIDEO templates ============= */
153
154static const unsigned char saa7115_cfg_60hz_fullres_x[] = {
155 0xcc, 0xd0, /* hsize low (output), hor. output window size = 0x2d0 = 720 */
156 0xcd, 0x02, /* hsize hi (output) */
157
158 /* Why not in 60hz-Land, too? */
159 0xd0, 0x01, /* downscale = 1 */
160 0xd8, 0x00, /* hor lum scaling 0x0400 = 1 */
161 0xd9, 0x04,
162 0xdc, 0x00, /* hor chrom scaling 0x0200. must be hor lum scaling / 2 */
163 0xdd, 0x02, /* H-scaling incr chroma */
164
165 0x00, 0x00
166};
167static const unsigned char saa7115_cfg_60hz_fullres_y[] = {
168 0xce, 0xf8, /* vsize low (output), ver. output window size = 248 (but 60hz is 240?) */
169 0xcf, 0x00, /* vsize hi (output) */
170
171 /* Why not in 60hz-Land, too? */
172 0xd5, 0x40, /* Lum contrast, nominal value = 0x40 */
173 0xd6, 0x40, /* Chroma satur. nominal value = 0x80 */
174
175 0xe0, 0x00, /* V-scaling incr luma low */
176 0xe1, 0x04, /* " hi */
177 0xe2, 0x00, /* V-scaling incr chroma low */
178 0xe3, 0x04, /* " hi */
179
180 0x00, 0x00
181};
182
183static const unsigned char saa7115_cfg_60hz_video[] = {
184 0x80, 0x00, /* reset tasks */
185 0x88, 0xd0, /* reset scaler */
186
187 0x15, 0x03, /* VGATE pulse start */
188 0x16, 0x11, /* VGATE pulse stop */
189 0x17, 0x9c, /* VGATE MSB and other values */
190
191 0x08, 0x68, /* 0xBO: auto detection, 0x68 = NTSC */
192 0x0e, 0x07, /* lots of different stuff... video autodetection is on */
193
194 0x5a, 0x06, /* Vertical offset, standard 60hz value for ITU656 line counting */
195
196 /* Task A */
197 0x90, 0x80, /* Task Handling Control */
198 0x91, 0x48, /* X-port formats/config */
199 0x92, 0x40, /* Input Ref. signal Def. */
200 0x93, 0x84, /* I-port config */
201 0x94, 0x01, /* hoffset low (input), 0x0002 is minimum */
202 0x95, 0x00, /* hoffset hi (input) */
203 0x96, 0xd0, /* hsize low (input), 0x02d0 = 720 */
204 0x97, 0x02, /* hsize hi (input) */
205 0x98, 0x05, /* voffset low (input) */
206 0x99, 0x00, /* voffset hi (input) */
207 0x9a, 0x0c, /* vsize low (input), 0x0c = 12 */
208 0x9b, 0x00, /* vsize hi (input) */
209 0x9c, 0xa0, /* hsize low (output), 0x05a0 = 1440 */
210 0x9d, 0x05, /* hsize hi (output) */
211 0x9e, 0x0c, /* vsize low (output), 0x0c = 12 */
212 0x9f, 0x00, /* vsize hi (output) */
213
214 /* Task B */
215 0xc0, 0x00, /* Task Handling Control */
216 0xc1, 0x08, /* X-port formats/config */
217 0xc2, 0x00, /* Input Ref. signal Def. */
218 0xc3, 0x80, /* I-port config */
219 0xc4, 0x02, /* hoffset low (input), 0x0002 is minimum */
220 0xc5, 0x00, /* hoffset hi (input) */
221 0xc6, 0xd0, /* hsize low (input), 0x02d0 = 720 */
222 0xc7, 0x02, /* hsize hi (input) */
223 0xc8, 0x12, /* voffset low (input), 0x12 = 18 */
224 0xc9, 0x00, /* voffset hi (input) */
225 0xca, 0xf8, /* vsize low (input), 0xf8 = 248 */
226 0xcb, 0x00, /* vsize hi (input) */
227 0xcc, 0xd0, /* hsize low (output), 0x02d0 = 720 */
228 0xcd, 0x02, /* hsize hi (output) */
229
230 0xf0, 0xad, /* Set PLL Register. 60hz 525 lines per frame, 27 MHz */
231 0xf1, 0x05, /* low bit with 0xF0 */
232 0xf5, 0xad, /* Set pulse generator register */
233 0xf6, 0x01,
234
235 0x87, 0x00, /* Disable I-port output */
236 0x88, 0xd0, /* reset scaler */
237 0x80, 0x20, /* Activate only task "B", continuous mode (was 0xA0) */
238 0x88, 0xf0, /* activate scaler */
239 0x87, 0x01, /* Enable I-port output */
240 0x00, 0x00
241};
242
243static const unsigned char saa7115_cfg_50hz_fullres_x[] = {
244 0xcc, 0xd0, /* hsize low (output), 720 same as 60hz */
245 0xcd, 0x02, /* hsize hi (output) */
246
247 0xd0, 0x01, /* down scale = 1 */
248 0xd8, 0x00, /* hor lum scaling 0x0400 = 1 */
249 0xd9, 0x04,
250 0xdc, 0x00, /* hor chrom scaling 0x0200. must be hor lum scaling / 2 */
251 0xdd, 0x02, /* H-scaling incr chroma */
252
253 0x00, 0x00
254};
255static const unsigned char saa7115_cfg_50hz_fullres_y[] = {
256 0xce, 0x20, /* vsize low (output), 0x0120 = 288 */
257 0xcf, 0x01, /* vsize hi (output) */
258
259 0xd5, 0x40, /* Lum contrast, nominal value = 0x40 */
260 0xd6, 0x40, /* Chroma satur. nominal value = 0x80 */
261
262 0xe0, 0x00, /* V-scaling incr luma low */
263 0xe1, 0x04, /* " hi */
264 0xe2, 0x00, /* V-scaling incr chroma low */
265 0xe3, 0x04, /* " hi */
266
267 0x00, 0x00
268};
269
270static const unsigned char saa7115_cfg_50hz_video[] = {
271 0x80, 0x00, /* reset tasks */
272 0x88, 0xd0, /* reset scaler */
273
274 0x15, 0x37, /* VGATE start */
275 0x16, 0x16, /* VGATE stop */
276 0x17, 0x99, /* VGATE MSB and other values */
277
278 0x08, 0x28, /* 0x28 = PAL */
279 0x0e, 0x07, /* chrominance control 1 */
280
281 0x5a, 0x03, /* Vertical offset, standard 50hz value */
282
283 /* Task A */
284 0x90, 0x81, /* Task Handling Control */
285 0x91, 0x48, /* X-port formats/config */
286 0x92, 0x40, /* Input Ref. signal Def. */
287 0x93, 0x84, /* I-port config */
288 /* This is weird: the datasheet says that you should use 2 as the minimum value, */
289 /* but Hauppauge uses 0, and changing that to 2 causes indeed problems (for 50hz) */
290 0x94, 0x00, /* hoffset low (input), 0x0002 is minimum */
291 0x95, 0x00, /* hoffset hi (input) */
292 0x96, 0xd0, /* hsize low (input), 0x02d0 = 720 */
293 0x97, 0x02, /* hsize hi (input) */
294 0x98, 0x03, /* voffset low (input) */
295 0x99, 0x00, /* voffset hi (input) */
296 0x9a, 0x12, /* vsize low (input), 0x12 = 18 */
297 0x9b, 0x00, /* vsize hi (input) */
298 0x9c, 0xa0, /* hsize low (output), 0x05a0 = 1440 */
299 0x9d, 0x05, /* hsize hi (output) */
300 0x9e, 0x12, /* vsize low (output), 0x12 = 18 */
301 0x9f, 0x00, /* vsize hi (output) */
302
303 /* Task B */
304 0xc0, 0x00, /* Task Handling Control */
305 0xc1, 0x08, /* X-port formats/config */
306 0xc2, 0x00, /* Input Ref. signal Def. */
307 0xc3, 0x80, /* I-port config */
308 0xc4, 0x00, /* hoffset low (input), 0x0002 is minimum. See comment at 0x94 above. */
309 0xc5, 0x00, /* hoffset hi (input) */
310 0xc6, 0xd0, /* hsize low (input), 0x02d0 = 720 */
311 0xc7, 0x02, /* hsize hi (input) */
312 0xc8, 0x16, /* voffset low (input), 0x16 = 22 */
313 0xc9, 0x00, /* voffset hi (input) */
314 0xca, 0x20, /* vsize low (input), 0x0120 = 288 */
315 0xcb, 0x01, /* vsize hi (input) */
316 0xcc, 0xd0, /* hsize low (output), 0x02d0 = 720 */
317 0xcd, 0x02, /* hsize hi (output) */
318 0xce, 0x20, /* vsize low (output), 0x0120 = 288 */
319 0xcf, 0x01, /* vsize hi (output) */
320
321 0xf0, 0xb0, /* Set PLL Register. 50hz 625 lines per frame, 27 MHz */
322 0xf1, 0x05, /* low bit with 0xF0, (was 0x05) */
323 0xf5, 0xb0, /* Set pulse generator register */
324 0xf6, 0x01,
325
326 0x87, 0x00, /* Disable I-port output */
327 0x88, 0xd0, /* reset scaler (was 0xD0) */
328 0x80, 0x20, /* Activate only task "B" */
329 0x88, 0xf0, /* activate scaler */
330 0x87, 0x01, /* Enable I-port output */
331 0x00, 0x00
332};
333
334/* ============== SAA7715 VIDEO templates (end) ======= */
335
336static const unsigned char saa7115_cfg_vbi_on[] = {
337 0x80, 0x00, /* reset tasks */
338 0x88, 0xd0, /* reset scaler */
339 0x80, 0x30, /* Activate both tasks */
340 0x88, 0xf0, /* activate scaler */
341 0x87, 0x01, /* Enable I-port output */
342 0x00, 0x00
343};
344
345static const unsigned char saa7115_cfg_vbi_off[] = {
346 0x80, 0x00, /* reset tasks */
347 0x88, 0xd0, /* reset scaler */
348 0x80, 0x20, /* Activate only task "B" */
349 0x88, 0xf0, /* activate scaler */
350 0x87, 0x01, /* Enable I-port output */
351 0x00, 0x00
352};
353
354static const unsigned char saa7115_init_misc[] = {
355 0x38, 0x03, /* audio stuff */
356 0x39, 0x10,
357 0x3a, 0x08,
358
359 0x81, 0x01, /* reg 0x15,0x16 define blanking window */
360 0x82, 0x00,
361 0x83, 0x01, /* I port settings */
362 0x84, 0x20,
363 0x85, 0x21,
364 0x86, 0xc5,
365 0x87, 0x01,
366
367 /* Task A */
368 0xa0, 0x01, /* down scale = 1 */
369 0xa1, 0x00, /* prescale accumulation length = 1 */
370 0xa2, 0x00, /* dc gain and fir prefilter control */
371 0xa4, 0x80, /* Lum Brightness, nominal value = 0x80 */
372 0xa5, 0x40, /* Lum contrast, nominal value = 0x40 */
373 0xa6, 0x40, /* Chroma satur. nominal value = 0x80 */
374 0xa8, 0x00, /* hor lum scaling 0x0200 = 2 zoom */
375 0xa9, 0x02, /* note: 2 x zoom ensures that VBI lines have same length as video lines. */
376 0xaa, 0x00, /* H-phase offset Luma = 0 */
377 0xac, 0x00, /* hor chrom scaling 0x0200. must be hor lum scaling / 2 */
378 0xad, 0x01, /* H-scaling incr chroma */
379 0xae, 0x00, /* H-phase offset chroma. must be offset luma / 2 */
380
381 0xb0, 0x00, /* V-scaling incr luma low */
382 0xb1, 0x04, /* " hi */
383 0xb2, 0x00, /* V-scaling incr chroma low */
384 0xb3, 0x04, /* " hi */
385 0xb4, 0x01, /* V-scaling mode control */
386 0xb8, 0x00, /* V-phase offset chroma 00 */
387 0xb9, 0x00, /* V-phase offset chroma 01 */
388 0xba, 0x00, /* V-phase offset chroma 10 */
389 0xbb, 0x00, /* V-phase offset chroma 11 */
390 0xbc, 0x00, /* V-phase offset luma 00 */
391 0xbd, 0x00, /* V-phase offset luma 01 */
392 0xbe, 0x00, /* V-phase offset luma 10 */
393 0xbf, 0x00, /* V-phase offset luma 11 */
394
395 /* Task B */
396 0xd0, 0x01, /* down scale = 1 */
397 0xd1, 0x00, /* prescale accumulation length = 1 */
398 0xd2, 0x00, /* dc gain and fir prefilter control */
399 0xd4, 0x80, /* Lum Brightness, nominal value = 0x80 */
400 0xd5, 0x40, /* Lum contrast, nominal value = 0x40 */
401 0xd6, 0x40, /* Chroma satur. nominal value = 0x80 */
402 0xd8, 0x00, /* hor lum scaling 0x0400 = 1 */
403 0xd9, 0x04,
404 0xda, 0x00, /* H-phase offset Luma = 0 */
405 0xdc, 0x00, /* hor chrom scaling 0x0200. must be hor lum scaling / 2 */
406 0xdd, 0x02, /* H-scaling incr chroma */
407 0xde, 0x00, /* H-phase offset chroma. must be offset luma / 2 */
408
409 0xe0, 0x00, /* V-scaling incr luma low */
410 0xe1, 0x04, /* " hi */
411 0xe2, 0x00, /* V-scaling incr chroma low */
412 0xe3, 0x04, /* " hi */
413 0xe4, 0x01, /* V-scaling mode control */
414 0xe8, 0x00, /* V-phase offset chroma 00 */
415 0xe9, 0x00, /* V-phase offset chroma 01 */
416 0xea, 0x00, /* V-phase offset chroma 10 */
417 0xeb, 0x00, /* V-phase offset chroma 11 */
418 0xec, 0x00, /* V-phase offset luma 00 */
419 0xed, 0x00, /* V-phase offset luma 01 */
420 0xee, 0x00, /* V-phase offset luma 10 */
421 0xef, 0x00, /* V-phase offset luma 11 */
422
423 0xf2, 0x50, /* crystal clock = 24.576 MHz, target = 27MHz */
424 0xf3, 0x46,
425 0xf4, 0x00,
426 0xf7, 0x4b, /* not the recommended settings! */
427 0xf8, 0x00,
428 0xf9, 0x4b,
429 0xfa, 0x00,
430 0xfb, 0x4b,
431 0xff, 0x88, /* PLL2 lock detection settings: 71 lines 50% phase error */
432
433 /* Turn off VBI */
434 0x40, 0x20, /* No framing code errors allowed. */
435 0x41, 0xff,
436 0x42, 0xff,
437 0x43, 0xff,
438 0x44, 0xff,
439 0x45, 0xff,
440 0x46, 0xff,
441 0x47, 0xff,
442 0x48, 0xff,
443 0x49, 0xff,
444 0x4a, 0xff,
445 0x4b, 0xff,
446 0x4c, 0xff,
447 0x4d, 0xff,
448 0x4e, 0xff,
449 0x4f, 0xff,
450 0x50, 0xff,
451 0x51, 0xff,
452 0x52, 0xff,
453 0x53, 0xff,
454 0x54, 0xff,
455 0x55, 0xff,
456 0x56, 0xff,
457 0x57, 0xff,
458 0x58, 0x40,
459 0x59, 0x47,
460 0x5b, 0x83,
461 0x5d, 0xbd,
462 0x5e, 0x35,
463
464 0x02, 0x84, /* input tuner -> input 4, amplifier active */
465 0x09, 0x53, /* 0x53, was 0x56 for 60hz. luminance control */
466
467 0x80, 0x20, /* enable task B */
468 0x88, 0xd0,
469 0x88, 0xf0,
470 0x00, 0x00
471};
472
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800473static int saa7115_odd_parity(u8 c)
474{
475 c ^= (c >> 4);
476 c ^= (c >> 2);
477 c ^= (c >> 1);
478
479 return c & 1;
480}
481
482static int saa7115_decode_vps(u8 * dst, u8 * p)
483{
484 static const u8 biphase_tbl[] = {
485 0xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,
486 0xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,
487 0xd2, 0x5a, 0x52, 0xd2, 0x96, 0x1e, 0x16, 0x96,
488 0x92, 0x1a, 0x12, 0x92, 0xd2, 0x5a, 0x52, 0xd2,
489 0xd0, 0x58, 0x50, 0xd0, 0x94, 0x1c, 0x14, 0x94,
490 0x90, 0x18, 0x10, 0x90, 0xd0, 0x58, 0x50, 0xd0,
491 0xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,
492 0xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,
493 0xe1, 0x69, 0x61, 0xe1, 0xa5, 0x2d, 0x25, 0xa5,
494 0xa1, 0x29, 0x21, 0xa1, 0xe1, 0x69, 0x61, 0xe1,
495 0xc3, 0x4b, 0x43, 0xc3, 0x87, 0x0f, 0x07, 0x87,
496 0x83, 0x0b, 0x03, 0x83, 0xc3, 0x4b, 0x43, 0xc3,
497 0xc1, 0x49, 0x41, 0xc1, 0x85, 0x0d, 0x05, 0x85,
498 0x81, 0x09, 0x01, 0x81, 0xc1, 0x49, 0x41, 0xc1,
499 0xe1, 0x69, 0x61, 0xe1, 0xa5, 0x2d, 0x25, 0xa5,
500 0xa1, 0x29, 0x21, 0xa1, 0xe1, 0x69, 0x61, 0xe1,
501 0xe0, 0x68, 0x60, 0xe0, 0xa4, 0x2c, 0x24, 0xa4,
502 0xa0, 0x28, 0x20, 0xa0, 0xe0, 0x68, 0x60, 0xe0,
503 0xc2, 0x4a, 0x42, 0xc2, 0x86, 0x0e, 0x06, 0x86,
504 0x82, 0x0a, 0x02, 0x82, 0xc2, 0x4a, 0x42, 0xc2,
505 0xc0, 0x48, 0x40, 0xc0, 0x84, 0x0c, 0x04, 0x84,
506 0x80, 0x08, 0x00, 0x80, 0xc0, 0x48, 0x40, 0xc0,
507 0xe0, 0x68, 0x60, 0xe0, 0xa4, 0x2c, 0x24, 0xa4,
508 0xa0, 0x28, 0x20, 0xa0, 0xe0, 0x68, 0x60, 0xe0,
509 0xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,
510 0xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,
511 0xd2, 0x5a, 0x52, 0xd2, 0x96, 0x1e, 0x16, 0x96,
512 0x92, 0x1a, 0x12, 0x92, 0xd2, 0x5a, 0x52, 0xd2,
513 0xd0, 0x58, 0x50, 0xd0, 0x94, 0x1c, 0x14, 0x94,
514 0x90, 0x18, 0x10, 0x90, 0xd0, 0x58, 0x50, 0xd0,
515 0xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4,
516 0xb0, 0x38, 0x30, 0xb0, 0xf0, 0x78, 0x70, 0xf0,
517 };
518 int i;
519 u8 c, err = 0;
520
521 for (i = 0; i < 2 * 13; i += 2) {
522 err |= biphase_tbl[p[i]] | biphase_tbl[p[i + 1]];
523 c = (biphase_tbl[p[i + 1]] & 0xf) | ((biphase_tbl[p[i]] & 0xf) << 4);
524 dst[i / 2] = c;
525 }
526 return err & 0xf0;
527}
528
529static int saa7115_decode_wss(u8 * p)
530{
531 static const int wss_bits[8] = {
532 0, 0, 0, 1, 0, 1, 1, 1
533 };
534 unsigned char parity;
535 int wss = 0;
536 int i;
537
538 for (i = 0; i < 16; i++) {
539 int b1 = wss_bits[p[i] & 7];
540 int b2 = wss_bits[(p[i] >> 3) & 7];
541
542 if (b1 == b2)
543 return -1;
544 wss |= b2 << i;
545 }
546 parity = wss & 15;
547 parity ^= parity >> 2;
548 parity ^= parity >> 1;
549
550 if (!(parity & 1))
551 return -1;
552
553 return wss;
554}
555
556
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200557static int saa7115_set_audio_clock_freq(struct i2c_client *client, u32 freq)
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800558{
559 struct saa7115_state *state = i2c_get_clientdata(client);
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200560 u32 acpf;
561 u32 acni;
562 u32 hz;
563 u64 f;
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800564
565 saa7115_dbg("set audio clock freq: %d\n", freq);
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200566
567 /* sanity check */
568 if (freq < 32000 || freq > 48000)
569 return -EINVAL;
570
571 /* hz is the refresh rate times 100 */
572 hz = (state->std & V4L2_STD_525_60) ? 5994 : 5000;
573 /* acpf = (256 * freq) / field_frequency == (256 * 100 * freq) / hz */
574 acpf = (25600 * freq) / hz;
575 /* acni = (256 * freq * 2^23) / crystal_frequency =
576 (freq * 2^(8+23)) / crystal_frequency =
577 (freq << 31) / 32.11 MHz */
578 f = freq;
579 f = f << 31;
580 do_div(f, 32110000);
581 acni = f;
582
583 saa7115_write(client, 0x30, acpf & 0xff);
584 saa7115_write(client, 0x31, (acpf >> 8) & 0xff);
585 saa7115_write(client, 0x32, (acpf >> 16) & 0x03);
586 saa7115_write(client, 0x34, acni & 0xff);
587 saa7115_write(client, 0x35, (acni >> 8) & 0xff);
588 saa7115_write(client, 0x36, (acni >> 16) & 0x3f);
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800589 state->audclk_freq = freq;
590 return 0;
591}
592
593static int saa7115_set_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
594{
595 struct saa7115_state *state = i2c_get_clientdata(client);
596
597 switch (ctrl->id) {
598 case V4L2_CID_BRIGHTNESS:
599 if (ctrl->value < 0 || ctrl->value > 255) {
600 saa7115_err("invalid brightness setting %d\n", ctrl->value);
601 return -ERANGE;
602 }
603
604 state->bright = ctrl->value;
605 saa7115_write(client, 0x0a, state->bright);
606 break;
607
608 case V4L2_CID_CONTRAST:
609 if (ctrl->value < 0 || ctrl->value > 127) {
610 saa7115_err("invalid contrast setting %d\n", ctrl->value);
611 return -ERANGE;
612 }
613
614 state->contrast = ctrl->value;
615 saa7115_write(client, 0x0b, state->contrast);
616 break;
617
618 case V4L2_CID_SATURATION:
619 if (ctrl->value < 0 || ctrl->value > 127) {
620 saa7115_err("invalid saturation setting %d\n", ctrl->value);
621 return -ERANGE;
622 }
623
624 state->sat = ctrl->value;
625 saa7115_write(client, 0x0c, state->sat);
626 break;
627
628 case V4L2_CID_HUE:
629 if (ctrl->value < -127 || ctrl->value > 127) {
630 saa7115_err("invalid hue setting %d\n", ctrl->value);
631 return -ERANGE;
632 }
633
634 state->hue = ctrl->value;
635 saa7115_write(client, 0x0d, state->hue);
636 break;
637 }
638
639 return 0;
640}
641
642static int saa7115_get_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
643{
644 struct saa7115_state *state = i2c_get_clientdata(client);
645
646 switch (ctrl->id) {
647 case V4L2_CID_BRIGHTNESS:
648 ctrl->value = state->bright;
649 break;
650 case V4L2_CID_CONTRAST:
651 ctrl->value = state->contrast;
652 break;
653 case V4L2_CID_SATURATION:
654 ctrl->value = state->sat;
655 break;
656 case V4L2_CID_HUE:
657 ctrl->value = state->hue;
658 break;
659 default:
660 return -EINVAL;
661 }
662
663 return 0;
664}
665
666static void saa7115_set_v4lstd(struct i2c_client *client, v4l2_std_id std)
667{
668 struct saa7115_state *state = i2c_get_clientdata(client);
669 int taskb = saa7115_read(client, 0x80) & 0x10;
670
671 // This works for NTSC-M, SECAM-L and the 50Hz PAL variants.
672 if (std & V4L2_STD_525_60) {
673 saa7115_dbg("decoder set standard 60 Hz\n");
674 saa7115_writeregs(client, saa7115_cfg_60hz_video);
675 } else {
676 saa7115_dbg("decoder set standard 50 Hz\n");
677 saa7115_writeregs(client, saa7115_cfg_50hz_video);
678 }
679
680 state->std = std;
681
682 /* restart task B if needed */
683 if (taskb && state->ident == V4L2_IDENT_SAA7114) {
684 saa7115_writeregs(client, saa7115_cfg_vbi_on);
685 }
686
687 /* switch audio mode too! */
688 saa7115_set_audio_clock_freq(client, state->audclk_freq);
689}
690
691static v4l2_std_id saa7115_get_v4lstd(struct i2c_client *client)
692{
693 struct saa7115_state *state = i2c_get_clientdata(client);
694
695 return state->std;
696}
697
698static void saa7115_log_status(struct i2c_client *client)
699{
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800700 struct saa7115_state *state = i2c_get_clientdata(client);
701 int reg1e, reg1f;
702 int signalOk;
703 int vcr;
704
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200705 saa7115_info("Audio frequency: %d Hz\n", state->audclk_freq);
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800706 if (client->name[6] == '4') {
707 /* status for the saa7114 */
708 reg1f = saa7115_read(client, 0x1f);
709 signalOk = (reg1f & 0xc1) == 0x81;
710 saa7115_info("Video signal: %s\n", signalOk ? "ok" : "bad");
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200711 saa7115_info("Frequency: %s\n", (reg1f & 0x20) ? "60 Hz" : "50 Hz");
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800712 return;
713 }
714
715 /* status for the saa7115 */
716 reg1e = saa7115_read(client, 0x1e);
717 reg1f = saa7115_read(client, 0x1f);
718
719 signalOk = (reg1f & 0xc1) == 0x81 && (reg1e & 0xc0) == 0x80;
720 vcr = !(reg1f & 0x10);
721
Hans Verkuil21fa7152006-01-09 15:25:41 -0200722 if (state->input >= 6) {
723 saa7115_info("Input: S-Video %d\n", state->input - 6);
724 } else {
725 saa7115_info("Input: Composite %d\n", state->input);
726 }
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800727 saa7115_info("Video signal: %s\n", signalOk ? (vcr ? "VCR" : "broadcast/DVD") : "bad");
Hans Verkuil3578d3d2006-01-09 15:25:41 -0200728 saa7115_info("Frequency: %s\n", (reg1f & 0x20) ? "60 Hz" : "50 Hz");
Hans Verkuile19b2fc2005-11-13 16:08:04 -0800729
730 switch (reg1e & 0x03) {
731 case 1:
732 saa7115_info("Detected format: NTSC\n");
733 break;
734 case 2:
735 saa7115_info("Detected format: PAL\n");
736 break;
737 case 3:
738 saa7115_info("Detected format: SECAM\n");
739 break;
740 default:
741 saa7115_info("Detected format: BW/No color\n");
742 break;
743 }
744}
745
746/* setup the sliced VBI lcr registers according to the sliced VBI format */
747static void saa7115_set_lcr(struct i2c_client *client, struct v4l2_sliced_vbi_format *fmt)
748{
749 struct saa7115_state *state = i2c_get_clientdata(client);
750 int is_50hz = (state->std & V4L2_STD_625_50);
751 u8 lcr[24];
752 int i, x;
753
754 /* saa7114 doesn't yet support VBI */
755 if (state->ident == V4L2_IDENT_SAA7114)
756 return;
757
758 for (i = 0; i <= 23; i++)
759 lcr[i] = 0xff;
760
761 if (fmt->service_set == 0) {
762 /* raw VBI */
763 if (is_50hz)
764 for (i = 6; i <= 23; i++)
765 lcr[i] = 0xdd;
766 else
767 for (i = 10; i <= 21; i++)
768 lcr[i] = 0xdd;
769 } else {
770 /* sliced VBI */
771 /* first clear lines that cannot be captured */
772 if (is_50hz) {
773 for (i = 0; i <= 5; i++)
774 fmt->service_lines[0][i] =
775 fmt->service_lines[1][i] = 0;
776 }
777 else {
778 for (i = 0; i <= 9; i++)
779 fmt->service_lines[0][i] =
780 fmt->service_lines[1][i] = 0;
781 for (i = 22; i <= 23; i++)
782 fmt->service_lines[0][i] =
783 fmt->service_lines[1][i] = 0;
784 }
785
786 /* Now set the lcr values according to the specified service */
787 for (i = 6; i <= 23; i++) {
788 lcr[i] = 0;
789 for (x = 0; x <= 1; x++) {
790 switch (fmt->service_lines[1-x][i]) {
791 case 0:
792 lcr[i] |= 0xf << (4 * x);
793 break;
794 case V4L2_SLICED_TELETEXT_B:
795 lcr[i] |= 1 << (4 * x);
796 break;
797 case V4L2_SLICED_CAPTION_525:
798 lcr[i] |= 4 << (4 * x);
799 break;
800 case V4L2_SLICED_WSS_625:
801 lcr[i] |= 5 << (4 * x);
802 break;
803 case V4L2_SLICED_VPS:
804 lcr[i] |= 7 << (4 * x);
805 break;
806 }
807 }
808 }
809 }
810
811 /* write the lcr registers */
812 for (i = 2; i <= 23; i++) {
813 saa7115_write(client, i - 2 + 0x41, lcr[i]);
814 }
815
816 /* enable/disable raw VBI capturing */
817 saa7115_writeregs(client, fmt->service_set == 0 ? saa7115_cfg_vbi_on : saa7115_cfg_vbi_off);
818}
819
820static int saa7115_get_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
821{
822 static u16 lcr2vbi[] = {
823 0, V4L2_SLICED_TELETEXT_B, 0, /* 1 */
824 0, V4L2_SLICED_CAPTION_525, /* 4 */
825 V4L2_SLICED_WSS_625, 0, /* 5 */
826 V4L2_SLICED_VPS, 0, 0, 0, 0, /* 7 */
827 0, 0, 0, 0
828 };
829 struct v4l2_sliced_vbi_format *sliced = &fmt->fmt.sliced;
830 int i;
831
832 if (fmt->type != V4L2_BUF_TYPE_SLICED_VBI_CAPTURE)
833 return -EINVAL;
834 memset(sliced, 0, sizeof(*sliced));
835 /* done if using raw VBI */
836 if (saa7115_read(client, 0x80) & 0x10)
837 return 0;
838 for (i = 2; i <= 23; i++) {
839 u8 v = saa7115_read(client, i - 2 + 0x41);
840
841 sliced->service_lines[0][i] = lcr2vbi[v >> 4];
842 sliced->service_lines[1][i] = lcr2vbi[v & 0xf];
843 sliced->service_set |=
844 sliced->service_lines[0][i] | sliced->service_lines[1][i];
845 }
846 return 0;
847}
848
849static int saa7115_set_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
850{
851 struct saa7115_state *state = i2c_get_clientdata(client);
852 struct v4l2_pix_format *pix;
853 int HPSC, HFSC;
854 int VSCY, Vsrc;
855 int is_50hz = state->std & V4L2_STD_625_50;
856
857 if (fmt->type == V4L2_BUF_TYPE_SLICED_VBI_CAPTURE) {
858 saa7115_set_lcr(client, &fmt->fmt.sliced);
859 return 0;
860 }
861 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
862 return -EINVAL;
863
864 pix = &(fmt->fmt.pix);
865
866 saa7115_dbg("decoder set size\n");
867
868 /* FIXME need better bounds checking here */
869 if ((pix->width < 1) || (pix->width > 1440))
870 return -EINVAL;
871 if ((pix->height < 1) || (pix->height > 960))
872 return -EINVAL;
873
874 /* probably have a valid size, let's set it */
875 /* Set output width/height */
876 /* width */
877 saa7115_write(client, 0xcc, (u8) (pix->width & 0xff));
878 saa7115_write(client, 0xcd, (u8) ((pix->width >> 8) & 0xff));
879 /* height */
880 saa7115_write(client, 0xce, (u8) (pix->height & 0xff));
881 saa7115_write(client, 0xcf, (u8) ((pix->height >> 8) & 0xff));
882
883 /* Scaling settings */
884 /* Hprescaler is floor(inres/outres) */
885 /* FIXME hardcoding input res */
886 if (pix->width != 720) {
887 HPSC = (int)(720 / pix->width);
888 /* 0 is not allowed (div. by zero) */
889 HPSC = HPSC ? HPSC : 1;
890 HFSC = (int)((1024 * 720) / (HPSC * pix->width));
891
892 saa7115_dbg("Hpsc: 0x%05x, Hfsc: 0x%05x\n", HPSC, HFSC);
893 /* FIXME hardcodes to "Task B"
894 * write H prescaler integer */
895 saa7115_write(client, 0xd0, (u8) (HPSC & 0x3f));
896
897 /* write H fine-scaling (luminance) */
898 saa7115_write(client, 0xd8, (u8) (HFSC & 0xff));
899 saa7115_write(client, 0xd9, (u8) ((HFSC >> 8) & 0xff));
900 /* write H fine-scaling (chrominance)
901 * must be lum/2, so i'll just bitshift :) */
902 saa7115_write(client, 0xDC, (u8) ((HFSC >> 1) & 0xff));
903 saa7115_write(client, 0xDD, (u8) ((HFSC >> 9) & 0xff));
904 } else {
905 if (is_50hz) {
906 saa7115_dbg("Setting full 50hz width\n");
907 saa7115_writeregs(client, saa7115_cfg_50hz_fullres_x);
908 } else {
909 saa7115_dbg("Setting full 60hz width\n");
910 saa7115_writeregs(client, saa7115_cfg_60hz_fullres_x);
911 }
912 }
913
914 Vsrc = is_50hz ? 576 : 480;
915
916 if (pix->height != Vsrc) {
917 VSCY = (int)((1024 * Vsrc) / pix->height);
918 saa7115_dbg("Vsrc: %d, Vscy: 0x%05x\n", Vsrc, VSCY);
919
920 /* Correct Contrast and Luminance */
921 saa7115_write(client, 0xd5, (u8) (64 * 1024 / VSCY));
922 saa7115_write(client, 0xd6, (u8) (64 * 1024 / VSCY));
923
924 /* write V fine-scaling (luminance) */
925 saa7115_write(client, 0xe0, (u8) (VSCY & 0xff));
926 saa7115_write(client, 0xe1, (u8) ((VSCY >> 8) & 0xff));
927 /* write V fine-scaling (chrominance) */
928 saa7115_write(client, 0xe2, (u8) (VSCY & 0xff));
929 saa7115_write(client, 0xe3, (u8) ((VSCY >> 8) & 0xff));
930 } else {
931 if (is_50hz) {
932 saa7115_dbg("Setting full 50Hz height\n");
933 saa7115_writeregs(client, saa7115_cfg_50hz_fullres_y);
934 } else {
935 saa7115_dbg("Setting full 60hz height\n");
936 saa7115_writeregs(client, saa7115_cfg_60hz_fullres_y);
937 }
938 }
939
940 saa7115_writeregs(client, saa7115_cfg_reset_scaler);
941 return 0;
942}
943
944/* Decode the sliced VBI data stream as created by the saa7115.
945 The format is described in the saa7115 datasheet in Tables 25 and 26
946 and in Figure 33.
947 The current implementation uses SAV/EAV codes and not the ancillary data
948 headers. The vbi->p pointer points to the SDID byte right after the SAV
949 code. */
950static void saa7115_decode_vbi_line(struct i2c_client *client,
951 struct v4l2_decode_vbi_line *vbi)
952{
953 static const char vbi_no_data_pattern[] = {
954 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0
955 };
956 struct saa7115_state *state = i2c_get_clientdata(client);
957 u8 *p = vbi->p;
958 u32 wss;
959 int id1, id2; /* the ID1 and ID2 bytes from the internal header */
960
961 vbi->type = 0; /* mark result as a failure */
962 id1 = p[2];
963 id2 = p[3];
964 /* Note: the field bit is inverted for 60 Hz video */
965 if (state->std & V4L2_STD_525_60)
966 id1 ^= 0x40;
967
968 /* Skip internal header, p now points to the start of the payload */
969 p += 4;
970 vbi->p = p;
971
972 /* calculate field and line number of the VBI packet (1-23) */
973 vbi->is_second_field = ((id1 & 0x40) != 0);
974 vbi->line = (id1 & 0x3f) << 3;
975 vbi->line |= (id2 & 0x70) >> 4;
976
977 /* Obtain data type */
978 id2 &= 0xf;
979
980 /* If the VBI slicer does not detect any signal it will fill up
981 the payload buffer with 0xa0 bytes. */
982 if (!memcmp(p, vbi_no_data_pattern, sizeof(vbi_no_data_pattern)))
983 return;
984
985 /* decode payloads */
986 switch (id2) {
987 case 1:
988 vbi->type = V4L2_SLICED_TELETEXT_B;
989 break;
990 case 4:
991 if (!saa7115_odd_parity(p[0]) || !saa7115_odd_parity(p[1]))
992 return;
993 vbi->type = V4L2_SLICED_CAPTION_525;
994 break;
995 case 5:
996 wss = saa7115_decode_wss(p);
997 if (wss == -1)
998 return;
999 p[0] = wss & 0xff;
1000 p[1] = wss >> 8;
1001 vbi->type = V4L2_SLICED_WSS_625;
1002 break;
1003 case 7:
1004 if (saa7115_decode_vps(p, p) != 0)
1005 return;
1006 vbi->type = V4L2_SLICED_VPS;
1007 break;
1008 default:
1009 return;
1010 }
1011}
1012
1013/* ============ SAA7115 AUDIO settings (end) ============= */
1014
1015static int saa7115_command(struct i2c_client *client, unsigned int cmd, void *arg)
1016{
1017 struct saa7115_state *state = i2c_get_clientdata(client);
1018 int *iarg = arg;
1019
1020 /* ioctls to allow direct access to the saa7115 registers for testing */
1021 switch (cmd) {
1022 case VIDIOC_S_FMT:
1023 return saa7115_set_v4lfmt(client, (struct v4l2_format *)arg);
1024
1025 case VIDIOC_G_FMT:
1026 return saa7115_get_v4lfmt(client, (struct v4l2_format *)arg);
1027
1028 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
Hans Verkuil3578d3d2006-01-09 15:25:41 -02001029 return saa7115_set_audio_clock_freq(client, *(u32 *)arg);
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001030
1031 case VIDIOC_G_TUNER:
1032 {
1033 struct v4l2_tuner *vt = arg;
1034 int status;
1035
1036 status = saa7115_read(client, 0x1f);
1037
1038 saa7115_dbg("status: 0x%02x\n", status);
1039 vt->signal = ((status & (1 << 6)) == 0) ? 0xffff : 0x0;
1040 break;
1041 }
1042
1043 case VIDIOC_LOG_STATUS:
1044 saa7115_log_status(client);
1045 break;
1046
1047 case VIDIOC_G_CTRL:
1048 return saa7115_get_v4lctrl(client, (struct v4l2_control *)arg);
1049
1050 case VIDIOC_S_CTRL:
1051 return saa7115_set_v4lctrl(client, (struct v4l2_control *)arg);
1052
1053 case VIDIOC_G_STD:
1054 *(v4l2_std_id *)arg = saa7115_get_v4lstd(client);
1055 break;
1056
1057 case VIDIOC_S_STD:
1058 saa7115_set_v4lstd(client, *(v4l2_std_id *)arg);
1059 break;
1060
1061 case VIDIOC_G_INPUT:
1062 *(int *)arg = state->input;
1063 break;
1064
1065 case VIDIOC_S_INPUT:
1066 saa7115_dbg("decoder set input %d\n", *iarg);
1067 /* inputs from 0-9 are available */
1068 if (*iarg < 0 || *iarg > 9) {
1069 return -EINVAL;
1070 }
1071
1072 if (state->input == *iarg)
1073 break;
1074 saa7115_dbg("now setting %s input\n",
1075 *iarg >= 6 ? "S-Video" : "Composite");
1076 state->input = *iarg;
1077
1078 /* select mode */
1079 saa7115_write(client, 0x02,
1080 (saa7115_read(client, 0x02) & 0xf0) |
1081 state->input);
1082
1083 /* bypass chrominance trap for modes 6..9 */
1084 saa7115_write(client, 0x09,
1085 (saa7115_read(client, 0x09) & 0x7f) |
1086 (state->input < 6 ? 0x0 : 0x80));
1087 break;
1088
1089 case VIDIOC_STREAMON:
1090 case VIDIOC_STREAMOFF:
1091 saa7115_dbg("%s output\n",
1092 (cmd == VIDIOC_STREAMON) ? "enable" : "disable");
1093
1094 if (state->enable != (cmd == VIDIOC_STREAMON)) {
1095 state->enable = (cmd == VIDIOC_STREAMON);
1096 saa7115_write(client, 0x87, state->enable);
1097 }
1098 break;
1099
1100 case VIDIOC_INT_DECODE_VBI_LINE:
1101 saa7115_decode_vbi_line(client, arg);
1102 break;
1103
1104 case VIDIOC_INT_RESET:
1105 saa7115_dbg("decoder RESET\n");
1106 saa7115_writeregs(client, saa7115_cfg_reset_scaler);
1107 break;
1108
1109 case VIDIOC_INT_G_VBI_DATA:
1110 {
1111 struct v4l2_sliced_vbi_data *data = arg;
1112
1113 switch (data->id) {
1114 case V4L2_SLICED_WSS_625:
1115 if (saa7115_read(client, 0x6b) & 0xc0)
1116 return -EIO;
1117 data->data[0] = saa7115_read(client, 0x6c);
1118 data->data[1] = saa7115_read(client, 0x6d);
1119 return 0;
1120 case V4L2_SLICED_CAPTION_525:
1121 if (data->field == 0) {
1122 /* CC */
1123 if (saa7115_read(client, 0x66) & 0xc0)
1124 return -EIO;
1125 data->data[0] = saa7115_read(client, 0x67);
1126 data->data[1] = saa7115_read(client, 0x68);
1127 return 0;
1128 }
1129 /* XDS */
1130 if (saa7115_read(client, 0x66) & 0x30)
1131 return -EIO;
1132 data->data[0] = saa7115_read(client, 0x69);
1133 data->data[1] = saa7115_read(client, 0x6a);
1134 return 0;
1135 default:
1136 return -EINVAL;
1137 }
1138 break;
1139 }
1140
1141#ifdef CONFIG_VIDEO_ADV_DEBUG
1142 case VIDIOC_INT_G_REGISTER:
1143 {
1144 struct v4l2_register *reg = arg;
1145
1146 if (reg->i2c_id != I2C_DRIVERID_SAA711X)
1147 return -EINVAL;
1148 reg->val = saa7115_read(client, reg->reg & 0xff);
1149 break;
1150 }
1151
1152 case VIDIOC_INT_S_REGISTER:
1153 {
1154 struct v4l2_register *reg = arg;
1155
1156 if (reg->i2c_id != I2C_DRIVERID_SAA711X)
1157 return -EINVAL;
1158 if (!capable(CAP_SYS_ADMIN))
1159 return -EPERM;
1160 saa7115_write(client, reg->reg & 0xff, reg->val & 0xff);
1161 break;
1162 }
1163#endif
1164
1165 case VIDIOC_INT_G_CHIP_IDENT:
1166 *iarg = state->ident;
1167 break;
1168
1169 default:
1170 return -EINVAL;
1171 }
1172
1173 return 0;
1174}
1175
1176/* ----------------------------------------------------------------------- */
1177
1178static struct i2c_driver i2c_driver_saa7115;
1179
1180static int saa7115_attach(struct i2c_adapter *adapter, int address, int kind)
1181{
1182 struct i2c_client *client;
1183 struct saa7115_state *state;
1184 u8 chip_id;
1185
1186 /* Check if the adapter supports the needed features */
1187 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1188 return 0;
1189
1190 client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL);
1191 if (client == 0)
1192 return -ENOMEM;
1193 memset(client, 0, sizeof(struct i2c_client));
1194 client->addr = address;
1195 client->adapter = adapter;
1196 client->driver = &i2c_driver_saa7115;
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001197 snprintf(client->name, sizeof(client->name) - 1, "saa7115");
1198
1199 saa7115_dbg("detecting saa7115 client on address 0x%x\n", address << 1);
1200
1201 saa7115_write(client, 0, 5);
1202 chip_id = saa7115_read(client, 0) & 0x0f;
1203 if (chip_id != 4 && chip_id != 5) {
1204 saa7115_dbg("saa7115 not found\n");
1205 kfree(client);
1206 return 0;
1207 }
1208 if (chip_id == 4) {
1209 snprintf(client->name, sizeof(client->name) - 1, "saa7114");
1210 }
1211 saa7115_info("saa711%d found @ 0x%x (%s)\n", chip_id, address << 1, adapter->name);
1212
1213 state = kmalloc(sizeof(struct saa7115_state), GFP_KERNEL);
1214 i2c_set_clientdata(client, state);
1215 if (state == NULL) {
1216 kfree(client);
1217 return -ENOMEM;
1218 }
1219 memset(state, 0, sizeof(struct saa7115_state));
1220 state->std = V4L2_STD_NTSC;
1221 state->input = -1;
1222 state->enable = 1;
1223 state->bright = 128;
1224 state->contrast = 64;
1225 state->hue = 0;
1226 state->sat = 64;
1227 state->ident = (chip_id == 4) ? V4L2_IDENT_SAA7114 : V4L2_IDENT_SAA7115;
Hans Verkuil3578d3d2006-01-09 15:25:41 -02001228 state->audclk_freq = 48000;
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001229
1230 saa7115_dbg("writing init values\n");
1231
1232 /* init to 60hz/48khz */
1233 saa7115_writeregs(client, saa7115_init_auto_input);
1234 saa7115_writeregs(client, saa7115_init_misc);
1235 saa7115_writeregs(client, saa7115_cfg_60hz_fullres_x);
1236 saa7115_writeregs(client, saa7115_cfg_60hz_fullres_y);
1237 saa7115_writeregs(client, saa7115_cfg_60hz_video);
Hans Verkuil3578d3d2006-01-09 15:25:41 -02001238 saa7115_set_audio_clock_freq(client, state->audclk_freq);
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001239 saa7115_writeregs(client, saa7115_cfg_reset_scaler);
1240
1241 i2c_attach_client(client);
1242
1243 saa7115_dbg("status: (1E) 0x%02x, (1F) 0x%02x\n",
1244 saa7115_read(client, 0x1e), saa7115_read(client, 0x1f));
1245
1246 return 0;
1247}
1248
1249static int saa7115_probe(struct i2c_adapter *adapter)
1250{
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001251 if (adapter->class & I2C_CLASS_TV_ANALOG)
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001252 return i2c_probe(adapter, &addr_data, &saa7115_attach);
1253 return 0;
1254}
1255
1256static int saa7115_detach(struct i2c_client *client)
1257{
1258 struct saa7115_state *state = i2c_get_clientdata(client);
1259 int err;
1260
1261 err = i2c_detach_client(client);
1262 if (err) {
1263 return err;
1264 }
1265
1266 kfree(state);
1267 kfree(client);
1268 return 0;
1269}
1270
1271/* ----------------------------------------------------------------------- */
1272
1273/* i2c implementation */
1274static struct i2c_driver i2c_driver_saa7115 = {
Laurent Riffard604f28e2005-11-26 20:43:39 +01001275 .driver = {
Laurent Riffard604f28e2005-11-26 20:43:39 +01001276 .name = "saa7115",
1277 },
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001278 .id = I2C_DRIVERID_SAA711X,
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001279 .attach_adapter = saa7115_probe,
1280 .detach_client = saa7115_detach,
1281 .command = saa7115_command,
Hans Verkuile19b2fc2005-11-13 16:08:04 -08001282};
1283
1284
1285static int __init saa7115_init_module(void)
1286{
1287 return i2c_add_driver(&i2c_driver_saa7115);
1288}
1289
1290static void __exit saa7115_cleanup_module(void)
1291{
1292 i2c_del_driver(&i2c_driver_saa7115);
1293}
1294
1295module_init(saa7115_init_module);
1296module_exit(saa7115_cleanup_module);