Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
[pandora-kernel.git] / drivers / media / video / tvaudio.c
1 /*
2  * experimental driver for simple i2c audio chips.
3  *
4  * Copyright (c) 2000 Gerd Knorr
5  * based on code by:
6  *   Eric Sandeen (eric_sandeen@bigfoot.com)
7  *   Steve VanDeBogart (vandebo@uclink.berkeley.edu)
8  *   Greg Alexander (galexand@acm.org)
9  *
10  * This code is placed under the terms of the GNU General Public License
11  *
12  * OPTIONS:
13  *   debug - set to 1 if you'd like to see debug messages
14  *
15  */
16
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
19 #include <linux/kernel.h>
20 #include <linux/sched.h>
21 #include <linux/string.h>
22 #include <linux/timer.h>
23 #include <linux/delay.h>
24 #include <linux/errno.h>
25 #include <linux/slab.h>
26 #include <linux/videodev.h>
27 #include <linux/i2c.h>
28 #include <linux/i2c-algo-bit.h>
29 #include <linux/init.h>
30 #include <linux/smp_lock.h>
31
32 #include <media/tvaudio.h>
33 #include <media/v4l2-common.h>
34
35 #include <media/i2c-addr.h>
36
37 /* ---------------------------------------------------------------------- */
38 /* insmod args                                                            */
39
40 static int debug = 0;   /* insmod parameter */
41 module_param(debug, int, 0644);
42
43 MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
44 MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
45 MODULE_LICENSE("GPL");
46
47 #define UNSET    (-1U)
48
49 /* ---------------------------------------------------------------------- */
50 /* our structs                                                            */
51
52 #define MAXREGS 64
53
54 struct CHIPSTATE;
55 typedef int  (*getvalue)(int);
56 typedef int  (*checkit)(struct CHIPSTATE*);
57 typedef int  (*initialize)(struct CHIPSTATE*);
58 typedef int  (*getmode)(struct CHIPSTATE*);
59 typedef void (*setmode)(struct CHIPSTATE*, int mode);
60 typedef void (*checkmode)(struct CHIPSTATE*);
61
62 /* i2c command */
63 typedef struct AUDIOCMD {
64         int             count;             /* # of bytes to send */
65         unsigned char   bytes[MAXREGS+1];  /* addr, data, data, ... */
66 } audiocmd;
67
68 /* chip description */
69 struct CHIPDESC {
70         char       *name;             /* chip name         */
71         int        id;                /* ID */
72         int        addr_lo, addr_hi;  /* i2c address range */
73         int        registers;         /* # of registers    */
74
75         int        *insmodopt;
76         checkit    checkit;
77         initialize initialize;
78         int        flags;
79 #define CHIP_HAS_VOLUME      1
80 #define CHIP_HAS_BASSTREBLE  2
81 #define CHIP_HAS_INPUTSEL    4
82
83         /* various i2c command sequences */
84         audiocmd   init;
85
86         /* which register has which value */
87         int    leftreg,rightreg,treblereg,bassreg;
88
89         /* initialize with (defaults to 65535/65535/32768/32768 */
90         int    leftinit,rightinit,trebleinit,bassinit;
91
92         /* functions to convert the values (v4l -> chip) */
93         getvalue volfunc,treblefunc,bassfunc;
94
95         /* get/set mode */
96         getmode  getmode;
97         setmode  setmode;
98
99         /* check / autoswitch audio after channel switches */
100         checkmode  checkmode;
101
102         /* input switch register + values for v4l inputs */
103         int  inputreg;
104         int  inputmap[4];
105         int  inputmute;
106         int  inputmask;
107 };
108 static struct CHIPDESC chiplist[];
109
110 /* current state of the chip */
111 struct CHIPSTATE {
112         struct i2c_client c;
113
114         /* index into CHIPDESC array */
115         int type;
116
117         /* shadow register set */
118         audiocmd   shadow;
119
120         /* current settings */
121         __u16 left,right,treble,bass,muted,mode;
122         int prevmode;
123         int radio;
124         int input;
125
126         /* thread */
127         pid_t                tpid;
128         struct completion    texit;
129         wait_queue_head_t    wq;
130         struct timer_list    wt;
131         int                  done;
132         int                  watch_stereo;
133         int                  audmode;
134 };
135
136 /* ---------------------------------------------------------------------- */
137 /* i2c addresses                                                          */
138
139 static unsigned short normal_i2c[] = {
140         I2C_ADDR_TDA8425   >> 1,
141         I2C_ADDR_TEA6300   >> 1,
142         I2C_ADDR_TEA6420   >> 1,
143         I2C_ADDR_TDA9840   >> 1,
144         I2C_ADDR_TDA985x_L >> 1,
145         I2C_ADDR_TDA985x_H >> 1,
146         I2C_ADDR_TDA9874   >> 1,
147         I2C_ADDR_PIC16C54  >> 1,
148         I2C_CLIENT_END };
149 I2C_CLIENT_INSMOD;
150
151 static struct i2c_driver driver;
152 static struct i2c_client client_template;
153
154
155 /* ---------------------------------------------------------------------- */
156 /* i2c I/O functions                                                      */
157
158 static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
159 {
160         unsigned char buffer[2];
161
162         if (-1 == subaddr) {
163                 v4l_dbg(1, debug, &chip->c, "%s: chip_write: 0x%x\n",
164                         chip->c.name, val);
165                 chip->shadow.bytes[1] = val;
166                 buffer[0] = val;
167                 if (1 != i2c_master_send(&chip->c,buffer,1)) {
168                         v4l_warn(&chip->c, "%s: I/O error (write 0x%x)\n",
169                                 chip->c.name, val);
170                         return -1;
171                 }
172         } else {
173                 v4l_dbg(1, debug, &chip->c, "%s: chip_write: reg%d=0x%x\n",
174                         chip->c.name, subaddr, val);
175                 chip->shadow.bytes[subaddr+1] = val;
176                 buffer[0] = subaddr;
177                 buffer[1] = val;
178                 if (2 != i2c_master_send(&chip->c,buffer,2)) {
179                         v4l_warn(&chip->c, "%s: I/O error (write reg%d=0x%x)\n",
180                         chip->c.name, subaddr, val);
181                         return -1;
182                 }
183         }
184         return 0;
185 }
186
187 static int chip_write_masked(struct CHIPSTATE *chip, int subaddr, int val, int mask)
188 {
189         if (mask != 0) {
190                 if (-1 == subaddr) {
191                         val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
192                 } else {
193                         val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
194                 }
195         }
196         return chip_write(chip, subaddr, val);
197 }
198
199 static int chip_read(struct CHIPSTATE *chip)
200 {
201         unsigned char buffer;
202
203         if (1 != i2c_master_recv(&chip->c,&buffer,1)) {
204                 v4l_warn(&chip->c, "%s: I/O error (read)\n",
205                 chip->c.name);
206                 return -1;
207         }
208         v4l_dbg(1, debug, &chip->c, "%s: chip_read: 0x%x\n",chip->c.name, buffer);
209         return buffer;
210 }
211
212 static int chip_read2(struct CHIPSTATE *chip, int subaddr)
213 {
214         unsigned char write[1];
215         unsigned char read[1];
216         struct i2c_msg msgs[2] = {
217                 { chip->c.addr, 0,        1, write },
218                 { chip->c.addr, I2C_M_RD, 1, read  }
219         };
220         write[0] = subaddr;
221
222         if (2 != i2c_transfer(chip->c.adapter,msgs,2)) {
223                 v4l_warn(&chip->c, "%s: I/O error (read2)\n", chip->c.name);
224                 return -1;
225         }
226         v4l_dbg(1, debug, &chip->c, "%s: chip_read2: reg%d=0x%x\n",
227                 chip->c.name, subaddr,read[0]);
228         return read[0];
229 }
230
231 static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
232 {
233         int i;
234
235         if (0 == cmd->count)
236                 return 0;
237
238         /* update our shadow register set; print bytes if (debug > 0) */
239         v4l_dbg(1, debug, &chip->c, "%s: chip_cmd(%s): reg=%d, data:",
240                 chip->c.name, name,cmd->bytes[0]);
241         for (i = 1; i < cmd->count; i++) {
242                 if (debug)
243                         printk(" 0x%x",cmd->bytes[i]);
244                 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
245         }
246         if (debug)
247                 printk("\n");
248
249         /* send data to the chip */
250         if (cmd->count != i2c_master_send(&chip->c,cmd->bytes,cmd->count)) {
251                 v4l_warn(&chip->c, "%s: I/O error (%s)\n", chip->c.name, name);
252                 return -1;
253         }
254         return 0;
255 }
256
257 /* ---------------------------------------------------------------------- */
258 /* kernel thread for doing i2c stuff asyncronly
259  *   right now it is used only to check the audio mode (mono/stereo/whatever)
260  *   some time after switching to another TV channel, then turn on stereo
261  *   if available, ...
262  */
263
264 static void chip_thread_wake(unsigned long data)
265 {
266         struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
267         wake_up_interruptible(&chip->wq);
268 }
269
270 static int chip_thread(void *data)
271 {
272         DECLARE_WAITQUEUE(wait, current);
273         struct CHIPSTATE *chip = data;
274         struct CHIPDESC  *desc = chiplist + chip->type;
275
276         daemonize("%s", chip->c.name);
277         allow_signal(SIGTERM);
278         v4l_dbg(1, debug, &chip->c, "%s: thread started\n", chip->c.name);
279
280         for (;;) {
281                 add_wait_queue(&chip->wq, &wait);
282                 if (!chip->done) {
283                         set_current_state(TASK_INTERRUPTIBLE);
284                         schedule();
285                 }
286                 remove_wait_queue(&chip->wq, &wait);
287                 try_to_freeze();
288                 if (chip->done || signal_pending(current))
289                         break;
290                 v4l_dbg(1, debug, &chip->c, "%s: thread wakeup\n", chip->c.name);
291
292                 /* don't do anything for radio or if mode != auto */
293                 if (chip->radio || chip->mode != 0)
294                         continue;
295
296                 /* have a look what's going on */
297                 desc->checkmode(chip);
298
299                 /* schedule next check */
300                 mod_timer(&chip->wt, jiffies+2*HZ);
301         }
302
303         v4l_dbg(1, debug, &chip->c, "%s: thread exiting\n", chip->c.name);
304         complete_and_exit(&chip->texit, 0);
305         return 0;
306 }
307
308 static void generic_checkmode(struct CHIPSTATE *chip)
309 {
310         struct CHIPDESC  *desc = chiplist + chip->type;
311         int mode = desc->getmode(chip);
312
313         if (mode == chip->prevmode)
314         return;
315
316         v4l_dbg(1, debug, &chip->c, "%s: thread checkmode\n", chip->c.name);
317         chip->prevmode = mode;
318
319         if (mode & VIDEO_SOUND_STEREO)
320                 desc->setmode(chip,VIDEO_SOUND_STEREO);
321         else if (mode & VIDEO_SOUND_LANG1)
322                 desc->setmode(chip,VIDEO_SOUND_LANG1);
323         else if (mode & VIDEO_SOUND_LANG2)
324                 desc->setmode(chip,VIDEO_SOUND_LANG2);
325         else
326                 desc->setmode(chip,VIDEO_SOUND_MONO);
327 }
328
329 /* ---------------------------------------------------------------------- */
330 /* audio chip descriptions - defines+functions for tda9840                */
331
332 #define TDA9840_SW         0x00
333 #define TDA9840_LVADJ      0x02
334 #define TDA9840_STADJ      0x03
335 #define TDA9840_TEST       0x04
336
337 #define TDA9840_MONO       0x10
338 #define TDA9840_STEREO     0x2a
339 #define TDA9840_DUALA      0x12
340 #define TDA9840_DUALB      0x1e
341 #define TDA9840_DUALAB     0x1a
342 #define TDA9840_DUALBA     0x16
343 #define TDA9840_EXTERNAL   0x7a
344
345 #define TDA9840_DS_DUAL    0x20 /* Dual sound identified          */
346 #define TDA9840_ST_STEREO  0x40 /* Stereo sound identified        */
347 #define TDA9840_PONRES     0x80 /* Power-on reset detected if = 1 */
348
349 #define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
350 #define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
351
352 static int tda9840_getmode(struct CHIPSTATE *chip)
353 {
354         int val, mode;
355
356         val = chip_read(chip);
357         mode = VIDEO_SOUND_MONO;
358         if (val & TDA9840_DS_DUAL)
359                 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
360         if (val & TDA9840_ST_STEREO)
361                 mode |= VIDEO_SOUND_STEREO;
362
363         v4l_dbg(1, debug, &chip->c, "tda9840_getmode(): raw chip read: %d, return: %d\n",
364                 val, mode);
365         return mode;
366 }
367
368 static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
369 {
370         int update = 1;
371         int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
372
373         switch (mode) {
374         case VIDEO_SOUND_MONO:
375                 t |= TDA9840_MONO;
376                 break;
377         case VIDEO_SOUND_STEREO:
378                 t |= TDA9840_STEREO;
379                 break;
380         case VIDEO_SOUND_LANG1:
381                 t |= TDA9840_DUALA;
382                 break;
383         case VIDEO_SOUND_LANG2:
384                 t |= TDA9840_DUALB;
385                 break;
386         default:
387                 update = 0;
388         }
389
390         if (update)
391                 chip_write(chip, TDA9840_SW, t);
392 }
393
394 static int tda9840_checkit(struct CHIPSTATE *chip)
395 {
396         int rc;
397         rc = chip_read(chip);
398         /* lower 5 bits should be 0 */
399         return ((rc & 0x1f) == 0) ? 1 : 0;
400 }
401
402 /* ---------------------------------------------------------------------- */
403 /* audio chip descriptions - defines+functions for tda985x                */
404
405 /* subaddresses for TDA9855 */
406 #define TDA9855_VR      0x00 /* Volume, right */
407 #define TDA9855_VL      0x01 /* Volume, left */
408 #define TDA9855_BA      0x02 /* Bass */
409 #define TDA9855_TR      0x03 /* Treble */
410 #define TDA9855_SW      0x04 /* Subwoofer - not connected on DTV2000 */
411
412 /* subaddresses for TDA9850 */
413 #define TDA9850_C4      0x04 /* Control 1 for TDA9850 */
414
415 /* subaddesses for both chips */
416 #define TDA985x_C5      0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
417 #define TDA985x_C6      0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
418 #define TDA985x_C7      0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
419 #define TDA985x_A1      0x08 /* Alignment 1 for both chips */
420 #define TDA985x_A2      0x09 /* Alignment 2 for both chips */
421 #define TDA985x_A3      0x0a /* Alignment 3 for both chips */
422
423 /* Masks for bits in TDA9855 subaddresses */
424 /* 0x00 - VR in TDA9855 */
425 /* 0x01 - VL in TDA9855 */
426 /* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
427  * in 1dB steps - mute is 0x27 */
428
429
430 /* 0x02 - BA in TDA9855 */
431 /* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
432  * in .5dB steps - 0 is 0x0E */
433
434
435 /* 0x03 - TR in TDA9855 */
436 /* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
437  * in 3dB steps - 0 is 0x7 */
438
439 /* Masks for bits in both chips' subaddresses */
440 /* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
441 /* Unique to TDA9855: */
442 /* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
443  * in 3dB steps - mute is 0x0 */
444
445 /* Unique to TDA9850: */
446 /* lower 4 bits control stereo noise threshold, over which stereo turns off
447  * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
448
449
450 /* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
451 /* Unique to TDA9855: */
452 #define TDA9855_MUTE    1<<7 /* GMU, Mute at outputs */
453 #define TDA9855_AVL     1<<6 /* AVL, Automatic Volume Level */
454 #define TDA9855_LOUD    1<<5 /* Loudness, 1==off */
455 #define TDA9855_SUR     1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
456                              /* Bits 0 to 3 select various combinations
457                               * of line in and line out, only the
458                               * interesting ones are defined */
459 #define TDA9855_EXT     1<<2 /* Selects inputs LIR and LIL.  Pins 41 & 12 */
460 #define TDA9855_INT     0    /* Selects inputs LOR and LOL.  (internal) */
461
462 /* Unique to TDA9850:  */
463 /* lower 4 bits contol SAP noise threshold, over which SAP turns off
464  * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
465
466
467 /* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
468 /* Common to TDA9855 and TDA9850: */
469 #define TDA985x_SAP     3<<6 /* Selects SAP output, mute if not received */
470 #define TDA985x_STEREO  1<<6 /* Selects Stereo ouput, mono if not received */
471 #define TDA985x_MONO    0    /* Forces Mono output */
472 #define TDA985x_LMU     1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
473
474 /* Unique to TDA9855: */
475 #define TDA9855_TZCM    1<<5 /* If set, don't mute till zero crossing */
476 #define TDA9855_VZCM    1<<4 /* If set, don't change volume till zero crossing*/
477 #define TDA9855_LINEAR  0    /* Linear Stereo */
478 #define TDA9855_PSEUDO  1    /* Pseudo Stereo */
479 #define TDA9855_SPAT_30 2    /* Spatial Stereo, 30% anti-phase crosstalk */
480 #define TDA9855_SPAT_50 3    /* Spatial Stereo, 52% anti-phase crosstalk */
481 #define TDA9855_E_MONO  7    /* Forced mono - mono select elseware, so useless*/
482
483 /* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
484 /* Common to both TDA9855 and TDA9850: */
485 /* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
486  * in .5dB steps -  0dB is 0x7 */
487
488 /* 0x08, 0x09 - A1 and A2 (read/write) */
489 /* Common to both TDA9855 and TDA9850: */
490 /* lower 5 bites are wideband and spectral expander alignment
491  * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
492 #define TDA985x_STP     1<<5 /* Stereo Pilot/detect (read-only) */
493 #define TDA985x_SAPP    1<<6 /* SAP Pilot/detect (read-only) */
494 #define TDA985x_STS     1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
495
496 /* 0x0a - A3 */
497 /* Common to both TDA9855 and TDA9850: */
498 /* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
499  * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
500 #define TDA985x_ADJ     1<<7 /* Stereo adjust on/off (wideband and spectral */
501
502 static int tda9855_volume(int val) { return val/0x2e8+0x27; }
503 static int tda9855_bass(int val)   { return val/0xccc+0x06; }
504 static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
505
506 static int  tda985x_getmode(struct CHIPSTATE *chip)
507 {
508         int mode;
509
510         mode = ((TDA985x_STP | TDA985x_SAPP) &
511                 chip_read(chip)) >> 4;
512         /* Add mono mode regardless of SAP and stereo */
513         /* Allows forced mono */
514         return mode | VIDEO_SOUND_MONO;
515 }
516
517 static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
518 {
519         int update = 1;
520         int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
521
522         switch (mode) {
523         case VIDEO_SOUND_MONO:
524                 c6 |= TDA985x_MONO;
525                 break;
526         case VIDEO_SOUND_STEREO:
527                 c6 |= TDA985x_STEREO;
528                 break;
529         case VIDEO_SOUND_LANG1:
530                 c6 |= TDA985x_SAP;
531                 break;
532         default:
533                 update = 0;
534         }
535         if (update)
536                 chip_write(chip,TDA985x_C6,c6);
537 }
538
539
540 /* ---------------------------------------------------------------------- */
541 /* audio chip descriptions - defines+functions for tda9873h               */
542
543 /* Subaddresses for TDA9873H */
544
545 #define TDA9873_SW      0x00 /* Switching                    */
546 #define TDA9873_AD      0x01 /* Adjust                       */
547 #define TDA9873_PT      0x02 /* Port                         */
548
549 /* Subaddress 0x00: Switching Data
550  * B7..B0:
551  *
552  * B1, B0: Input source selection
553  *  0,  0  internal
554  *  1,  0  external stereo
555  *  0,  1  external mono
556  */
557 #define TDA9873_INP_MASK    3
558 #define TDA9873_INTERNAL    0
559 #define TDA9873_EXT_STEREO  2
560 #define TDA9873_EXT_MONO    1
561
562 /*    B3, B2: output signal select
563  * B4    : transmission mode
564  *  0, 0, 1   Mono
565  *  1, 0, 0   Stereo
566  *  1, 1, 1   Stereo (reversed channel)
567  *  0, 0, 0   Dual AB
568  *  0, 0, 1   Dual AA
569  *  0, 1, 0   Dual BB
570  *  0, 1, 1   Dual BA
571  */
572
573 #define TDA9873_TR_MASK     (7 << 2)
574 #define TDA9873_TR_MONO     4
575 #define TDA9873_TR_STEREO   1 << 4
576 #define TDA9873_TR_REVERSE  (1 << 3) & (1 << 2)
577 #define TDA9873_TR_DUALA    1 << 2
578 #define TDA9873_TR_DUALB    1 << 3
579
580 /* output level controls
581  * B5:  output level switch (0 = reduced gain, 1 = normal gain)
582  * B6:  mute                (1 = muted)
583  * B7:  auto-mute           (1 = auto-mute enabled)
584  */
585
586 #define TDA9873_GAIN_NORMAL 1 << 5
587 #define TDA9873_MUTE        1 << 6
588 #define TDA9873_AUTOMUTE    1 << 7
589
590 /* Subaddress 0x01:  Adjust/standard */
591
592 /* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
593  * Recommended value is +0 dB
594  */
595
596 #define TDA9873_STEREO_ADJ      0x06 /* 0dB gain */
597
598 /* Bits C6..C4 control FM stantard
599  * C6, C5, C4
600  *  0,  0,  0   B/G (PAL FM)
601  *  0,  0,  1   M
602  *  0,  1,  0   D/K(1)
603  *  0,  1,  1   D/K(2)
604  *  1,  0,  0   D/K(3)
605  *  1,  0,  1   I
606  */
607 #define TDA9873_BG              0
608 #define TDA9873_M       1
609 #define TDA9873_DK1     2
610 #define TDA9873_DK2     3
611 #define TDA9873_DK3     4
612 #define TDA9873_I       5
613
614 /* C7 controls identification response time (1=fast/0=normal)
615  */
616 #define TDA9873_IDR_NORM 0
617 #define TDA9873_IDR_FAST 1 << 7
618
619
620 /* Subaddress 0x02: Port data */
621
622 /* E1, E0   free programmable ports P1/P2
623     0,  0   both ports low
624     0,  1   P1 high
625     1,  0   P2 high
626     1,  1   both ports high
627 */
628
629 #define TDA9873_PORTS    3
630
631 /* E2: test port */
632 #define TDA9873_TST_PORT 1 << 2
633
634 /* E5..E3 control mono output channel (together with transmission mode bit B4)
635  *
636  * E5 E4 E3 B4     OUTM
637  *  0  0  0  0     mono
638  *  0  0  1  0     DUAL B
639  *  0  1  0  1     mono (from stereo decoder)
640  */
641 #define TDA9873_MOUT_MONO   0
642 #define TDA9873_MOUT_FMONO  0
643 #define TDA9873_MOUT_DUALA  0
644 #define TDA9873_MOUT_DUALB  1 << 3
645 #define TDA9873_MOUT_ST     1 << 4
646 #define TDA9873_MOUT_EXTM   (1 << 4 ) & (1 << 3)
647 #define TDA9873_MOUT_EXTL   1 << 5
648 #define TDA9873_MOUT_EXTR   (1 << 5 ) & (1 << 3)
649 #define TDA9873_MOUT_EXTLR  (1 << 5 ) & (1 << 4)
650 #define TDA9873_MOUT_MUTE   (1 << 5 ) & (1 << 4) & (1 << 3)
651
652 /* Status bits: (chip read) */
653 #define TDA9873_PONR        0 /* Power-on reset detected if = 1 */
654 #define TDA9873_STEREO      2 /* Stereo sound is identified     */
655 #define TDA9873_DUAL        4 /* Dual sound is identified       */
656
657 static int tda9873_getmode(struct CHIPSTATE *chip)
658 {
659         int val,mode;
660
661         val = chip_read(chip);
662         mode = VIDEO_SOUND_MONO;
663         if (val & TDA9873_STEREO)
664                 mode |= VIDEO_SOUND_STEREO;
665         if (val & TDA9873_DUAL)
666                 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
667         v4l_dbg(1, debug, &chip->c, "tda9873_getmode(): raw chip read: %d, return: %d\n",
668                 val, mode);
669         return mode;
670 }
671
672 static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
673 {
674         int sw_data  = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
675         /*      int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
676
677         if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
678                 v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): external input\n");
679                 return;
680         }
681
682         v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
683         v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): sw_data  = %d\n", sw_data);
684
685         switch (mode) {
686         case VIDEO_SOUND_MONO:
687                 sw_data |= TDA9873_TR_MONO;
688                 break;
689         case VIDEO_SOUND_STEREO:
690                 sw_data |= TDA9873_TR_STEREO;
691                 break;
692         case VIDEO_SOUND_LANG1:
693                 sw_data |= TDA9873_TR_DUALA;
694                 break;
695         case VIDEO_SOUND_LANG2:
696                 sw_data |= TDA9873_TR_DUALB;
697                 break;
698         default:
699                 chip->mode = 0;
700                 return;
701         }
702
703         chip_write(chip, TDA9873_SW, sw_data);
704         v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
705                 mode, sw_data);
706 }
707
708 static int tda9873_checkit(struct CHIPSTATE *chip)
709 {
710         int rc;
711
712         if (-1 == (rc = chip_read2(chip,254)))
713                 return 0;
714         return (rc & ~0x1f) == 0x80;
715 }
716
717
718 /* ---------------------------------------------------------------------- */
719 /* audio chip description - defines+functions for tda9874h and tda9874a   */
720 /* Dariusz Kowalewski <darekk@automex.pl>                                 */
721
722 /* Subaddresses for TDA9874H and TDA9874A (slave rx) */
723 #define TDA9874A_AGCGR          0x00    /* AGC gain */
724 #define TDA9874A_GCONR          0x01    /* general config */
725 #define TDA9874A_MSR            0x02    /* monitor select */
726 #define TDA9874A_C1FRA          0x03    /* carrier 1 freq. */
727 #define TDA9874A_C1FRB          0x04    /* carrier 1 freq. */
728 #define TDA9874A_C1FRC          0x05    /* carrier 1 freq. */
729 #define TDA9874A_C2FRA          0x06    /* carrier 2 freq. */
730 #define TDA9874A_C2FRB          0x07    /* carrier 2 freq. */
731 #define TDA9874A_C2FRC          0x08    /* carrier 2 freq. */
732 #define TDA9874A_DCR            0x09    /* demodulator config */
733 #define TDA9874A_FMER           0x0a    /* FM de-emphasis */
734 #define TDA9874A_FMMR           0x0b    /* FM dematrix */
735 #define TDA9874A_C1OLAR         0x0c    /* ch.1 output level adj. */
736 #define TDA9874A_C2OLAR         0x0d    /* ch.2 output level adj. */
737 #define TDA9874A_NCONR          0x0e    /* NICAM config */
738 #define TDA9874A_NOLAR          0x0f    /* NICAM output level adj. */
739 #define TDA9874A_NLELR          0x10    /* NICAM lower error limit */
740 #define TDA9874A_NUELR          0x11    /* NICAM upper error limit */
741 #define TDA9874A_AMCONR         0x12    /* audio mute control */
742 #define TDA9874A_SDACOSR        0x13    /* stereo DAC output select */
743 #define TDA9874A_AOSR           0x14    /* analog output select */
744 #define TDA9874A_DAICONR        0x15    /* digital audio interface config */
745 #define TDA9874A_I2SOSR         0x16    /* I2S-bus output select */
746 #define TDA9874A_I2SOLAR        0x17    /* I2S-bus output level adj. */
747 #define TDA9874A_MDACOSR        0x18    /* mono DAC output select (tda9874a) */
748 #define TDA9874A_ESP            0xFF    /* easy standard progr. (tda9874a) */
749
750 /* Subaddresses for TDA9874H and TDA9874A (slave tx) */
751 #define TDA9874A_DSR            0x00    /* device status */
752 #define TDA9874A_NSR            0x01    /* NICAM status */
753 #define TDA9874A_NECR           0x02    /* NICAM error count */
754 #define TDA9874A_DR1            0x03    /* add. data LSB */
755 #define TDA9874A_DR2            0x04    /* add. data MSB */
756 #define TDA9874A_LLRA           0x05    /* monitor level read-out LSB */
757 #define TDA9874A_LLRB           0x06    /* monitor level read-out MSB */
758 #define TDA9874A_SIFLR          0x07    /* SIF level */
759 #define TDA9874A_TR2            252     /* test reg. 2 */
760 #define TDA9874A_TR1            253     /* test reg. 1 */
761 #define TDA9874A_DIC            254     /* device id. code */
762 #define TDA9874A_SIC            255     /* software id. code */
763
764
765 static int tda9874a_mode = 1;           /* 0: A2, 1: NICAM */
766 static int tda9874a_GCONR = 0xc0;       /* default config. input pin: SIFSEL=0 */
767 static int tda9874a_NCONR = 0x01;       /* default NICAM config.: AMSEL=0,AMUTE=1 */
768 static int tda9874a_ESP = 0x07;         /* default standard: NICAM D/K */
769 static int tda9874a_dic = -1;           /* device id. code */
770
771 /* insmod options for tda9874a */
772 static unsigned int tda9874a_SIF   = UNSET;
773 static unsigned int tda9874a_AMSEL = UNSET;
774 static unsigned int tda9874a_STD   = UNSET;
775 module_param(tda9874a_SIF, int, 0444);
776 module_param(tda9874a_AMSEL, int, 0444);
777 module_param(tda9874a_STD, int, 0444);
778
779 /*
780  * initialization table for tda9874 decoder:
781  *  - carrier 1 freq. registers (3 bytes)
782  *  - carrier 2 freq. registers (3 bytes)
783  *  - demudulator config register
784  *  - FM de-emphasis register (slow identification mode)
785  * Note: frequency registers must be written in single i2c transfer.
786  */
787 static struct tda9874a_MODES {
788         char *name;
789         audiocmd cmd;
790 } tda9874a_modelist[9] = {
791   {     "A2, B/G",
792         { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
793   {     "A2, M (Korea)",
794         { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
795   {     "A2, D/K (1)",
796         { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
797   {     "A2, D/K (2)",
798         { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
799   {     "A2, D/K (3)",
800         { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
801   {     "NICAM, I",
802         { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
803   {     "NICAM, B/G",
804         { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
805   {     "NICAM, D/K", /* default */
806         { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
807   {     "NICAM, L",
808         { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
809 };
810
811 static int tda9874a_setup(struct CHIPSTATE *chip)
812 {
813         chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
814         chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
815         chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
816         if(tda9874a_dic == 0x11) {
817                 chip_write(chip, TDA9874A_FMMR, 0x80);
818         } else { /* dic == 0x07 */
819                 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
820                 chip_write(chip, TDA9874A_FMMR, 0x00);
821         }
822         chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
823         chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
824         chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
825         chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
826         /* Note: If signal quality is poor you may want to change NICAM */
827         /* error limit registers (NLELR and NUELR) to some greater values. */
828         /* Then the sound would remain stereo, but won't be so clear. */
829         chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
830         chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
831
832         if(tda9874a_dic == 0x11) {
833                 chip_write(chip, TDA9874A_AMCONR, 0xf9);
834                 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
835                 chip_write(chip, TDA9874A_AOSR, 0x80);
836                 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
837                 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
838         } else { /* dic == 0x07 */
839                 chip_write(chip, TDA9874A_AMCONR, 0xfb);
840                 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
841                 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
842         }
843         v4l_dbg(1, debug, &chip->c, "tda9874a_setup(): %s [0x%02X].\n",
844                 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
845         return 1;
846 }
847
848 static int tda9874a_getmode(struct CHIPSTATE *chip)
849 {
850         int dsr,nsr,mode;
851         int necr; /* just for debugging */
852
853         mode = VIDEO_SOUND_MONO;
854
855         if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
856                 return mode;
857         if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
858                 return mode;
859         if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
860                 return mode;
861
862         /* need to store dsr/nsr somewhere */
863         chip->shadow.bytes[MAXREGS-2] = dsr;
864         chip->shadow.bytes[MAXREGS-1] = nsr;
865
866         if(tda9874a_mode) {
867                 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
868                  * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
869                  * that sound has (temporarily) switched from NICAM to
870                  * mono FM (or AM) on 1st sound carrier due to high NICAM bit
871                  * error count. So in fact there is no stereo in this case :-(
872                  * But changing the mode to VIDEO_SOUND_MONO would switch
873                  * external 4052 multiplexer in audio_hook().
874                  */
875                 if(nsr & 0x02) /* NSR.S/MB=1 */
876                         mode |= VIDEO_SOUND_STEREO;
877                 if(nsr & 0x01) /* NSR.D/SB=1 */
878                         mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
879         } else {
880                 if(dsr & 0x02) /* DSR.IDSTE=1 */
881                         mode |= VIDEO_SOUND_STEREO;
882                 if(dsr & 0x04) /* DSR.IDDUA=1 */
883                         mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
884         }
885
886         v4l_dbg(1, debug, &chip->c, "tda9874a_getmode(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n",
887                  dsr, nsr, necr, mode);
888         return mode;
889 }
890
891 static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
892 {
893         /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
894         /* If auto-muting is disabled, we can hear a signal of degrading quality. */
895         if(tda9874a_mode) {
896                 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
897                         tda9874a_NCONR &= 0xfe; /* enable */
898                 else
899                         tda9874a_NCONR |= 0x01; /* disable */
900                 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
901         }
902
903         /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
904          * and has auto-select function for audio output (AOSR register).
905          * Old TDA9874H doesn't support these features.
906          * TDA9874A also has additional mono output pin (OUTM), which
907          * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
908          */
909         if(tda9874a_dic == 0x11) {
910                 int aosr = 0x80;
911                 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
912
913                 switch(mode) {
914                 case VIDEO_SOUND_MONO:
915                 case VIDEO_SOUND_STEREO:
916                         break;
917                 case VIDEO_SOUND_LANG1:
918                         aosr = 0x80; /* auto-select, dual A/A */
919                         mdacosr = (tda9874a_mode) ? 0x82:0x80;
920                         break;
921                 case VIDEO_SOUND_LANG2:
922                         aosr = 0xa0; /* auto-select, dual B/B */
923                         mdacosr = (tda9874a_mode) ? 0x83:0x81;
924                         break;
925                 default:
926                         chip->mode = 0;
927                         return;
928                 }
929                 chip_write(chip, TDA9874A_AOSR, aosr);
930                 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
931
932                 v4l_dbg(1, debug, &chip->c, "tda9874a_setmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n",
933                         mode, aosr, mdacosr);
934
935         } else { /* dic == 0x07 */
936                 int fmmr,aosr;
937
938                 switch(mode) {
939                 case VIDEO_SOUND_MONO:
940                         fmmr = 0x00; /* mono */
941                         aosr = 0x10; /* A/A */
942                         break;
943                 case VIDEO_SOUND_STEREO:
944                         if(tda9874a_mode) {
945                                 fmmr = 0x00;
946                                 aosr = 0x00; /* handled by NICAM auto-mute */
947                         } else {
948                                 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
949                                 aosr = 0x00;
950                         }
951                         break;
952                 case VIDEO_SOUND_LANG1:
953                         fmmr = 0x02; /* dual */
954                         aosr = 0x10; /* dual A/A */
955                         break;
956                 case VIDEO_SOUND_LANG2:
957                         fmmr = 0x02; /* dual */
958                         aosr = 0x20; /* dual B/B */
959                         break;
960                 default:
961                         chip->mode = 0;
962                         return;
963                 }
964                 chip_write(chip, TDA9874A_FMMR, fmmr);
965                 chip_write(chip, TDA9874A_AOSR, aosr);
966
967                 v4l_dbg(1, debug, &chip->c, "tda9874a_setmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n",
968                         mode, fmmr, aosr);
969         }
970 }
971
972 static int tda9874a_checkit(struct CHIPSTATE *chip)
973 {
974         int dic,sic;    /* device id. and software id. codes */
975
976         if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
977                 return 0;
978         if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
979                 return 0;
980
981         v4l_dbg(1, debug, &chip->c, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
982
983         if((dic == 0x11)||(dic == 0x07)) {
984                 v4l_info(&chip->c, "found tda9874%s.\n", (dic == 0x11) ? "a":"h");
985                 tda9874a_dic = dic;     /* remember device id. */
986                 return 1;
987         }
988         return 0;       /* not found */
989 }
990
991 static int tda9874a_initialize(struct CHIPSTATE *chip)
992 {
993         if (tda9874a_SIF > 2)
994                 tda9874a_SIF = 1;
995         if (tda9874a_STD > 8)
996                 tda9874a_STD = 0;
997         if(tda9874a_AMSEL > 1)
998                 tda9874a_AMSEL = 0;
999
1000         if(tda9874a_SIF == 1)
1001                 tda9874a_GCONR = 0xc0;  /* sound IF input 1 */
1002         else
1003                 tda9874a_GCONR = 0xc1;  /* sound IF input 2 */
1004
1005         tda9874a_ESP = tda9874a_STD;
1006         tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
1007
1008         if(tda9874a_AMSEL == 0)
1009                 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
1010         else
1011                 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
1012
1013         tda9874a_setup(chip);
1014         return 0;
1015 }
1016
1017
1018 /* ---------------------------------------------------------------------- */
1019 /* audio chip descriptions - defines+functions for tea6420                */
1020
1021 #define TEA6300_VL         0x00  /* volume left */
1022 #define TEA6300_VR         0x01  /* volume right */
1023 #define TEA6300_BA         0x02  /* bass */
1024 #define TEA6300_TR         0x03  /* treble */
1025 #define TEA6300_FA         0x04  /* fader control */
1026 #define TEA6300_S          0x05  /* switch register */
1027                                  /* values for those registers: */
1028 #define TEA6300_S_SA       0x01  /* stereo A input */
1029 #define TEA6300_S_SB       0x02  /* stereo B */
1030 #define TEA6300_S_SC       0x04  /* stereo C */
1031 #define TEA6300_S_GMU      0x80  /* general mute */
1032
1033 #define TEA6320_V          0x00  /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1034 #define TEA6320_FFR        0x01  /* fader front right (0-5) */
1035 #define TEA6320_FFL        0x02  /* fader front left (0-5) */
1036 #define TEA6320_FRR        0x03  /* fader rear right (0-5) */
1037 #define TEA6320_FRL        0x04  /* fader rear left (0-5) */
1038 #define TEA6320_BA         0x05  /* bass (0-4) */
1039 #define TEA6320_TR         0x06  /* treble (0-4) */
1040 #define TEA6320_S          0x07  /* switch register */
1041                                  /* values for those registers: */
1042 #define TEA6320_S_SA       0x07  /* stereo A input */
1043 #define TEA6320_S_SB       0x06  /* stereo B */
1044 #define TEA6320_S_SC       0x05  /* stereo C */
1045 #define TEA6320_S_SD       0x04  /* stereo D */
1046 #define TEA6320_S_GMU      0x80  /* general mute */
1047
1048 #define TEA6420_S_SA       0x00  /* stereo A input */
1049 #define TEA6420_S_SB       0x01  /* stereo B */
1050 #define TEA6420_S_SC       0x02  /* stereo C */
1051 #define TEA6420_S_SD       0x03  /* stereo D */
1052 #define TEA6420_S_SE       0x04  /* stereo E */
1053 #define TEA6420_S_GMU      0x05  /* general mute */
1054
1055 static int tea6300_shift10(int val) { return val >> 10; }
1056 static int tea6300_shift12(int val) { return val >> 12; }
1057
1058 /* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1059 /* 0x0c mirror those immediately higher) */
1060 static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1061 static int tea6320_shift11(int val) { return val >> 11; }
1062 static int tea6320_initialize(struct CHIPSTATE * chip)
1063 {
1064         chip_write(chip, TEA6320_FFR, 0x3f);
1065         chip_write(chip, TEA6320_FFL, 0x3f);
1066         chip_write(chip, TEA6320_FRR, 0x3f);
1067         chip_write(chip, TEA6320_FRL, 0x3f);
1068
1069         return 0;
1070 }
1071
1072
1073 /* ---------------------------------------------------------------------- */
1074 /* audio chip descriptions - defines+functions for tda8425                */
1075
1076 #define TDA8425_VL         0x00  /* volume left */
1077 #define TDA8425_VR         0x01  /* volume right */
1078 #define TDA8425_BA         0x02  /* bass */
1079 #define TDA8425_TR         0x03  /* treble */
1080 #define TDA8425_S1         0x08  /* switch functions */
1081                                  /* values for those registers: */
1082 #define TDA8425_S1_OFF     0xEE  /* audio off (mute on) */
1083 #define TDA8425_S1_CH1     0xCE  /* audio channel 1 (mute off) - "linear stereo" mode */
1084 #define TDA8425_S1_CH2     0xCF  /* audio channel 2 (mute off) - "linear stereo" mode */
1085 #define TDA8425_S1_MU      0x20  /* mute bit */
1086 #define TDA8425_S1_STEREO  0x18  /* stereo bits */
1087 #define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1088 #define TDA8425_S1_STEREO_LINEAR  0x08 /* linear stereo */
1089 #define TDA8425_S1_STEREO_PSEUDO  0x10 /* pseudo stereo */
1090 #define TDA8425_S1_STEREO_MONO    0x00 /* forced mono */
1091 #define TDA8425_S1_ML      0x06        /* language selector */
1092 #define TDA8425_S1_ML_SOUND_A 0x02     /* sound a */
1093 #define TDA8425_S1_ML_SOUND_B 0x04     /* sound b */
1094 #define TDA8425_S1_ML_STEREO  0x06     /* stereo */
1095 #define TDA8425_S1_IS      0x01        /* channel selector */
1096
1097
1098 static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1099 static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1100
1101 static int tda8425_initialize(struct CHIPSTATE *chip)
1102 {
1103         struct CHIPDESC *desc = chiplist + chip->type;
1104         int inputmap[4] = { /* tuner    */ TDA8425_S1_CH2, /* radio  */ TDA8425_S1_CH1,
1105                             /* extern   */ TDA8425_S1_CH1, /* intern */ TDA8425_S1_OFF};
1106
1107         if (chip->c.adapter->id == I2C_HW_B_RIVA) {
1108                 memcpy (desc->inputmap, inputmap, sizeof (inputmap));
1109         }
1110         return 0;
1111 }
1112
1113 static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1114 {
1115         int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1116
1117         if (mode & VIDEO_SOUND_LANG1) {
1118                 s1 |= TDA8425_S1_ML_SOUND_A;
1119                 s1 |= TDA8425_S1_STEREO_PSEUDO;
1120
1121         } else if (mode & VIDEO_SOUND_LANG2) {
1122                 s1 |= TDA8425_S1_ML_SOUND_B;
1123                 s1 |= TDA8425_S1_STEREO_PSEUDO;
1124
1125         } else {
1126                 s1 |= TDA8425_S1_ML_STEREO;
1127
1128                 if (mode & VIDEO_SOUND_MONO)
1129                         s1 |= TDA8425_S1_STEREO_MONO;
1130                 if (mode & VIDEO_SOUND_STEREO)
1131                         s1 |= TDA8425_S1_STEREO_SPATIAL;
1132         }
1133         chip_write(chip,TDA8425_S1,s1);
1134 }
1135
1136
1137 /* ---------------------------------------------------------------------- */
1138 /* audio chip descriptions - defines+functions for pic16c54 (PV951)       */
1139
1140 /* the registers of 16C54, I2C sub address. */
1141 #define PIC16C54_REG_KEY_CODE     0x01         /* Not use. */
1142 #define PIC16C54_REG_MISC         0x02
1143
1144 /* bit definition of the RESET register, I2C data. */
1145 #define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
1146                                             /*        code of remote controller */
1147 #define PIC16C54_MISC_MTS_MAIN         0x02 /* bit 1 */
1148 #define PIC16C54_MISC_MTS_SAP          0x04 /* bit 2 */
1149 #define PIC16C54_MISC_MTS_BOTH         0x08 /* bit 3 */
1150 #define PIC16C54_MISC_SND_MUTE         0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1151 #define PIC16C54_MISC_SND_NOTMUTE      0x20 /* bit 5 */
1152 #define PIC16C54_MISC_SWITCH_TUNER     0x40 /* bit 6    , Switch to Line-in */
1153 #define PIC16C54_MISC_SWITCH_LINE      0x80 /* bit 7    , Switch to Tuner */
1154
1155 /* ---------------------------------------------------------------------- */
1156 /* audio chip descriptions - defines+functions for TA8874Z                */
1157
1158 /* write 1st byte */
1159 #define TA8874Z_LED_STE 0x80
1160 #define TA8874Z_LED_BIL 0x40
1161 #define TA8874Z_LED_EXT 0x20
1162 #define TA8874Z_MONO_SET        0x10
1163 #define TA8874Z_MUTE    0x08
1164 #define TA8874Z_F_MONO  0x04
1165 #define TA8874Z_MODE_SUB        0x02
1166 #define TA8874Z_MODE_MAIN       0x01
1167
1168 /* write 2nd byte */
1169 /*#define TA8874Z_TI    0x80  */ /* test mode */
1170 #define TA8874Z_SEPARATION      0x3f
1171 #define TA8874Z_SEPARATION_DEFAULT      0x10
1172
1173 /* read */
1174 #define TA8874Z_B1      0x80
1175 #define TA8874Z_B0      0x40
1176 #define TA8874Z_CHAG_FLAG       0x20
1177
1178 /*
1179  *        B1 B0
1180  * mono    L  H
1181  * stereo  L  L
1182  * BIL     H  L
1183  */
1184 static int ta8874z_getmode(struct CHIPSTATE *chip)
1185 {
1186         int val, mode;
1187
1188         val = chip_read(chip);
1189         mode = VIDEO_SOUND_MONO;
1190         if (val & TA8874Z_B1){
1191                 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
1192         }else if (!(val & TA8874Z_B0)){
1193                 mode |= VIDEO_SOUND_STEREO;
1194         }
1195         /* v4l_dbg(1, debug, &chip->c, "ta8874z_getmode(): raw chip read: 0x%02x, return: 0x%02x\n", val, mode); */
1196         return mode;
1197 }
1198
1199 static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1200 static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1201 static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1202 static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1203
1204 static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1205 {
1206         int update = 1;
1207         audiocmd *t = NULL;
1208         v4l_dbg(1, debug, &chip->c, "ta8874z_setmode(): mode: 0x%02x\n", mode);
1209
1210         switch(mode){
1211         case VIDEO_SOUND_MONO:
1212                 t = &ta8874z_mono;
1213                 break;
1214         case VIDEO_SOUND_STEREO:
1215                 t = &ta8874z_stereo;
1216                 break;
1217         case VIDEO_SOUND_LANG1:
1218                 t = &ta8874z_main;
1219                 break;
1220         case VIDEO_SOUND_LANG2:
1221                 t = &ta8874z_sub;
1222                 break;
1223         default:
1224                 update = 0;
1225         }
1226
1227         if(update)
1228                 chip_cmd(chip, "TA8874Z", t);
1229 }
1230
1231 static int ta8874z_checkit(struct CHIPSTATE *chip)
1232 {
1233         int rc;
1234         rc = chip_read(chip);
1235         return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1236 }
1237
1238 /* ---------------------------------------------------------------------- */
1239 /* audio chip descriptions - struct CHIPDESC                              */
1240
1241 /* insmod options to enable/disable individual audio chips */
1242 static int tda8425  = 1;
1243 static int tda9840  = 1;
1244 static int tda9850  = 1;
1245 static int tda9855  = 1;
1246 static int tda9873  = 1;
1247 static int tda9874a = 1;
1248 static int tea6300  = 0;  /* address clash with msp34xx */
1249 static int tea6320  = 0;  /* address clash with msp34xx */
1250 static int tea6420  = 1;
1251 static int pic16c54 = 1;
1252 static int ta8874z  = 0;  /* address clash with tda9840 */
1253
1254 module_param(tda8425, int, 0444);
1255 module_param(tda9840, int, 0444);
1256 module_param(tda9850, int, 0444);
1257 module_param(tda9855, int, 0444);
1258 module_param(tda9873, int, 0444);
1259 module_param(tda9874a, int, 0444);
1260 module_param(tea6300, int, 0444);
1261 module_param(tea6320, int, 0444);
1262 module_param(tea6420, int, 0444);
1263 module_param(pic16c54, int, 0444);
1264 module_param(ta8874z, int, 0444);
1265
1266 static struct CHIPDESC chiplist[] = {
1267         {
1268                 .name       = "tda9840",
1269                 .id         = I2C_DRIVERID_TDA9840,
1270                 .insmodopt  = &tda9840,
1271                 .addr_lo    = I2C_ADDR_TDA9840 >> 1,
1272                 .addr_hi    = I2C_ADDR_TDA9840 >> 1,
1273                 .registers  = 5,
1274
1275                 .checkit    = tda9840_checkit,
1276                 .getmode    = tda9840_getmode,
1277                 .setmode    = tda9840_setmode,
1278                 .checkmode  = generic_checkmode,
1279
1280                 .init       = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
1281                                 /* ,TDA9840_SW, TDA9840_MONO */} }
1282         },
1283         {
1284                 .name       = "tda9873h",
1285                 .id         = I2C_DRIVERID_TDA9873,
1286                 .checkit    = tda9873_checkit,
1287                 .insmodopt  = &tda9873,
1288                 .addr_lo    = I2C_ADDR_TDA985x_L >> 1,
1289                 .addr_hi    = I2C_ADDR_TDA985x_H >> 1,
1290                 .registers  = 3,
1291                 .flags      = CHIP_HAS_INPUTSEL,
1292
1293                 .getmode    = tda9873_getmode,
1294                 .setmode    = tda9873_setmode,
1295                 .checkmode  = generic_checkmode,
1296
1297                 .init       = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1298                 .inputreg   = TDA9873_SW,
1299                 .inputmute  = TDA9873_MUTE | TDA9873_AUTOMUTE,
1300                 .inputmap   = {0xa0, 0xa2, 0xa0, 0xa0},
1301                 .inputmask  = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1302
1303         },
1304         {
1305                 .name       = "tda9874h/a",
1306                 .id         = I2C_DRIVERID_TDA9874,
1307                 .checkit    = tda9874a_checkit,
1308                 .initialize = tda9874a_initialize,
1309                 .insmodopt  = &tda9874a,
1310                 .addr_lo    = I2C_ADDR_TDA9874 >> 1,
1311                 .addr_hi    = I2C_ADDR_TDA9874 >> 1,
1312
1313                 .getmode    = tda9874a_getmode,
1314                 .setmode    = tda9874a_setmode,
1315                 .checkmode  = generic_checkmode,
1316         },
1317         {
1318                 .name       = "tda9850",
1319                 .id         = I2C_DRIVERID_TDA9850,
1320                 .insmodopt  = &tda9850,
1321                 .addr_lo    = I2C_ADDR_TDA985x_L >> 1,
1322                 .addr_hi    = I2C_ADDR_TDA985x_H >> 1,
1323                 .registers  = 11,
1324
1325                 .getmode    = tda985x_getmode,
1326                 .setmode    = tda985x_setmode,
1327
1328                 .init       = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1329         },
1330         {
1331                 .name       = "tda9855",
1332                 .id         = I2C_DRIVERID_TDA9855,
1333                 .insmodopt  = &tda9855,
1334                 .addr_lo    = I2C_ADDR_TDA985x_L >> 1,
1335                 .addr_hi    = I2C_ADDR_TDA985x_H >> 1,
1336                 .registers  = 11,
1337                 .flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1338
1339                 .leftreg    = TDA9855_VL,
1340                 .rightreg   = TDA9855_VR,
1341                 .bassreg    = TDA9855_BA,
1342                 .treblereg  = TDA9855_TR,
1343                 .volfunc    = tda9855_volume,
1344                 .bassfunc   = tda9855_bass,
1345                 .treblefunc = tda9855_treble,
1346
1347                 .getmode    = tda985x_getmode,
1348                 .setmode    = tda985x_setmode,
1349
1350                 .init       = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1351                                     TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1352                                     TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1353                                     0x07, 0x10, 0x10, 0x03 }}
1354         },
1355         {
1356                 .name       = "tea6300",
1357                 .id         = I2C_DRIVERID_TEA6300,
1358                 .insmodopt  = &tea6300,
1359                 .addr_lo    = I2C_ADDR_TEA6300 >> 1,
1360                 .addr_hi    = I2C_ADDR_TEA6300 >> 1,
1361                 .registers  = 6,
1362                 .flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1363
1364                 .leftreg    = TEA6300_VR,
1365                 .rightreg   = TEA6300_VL,
1366                 .bassreg    = TEA6300_BA,
1367                 .treblereg  = TEA6300_TR,
1368                 .volfunc    = tea6300_shift10,
1369                 .bassfunc   = tea6300_shift12,
1370                 .treblefunc = tea6300_shift12,
1371
1372                 .inputreg   = TEA6300_S,
1373                 .inputmap   = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1374                 .inputmute  = TEA6300_S_GMU,
1375         },
1376         {
1377                 .name       = "tea6320",
1378                 .id         = I2C_DRIVERID_TEA6300,
1379                 .initialize = tea6320_initialize,
1380                 .insmodopt  = &tea6320,
1381                 .addr_lo    = I2C_ADDR_TEA6300 >> 1,
1382                 .addr_hi    = I2C_ADDR_TEA6300 >> 1,
1383                 .registers  = 8,
1384                 .flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1385
1386                 .leftreg    = TEA6320_V,
1387                 .rightreg   = TEA6320_V,
1388                 .bassreg    = TEA6320_BA,
1389                 .treblereg  = TEA6320_TR,
1390                 .volfunc    = tea6320_volume,
1391                 .bassfunc   = tea6320_shift11,
1392                 .treblefunc = tea6320_shift11,
1393
1394                 .inputreg   = TEA6320_S,
1395                 .inputmap   = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1396                 .inputmute  = TEA6300_S_GMU,
1397         },
1398         {
1399                 .name       = "tea6420",
1400                 .id         = I2C_DRIVERID_TEA6420,
1401                 .insmodopt  = &tea6420,
1402                 .addr_lo    = I2C_ADDR_TEA6420 >> 1,
1403                 .addr_hi    = I2C_ADDR_TEA6420 >> 1,
1404                 .registers  = 1,
1405                 .flags      = CHIP_HAS_INPUTSEL,
1406
1407                 .inputreg   = -1,
1408                 .inputmap   = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1409                 .inputmute  = TEA6300_S_GMU,
1410         },
1411         {
1412                 .name       = "tda8425",
1413                 .id         = I2C_DRIVERID_TDA8425,
1414                 .insmodopt  = &tda8425,
1415                 .addr_lo    = I2C_ADDR_TDA8425 >> 1,
1416                 .addr_hi    = I2C_ADDR_TDA8425 >> 1,
1417                 .registers  = 9,
1418                 .flags      = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1419
1420                 .leftreg    = TDA8425_VL,
1421                 .rightreg   = TDA8425_VR,
1422                 .bassreg    = TDA8425_BA,
1423                 .treblereg  = TDA8425_TR,
1424                 .volfunc    = tda8425_shift10,
1425                 .bassfunc   = tda8425_shift12,
1426                 .treblefunc = tda8425_shift12,
1427
1428                 .inputreg   = TDA8425_S1,
1429                 .inputmap   = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1430                 .inputmute  = TDA8425_S1_OFF,
1431
1432                 .setmode    = tda8425_setmode,
1433                 .initialize = tda8425_initialize,
1434         },
1435         {
1436                 .name       = "pic16c54 (PV951)",
1437                 .id         = I2C_DRIVERID_PIC16C54_PV9,
1438                 .insmodopt  = &pic16c54,
1439                 .addr_lo    = I2C_ADDR_PIC16C54 >> 1,
1440                 .addr_hi    = I2C_ADDR_PIC16C54>> 1,
1441                 .registers  = 2,
1442                 .flags      = CHIP_HAS_INPUTSEL,
1443
1444                 .inputreg   = PIC16C54_REG_MISC,
1445                 .inputmap   = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1446                              PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1447                              PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1448                              PIC16C54_MISC_SND_MUTE},
1449                 .inputmute  = PIC16C54_MISC_SND_MUTE,
1450         },
1451         {
1452                 .name       = "ta8874z",
1453                 .id         = -1,
1454                 /*.id         = I2C_DRIVERID_TA8874Z, */
1455                 .checkit    = ta8874z_checkit,
1456                 .insmodopt  = &ta8874z,
1457                 .addr_lo    = I2C_ADDR_TDA9840 >> 1,
1458                 .addr_hi    = I2C_ADDR_TDA9840 >> 1,
1459                 .registers  = 2,
1460
1461                 .getmode    = ta8874z_getmode,
1462                 .setmode    = ta8874z_setmode,
1463                 .checkmode  = generic_checkmode,
1464
1465                 .init       = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
1466         },
1467         { .name = NULL } /* EOF */
1468 };
1469
1470
1471 /* ---------------------------------------------------------------------- */
1472 /* i2c registration                                                       */
1473
1474 static int chip_attach(struct i2c_adapter *adap, int addr, int kind)
1475 {
1476         struct CHIPSTATE *chip;
1477         struct CHIPDESC  *desc;
1478
1479         chip = kzalloc(sizeof(*chip),GFP_KERNEL);
1480         if (!chip)
1481                 return -ENOMEM;
1482         memcpy(&chip->c,&client_template,sizeof(struct i2c_client));
1483         chip->c.adapter = adap;
1484         chip->c.addr = addr;
1485         i2c_set_clientdata(&chip->c, chip);
1486
1487         /* find description for the chip */
1488         v4l_dbg(1, debug, &chip->c, "chip found @ 0x%x\n", addr<<1);
1489         for (desc = chiplist; desc->name != NULL; desc++) {
1490                 if (0 == *(desc->insmodopt))
1491                         continue;
1492                 if (addr < desc->addr_lo ||
1493                     addr > desc->addr_hi)
1494                         continue;
1495                 if (desc->checkit && !desc->checkit(chip))
1496                         continue;
1497                 break;
1498         }
1499         if (desc->name == NULL) {
1500                 v4l_dbg(1, debug, &chip->c, "no matching chip description found\n");
1501                 return -EIO;
1502         }
1503         v4l_info(&chip->c, "%s found @ 0x%x (%s)\n", desc->name, addr<<1, adap->name);
1504         if (desc->flags) {
1505                 v4l_dbg(1, debug, &chip->c, "matches:%s%s%s.\n",
1506                         (desc->flags & CHIP_HAS_VOLUME)     ? " volume"      : "",
1507                         (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1508                         (desc->flags & CHIP_HAS_INPUTSEL)   ? " audiomux"    : "");
1509         }
1510
1511         /* fill required data structures */
1512         strcpy(chip->c.name, desc->name);
1513         chip->type = desc-chiplist;
1514         chip->shadow.count = desc->registers+1;
1515         chip->prevmode = -1;
1516         chip->audmode = V4L2_TUNER_MODE_LANG1;
1517         /* register */
1518         i2c_attach_client(&chip->c);
1519
1520         /* initialization  */
1521         if (desc->initialize != NULL)
1522                 desc->initialize(chip);
1523         else
1524                 chip_cmd(chip,"init",&desc->init);
1525
1526         if (desc->flags & CHIP_HAS_VOLUME) {
1527                 chip->left   = desc->leftinit   ? desc->leftinit   : 65535;
1528                 chip->right  = desc->rightinit  ? desc->rightinit  : 65535;
1529                 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1530                 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1531         }
1532         if (desc->flags & CHIP_HAS_BASSTREBLE) {
1533                 chip->treble = desc->trebleinit ? desc->trebleinit : 32768;
1534                 chip->bass   = desc->bassinit   ? desc->bassinit   : 32768;
1535                 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1536                 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1537         }
1538
1539         chip->tpid = -1;
1540         if (desc->checkmode) {
1541                 /* start async thread */
1542                 init_timer(&chip->wt);
1543                 chip->wt.function = chip_thread_wake;
1544                 chip->wt.data     = (unsigned long)chip;
1545                 init_waitqueue_head(&chip->wq);
1546                 init_completion(&chip->texit);
1547                 chip->tpid = kernel_thread(chip_thread,(void *)chip,0);
1548                 if (chip->tpid < 0)
1549                         v4l_warn(&chip->c, "%s: kernel_thread() failed\n",
1550                                chip->c.name);
1551                 wake_up_interruptible(&chip->wq);
1552         }
1553         return 0;
1554 }
1555
1556 static int chip_probe(struct i2c_adapter *adap)
1557 {
1558         /* don't attach on saa7146 based cards,
1559            because dedicated drivers are used */
1560         if ((adap->id == I2C_HW_SAA7146))
1561                 return 0;
1562         if (adap->class & I2C_CLASS_TV_ANALOG)
1563                 return i2c_probe(adap, &addr_data, chip_attach);
1564         return 0;
1565 }
1566
1567 static int chip_detach(struct i2c_client *client)
1568 {
1569         struct CHIPSTATE *chip = i2c_get_clientdata(client);
1570
1571         del_timer_sync(&chip->wt);
1572         if (chip->tpid >= 0) {
1573                 /* shutdown async thread */
1574                 chip->done = 1;
1575                 wake_up_interruptible(&chip->wq);
1576                 wait_for_completion(&chip->texit);
1577         }
1578
1579         i2c_detach_client(&chip->c);
1580         kfree(chip);
1581         return 0;
1582 }
1583
1584 static int tvaudio_set_ctrl(struct CHIPSTATE *chip, struct v4l2_control *ctrl)
1585 {
1586         struct CHIPDESC *desc = chiplist + chip->type;
1587
1588         switch (ctrl->id) {
1589         case V4L2_CID_AUDIO_MUTE:
1590                 if (ctrl->value < 0 || ctrl->value >= 2)
1591                         return -ERANGE;
1592                 chip->muted = ctrl->value;
1593                 if (chip->muted)
1594                         chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1595                 else
1596                         chip_write_masked(chip,desc->inputreg,
1597                                         desc->inputmap[chip->input],desc->inputmask);
1598                 break;
1599         default:
1600                 return -EINVAL;
1601         }
1602         return 0;
1603 }
1604
1605
1606 /* ---------------------------------------------------------------------- */
1607 /* video4linux interface                                                  */
1608
1609 static int chip_command(struct i2c_client *client,
1610                         unsigned int cmd, void *arg)
1611 {
1612         struct CHIPSTATE *chip = i2c_get_clientdata(client);
1613         struct CHIPDESC  *desc = chiplist + chip->type;
1614
1615         v4l_dbg(1, debug, &chip->c, "%s: chip_command 0x%x\n", chip->c.name, cmd);
1616
1617         switch (cmd) {
1618         case AUDC_SET_RADIO:
1619                 chip->radio = 1;
1620                 chip->watch_stereo = 0;
1621                 /* del_timer(&chip->wt); */
1622                 break;
1623
1624         /* --- v4l ioctls --- */
1625         /* take care: bttv does userspace copying, we'll get a
1626         kernel pointer here... */
1627         case VIDIOCGAUDIO:
1628         {
1629                 struct video_audio *va = arg;
1630
1631                 if (desc->flags & CHIP_HAS_VOLUME) {
1632                         va->flags  |= VIDEO_AUDIO_VOLUME;
1633                         va->volume  = max(chip->left,chip->right);
1634                         if (va->volume)
1635                                 va->balance = (32768*min(chip->left,chip->right))/
1636                                         va->volume;
1637                         else
1638                                 va->balance = 32768;
1639                 }
1640                 if (desc->flags & CHIP_HAS_BASSTREBLE) {
1641                         va->flags |= VIDEO_AUDIO_BASS | VIDEO_AUDIO_TREBLE;
1642                         va->bass   = chip->bass;
1643                         va->treble = chip->treble;
1644                 }
1645                 if (!chip->radio) {
1646                         if (desc->getmode)
1647                                 va->mode = desc->getmode(chip);
1648                         else
1649                                 va->mode = VIDEO_SOUND_MONO;
1650                 }
1651                 break;
1652         }
1653
1654         case VIDIOCSAUDIO:
1655         {
1656                 struct video_audio *va = arg;
1657
1658                 if (desc->flags & CHIP_HAS_VOLUME) {
1659                         chip->left = (min(65536 - va->balance,32768) *
1660                                 va->volume) / 32768;
1661                         chip->right = (min(va->balance,(__u16)32768) *
1662                                 va->volume) / 32768;
1663                         chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1664                         chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1665                 }
1666                 if (desc->flags & CHIP_HAS_BASSTREBLE) {
1667                         chip->bass = va->bass;
1668                         chip->treble = va->treble;
1669                         chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1670                         chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1671                 }
1672                 if (desc->setmode && va->mode) {
1673                         chip->watch_stereo = 0;
1674                         /* del_timer(&chip->wt); */
1675                         chip->mode = va->mode;
1676                         desc->setmode(chip,va->mode);
1677                 }
1678                 break;
1679         }
1680
1681         case VIDIOC_S_CTRL:
1682                 return tvaudio_set_ctrl(chip, arg);
1683
1684         case VIDIOC_INT_G_AUDIO_ROUTING:
1685         {
1686                 struct v4l2_routing *rt = arg;
1687
1688                 rt->input = chip->input;
1689                 rt->output = 0;
1690                 break;
1691         }
1692
1693         case VIDIOC_INT_S_AUDIO_ROUTING:
1694         {
1695                 struct v4l2_routing *rt = arg;
1696
1697                 if (!(desc->flags & CHIP_HAS_INPUTSEL) || rt->input >= 4)
1698                                 return -EINVAL;
1699                 /* There are four inputs: tuner, radio, extern and intern. */
1700                 chip->input = rt->input;
1701                 if (chip->muted)
1702                         break;
1703                 chip_write_masked(chip, desc->inputreg,
1704                                 desc->inputmap[chip->input], desc->inputmask);
1705                 break;
1706         }
1707
1708         case VIDIOC_S_TUNER:
1709         {
1710                 struct v4l2_tuner *vt = arg;
1711                 int mode = 0;
1712
1713                 if (chip->radio)
1714                         break;
1715                 switch (vt->audmode) {
1716                 case V4L2_TUNER_MODE_MONO:
1717                         mode = VIDEO_SOUND_MONO;
1718                         break;
1719                 case V4L2_TUNER_MODE_STEREO:
1720                 case V4L2_TUNER_MODE_LANG1_LANG2:
1721                         mode = VIDEO_SOUND_STEREO;
1722                         break;
1723                 case V4L2_TUNER_MODE_LANG1:
1724                         mode = VIDEO_SOUND_LANG1;
1725                         break;
1726                 case V4L2_TUNER_MODE_LANG2:
1727                         mode = VIDEO_SOUND_LANG2;
1728                         break;
1729                 default:
1730                         return -EINVAL;
1731                 }
1732                 chip->audmode = vt->audmode;
1733
1734                 if (desc->setmode && mode) {
1735                         chip->watch_stereo = 0;
1736                         /* del_timer(&chip->wt); */
1737                         chip->mode = mode;
1738                         desc->setmode(chip, mode);
1739                 }
1740                 break;
1741         }
1742
1743         case VIDIOC_G_TUNER:
1744         {
1745                 struct v4l2_tuner *vt = arg;
1746                 int mode = VIDEO_SOUND_MONO;
1747
1748                 if (chip->radio)
1749                         break;
1750                 vt->audmode = chip->audmode;
1751                 vt->rxsubchans = 0;
1752                 vt->capability = V4L2_TUNER_CAP_STEREO |
1753                         V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
1754
1755                 if (desc->getmode)
1756                         mode = desc->getmode(chip);
1757
1758                 if (mode & VIDEO_SOUND_MONO)
1759                         vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
1760                 if (mode & VIDEO_SOUND_STEREO)
1761                         vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
1762                 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1763                    When this module is converted fully to v4l2, then this
1764                    should change for those chips that can detect SAP. */
1765                 if (mode & VIDEO_SOUND_LANG1)
1766                         vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1767                                          V4L2_TUNER_SUB_LANG2;
1768                 break;
1769         }
1770
1771         case VIDIOCSCHAN:
1772         case VIDIOC_S_STD:
1773                 chip->radio = 0;
1774                 break;
1775
1776         case VIDIOCSFREQ:
1777         case VIDIOC_S_FREQUENCY:
1778                 chip->mode = 0; /* automatic */
1779                 if (desc->checkmode) {
1780                         desc->setmode(chip,VIDEO_SOUND_MONO);
1781                         if (chip->prevmode != VIDEO_SOUND_MONO)
1782                                 chip->prevmode = -1; /* reset previous mode */
1783                         mod_timer(&chip->wt, jiffies+2*HZ);
1784                         /* the thread will call checkmode() later */
1785                 }
1786                 break;
1787         }
1788         return 0;
1789 }
1790
1791 static struct i2c_driver driver = {
1792         .driver = {
1793                 .name    = "tvaudio",
1794         },
1795         .id              = I2C_DRIVERID_TVAUDIO,
1796         .attach_adapter  = chip_probe,
1797         .detach_client   = chip_detach,
1798         .command         = chip_command,
1799 };
1800
1801 static struct i2c_client client_template =
1802 {
1803         .name       = "(unset)",
1804         .driver     = &driver,
1805 };
1806
1807 static int __init audiochip_init_module(void)
1808 {
1809         struct CHIPDESC  *desc;
1810
1811         if (debug) {
1812                 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1813                 printk(KERN_INFO "tvaudio: known chips: ");
1814                 for (desc = chiplist; desc->name != NULL; desc++)
1815                         printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1816                 printk("\n");
1817         }
1818
1819         return i2c_add_driver(&driver);
1820 }
1821
1822 static void __exit audiochip_cleanup_module(void)
1823 {
1824         i2c_del_driver(&driver);
1825 }
1826
1827 module_init(audiochip_init_module);
1828 module_exit(audiochip_cleanup_module);
1829
1830 /*
1831  * Local variables:
1832  * c-basic-offset: 8
1833  * End:
1834  */