blob: 426083c08986c971f36e7875015a42e75aa095ab [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#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>
Cedric Le Goaterbc282872006-09-11 16:31:45 -030031#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080032#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -030034#include <media/tvaudio.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020035#include <media/v4l2-common.h>
Hans Verkuil74cab312007-04-27 12:31:26 -030036#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Mauro Carvalho Chehab7c9b5042006-03-18 08:08:14 -030038#include <media/i2c-addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* ---------------------------------------------------------------------- */
41/* insmod args */
42
43static int debug = 0; /* insmod parameter */
44module_param(debug, int, 0644);
45
46MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
47MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
48MODULE_LICENSE("GPL");
49
50#define UNSET (-1U)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/* ---------------------------------------------------------------------- */
53/* our structs */
54
55#define MAXREGS 64
56
57struct CHIPSTATE;
58typedef int (*getvalue)(int);
59typedef int (*checkit)(struct CHIPSTATE*);
60typedef int (*initialize)(struct CHIPSTATE*);
61typedef int (*getmode)(struct CHIPSTATE*);
62typedef void (*setmode)(struct CHIPSTATE*, int mode);
63typedef void (*checkmode)(struct CHIPSTATE*);
64
65/* i2c command */
66typedef struct AUDIOCMD {
67 int count; /* # of bytes to send */
68 unsigned char bytes[MAXREGS+1]; /* addr, data, data, ... */
69} audiocmd;
70
71/* chip description */
72struct CHIPDESC {
73 char *name; /* chip name */
74 int id; /* ID */
75 int addr_lo, addr_hi; /* i2c address range */
76 int registers; /* # of registers */
77
78 int *insmodopt;
79 checkit checkit;
80 initialize initialize;
81 int flags;
82#define CHIP_HAS_VOLUME 1
83#define CHIP_HAS_BASSTREBLE 2
84#define CHIP_HAS_INPUTSEL 4
85
86 /* various i2c command sequences */
87 audiocmd init;
88
89 /* which register has which value */
90 int leftreg,rightreg,treblereg,bassreg;
91
92 /* initialize with (defaults to 65535/65535/32768/32768 */
93 int leftinit,rightinit,trebleinit,bassinit;
94
95 /* functions to convert the values (v4l -> chip) */
96 getvalue volfunc,treblefunc,bassfunc;
97
98 /* get/set mode */
99 getmode getmode;
100 setmode setmode;
101
102 /* check / autoswitch audio after channel switches */
103 checkmode checkmode;
104
105 /* input switch register + values for v4l inputs */
106 int inputreg;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300107 int inputmap[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 int inputmute;
109 int inputmask;
110};
111static struct CHIPDESC chiplist[];
112
113/* current state of the chip */
114struct CHIPSTATE {
115 struct i2c_client c;
116
117 /* index into CHIPDESC array */
118 int type;
119
120 /* shadow register set */
121 audiocmd shadow;
122
123 /* current settings */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300124 __u16 left,right,treble,bass,muted,mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 int prevmode;
Hans Verkuil8a854282006-01-09 15:25:43 -0200126 int radio;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300127 int input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300130 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct timer_list wt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int watch_stereo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200133 int audmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/* ---------------------------------------------------------------------- */
137/* i2c addresses */
138
139static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -0300140 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149I2C_CLIENT_INSMOD;
150
151static struct i2c_driver driver;
152static struct i2c_client client_template;
153
154
155/* ---------------------------------------------------------------------- */
156/* i2c I/O functions */
157
158static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
159{
160 unsigned char buffer[2];
161
162 if (-1 == subaddr) {
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200163 v4l_dbg(1, debug, &chip->c, "%s: chip_write: 0x%x\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700164 chip->c.name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 chip->shadow.bytes[1] = val;
166 buffer[0] = val;
167 if (1 != i2c_master_send(&chip->c,buffer,1)) {
Hans Verkuilfac9e892006-01-09 15:32:40 -0200168 v4l_warn(&chip->c, "%s: I/O error (write 0x%x)\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700169 chip->c.name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -1;
171 }
172 } else {
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200173 v4l_dbg(1, debug, &chip->c, "%s: chip_write: reg%d=0x%x\n",
Jean Delvarefae91e72005-08-15 19:57:04 +0200174 chip->c.name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 chip->shadow.bytes[subaddr+1] = val;
176 buffer[0] = subaddr;
177 buffer[1] = val;
178 if (2 != i2c_master_send(&chip->c,buffer,2)) {
Hans Verkuilfac9e892006-01-09 15:32:40 -0200179 v4l_warn(&chip->c, "%s: I/O error (write reg%d=0x%x)\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -0800180 chip->c.name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -1;
182 }
183 }
184 return 0;
185}
186
187static 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
199static int chip_read(struct CHIPSTATE *chip)
200{
201 unsigned char buffer;
202
203 if (1 != i2c_master_recv(&chip->c,&buffer,1)) {
Hans Verkuilfac9e892006-01-09 15:32:40 -0200204 v4l_warn(&chip->c, "%s: I/O error (read)\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700205 chip->c.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -1;
207 }
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200208 v4l_dbg(1, debug, &chip->c, "%s: chip_read: 0x%x\n",chip->c.name, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return buffer;
210}
211
212static int chip_read2(struct CHIPSTATE *chip, int subaddr)
213{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700214 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 if (2 != i2c_transfer(chip->c.adapter,msgs,2)) {
Hans Verkuilfac9e892006-01-09 15:32:40 -0200223 v4l_warn(&chip->c, "%s: I/O error (read2)\n", chip->c.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -1;
225 }
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200226 v4l_dbg(1, debug, &chip->c, "%s: chip_read2: reg%d=0x%x\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -0800227 chip->c.name, subaddr,read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return read[0];
229}
230
231static 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) */
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200239 v4l_dbg(1, debug, &chip->c, "%s: chip_cmd(%s): reg=%d, data:",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -0800240 chip->c.name, name,cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700242 if (debug)
243 printk(" 0x%x",cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
245 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700246 if (debug)
247 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /* send data to the chip */
250 if (cmd->count != i2c_master_send(&chip->c,cmd->bytes,cmd->count)) {
Hans Verkuilfac9e892006-01-09 15:32:40 -0200251 v4l_warn(&chip->c, "%s: I/O error (%s)\n", chip->c.name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 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
264static void chip_thread_wake(unsigned long data)
265{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700266 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300267 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static int chip_thread(void *data)
271{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700272 struct CHIPSTATE *chip = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct CHIPDESC *desc = chiplist + chip->type;
274
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200275 v4l_dbg(1, debug, &chip->c, "%s: thread started\n", chip->c.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300278 set_current_state(TASK_INTERRUPTIBLE);
279 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300281 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700282 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300283 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 break;
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200285 v4l_dbg(1, debug, &chip->c, "%s: thread wakeup\n", chip->c.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 /* don't do anything for radio or if mode != auto */
Hans Verkuil8a854282006-01-09 15:25:43 -0200288 if (chip->radio || chip->mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 continue;
290
291 /* have a look what's going on */
292 desc->checkmode(chip);
293
294 /* schedule next check */
295 mod_timer(&chip->wt, jiffies+2*HZ);
296 }
297
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200298 v4l_dbg(1, debug, &chip->c, "%s: thread exiting\n", chip->c.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300}
301
302static void generic_checkmode(struct CHIPSTATE *chip)
303{
304 struct CHIPDESC *desc = chiplist + chip->type;
305 int mode = desc->getmode(chip);
306
307 if (mode == chip->prevmode)
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -0800308 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200310 v4l_dbg(1, debug, &chip->c, "%s: thread checkmode\n", chip->c.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 chip->prevmode = mode;
312
313 if (mode & VIDEO_SOUND_STEREO)
314 desc->setmode(chip,VIDEO_SOUND_STEREO);
315 else if (mode & VIDEO_SOUND_LANG1)
316 desc->setmode(chip,VIDEO_SOUND_LANG1);
317 else if (mode & VIDEO_SOUND_LANG2)
318 desc->setmode(chip,VIDEO_SOUND_LANG2);
319 else
320 desc->setmode(chip,VIDEO_SOUND_MONO);
321}
322
323/* ---------------------------------------------------------------------- */
324/* audio chip descriptions - defines+functions for tda9840 */
325
326#define TDA9840_SW 0x00
327#define TDA9840_LVADJ 0x02
328#define TDA9840_STADJ 0x03
329#define TDA9840_TEST 0x04
330
331#define TDA9840_MONO 0x10
332#define TDA9840_STEREO 0x2a
333#define TDA9840_DUALA 0x12
334#define TDA9840_DUALB 0x1e
335#define TDA9840_DUALAB 0x1a
336#define TDA9840_DUALBA 0x16
337#define TDA9840_EXTERNAL 0x7a
338
339#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
340#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
341#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
342
343#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
344#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
345
346static int tda9840_getmode(struct CHIPSTATE *chip)
347{
348 int val, mode;
349
350 val = chip_read(chip);
351 mode = VIDEO_SOUND_MONO;
352 if (val & TDA9840_DS_DUAL)
353 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
354 if (val & TDA9840_ST_STEREO)
355 mode |= VIDEO_SOUND_STEREO;
356
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200357 v4l_dbg(1, debug, &chip->c, "tda9840_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700358 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return mode;
360}
361
362static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
363{
364 int update = 1;
365 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
366
367 switch (mode) {
368 case VIDEO_SOUND_MONO:
369 t |= TDA9840_MONO;
370 break;
371 case VIDEO_SOUND_STEREO:
372 t |= TDA9840_STEREO;
373 break;
374 case VIDEO_SOUND_LANG1:
375 t |= TDA9840_DUALA;
376 break;
377 case VIDEO_SOUND_LANG2:
378 t |= TDA9840_DUALB;
379 break;
380 default:
381 update = 0;
382 }
383
384 if (update)
385 chip_write(chip, TDA9840_SW, t);
386}
387
Hans Verkuil94f9e562006-01-23 09:47:40 -0200388static int tda9840_checkit(struct CHIPSTATE *chip)
389{
390 int rc;
391 rc = chip_read(chip);
392 /* lower 5 bits should be 0 */
393 return ((rc & 0x1f) == 0) ? 1 : 0;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/* ---------------------------------------------------------------------- */
397/* audio chip descriptions - defines+functions for tda985x */
398
399/* subaddresses for TDA9855 */
400#define TDA9855_VR 0x00 /* Volume, right */
401#define TDA9855_VL 0x01 /* Volume, left */
402#define TDA9855_BA 0x02 /* Bass */
403#define TDA9855_TR 0x03 /* Treble */
404#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
405
406/* subaddresses for TDA9850 */
407#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
408
409/* subaddesses for both chips */
410#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
411#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
412#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
413#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
414#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
415#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
416
417/* Masks for bits in TDA9855 subaddresses */
418/* 0x00 - VR in TDA9855 */
419/* 0x01 - VL in TDA9855 */
420/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
421 * in 1dB steps - mute is 0x27 */
422
423
424/* 0x02 - BA in TDA9855 */
425/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
426 * in .5dB steps - 0 is 0x0E */
427
428
429/* 0x03 - TR in TDA9855 */
430/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
431 * in 3dB steps - 0 is 0x7 */
432
433/* Masks for bits in both chips' subaddresses */
434/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
435/* Unique to TDA9855: */
436/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
437 * in 3dB steps - mute is 0x0 */
438
439/* Unique to TDA9850: */
440/* lower 4 bits control stereo noise threshold, over which stereo turns off
441 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
442
443
444/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
445/* Unique to TDA9855: */
446#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
447#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
448#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
449#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
450 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800451 * of line in and line out, only the
452 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
454#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
455
456/* Unique to TDA9850: */
457/* lower 4 bits contol SAP noise threshold, over which SAP turns off
458 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
459
460
461/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
462/* Common to TDA9855 and TDA9850: */
463#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
464#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
465#define TDA985x_MONO 0 /* Forces Mono output */
466#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
467
468/* Unique to TDA9855: */
469#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
470#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
471#define TDA9855_LINEAR 0 /* Linear Stereo */
472#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
473#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
474#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
475#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
476
477/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
478/* Common to both TDA9855 and TDA9850: */
479/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
480 * in .5dB steps - 0dB is 0x7 */
481
482/* 0x08, 0x09 - A1 and A2 (read/write) */
483/* Common to both TDA9855 and TDA9850: */
484/* lower 5 bites are wideband and spectral expander alignment
485 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
486#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
487#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
488#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
489
490/* 0x0a - A3 */
491/* Common to both TDA9855 and TDA9850: */
492/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
493 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
494#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
495
496static int tda9855_volume(int val) { return val/0x2e8+0x27; }
497static int tda9855_bass(int val) { return val/0xccc+0x06; }
498static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
499
500static int tda985x_getmode(struct CHIPSTATE *chip)
501{
502 int mode;
503
504 mode = ((TDA985x_STP | TDA985x_SAPP) &
505 chip_read(chip)) >> 4;
506 /* Add mono mode regardless of SAP and stereo */
507 /* Allows forced mono */
508 return mode | VIDEO_SOUND_MONO;
509}
510
511static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
512{
513 int update = 1;
514 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
515
516 switch (mode) {
517 case VIDEO_SOUND_MONO:
518 c6 |= TDA985x_MONO;
519 break;
520 case VIDEO_SOUND_STEREO:
521 c6 |= TDA985x_STEREO;
522 break;
523 case VIDEO_SOUND_LANG1:
524 c6 |= TDA985x_SAP;
525 break;
526 default:
527 update = 0;
528 }
529 if (update)
530 chip_write(chip,TDA985x_C6,c6);
531}
532
533
534/* ---------------------------------------------------------------------- */
535/* audio chip descriptions - defines+functions for tda9873h */
536
537/* Subaddresses for TDA9873H */
538
539#define TDA9873_SW 0x00 /* Switching */
540#define TDA9873_AD 0x01 /* Adjust */
541#define TDA9873_PT 0x02 /* Port */
542
543/* Subaddress 0x00: Switching Data
544 * B7..B0:
545 *
546 * B1, B0: Input source selection
547 * 0, 0 internal
548 * 1, 0 external stereo
549 * 0, 1 external mono
550 */
551#define TDA9873_INP_MASK 3
552#define TDA9873_INTERNAL 0
553#define TDA9873_EXT_STEREO 2
554#define TDA9873_EXT_MONO 1
555
556/* B3, B2: output signal select
557 * B4 : transmission mode
558 * 0, 0, 1 Mono
559 * 1, 0, 0 Stereo
560 * 1, 1, 1 Stereo (reversed channel)
561 * 0, 0, 0 Dual AB
562 * 0, 0, 1 Dual AA
563 * 0, 1, 0 Dual BB
564 * 0, 1, 1 Dual BA
565 */
566
567#define TDA9873_TR_MASK (7 << 2)
568#define TDA9873_TR_MONO 4
569#define TDA9873_TR_STEREO 1 << 4
570#define TDA9873_TR_REVERSE (1 << 3) & (1 << 2)
571#define TDA9873_TR_DUALA 1 << 2
572#define TDA9873_TR_DUALB 1 << 3
573
574/* output level controls
575 * B5: output level switch (0 = reduced gain, 1 = normal gain)
576 * B6: mute (1 = muted)
577 * B7: auto-mute (1 = auto-mute enabled)
578 */
579
580#define TDA9873_GAIN_NORMAL 1 << 5
581#define TDA9873_MUTE 1 << 6
582#define TDA9873_AUTOMUTE 1 << 7
583
584/* Subaddress 0x01: Adjust/standard */
585
586/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
587 * Recommended value is +0 dB
588 */
589
590#define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
591
592/* Bits C6..C4 control FM stantard
593 * C6, C5, C4
594 * 0, 0, 0 B/G (PAL FM)
595 * 0, 0, 1 M
596 * 0, 1, 0 D/K(1)
597 * 0, 1, 1 D/K(2)
598 * 1, 0, 0 D/K(3)
599 * 1, 0, 1 I
600 */
601#define TDA9873_BG 0
602#define TDA9873_M 1
603#define TDA9873_DK1 2
604#define TDA9873_DK2 3
605#define TDA9873_DK3 4
606#define TDA9873_I 5
607
608/* C7 controls identification response time (1=fast/0=normal)
609 */
610#define TDA9873_IDR_NORM 0
611#define TDA9873_IDR_FAST 1 << 7
612
613
614/* Subaddress 0x02: Port data */
615
616/* E1, E0 free programmable ports P1/P2
617 0, 0 both ports low
618 0, 1 P1 high
619 1, 0 P2 high
620 1, 1 both ports high
621*/
622
623#define TDA9873_PORTS 3
624
625/* E2: test port */
626#define TDA9873_TST_PORT 1 << 2
627
628/* E5..E3 control mono output channel (together with transmission mode bit B4)
629 *
630 * E5 E4 E3 B4 OUTM
631 * 0 0 0 0 mono
632 * 0 0 1 0 DUAL B
633 * 0 1 0 1 mono (from stereo decoder)
634 */
635#define TDA9873_MOUT_MONO 0
636#define TDA9873_MOUT_FMONO 0
637#define TDA9873_MOUT_DUALA 0
638#define TDA9873_MOUT_DUALB 1 << 3
639#define TDA9873_MOUT_ST 1 << 4
640#define TDA9873_MOUT_EXTM (1 << 4 ) & (1 << 3)
641#define TDA9873_MOUT_EXTL 1 << 5
642#define TDA9873_MOUT_EXTR (1 << 5 ) & (1 << 3)
643#define TDA9873_MOUT_EXTLR (1 << 5 ) & (1 << 4)
644#define TDA9873_MOUT_MUTE (1 << 5 ) & (1 << 4) & (1 << 3)
645
646/* Status bits: (chip read) */
647#define TDA9873_PONR 0 /* Power-on reset detected if = 1 */
648#define TDA9873_STEREO 2 /* Stereo sound is identified */
649#define TDA9873_DUAL 4 /* Dual sound is identified */
650
651static int tda9873_getmode(struct CHIPSTATE *chip)
652{
653 int val,mode;
654
655 val = chip_read(chip);
656 mode = VIDEO_SOUND_MONO;
657 if (val & TDA9873_STEREO)
658 mode |= VIDEO_SOUND_STEREO;
659 if (val & TDA9873_DUAL)
660 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200661 v4l_dbg(1, debug, &chip->c, "tda9873_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700662 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return mode;
664}
665
666static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
667{
668 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
669 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
670
671 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200672 v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return;
674 }
675
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200676 v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
677 v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): sw_data = %d\n", sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 switch (mode) {
680 case VIDEO_SOUND_MONO:
681 sw_data |= TDA9873_TR_MONO;
682 break;
683 case VIDEO_SOUND_STEREO:
684 sw_data |= TDA9873_TR_STEREO;
685 break;
686 case VIDEO_SOUND_LANG1:
687 sw_data |= TDA9873_TR_DUALA;
688 break;
689 case VIDEO_SOUND_LANG2:
690 sw_data |= TDA9873_TR_DUALB;
691 break;
692 default:
693 chip->mode = 0;
694 return;
695 }
696
697 chip_write(chip, TDA9873_SW, sw_data);
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200698 v4l_dbg(1, debug, &chip->c, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 mode, sw_data);
700}
701
702static int tda9873_checkit(struct CHIPSTATE *chip)
703{
704 int rc;
705
706 if (-1 == (rc = chip_read2(chip,254)))
707 return 0;
708 return (rc & ~0x1f) == 0x80;
709}
710
711
712/* ---------------------------------------------------------------------- */
713/* audio chip description - defines+functions for tda9874h and tda9874a */
714/* Dariusz Kowalewski <darekk@automex.pl> */
715
716/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
717#define TDA9874A_AGCGR 0x00 /* AGC gain */
718#define TDA9874A_GCONR 0x01 /* general config */
719#define TDA9874A_MSR 0x02 /* monitor select */
720#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
721#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
722#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
723#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
724#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
725#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
726#define TDA9874A_DCR 0x09 /* demodulator config */
727#define TDA9874A_FMER 0x0a /* FM de-emphasis */
728#define TDA9874A_FMMR 0x0b /* FM dematrix */
729#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
730#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
731#define TDA9874A_NCONR 0x0e /* NICAM config */
732#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
733#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
734#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
735#define TDA9874A_AMCONR 0x12 /* audio mute control */
736#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
737#define TDA9874A_AOSR 0x14 /* analog output select */
738#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
739#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
740#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
741#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
742#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
743
744/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
745#define TDA9874A_DSR 0x00 /* device status */
746#define TDA9874A_NSR 0x01 /* NICAM status */
747#define TDA9874A_NECR 0x02 /* NICAM error count */
748#define TDA9874A_DR1 0x03 /* add. data LSB */
749#define TDA9874A_DR2 0x04 /* add. data MSB */
750#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
751#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
752#define TDA9874A_SIFLR 0x07 /* SIF level */
753#define TDA9874A_TR2 252 /* test reg. 2 */
754#define TDA9874A_TR1 253 /* test reg. 1 */
755#define TDA9874A_DIC 254 /* device id. code */
756#define TDA9874A_SIC 255 /* software id. code */
757
758
759static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
760static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
761static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
762static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
763static int tda9874a_dic = -1; /* device id. code */
764
765/* insmod options for tda9874a */
766static unsigned int tda9874a_SIF = UNSET;
767static unsigned int tda9874a_AMSEL = UNSET;
768static unsigned int tda9874a_STD = UNSET;
769module_param(tda9874a_SIF, int, 0444);
770module_param(tda9874a_AMSEL, int, 0444);
771module_param(tda9874a_STD, int, 0444);
772
773/*
774 * initialization table for tda9874 decoder:
775 * - carrier 1 freq. registers (3 bytes)
776 * - carrier 2 freq. registers (3 bytes)
777 * - demudulator config register
778 * - FM de-emphasis register (slow identification mode)
779 * Note: frequency registers must be written in single i2c transfer.
780 */
781static struct tda9874a_MODES {
782 char *name;
783 audiocmd cmd;
784} tda9874a_modelist[9] = {
785 { "A2, B/G",
786 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
787 { "A2, M (Korea)",
788 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
789 { "A2, D/K (1)",
790 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
791 { "A2, D/K (2)",
792 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
793 { "A2, D/K (3)",
794 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
795 { "NICAM, I",
796 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
797 { "NICAM, B/G",
798 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
799 { "NICAM, D/K", /* default */
800 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
801 { "NICAM, L",
802 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
803};
804
805static int tda9874a_setup(struct CHIPSTATE *chip)
806{
807 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
808 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
809 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
810 if(tda9874a_dic == 0x11) {
811 chip_write(chip, TDA9874A_FMMR, 0x80);
812 } else { /* dic == 0x07 */
813 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
814 chip_write(chip, TDA9874A_FMMR, 0x00);
815 }
816 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
817 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
818 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
819 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
820 /* Note: If signal quality is poor you may want to change NICAM */
821 /* error limit registers (NLELR and NUELR) to some greater values. */
822 /* Then the sound would remain stereo, but won't be so clear. */
823 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
824 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
825
826 if(tda9874a_dic == 0x11) {
827 chip_write(chip, TDA9874A_AMCONR, 0xf9);
828 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
829 chip_write(chip, TDA9874A_AOSR, 0x80);
830 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
831 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
832 } else { /* dic == 0x07 */
833 chip_write(chip, TDA9874A_AMCONR, 0xfb);
834 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700835 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200837 v4l_dbg(1, debug, &chip->c, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
839 return 1;
840}
841
842static int tda9874a_getmode(struct CHIPSTATE *chip)
843{
844 int dsr,nsr,mode;
845 int necr; /* just for debugging */
846
847 mode = VIDEO_SOUND_MONO;
848
849 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
850 return mode;
851 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
852 return mode;
853 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
854 return mode;
855
856 /* need to store dsr/nsr somewhere */
857 chip->shadow.bytes[MAXREGS-2] = dsr;
858 chip->shadow.bytes[MAXREGS-1] = nsr;
859
860 if(tda9874a_mode) {
861 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
862 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
863 * that sound has (temporarily) switched from NICAM to
864 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
865 * error count. So in fact there is no stereo in this case :-(
866 * But changing the mode to VIDEO_SOUND_MONO would switch
867 * external 4052 multiplexer in audio_hook().
868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if(nsr & 0x02) /* NSR.S/MB=1 */
870 mode |= VIDEO_SOUND_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if(nsr & 0x01) /* NSR.D/SB=1 */
872 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
873 } else {
874 if(dsr & 0x02) /* DSR.IDSTE=1 */
875 mode |= VIDEO_SOUND_STEREO;
876 if(dsr & 0x04) /* DSR.IDDUA=1 */
877 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
878 }
879
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200880 v4l_dbg(1, debug, &chip->c, "tda9874a_getmode(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 dsr, nsr, necr, mode);
882 return mode;
883}
884
885static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
886{
887 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
888 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
889 if(tda9874a_mode) {
890 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
891 tda9874a_NCONR &= 0xfe; /* enable */
892 else
893 tda9874a_NCONR |= 0x01; /* disable */
894 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
895 }
896
897 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
898 * and has auto-select function for audio output (AOSR register).
899 * Old TDA9874H doesn't support these features.
900 * TDA9874A also has additional mono output pin (OUTM), which
901 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
902 */
903 if(tda9874a_dic == 0x11) {
904 int aosr = 0x80;
905 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
906
907 switch(mode) {
908 case VIDEO_SOUND_MONO:
909 case VIDEO_SOUND_STEREO:
910 break;
911 case VIDEO_SOUND_LANG1:
912 aosr = 0x80; /* auto-select, dual A/A */
913 mdacosr = (tda9874a_mode) ? 0x82:0x80;
914 break;
915 case VIDEO_SOUND_LANG2:
916 aosr = 0xa0; /* auto-select, dual B/B */
917 mdacosr = (tda9874a_mode) ? 0x83:0x81;
918 break;
919 default:
920 chip->mode = 0;
921 return;
922 }
923 chip_write(chip, TDA9874A_AOSR, aosr);
924 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
925
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200926 v4l_dbg(1, debug, &chip->c, "tda9874a_setmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 mode, aosr, mdacosr);
928
929 } else { /* dic == 0x07 */
930 int fmmr,aosr;
931
932 switch(mode) {
933 case VIDEO_SOUND_MONO:
934 fmmr = 0x00; /* mono */
935 aosr = 0x10; /* A/A */
936 break;
937 case VIDEO_SOUND_STEREO:
938 if(tda9874a_mode) {
939 fmmr = 0x00;
940 aosr = 0x00; /* handled by NICAM auto-mute */
941 } else {
942 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
943 aosr = 0x00;
944 }
945 break;
946 case VIDEO_SOUND_LANG1:
947 fmmr = 0x02; /* dual */
948 aosr = 0x10; /* dual A/A */
949 break;
950 case VIDEO_SOUND_LANG2:
951 fmmr = 0x02; /* dual */
952 aosr = 0x20; /* dual B/B */
953 break;
954 default:
955 chip->mode = 0;
956 return;
957 }
958 chip_write(chip, TDA9874A_FMMR, fmmr);
959 chip_write(chip, TDA9874A_AOSR, aosr);
960
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200961 v4l_dbg(1, debug, &chip->c, "tda9874a_setmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 mode, fmmr, aosr);
963 }
964}
965
966static int tda9874a_checkit(struct CHIPSTATE *chip)
967{
968 int dic,sic; /* device id. and software id. codes */
969
970 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
971 return 0;
972 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
973 return 0;
974
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -0200975 v4l_dbg(1, debug, &chip->c, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuilfac9e892006-01-09 15:32:40 -0200978 v4l_info(&chip->c, "found tda9874%s.\n", (dic == 0x11) ? "a":"h");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 tda9874a_dic = dic; /* remember device id. */
980 return 1;
981 }
982 return 0; /* not found */
983}
984
985static int tda9874a_initialize(struct CHIPSTATE *chip)
986{
987 if (tda9874a_SIF > 2)
988 tda9874a_SIF = 1;
Gerd Knorrfaf8b242005-05-01 08:59:20 -0700989 if (tda9874a_STD > 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 tda9874a_STD = 0;
991 if(tda9874a_AMSEL > 1)
992 tda9874a_AMSEL = 0;
993
994 if(tda9874a_SIF == 1)
995 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
996 else
997 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
998
999 tda9874a_ESP = tda9874a_STD;
1000 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
1001
1002 if(tda9874a_AMSEL == 0)
1003 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
1004 else
1005 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
1006
1007 tda9874a_setup(chip);
1008 return 0;
1009}
1010
1011
1012/* ---------------------------------------------------------------------- */
1013/* audio chip descriptions - defines+functions for tea6420 */
1014
1015#define TEA6300_VL 0x00 /* volume left */
1016#define TEA6300_VR 0x01 /* volume right */
1017#define TEA6300_BA 0x02 /* bass */
1018#define TEA6300_TR 0x03 /* treble */
1019#define TEA6300_FA 0x04 /* fader control */
1020#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001021 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022#define TEA6300_S_SA 0x01 /* stereo A input */
1023#define TEA6300_S_SB 0x02 /* stereo B */
1024#define TEA6300_S_SC 0x04 /* stereo C */
1025#define TEA6300_S_GMU 0x80 /* general mute */
1026
1027#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1028#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1029#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1030#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1031#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1032#define TEA6320_BA 0x05 /* bass (0-4) */
1033#define TEA6320_TR 0x06 /* treble (0-4) */
1034#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001035 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036#define TEA6320_S_SA 0x07 /* stereo A input */
1037#define TEA6320_S_SB 0x06 /* stereo B */
1038#define TEA6320_S_SC 0x05 /* stereo C */
1039#define TEA6320_S_SD 0x04 /* stereo D */
1040#define TEA6320_S_GMU 0x80 /* general mute */
1041
1042#define TEA6420_S_SA 0x00 /* stereo A input */
1043#define TEA6420_S_SB 0x01 /* stereo B */
1044#define TEA6420_S_SC 0x02 /* stereo C */
1045#define TEA6420_S_SD 0x03 /* stereo D */
1046#define TEA6420_S_SE 0x04 /* stereo E */
1047#define TEA6420_S_GMU 0x05 /* general mute */
1048
1049static int tea6300_shift10(int val) { return val >> 10; }
1050static int tea6300_shift12(int val) { return val >> 12; }
1051
1052/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1053/* 0x0c mirror those immediately higher) */
1054static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1055static int tea6320_shift11(int val) { return val >> 11; }
1056static int tea6320_initialize(struct CHIPSTATE * chip)
1057{
1058 chip_write(chip, TEA6320_FFR, 0x3f);
1059 chip_write(chip, TEA6320_FFL, 0x3f);
1060 chip_write(chip, TEA6320_FRR, 0x3f);
1061 chip_write(chip, TEA6320_FRL, 0x3f);
1062
1063 return 0;
1064}
1065
1066
1067/* ---------------------------------------------------------------------- */
1068/* audio chip descriptions - defines+functions for tda8425 */
1069
1070#define TDA8425_VL 0x00 /* volume left */
1071#define TDA8425_VR 0x01 /* volume right */
1072#define TDA8425_BA 0x02 /* bass */
1073#define TDA8425_TR 0x03 /* treble */
1074#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001075 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1077#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1078#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1079#define TDA8425_S1_MU 0x20 /* mute bit */
1080#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1081#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1082#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1083#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1084#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1085#define TDA8425_S1_ML 0x06 /* language selector */
1086#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1087#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1088#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1089#define TDA8425_S1_IS 0x01 /* channel selector */
1090
1091
1092static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1093static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1094
1095static int tda8425_initialize(struct CHIPSTATE *chip)
1096{
1097 struct CHIPDESC *desc = chiplist + chip->type;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001098 int inputmap[4] = { /* tuner */ TDA8425_S1_CH2, /* radio */ TDA8425_S1_CH1,
1099 /* extern */ TDA8425_S1_CH1, /* intern */ TDA8425_S1_OFF};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Jean Delvarec7a46532005-08-11 23:41:56 +02001101 if (chip->c.adapter->id == I2C_HW_B_RIVA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 memcpy (desc->inputmap, inputmap, sizeof (inputmap));
1103 }
1104 return 0;
1105}
1106
1107static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1108{
1109 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1110
1111 if (mode & VIDEO_SOUND_LANG1) {
1112 s1 |= TDA8425_S1_ML_SOUND_A;
1113 s1 |= TDA8425_S1_STEREO_PSEUDO;
1114
1115 } else if (mode & VIDEO_SOUND_LANG2) {
1116 s1 |= TDA8425_S1_ML_SOUND_B;
1117 s1 |= TDA8425_S1_STEREO_PSEUDO;
1118
1119 } else {
1120 s1 |= TDA8425_S1_ML_STEREO;
1121
1122 if (mode & VIDEO_SOUND_MONO)
1123 s1 |= TDA8425_S1_STEREO_MONO;
1124 if (mode & VIDEO_SOUND_STEREO)
1125 s1 |= TDA8425_S1_STEREO_SPATIAL;
1126 }
1127 chip_write(chip,TDA8425_S1,s1);
1128}
1129
1130
1131/* ---------------------------------------------------------------------- */
1132/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1133
1134/* the registers of 16C54, I2C sub address. */
1135#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1136#define PIC16C54_REG_MISC 0x02
1137
1138/* bit definition of the RESET register, I2C data. */
1139#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001140 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1142#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1143#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1144#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1145#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1146#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1147#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1148
1149/* ---------------------------------------------------------------------- */
1150/* audio chip descriptions - defines+functions for TA8874Z */
1151
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001152/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153#define TA8874Z_LED_STE 0x80
1154#define TA8874Z_LED_BIL 0x40
1155#define TA8874Z_LED_EXT 0x20
1156#define TA8874Z_MONO_SET 0x10
1157#define TA8874Z_MUTE 0x08
1158#define TA8874Z_F_MONO 0x04
1159#define TA8874Z_MODE_SUB 0x02
1160#define TA8874Z_MODE_MAIN 0x01
1161
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001162/* write 2nd byte */
1163/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164#define TA8874Z_SEPARATION 0x3f
1165#define TA8874Z_SEPARATION_DEFAULT 0x10
1166
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001167/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168#define TA8874Z_B1 0x80
1169#define TA8874Z_B0 0x40
1170#define TA8874Z_CHAG_FLAG 0x20
1171
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001172/*
1173 * B1 B0
1174 * mono L H
1175 * stereo L L
1176 * BIL H L
1177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178static int ta8874z_getmode(struct CHIPSTATE *chip)
1179{
1180 int val, mode;
1181
1182 val = chip_read(chip);
1183 mode = VIDEO_SOUND_MONO;
1184 if (val & TA8874Z_B1){
1185 mode |= VIDEO_SOUND_LANG1 | VIDEO_SOUND_LANG2;
1186 }else if (!(val & TA8874Z_B0)){
1187 mode |= VIDEO_SOUND_STEREO;
1188 }
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -02001189 /* v4l_dbg(1, debug, &chip->c, "ta8874z_getmode(): raw chip read: 0x%02x, return: 0x%02x\n", val, mode); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return mode;
1191}
1192
1193static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1194static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1195static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1196static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1197
1198static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1199{
1200 int update = 1;
1201 audiocmd *t = NULL;
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -02001202 v4l_dbg(1, debug, &chip->c, "ta8874z_setmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 switch(mode){
1205 case VIDEO_SOUND_MONO:
1206 t = &ta8874z_mono;
1207 break;
1208 case VIDEO_SOUND_STEREO:
1209 t = &ta8874z_stereo;
1210 break;
1211 case VIDEO_SOUND_LANG1:
1212 t = &ta8874z_main;
1213 break;
1214 case VIDEO_SOUND_LANG2:
1215 t = &ta8874z_sub;
1216 break;
1217 default:
1218 update = 0;
1219 }
1220
1221 if(update)
1222 chip_cmd(chip, "TA8874Z", t);
1223}
1224
1225static int ta8874z_checkit(struct CHIPSTATE *chip)
1226{
1227 int rc;
1228 rc = chip_read(chip);
1229 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1230}
1231
1232/* ---------------------------------------------------------------------- */
1233/* audio chip descriptions - struct CHIPDESC */
1234
1235/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001236static int tda8425 = 1;
1237static int tda9840 = 1;
1238static int tda9850 = 1;
1239static int tda9855 = 1;
1240static int tda9873 = 1;
1241static int tda9874a = 1;
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001242static int tea6300 = 0; /* address clash with msp34xx */
1243static int tea6320 = 0; /* address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001244static int tea6420 = 1;
1245static int pic16c54 = 1;
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001246static int ta8874z = 0; /* address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248module_param(tda8425, int, 0444);
1249module_param(tda9840, int, 0444);
1250module_param(tda9850, int, 0444);
1251module_param(tda9855, int, 0444);
1252module_param(tda9873, int, 0444);
1253module_param(tda9874a, int, 0444);
1254module_param(tea6300, int, 0444);
1255module_param(tea6320, int, 0444);
1256module_param(tea6420, int, 0444);
1257module_param(pic16c54, int, 0444);
1258module_param(ta8874z, int, 0444);
1259
1260static struct CHIPDESC chiplist[] = {
1261 {
1262 .name = "tda9840",
1263 .id = I2C_DRIVERID_TDA9840,
1264 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001265 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1266 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .registers = 5,
1268
Hans Verkuil94f9e562006-01-23 09:47:40 -02001269 .checkit = tda9840_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .getmode = tda9840_getmode,
1271 .setmode = tda9840_setmode,
1272 .checkmode = generic_checkmode,
1273
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001274 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /* ,TDA9840_SW, TDA9840_MONO */} }
1276 },
1277 {
1278 .name = "tda9873h",
1279 .id = I2C_DRIVERID_TDA9873,
1280 .checkit = tda9873_checkit,
1281 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001282 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1283 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 .registers = 3,
1285 .flags = CHIP_HAS_INPUTSEL,
1286
1287 .getmode = tda9873_getmode,
1288 .setmode = tda9873_setmode,
1289 .checkmode = generic_checkmode,
1290
1291 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1292 .inputreg = TDA9873_SW,
1293 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001294 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1296
1297 },
1298 {
1299 .name = "tda9874h/a",
1300 .id = I2C_DRIVERID_TDA9874,
1301 .checkit = tda9874a_checkit,
1302 .initialize = tda9874a_initialize,
1303 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001304 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1305 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 .getmode = tda9874a_getmode,
1308 .setmode = tda9874a_setmode,
1309 .checkmode = generic_checkmode,
1310 },
1311 {
1312 .name = "tda9850",
1313 .id = I2C_DRIVERID_TDA9850,
1314 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001315 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1316 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 .registers = 11,
1318
1319 .getmode = tda985x_getmode,
1320 .setmode = tda985x_setmode,
1321
1322 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1323 },
1324 {
1325 .name = "tda9855",
1326 .id = I2C_DRIVERID_TDA9855,
1327 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001328 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1329 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 .registers = 11,
1331 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1332
1333 .leftreg = TDA9855_VL,
1334 .rightreg = TDA9855_VR,
1335 .bassreg = TDA9855_BA,
1336 .treblereg = TDA9855_TR,
1337 .volfunc = tda9855_volume,
1338 .bassfunc = tda9855_bass,
1339 .treblefunc = tda9855_treble,
1340
1341 .getmode = tda985x_getmode,
1342 .setmode = tda985x_setmode,
1343
1344 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1345 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1346 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1347 0x07, 0x10, 0x10, 0x03 }}
1348 },
1349 {
1350 .name = "tea6300",
1351 .id = I2C_DRIVERID_TEA6300,
1352 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001353 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1354 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 .registers = 6,
1356 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1357
1358 .leftreg = TEA6300_VR,
1359 .rightreg = TEA6300_VL,
1360 .bassreg = TEA6300_BA,
1361 .treblereg = TEA6300_TR,
1362 .volfunc = tea6300_shift10,
1363 .bassfunc = tea6300_shift12,
1364 .treblefunc = tea6300_shift12,
1365
1366 .inputreg = TEA6300_S,
1367 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1368 .inputmute = TEA6300_S_GMU,
1369 },
1370 {
1371 .name = "tea6320",
1372 .id = I2C_DRIVERID_TEA6300,
1373 .initialize = tea6320_initialize,
1374 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001375 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1376 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .registers = 8,
1378 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1379
1380 .leftreg = TEA6320_V,
1381 .rightreg = TEA6320_V,
1382 .bassreg = TEA6320_BA,
1383 .treblereg = TEA6320_TR,
1384 .volfunc = tea6320_volume,
1385 .bassfunc = tea6320_shift11,
1386 .treblefunc = tea6320_shift11,
1387
1388 .inputreg = TEA6320_S,
1389 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1390 .inputmute = TEA6300_S_GMU,
1391 },
1392 {
1393 .name = "tea6420",
1394 .id = I2C_DRIVERID_TEA6420,
1395 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001396 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1397 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 .registers = 1,
1399 .flags = CHIP_HAS_INPUTSEL,
1400
1401 .inputreg = -1,
1402 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1403 .inputmute = TEA6300_S_GMU,
1404 },
1405 {
1406 .name = "tda8425",
1407 .id = I2C_DRIVERID_TDA8425,
1408 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001409 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1410 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 .registers = 9,
1412 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1413
1414 .leftreg = TDA8425_VL,
1415 .rightreg = TDA8425_VR,
1416 .bassreg = TDA8425_BA,
1417 .treblereg = TDA8425_TR,
1418 .volfunc = tda8425_shift10,
1419 .bassfunc = tda8425_shift12,
1420 .treblefunc = tda8425_shift12,
1421
1422 .inputreg = TDA8425_S1,
1423 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1424 .inputmute = TDA8425_S1_OFF,
1425
1426 .setmode = tda8425_setmode,
1427 .initialize = tda8425_initialize,
1428 },
1429 {
1430 .name = "pic16c54 (PV951)",
Jean Delvaree0ec29b2005-11-08 21:38:26 -08001431 .id = I2C_DRIVERID_PIC16C54_PV9,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001433 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1434 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 .registers = 2,
1436 .flags = CHIP_HAS_INPUTSEL,
1437
1438 .inputreg = PIC16C54_REG_MISC,
1439 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1440 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1441 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001442 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 .inputmute = PIC16C54_MISC_SND_MUTE,
1444 },
1445 {
1446 .name = "ta8874z",
1447 .id = -1,
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001448 /*.id = I2C_DRIVERID_TA8874Z, */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 .checkit = ta8874z_checkit,
1450 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001451 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1452 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 .registers = 2,
1454
1455 .getmode = ta8874z_getmode,
1456 .setmode = ta8874z_setmode,
1457 .checkmode = generic_checkmode,
1458
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001459 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 },
1461 { .name = NULL } /* EOF */
1462};
1463
1464
1465/* ---------------------------------------------------------------------- */
1466/* i2c registration */
1467
1468static int chip_attach(struct i2c_adapter *adap, int addr, int kind)
1469{
1470 struct CHIPSTATE *chip;
1471 struct CHIPDESC *desc;
1472
Panagiotis Issaris74081872006-01-11 19:40:56 -02001473 chip = kzalloc(sizeof(*chip),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (!chip)
1475 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 memcpy(&chip->c,&client_template,sizeof(struct i2c_client));
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001477 chip->c.adapter = adap;
1478 chip->c.addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 i2c_set_clientdata(&chip->c, chip);
1480
1481 /* find description for the chip */
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -02001482 v4l_dbg(1, debug, &chip->c, "chip found @ 0x%x\n", addr<<1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 for (desc = chiplist; desc->name != NULL; desc++) {
1484 if (0 == *(desc->insmodopt))
1485 continue;
1486 if (addr < desc->addr_lo ||
1487 addr > desc->addr_hi)
1488 continue;
1489 if (desc->checkit && !desc->checkit(chip))
1490 continue;
1491 break;
1492 }
1493 if (desc->name == NULL) {
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -02001494 v4l_dbg(1, debug, &chip->c, "no matching chip description found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return -EIO;
1496 }
Hans Verkuilfac9e892006-01-09 15:32:40 -02001497 v4l_info(&chip->c, "%s found @ 0x%x (%s)\n", desc->name, addr<<1, adap->name);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001498 if (desc->flags) {
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -02001499 v4l_dbg(1, debug, &chip->c, "matches:%s%s%s.\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001500 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
1501 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1502 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 /* fill required data structures */
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001506 strcpy(chip->c.name, desc->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 chip->type = desc-chiplist;
1508 chip->shadow.count = desc->registers+1;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001509 chip->prevmode = -1;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001510 chip->audmode = V4L2_TUNER_MODE_LANG1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 /* register */
1512 i2c_attach_client(&chip->c);
1513
1514 /* initialization */
1515 if (desc->initialize != NULL)
1516 desc->initialize(chip);
1517 else
1518 chip_cmd(chip,"init",&desc->init);
1519
1520 if (desc->flags & CHIP_HAS_VOLUME) {
1521 chip->left = desc->leftinit ? desc->leftinit : 65535;
1522 chip->right = desc->rightinit ? desc->rightinit : 65535;
1523 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1524 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1525 }
1526 if (desc->flags & CHIP_HAS_BASSTREBLE) {
1527 chip->treble = desc->trebleinit ? desc->trebleinit : 32768;
1528 chip->bass = desc->bassinit ? desc->bassinit : 32768;
1529 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1530 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1531 }
1532
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001533 chip->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (desc->checkmode) {
1535 /* start async thread */
1536 init_timer(&chip->wt);
1537 chip->wt.function = chip_thread_wake;
1538 chip->wt.data = (unsigned long)chip;
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001539 chip->thread = kthread_run(chip_thread, chip, chip->c.name);
1540 if (IS_ERR(chip->thread)) {
1541 v4l_warn(&chip->c, "%s: failed to create kthread\n",
Jean Delvarefae91e72005-08-15 19:57:04 +02001542 chip->c.name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001543 chip->thread = NULL;
1544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546 return 0;
1547}
1548
1549static int chip_probe(struct i2c_adapter *adap)
1550{
1551 /* don't attach on saa7146 based cards,
1552 because dedicated drivers are used */
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001553 if ((adap->id == I2C_HW_SAA7146))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (adap->class & I2C_CLASS_TV_ANALOG)
1556 return i2c_probe(adap, &addr_data, chip_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return 0;
1558}
1559
1560static int chip_detach(struct i2c_client *client)
1561{
1562 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1563
1564 del_timer_sync(&chip->wt);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001565 if (chip->thread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 /* shutdown async thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001567 kthread_stop(chip->thread);
1568 chip->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570
1571 i2c_detach_client(&chip->c);
1572 kfree(chip);
1573 return 0;
1574}
1575
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001576static int tvaudio_set_ctrl(struct CHIPSTATE *chip, struct v4l2_control *ctrl)
1577{
1578 struct CHIPDESC *desc = chiplist + chip->type;
1579
1580 switch (ctrl->id) {
1581 case V4L2_CID_AUDIO_MUTE:
1582 if (ctrl->value < 0 || ctrl->value >= 2)
1583 return -ERANGE;
1584 chip->muted = ctrl->value;
1585 if (chip->muted)
1586 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1587 else
1588 chip_write_masked(chip,desc->inputreg,
1589 desc->inputmap[chip->input],desc->inputmask);
1590 break;
1591 default:
1592 return -EINVAL;
1593 }
1594 return 0;
1595}
1596
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598/* ---------------------------------------------------------------------- */
1599/* video4linux interface */
1600
1601static int chip_command(struct i2c_client *client,
1602 unsigned int cmd, void *arg)
1603{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1605 struct CHIPDESC *desc = chiplist + chip->type;
1606
Mauro Carvalho Chehabf167cb42006-01-11 19:41:49 -02001607 v4l_dbg(1, debug, &chip->c, "%s: chip_command 0x%x\n", chip->c.name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 case AUDC_SET_RADIO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001611 chip->radio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 chip->watch_stereo = 0;
1613 /* del_timer(&chip->wt); */
1614 break;
1615
1616 /* --- v4l ioctls --- */
1617 /* take care: bttv does userspace copying, we'll get a
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001618 kernel pointer here... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 case VIDIOCGAUDIO:
1620 {
1621 struct video_audio *va = arg;
1622
1623 if (desc->flags & CHIP_HAS_VOLUME) {
1624 va->flags |= VIDEO_AUDIO_VOLUME;
1625 va->volume = max(chip->left,chip->right);
1626 if (va->volume)
1627 va->balance = (32768*min(chip->left,chip->right))/
1628 va->volume;
1629 else
1630 va->balance = 32768;
1631 }
1632 if (desc->flags & CHIP_HAS_BASSTREBLE) {
1633 va->flags |= VIDEO_AUDIO_BASS | VIDEO_AUDIO_TREBLE;
1634 va->bass = chip->bass;
1635 va->treble = chip->treble;
1636 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001637 if (!chip->radio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (desc->getmode)
1639 va->mode = desc->getmode(chip);
1640 else
1641 va->mode = VIDEO_SOUND_MONO;
1642 }
1643 break;
1644 }
1645
1646 case VIDIOCSAUDIO:
1647 {
1648 struct video_audio *va = arg;
1649
1650 if (desc->flags & CHIP_HAS_VOLUME) {
1651 chip->left = (min(65536 - va->balance,32768) *
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001652 va->volume) / 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 chip->right = (min(va->balance,(__u16)32768) *
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001654 va->volume) / 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1656 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1657 }
1658 if (desc->flags & CHIP_HAS_BASSTREBLE) {
1659 chip->bass = va->bass;
1660 chip->treble = va->treble;
1661 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1662 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1663 }
1664 if (desc->setmode && va->mode) {
1665 chip->watch_stereo = 0;
1666 /* del_timer(&chip->wt); */
1667 chip->mode = va->mode;
1668 desc->setmode(chip,va->mode);
1669 }
1670 break;
1671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001673 case VIDIOC_S_CTRL:
1674 return tvaudio_set_ctrl(chip, arg);
1675
Hans Verkuil2474ed42006-03-19 12:35:57 -03001676 case VIDIOC_INT_G_AUDIO_ROUTING:
1677 {
1678 struct v4l2_routing *rt = arg;
1679
1680 rt->input = chip->input;
1681 rt->output = 0;
1682 break;
1683 }
1684
1685 case VIDIOC_INT_S_AUDIO_ROUTING:
1686 {
1687 struct v4l2_routing *rt = arg;
1688
1689 if (!(desc->flags & CHIP_HAS_INPUTSEL) || rt->input >= 4)
1690 return -EINVAL;
1691 /* There are four inputs: tuner, radio, extern and intern. */
1692 chip->input = rt->input;
1693 if (chip->muted)
1694 break;
1695 chip_write_masked(chip, desc->inputreg,
1696 desc->inputmap[chip->input], desc->inputmask);
1697 break;
1698 }
1699
Hans Verkuil8a854282006-01-09 15:25:43 -02001700 case VIDIOC_S_TUNER:
1701 {
1702 struct v4l2_tuner *vt = arg;
1703 int mode = 0;
1704
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001705 if (chip->radio)
1706 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001707 switch (vt->audmode) {
1708 case V4L2_TUNER_MODE_MONO:
1709 mode = VIDEO_SOUND_MONO;
1710 break;
1711 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil301e22d2006-03-18 17:15:00 -03001712 case V4L2_TUNER_MODE_LANG1_LANG2:
Hans Verkuil8a854282006-01-09 15:25:43 -02001713 mode = VIDEO_SOUND_STEREO;
1714 break;
1715 case V4L2_TUNER_MODE_LANG1:
1716 mode = VIDEO_SOUND_LANG1;
1717 break;
1718 case V4L2_TUNER_MODE_LANG2:
1719 mode = VIDEO_SOUND_LANG2;
1720 break;
1721 default:
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001722 return -EINVAL;
Hans Verkuil8a854282006-01-09 15:25:43 -02001723 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001724 chip->audmode = vt->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001725
1726 if (desc->setmode && mode) {
1727 chip->watch_stereo = 0;
1728 /* del_timer(&chip->wt); */
1729 chip->mode = mode;
1730 desc->setmode(chip, mode);
1731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 break;
1733 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001734
1735 case VIDIOC_G_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 {
Hans Verkuil8a854282006-01-09 15:25:43 -02001737 struct v4l2_tuner *vt = arg;
1738 int mode = VIDEO_SOUND_MONO;
1739
Hans Verkuild3900bc2006-01-09 15:25:44 -02001740 if (chip->radio)
1741 break;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001742 vt->audmode = chip->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001743 vt->rxsubchans = 0;
1744 vt->capability = V4L2_TUNER_CAP_STEREO |
1745 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001746
1747 if (desc->getmode)
1748 mode = desc->getmode(chip);
1749
1750 if (mode & VIDEO_SOUND_MONO)
1751 vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
1752 if (mode & VIDEO_SOUND_STEREO)
1753 vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001754 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1755 When this module is converted fully to v4l2, then this
1756 should change for those chips that can detect SAP. */
Hans Verkuil8a854282006-01-09 15:25:43 -02001757 if (mode & VIDEO_SOUND_LANG1)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001758 vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1759 V4L2_TUNER_SUB_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001760 break;
1761 }
1762
1763 case VIDIOCSCHAN:
1764 case VIDIOC_S_STD:
1765 chip->radio = 0;
1766 break;
1767
1768 case VIDIOCSFREQ:
1769 case VIDIOC_S_FREQUENCY:
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001770 chip->mode = 0; /* automatic */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (desc->checkmode) {
1772 desc->setmode(chip,VIDEO_SOUND_MONO);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001773 if (chip->prevmode != VIDEO_SOUND_MONO)
1774 chip->prevmode = -1; /* reset previous mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 mod_timer(&chip->wt, jiffies+2*HZ);
1776 /* the thread will call checkmode() later */
1777 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001778 break;
Hans Verkuil74cab312007-04-27 12:31:26 -03001779
1780 case VIDIOC_G_CHIP_IDENT:
1781 return v4l2_chip_ident_i2c_client(client, arg, V4L2_IDENT_TVAUDIO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
1783 return 0;
1784}
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786static struct i2c_driver driver = {
Laurent Riffard604f28e2005-11-26 20:43:39 +01001787 .driver = {
Mauro Carvalho Chehabcab462f2006-01-09 15:53:26 -02001788 .name = "tvaudio",
Laurent Riffard604f28e2005-11-26 20:43:39 +01001789 },
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001790 .id = I2C_DRIVERID_TVAUDIO,
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001791 .attach_adapter = chip_probe,
1792 .detach_client = chip_detach,
1793 .command = chip_command,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794};
1795
1796static struct i2c_client client_template =
1797{
Jean Delvarefae91e72005-08-15 19:57:04 +02001798 .name = "(unset)",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001799 .driver = &driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800};
1801
1802static int __init audiochip_init_module(void)
1803{
1804 struct CHIPDESC *desc;
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001805
1806 if (debug) {
1807 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1808 printk(KERN_INFO "tvaudio: known chips: ");
1809 for (desc = chiplist; desc->name != NULL; desc++)
1810 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1811 printk("\n");
1812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 return i2c_add_driver(&driver);
1815}
1816
1817static void __exit audiochip_cleanup_module(void)
1818{
1819 i2c_del_driver(&driver);
1820}
1821
1822module_init(audiochip_init_module);
1823module_exit(audiochip_cleanup_module);
1824
1825/*
1826 * Local variables:
1827 * c-basic-offset: 8
1828 * End:
1829 */