blob: 1387c54b7f02478a384b53f347f4269d8e0819d7 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/sched.h>
20#include <linux/string.h>
21#include <linux/timer.h>
22#include <linux/delay.h>
23#include <linux/errno.h>
24#include <linux/slab.h>
25#include <linux/videodev.h>
26#include <linux/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
Cedric Le Goaterbc282872006-09-11 16:31:45 -030028#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080029#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -030031#include <media/tvaudio.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020032#include <media/v4l2-common.h>
Hans Verkuil74cab312007-04-27 12:31:26 -030033#include <media/v4l2-chip-ident.h>
Hans Verkuil08e14052007-09-14 04:50:44 -030034#include <media/v4l2-i2c-drv-legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Mauro Carvalho Chehab7c9b5042006-03-18 08:08:14 -030036#include <media/i2c-addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* ---------------------------------------------------------------------- */
39/* insmod args */
40
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030041static int debug; /* insmod parameter */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042module_param(debug, int, 0644);
43
44MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
45MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
46MODULE_LICENSE("GPL");
47
48#define UNSET (-1U)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* ---------------------------------------------------------------------- */
51/* our structs */
52
53#define MAXREGS 64
54
55struct CHIPSTATE;
56typedef int (*getvalue)(int);
57typedef int (*checkit)(struct CHIPSTATE*);
58typedef int (*initialize)(struct CHIPSTATE*);
59typedef int (*getmode)(struct CHIPSTATE*);
60typedef void (*setmode)(struct CHIPSTATE*, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* i2c command */
63typedef struct AUDIOCMD {
64 int count; /* # of bytes to send */
65 unsigned char bytes[MAXREGS+1]; /* addr, data, data, ... */
66} audiocmd;
67
68/* chip description */
69struct CHIPDESC {
70 char *name; /* chip name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 int addr_lo, addr_hi; /* i2c address range */
72 int registers; /* # of registers */
73
74 int *insmodopt;
75 checkit checkit;
76 initialize initialize;
77 int flags;
78#define CHIP_HAS_VOLUME 1
79#define CHIP_HAS_BASSTREBLE 2
80#define CHIP_HAS_INPUTSEL 4
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -030081#define CHIP_NEED_CHECKMODE 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 /* input switch register + values for v4l inputs */
100 int inputreg;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300101 int inputmap[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int inputmute;
103 int inputmask;
104};
105static struct CHIPDESC chiplist[];
106
107/* current state of the chip */
108struct CHIPSTATE {
Hans Verkuil08e14052007-09-14 04:50:44 -0300109 struct i2c_client *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /* index into CHIPDESC array */
112 int type;
113
114 /* shadow register set */
115 audiocmd shadow;
116
117 /* current settings */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300118 __u16 left,right,treble,bass,muted,mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 int prevmode;
Hans Verkuil8a854282006-01-09 15:25:43 -0200120 int radio;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300121 int input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 /* thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300124 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct timer_list wt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 int watch_stereo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200127 int audmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* ---------------------------------------------------------------------- */
131/* i2c addresses */
132
133static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -0300134 I2C_ADDR_TDA8425 >> 1,
135 I2C_ADDR_TEA6300 >> 1,
136 I2C_ADDR_TEA6420 >> 1,
137 I2C_ADDR_TDA9840 >> 1,
138 I2C_ADDR_TDA985x_L >> 1,
139 I2C_ADDR_TDA985x_H >> 1,
140 I2C_ADDR_TDA9874 >> 1,
141 I2C_ADDR_PIC16C54 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143I2C_CLIENT_INSMOD;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* ---------------------------------------------------------------------- */
146/* i2c I/O functions */
147
148static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
149{
150 unsigned char buffer[2];
151
152 if (-1 == subaddr) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300153 v4l_dbg(1, debug, chip->c, "%s: chip_write: 0x%x\n",
154 chip->c->name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 chip->shadow.bytes[1] = val;
156 buffer[0] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300157 if (1 != i2c_master_send(chip->c,buffer,1)) {
158 v4l_warn(chip->c, "%s: I/O error (write 0x%x)\n",
159 chip->c->name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -1;
161 }
162 } else {
Hans Verkuil08e14052007-09-14 04:50:44 -0300163 v4l_dbg(1, debug, chip->c, "%s: chip_write: reg%d=0x%x\n",
164 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 chip->shadow.bytes[subaddr+1] = val;
166 buffer[0] = subaddr;
167 buffer[1] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300168 if (2 != i2c_master_send(chip->c,buffer,2)) {
169 v4l_warn(chip->c, "%s: I/O error (write reg%d=0x%x)\n",
170 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -1;
172 }
173 }
174 return 0;
175}
176
177static int chip_write_masked(struct CHIPSTATE *chip, int subaddr, int val, int mask)
178{
179 if (mask != 0) {
180 if (-1 == subaddr) {
181 val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
182 } else {
183 val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
184 }
185 }
186 return chip_write(chip, subaddr, val);
187}
188
189static int chip_read(struct CHIPSTATE *chip)
190{
191 unsigned char buffer;
192
Hans Verkuil08e14052007-09-14 04:50:44 -0300193 if (1 != i2c_master_recv(chip->c,&buffer,1)) {
194 v4l_warn(chip->c, "%s: I/O error (read)\n",
195 chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -1;
197 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300198 v4l_dbg(1, debug, chip->c, "%s: chip_read: 0x%x\n",chip->c->name, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return buffer;
200}
201
202static int chip_read2(struct CHIPSTATE *chip, int subaddr)
203{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700204 unsigned char write[1];
205 unsigned char read[1];
206 struct i2c_msg msgs[2] = {
Hans Verkuil08e14052007-09-14 04:50:44 -0300207 { chip->c->addr, 0, 1, write },
208 { chip->c->addr, I2C_M_RD, 1, read }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700209 };
210 write[0] = subaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Hans Verkuil08e14052007-09-14 04:50:44 -0300212 if (2 != i2c_transfer(chip->c->adapter,msgs,2)) {
213 v4l_warn(chip->c, "%s: I/O error (read2)\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return -1;
215 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300216 v4l_dbg(1, debug, chip->c, "%s: chip_read2: reg%d=0x%x\n",
217 chip->c->name, subaddr,read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return read[0];
219}
220
221static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
222{
223 int i;
224
225 if (0 == cmd->count)
226 return 0;
227
228 /* update our shadow register set; print bytes if (debug > 0) */
Hans Verkuil08e14052007-09-14 04:50:44 -0300229 v4l_dbg(1, debug, chip->c, "%s: chip_cmd(%s): reg=%d, data:",
230 chip->c->name, name,cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700232 if (debug)
233 printk(" 0x%x",cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
235 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700236 if (debug)
237 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* send data to the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -0300240 if (cmd->count != i2c_master_send(chip->c,cmd->bytes,cmd->count)) {
241 v4l_warn(chip->c, "%s: I/O error (%s)\n", chip->c->name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return -1;
243 }
244 return 0;
245}
246
247/* ---------------------------------------------------------------------- */
248/* kernel thread for doing i2c stuff asyncronly
249 * right now it is used only to check the audio mode (mono/stereo/whatever)
250 * some time after switching to another TV channel, then turn on stereo
251 * if available, ...
252 */
253
254static void chip_thread_wake(unsigned long data)
255{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700256 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300257 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260static int chip_thread(void *data)
261{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700262 struct CHIPSTATE *chip = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 struct CHIPDESC *desc = chiplist + chip->type;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300264 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Hans Verkuil08e14052007-09-14 04:50:44 -0300266 v4l_dbg(1, debug, chip->c, "%s: thread started\n", chip->c->name);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700267 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300269 set_current_state(TASK_INTERRUPTIBLE);
270 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300272 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700273 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300274 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 break;
Hans Verkuil08e14052007-09-14 04:50:44 -0300276 v4l_dbg(1, debug, chip->c, "%s: thread wakeup\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 /* don't do anything for radio or if mode != auto */
Hans Verkuil8a854282006-01-09 15:25:43 -0200279 if (chip->radio || chip->mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 continue;
281
282 /* have a look what's going on */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300283 mode = desc->getmode(chip);
284 if (mode == chip->prevmode)
285 continue;
286
287 /* chip detected a new audio mode - set it */
288 v4l_dbg(1, debug, chip->c, "%s: thread checkmode\n",
289 chip->c->name);
290
291 chip->prevmode = mode;
292
293 if (mode & V4L2_TUNER_MODE_STEREO)
294 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
295 if (mode & V4L2_TUNER_MODE_LANG1_LANG2)
296 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
297 else if (mode & V4L2_TUNER_MODE_LANG1)
298 desc->setmode(chip, V4L2_TUNER_MODE_LANG1);
299 else if (mode & V4L2_TUNER_MODE_LANG2)
300 desc->setmode(chip, V4L2_TUNER_MODE_LANG2);
301 else
302 desc->setmode(chip, V4L2_TUNER_MODE_MONO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* schedule next check */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -0300305 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
Hans Verkuil08e14052007-09-14 04:50:44 -0300308 v4l_dbg(1, debug, chip->c, "%s: thread exiting\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return 0;
310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/* ---------------------------------------------------------------------- */
313/* audio chip descriptions - defines+functions for tda9840 */
314
315#define TDA9840_SW 0x00
316#define TDA9840_LVADJ 0x02
317#define TDA9840_STADJ 0x03
318#define TDA9840_TEST 0x04
319
320#define TDA9840_MONO 0x10
321#define TDA9840_STEREO 0x2a
322#define TDA9840_DUALA 0x12
323#define TDA9840_DUALB 0x1e
324#define TDA9840_DUALAB 0x1a
325#define TDA9840_DUALBA 0x16
326#define TDA9840_EXTERNAL 0x7a
327
328#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
329#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
330#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
331
332#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
333#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
334
335static int tda9840_getmode(struct CHIPSTATE *chip)
336{
337 int val, mode;
338
339 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300340 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (val & TDA9840_DS_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300342 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (val & TDA9840_ST_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300344 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Hans Verkuil08e14052007-09-14 04:50:44 -0300346 v4l_dbg(1, debug, chip->c, "tda9840_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700347 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return mode;
349}
350
351static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
352{
353 int update = 1;
354 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
355
356 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300357 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 t |= TDA9840_MONO;
359 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300360 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 t |= TDA9840_STEREO;
362 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300363 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 t |= TDA9840_DUALA;
365 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300366 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 t |= TDA9840_DUALB;
368 break;
369 default:
370 update = 0;
371 }
372
373 if (update)
374 chip_write(chip, TDA9840_SW, t);
375}
376
Hans Verkuil94f9e562006-01-23 09:47:40 -0200377static int tda9840_checkit(struct CHIPSTATE *chip)
378{
379 int rc;
380 rc = chip_read(chip);
381 /* lower 5 bits should be 0 */
382 return ((rc & 0x1f) == 0) ? 1 : 0;
383}
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385/* ---------------------------------------------------------------------- */
386/* audio chip descriptions - defines+functions for tda985x */
387
388/* subaddresses for TDA9855 */
389#define TDA9855_VR 0x00 /* Volume, right */
390#define TDA9855_VL 0x01 /* Volume, left */
391#define TDA9855_BA 0x02 /* Bass */
392#define TDA9855_TR 0x03 /* Treble */
393#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
394
395/* subaddresses for TDA9850 */
396#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
397
398/* subaddesses for both chips */
399#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
400#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
401#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
402#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
403#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
404#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
405
406/* Masks for bits in TDA9855 subaddresses */
407/* 0x00 - VR in TDA9855 */
408/* 0x01 - VL in TDA9855 */
409/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
410 * in 1dB steps - mute is 0x27 */
411
412
413/* 0x02 - BA in TDA9855 */
414/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
415 * in .5dB steps - 0 is 0x0E */
416
417
418/* 0x03 - TR in TDA9855 */
419/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
420 * in 3dB steps - 0 is 0x7 */
421
422/* Masks for bits in both chips' subaddresses */
423/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
424/* Unique to TDA9855: */
425/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
426 * in 3dB steps - mute is 0x0 */
427
428/* Unique to TDA9850: */
429/* lower 4 bits control stereo noise threshold, over which stereo turns off
430 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
431
432
433/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
434/* Unique to TDA9855: */
435#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
436#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
437#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
438#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
439 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800440 * of line in and line out, only the
441 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
443#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
444
445/* Unique to TDA9850: */
446/* lower 4 bits contol SAP noise threshold, over which SAP turns off
447 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
448
449
450/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
451/* Common to TDA9855 and TDA9850: */
452#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
453#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
454#define TDA985x_MONO 0 /* Forces Mono output */
455#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
456
457/* Unique to TDA9855: */
458#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
459#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
460#define TDA9855_LINEAR 0 /* Linear Stereo */
461#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
462#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
463#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
464#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
465
466/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
467/* Common to both TDA9855 and TDA9850: */
468/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
469 * in .5dB steps - 0dB is 0x7 */
470
471/* 0x08, 0x09 - A1 and A2 (read/write) */
472/* Common to both TDA9855 and TDA9850: */
473/* lower 5 bites are wideband and spectral expander alignment
474 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
475#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
476#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
477#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
478
479/* 0x0a - A3 */
480/* Common to both TDA9855 and TDA9850: */
481/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
482 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
483#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
484
485static int tda9855_volume(int val) { return val/0x2e8+0x27; }
486static int tda9855_bass(int val) { return val/0xccc+0x06; }
487static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
488
489static int tda985x_getmode(struct CHIPSTATE *chip)
490{
491 int mode;
492
493 mode = ((TDA985x_STP | TDA985x_SAPP) &
494 chip_read(chip)) >> 4;
495 /* Add mono mode regardless of SAP and stereo */
496 /* Allows forced mono */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300497 return mode | V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
501{
502 int update = 1;
503 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
504
505 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300506 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 c6 |= TDA985x_MONO;
508 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300509 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 c6 |= TDA985x_STEREO;
511 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300512 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 c6 |= TDA985x_SAP;
514 break;
515 default:
516 update = 0;
517 }
518 if (update)
519 chip_write(chip,TDA985x_C6,c6);
520}
521
522
523/* ---------------------------------------------------------------------- */
524/* audio chip descriptions - defines+functions for tda9873h */
525
526/* Subaddresses for TDA9873H */
527
528#define TDA9873_SW 0x00 /* Switching */
529#define TDA9873_AD 0x01 /* Adjust */
530#define TDA9873_PT 0x02 /* Port */
531
532/* Subaddress 0x00: Switching Data
533 * B7..B0:
534 *
535 * B1, B0: Input source selection
536 * 0, 0 internal
537 * 1, 0 external stereo
538 * 0, 1 external mono
539 */
540#define TDA9873_INP_MASK 3
541#define TDA9873_INTERNAL 0
542#define TDA9873_EXT_STEREO 2
543#define TDA9873_EXT_MONO 1
544
545/* B3, B2: output signal select
546 * B4 : transmission mode
547 * 0, 0, 1 Mono
548 * 1, 0, 0 Stereo
549 * 1, 1, 1 Stereo (reversed channel)
550 * 0, 0, 0 Dual AB
551 * 0, 0, 1 Dual AA
552 * 0, 1, 0 Dual BB
553 * 0, 1, 1 Dual BA
554 */
555
556#define TDA9873_TR_MASK (7 << 2)
557#define TDA9873_TR_MONO 4
558#define TDA9873_TR_STEREO 1 << 4
559#define TDA9873_TR_REVERSE (1 << 3) & (1 << 2)
560#define TDA9873_TR_DUALA 1 << 2
561#define TDA9873_TR_DUALB 1 << 3
562
563/* output level controls
564 * B5: output level switch (0 = reduced gain, 1 = normal gain)
565 * B6: mute (1 = muted)
566 * B7: auto-mute (1 = auto-mute enabled)
567 */
568
569#define TDA9873_GAIN_NORMAL 1 << 5
570#define TDA9873_MUTE 1 << 6
571#define TDA9873_AUTOMUTE 1 << 7
572
573/* Subaddress 0x01: Adjust/standard */
574
575/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
576 * Recommended value is +0 dB
577 */
578
579#define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
580
581/* Bits C6..C4 control FM stantard
582 * C6, C5, C4
583 * 0, 0, 0 B/G (PAL FM)
584 * 0, 0, 1 M
585 * 0, 1, 0 D/K(1)
586 * 0, 1, 1 D/K(2)
587 * 1, 0, 0 D/K(3)
588 * 1, 0, 1 I
589 */
590#define TDA9873_BG 0
591#define TDA9873_M 1
592#define TDA9873_DK1 2
593#define TDA9873_DK2 3
594#define TDA9873_DK3 4
595#define TDA9873_I 5
596
597/* C7 controls identification response time (1=fast/0=normal)
598 */
599#define TDA9873_IDR_NORM 0
600#define TDA9873_IDR_FAST 1 << 7
601
602
603/* Subaddress 0x02: Port data */
604
605/* E1, E0 free programmable ports P1/P2
606 0, 0 both ports low
607 0, 1 P1 high
608 1, 0 P2 high
609 1, 1 both ports high
610*/
611
612#define TDA9873_PORTS 3
613
614/* E2: test port */
615#define TDA9873_TST_PORT 1 << 2
616
617/* E5..E3 control mono output channel (together with transmission mode bit B4)
618 *
619 * E5 E4 E3 B4 OUTM
620 * 0 0 0 0 mono
621 * 0 0 1 0 DUAL B
622 * 0 1 0 1 mono (from stereo decoder)
623 */
624#define TDA9873_MOUT_MONO 0
625#define TDA9873_MOUT_FMONO 0
626#define TDA9873_MOUT_DUALA 0
627#define TDA9873_MOUT_DUALB 1 << 3
628#define TDA9873_MOUT_ST 1 << 4
629#define TDA9873_MOUT_EXTM (1 << 4 ) & (1 << 3)
630#define TDA9873_MOUT_EXTL 1 << 5
631#define TDA9873_MOUT_EXTR (1 << 5 ) & (1 << 3)
632#define TDA9873_MOUT_EXTLR (1 << 5 ) & (1 << 4)
633#define TDA9873_MOUT_MUTE (1 << 5 ) & (1 << 4) & (1 << 3)
634
635/* Status bits: (chip read) */
636#define TDA9873_PONR 0 /* Power-on reset detected if = 1 */
637#define TDA9873_STEREO 2 /* Stereo sound is identified */
638#define TDA9873_DUAL 4 /* Dual sound is identified */
639
640static int tda9873_getmode(struct CHIPSTATE *chip)
641{
642 int val,mode;
643
644 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300645 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (val & TDA9873_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300647 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (val & TDA9873_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300649 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Hans Verkuil08e14052007-09-14 04:50:44 -0300650 v4l_dbg(1, debug, chip->c, "tda9873_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700651 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return mode;
653}
654
655static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
656{
657 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
658 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
659
660 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300661 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return;
663 }
664
Hans Verkuil08e14052007-09-14 04:50:44 -0300665 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
666 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): sw_data = %d\n", sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300669 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 sw_data |= TDA9873_TR_MONO;
671 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300672 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 sw_data |= TDA9873_TR_STEREO;
674 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300675 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 sw_data |= TDA9873_TR_DUALA;
677 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300678 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 sw_data |= TDA9873_TR_DUALB;
680 break;
681 default:
682 chip->mode = 0;
683 return;
684 }
685
686 chip_write(chip, TDA9873_SW, sw_data);
Hans Verkuil08e14052007-09-14 04:50:44 -0300687 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 mode, sw_data);
689}
690
691static int tda9873_checkit(struct CHIPSTATE *chip)
692{
693 int rc;
694
695 if (-1 == (rc = chip_read2(chip,254)))
696 return 0;
697 return (rc & ~0x1f) == 0x80;
698}
699
700
701/* ---------------------------------------------------------------------- */
702/* audio chip description - defines+functions for tda9874h and tda9874a */
703/* Dariusz Kowalewski <darekk@automex.pl> */
704
705/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
706#define TDA9874A_AGCGR 0x00 /* AGC gain */
707#define TDA9874A_GCONR 0x01 /* general config */
708#define TDA9874A_MSR 0x02 /* monitor select */
709#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
710#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
711#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
712#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
713#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
714#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
715#define TDA9874A_DCR 0x09 /* demodulator config */
716#define TDA9874A_FMER 0x0a /* FM de-emphasis */
717#define TDA9874A_FMMR 0x0b /* FM dematrix */
718#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
719#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
720#define TDA9874A_NCONR 0x0e /* NICAM config */
721#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
722#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
723#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
724#define TDA9874A_AMCONR 0x12 /* audio mute control */
725#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
726#define TDA9874A_AOSR 0x14 /* analog output select */
727#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
728#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
729#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
730#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
731#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
732
733/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
734#define TDA9874A_DSR 0x00 /* device status */
735#define TDA9874A_NSR 0x01 /* NICAM status */
736#define TDA9874A_NECR 0x02 /* NICAM error count */
737#define TDA9874A_DR1 0x03 /* add. data LSB */
738#define TDA9874A_DR2 0x04 /* add. data MSB */
739#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
740#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
741#define TDA9874A_SIFLR 0x07 /* SIF level */
742#define TDA9874A_TR2 252 /* test reg. 2 */
743#define TDA9874A_TR1 253 /* test reg. 1 */
744#define TDA9874A_DIC 254 /* device id. code */
745#define TDA9874A_SIC 255 /* software id. code */
746
747
748static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
749static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
750static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
751static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
752static int tda9874a_dic = -1; /* device id. code */
753
754/* insmod options for tda9874a */
755static unsigned int tda9874a_SIF = UNSET;
756static unsigned int tda9874a_AMSEL = UNSET;
757static unsigned int tda9874a_STD = UNSET;
758module_param(tda9874a_SIF, int, 0444);
759module_param(tda9874a_AMSEL, int, 0444);
760module_param(tda9874a_STD, int, 0444);
761
762/*
763 * initialization table for tda9874 decoder:
764 * - carrier 1 freq. registers (3 bytes)
765 * - carrier 2 freq. registers (3 bytes)
766 * - demudulator config register
767 * - FM de-emphasis register (slow identification mode)
768 * Note: frequency registers must be written in single i2c transfer.
769 */
770static struct tda9874a_MODES {
771 char *name;
772 audiocmd cmd;
773} tda9874a_modelist[9] = {
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300774 { "A2, B/G", /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
776 { "A2, M (Korea)",
777 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
778 { "A2, D/K (1)",
779 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
780 { "A2, D/K (2)",
781 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
782 { "A2, D/K (3)",
783 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
784 { "NICAM, I",
785 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
786 { "NICAM, B/G",
787 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300788 { "NICAM, D/K",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
790 { "NICAM, L",
791 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
792};
793
794static int tda9874a_setup(struct CHIPSTATE *chip)
795{
796 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
797 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
798 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
799 if(tda9874a_dic == 0x11) {
800 chip_write(chip, TDA9874A_FMMR, 0x80);
801 } else { /* dic == 0x07 */
802 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
803 chip_write(chip, TDA9874A_FMMR, 0x00);
804 }
805 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
806 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
807 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
808 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
809 /* Note: If signal quality is poor you may want to change NICAM */
810 /* error limit registers (NLELR and NUELR) to some greater values. */
811 /* Then the sound would remain stereo, but won't be so clear. */
812 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
813 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
814
815 if(tda9874a_dic == 0x11) {
816 chip_write(chip, TDA9874A_AMCONR, 0xf9);
817 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
818 chip_write(chip, TDA9874A_AOSR, 0x80);
819 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
820 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
821 } else { /* dic == 0x07 */
822 chip_write(chip, TDA9874A_AMCONR, 0xfb);
823 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700824 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300826 v4l_dbg(1, debug, chip->c, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
828 return 1;
829}
830
831static int tda9874a_getmode(struct CHIPSTATE *chip)
832{
833 int dsr,nsr,mode;
834 int necr; /* just for debugging */
835
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300836 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
839 return mode;
840 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
841 return mode;
842 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
843 return mode;
844
845 /* need to store dsr/nsr somewhere */
846 chip->shadow.bytes[MAXREGS-2] = dsr;
847 chip->shadow.bytes[MAXREGS-1] = nsr;
848
849 if(tda9874a_mode) {
850 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
851 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
852 * that sound has (temporarily) switched from NICAM to
853 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
854 * error count. So in fact there is no stereo in this case :-(
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300855 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 * external 4052 multiplexer in audio_hook().
857 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if(nsr & 0x02) /* NSR.S/MB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300859 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if(nsr & 0x01) /* NSR.D/SB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300861 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 } else {
863 if(dsr & 0x02) /* DSR.IDSTE=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300864 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if(dsr & 0x04) /* DSR.IDDUA=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300866 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
Hans Verkuil08e14052007-09-14 04:50:44 -0300869 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 -0700870 dsr, nsr, necr, mode);
871 return mode;
872}
873
874static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
875{
876 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
877 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
878 if(tda9874a_mode) {
879 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
880 tda9874a_NCONR &= 0xfe; /* enable */
881 else
882 tda9874a_NCONR |= 0x01; /* disable */
883 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
884 }
885
886 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
887 * and has auto-select function for audio output (AOSR register).
888 * Old TDA9874H doesn't support these features.
889 * TDA9874A also has additional mono output pin (OUTM), which
890 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
891 */
892 if(tda9874a_dic == 0x11) {
893 int aosr = 0x80;
894 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
895
896 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300897 case V4L2_TUNER_MODE_MONO:
898 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300900 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 aosr = 0x80; /* auto-select, dual A/A */
902 mdacosr = (tda9874a_mode) ? 0x82:0x80;
903 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300904 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 aosr = 0xa0; /* auto-select, dual B/B */
906 mdacosr = (tda9874a_mode) ? 0x83:0x81;
907 break;
908 default:
909 chip->mode = 0;
910 return;
911 }
912 chip_write(chip, TDA9874A_AOSR, aosr);
913 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
914
Hans Verkuil08e14052007-09-14 04:50:44 -0300915 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 -0700916 mode, aosr, mdacosr);
917
918 } else { /* dic == 0x07 */
919 int fmmr,aosr;
920
921 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300922 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 fmmr = 0x00; /* mono */
924 aosr = 0x10; /* A/A */
925 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300926 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if(tda9874a_mode) {
928 fmmr = 0x00;
929 aosr = 0x00; /* handled by NICAM auto-mute */
930 } else {
931 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
932 aosr = 0x00;
933 }
934 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300935 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 fmmr = 0x02; /* dual */
937 aosr = 0x10; /* dual A/A */
938 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300939 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 fmmr = 0x02; /* dual */
941 aosr = 0x20; /* dual B/B */
942 break;
943 default:
944 chip->mode = 0;
945 return;
946 }
947 chip_write(chip, TDA9874A_FMMR, fmmr);
948 chip_write(chip, TDA9874A_AOSR, aosr);
949
Hans Verkuil08e14052007-09-14 04:50:44 -0300950 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 -0700951 mode, fmmr, aosr);
952 }
953}
954
955static int tda9874a_checkit(struct CHIPSTATE *chip)
956{
957 int dic,sic; /* device id. and software id. codes */
958
959 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
960 return 0;
961 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
962 return 0;
963
Hans Verkuil08e14052007-09-14 04:50:44 -0300964 v4l_dbg(1, debug, chip->c, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300967 v4l_info(chip->c, "found tda9874%s.\n", (dic == 0x11) ? "a":"h");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 tda9874a_dic = dic; /* remember device id. */
969 return 1;
970 }
971 return 0; /* not found */
972}
973
974static int tda9874a_initialize(struct CHIPSTATE *chip)
975{
976 if (tda9874a_SIF > 2)
977 tda9874a_SIF = 1;
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300978 if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 tda9874a_STD = 0;
980 if(tda9874a_AMSEL > 1)
981 tda9874a_AMSEL = 0;
982
983 if(tda9874a_SIF == 1)
984 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
985 else
986 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
987
988 tda9874a_ESP = tda9874a_STD;
989 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
990
991 if(tda9874a_AMSEL == 0)
992 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
993 else
994 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
995
996 tda9874a_setup(chip);
997 return 0;
998}
999
1000
1001/* ---------------------------------------------------------------------- */
1002/* audio chip descriptions - defines+functions for tea6420 */
1003
1004#define TEA6300_VL 0x00 /* volume left */
1005#define TEA6300_VR 0x01 /* volume right */
1006#define TEA6300_BA 0x02 /* bass */
1007#define TEA6300_TR 0x03 /* treble */
1008#define TEA6300_FA 0x04 /* fader control */
1009#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001010 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011#define TEA6300_S_SA 0x01 /* stereo A input */
1012#define TEA6300_S_SB 0x02 /* stereo B */
1013#define TEA6300_S_SC 0x04 /* stereo C */
1014#define TEA6300_S_GMU 0x80 /* general mute */
1015
1016#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1017#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1018#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1019#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1020#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1021#define TEA6320_BA 0x05 /* bass (0-4) */
1022#define TEA6320_TR 0x06 /* treble (0-4) */
1023#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001024 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025#define TEA6320_S_SA 0x07 /* stereo A input */
1026#define TEA6320_S_SB 0x06 /* stereo B */
1027#define TEA6320_S_SC 0x05 /* stereo C */
1028#define TEA6320_S_SD 0x04 /* stereo D */
1029#define TEA6320_S_GMU 0x80 /* general mute */
1030
1031#define TEA6420_S_SA 0x00 /* stereo A input */
1032#define TEA6420_S_SB 0x01 /* stereo B */
1033#define TEA6420_S_SC 0x02 /* stereo C */
1034#define TEA6420_S_SD 0x03 /* stereo D */
1035#define TEA6420_S_SE 0x04 /* stereo E */
1036#define TEA6420_S_GMU 0x05 /* general mute */
1037
1038static int tea6300_shift10(int val) { return val >> 10; }
1039static int tea6300_shift12(int val) { return val >> 12; }
1040
1041/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1042/* 0x0c mirror those immediately higher) */
1043static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1044static int tea6320_shift11(int val) { return val >> 11; }
1045static int tea6320_initialize(struct CHIPSTATE * chip)
1046{
1047 chip_write(chip, TEA6320_FFR, 0x3f);
1048 chip_write(chip, TEA6320_FFL, 0x3f);
1049 chip_write(chip, TEA6320_FRR, 0x3f);
1050 chip_write(chip, TEA6320_FRL, 0x3f);
1051
1052 return 0;
1053}
1054
1055
1056/* ---------------------------------------------------------------------- */
1057/* audio chip descriptions - defines+functions for tda8425 */
1058
1059#define TDA8425_VL 0x00 /* volume left */
1060#define TDA8425_VR 0x01 /* volume right */
1061#define TDA8425_BA 0x02 /* bass */
1062#define TDA8425_TR 0x03 /* treble */
1063#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001064 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1066#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1067#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1068#define TDA8425_S1_MU 0x20 /* mute bit */
1069#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1070#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1071#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1072#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1073#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1074#define TDA8425_S1_ML 0x06 /* language selector */
1075#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1076#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1077#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1078#define TDA8425_S1_IS 0x01 /* channel selector */
1079
1080
1081static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1082static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1083
1084static int tda8425_initialize(struct CHIPSTATE *chip)
1085{
1086 struct CHIPDESC *desc = chiplist + chip->type;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001087 int inputmap[4] = { /* tuner */ TDA8425_S1_CH2, /* radio */ TDA8425_S1_CH1,
1088 /* extern */ TDA8425_S1_CH1, /* intern */ TDA8425_S1_OFF};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Hans Verkuil08e14052007-09-14 04:50:44 -03001090 if (chip->c->adapter->id == I2C_HW_B_RIVA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 memcpy (desc->inputmap, inputmap, sizeof (inputmap));
1092 }
1093 return 0;
1094}
1095
1096static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1097{
1098 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1099
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001100 if (mode & V4L2_TUNER_MODE_LANG1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 s1 |= TDA8425_S1_ML_SOUND_A;
1102 s1 |= TDA8425_S1_STEREO_PSEUDO;
1103
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001104 } else if (mode & V4L2_TUNER_MODE_LANG2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 s1 |= TDA8425_S1_ML_SOUND_B;
1106 s1 |= TDA8425_S1_STEREO_PSEUDO;
1107
1108 } else {
1109 s1 |= TDA8425_S1_ML_STEREO;
1110
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001111 if (mode & V4L2_TUNER_MODE_MONO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 s1 |= TDA8425_S1_STEREO_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001113 if (mode & V4L2_TUNER_MODE_STEREO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 s1 |= TDA8425_S1_STEREO_SPATIAL;
1115 }
1116 chip_write(chip,TDA8425_S1,s1);
1117}
1118
1119
1120/* ---------------------------------------------------------------------- */
1121/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1122
1123/* the registers of 16C54, I2C sub address. */
1124#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1125#define PIC16C54_REG_MISC 0x02
1126
1127/* bit definition of the RESET register, I2C data. */
1128#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001129 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1131#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1132#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1133#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1134#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1135#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1136#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1137
1138/* ---------------------------------------------------------------------- */
1139/* audio chip descriptions - defines+functions for TA8874Z */
1140
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001141/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142#define TA8874Z_LED_STE 0x80
1143#define TA8874Z_LED_BIL 0x40
1144#define TA8874Z_LED_EXT 0x20
1145#define TA8874Z_MONO_SET 0x10
1146#define TA8874Z_MUTE 0x08
1147#define TA8874Z_F_MONO 0x04
1148#define TA8874Z_MODE_SUB 0x02
1149#define TA8874Z_MODE_MAIN 0x01
1150
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001151/* write 2nd byte */
1152/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153#define TA8874Z_SEPARATION 0x3f
1154#define TA8874Z_SEPARATION_DEFAULT 0x10
1155
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001156/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157#define TA8874Z_B1 0x80
1158#define TA8874Z_B0 0x40
1159#define TA8874Z_CHAG_FLAG 0x20
1160
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001161/*
1162 * B1 B0
1163 * mono L H
1164 * stereo L L
1165 * BIL H L
1166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167static int ta8874z_getmode(struct CHIPSTATE *chip)
1168{
1169 int val, mode;
1170
1171 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001172 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (val & TA8874Z_B1){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001174 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }else if (!(val & TA8874Z_B0)){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001176 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001178 /* 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 -07001179 return mode;
1180}
1181
1182static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1183static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1184static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1185static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1186
1187static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1188{
1189 int update = 1;
1190 audiocmd *t = NULL;
Hans Verkuil08e14052007-09-14 04:50:44 -03001191 v4l_dbg(1, debug, chip->c, "ta8874z_setmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 switch(mode){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001194 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 t = &ta8874z_mono;
1196 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001197 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 t = &ta8874z_stereo;
1199 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001200 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 t = &ta8874z_main;
1202 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001203 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 t = &ta8874z_sub;
1205 break;
1206 default:
1207 update = 0;
1208 }
1209
1210 if(update)
1211 chip_cmd(chip, "TA8874Z", t);
1212}
1213
1214static int ta8874z_checkit(struct CHIPSTATE *chip)
1215{
1216 int rc;
1217 rc = chip_read(chip);
1218 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1219}
1220
1221/* ---------------------------------------------------------------------- */
1222/* audio chip descriptions - struct CHIPDESC */
1223
1224/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001225static int tda8425 = 1;
1226static int tda9840 = 1;
1227static int tda9850 = 1;
1228static int tda9855 = 1;
1229static int tda9873 = 1;
1230static int tda9874a = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001231static int tea6300; /* default 0 - address clash with msp34xx */
1232static int tea6320; /* default 0 - address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001233static int tea6420 = 1;
1234static int pic16c54 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001235static int ta8874z; /* default 0 - address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237module_param(tda8425, int, 0444);
1238module_param(tda9840, int, 0444);
1239module_param(tda9850, int, 0444);
1240module_param(tda9855, int, 0444);
1241module_param(tda9873, int, 0444);
1242module_param(tda9874a, int, 0444);
1243module_param(tea6300, int, 0444);
1244module_param(tea6320, int, 0444);
1245module_param(tea6420, int, 0444);
1246module_param(pic16c54, int, 0444);
1247module_param(ta8874z, int, 0444);
1248
1249static struct CHIPDESC chiplist[] = {
1250 {
1251 .name = "tda9840",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001253 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1254 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 .registers = 5,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001256 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001258 /* callbacks */
Hans Verkuil94f9e562006-01-23 09:47:40 -02001259 .checkit = tda9840_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 .getmode = tda9840_getmode,
1261 .setmode = tda9840_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001263 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 /* ,TDA9840_SW, TDA9840_MONO */} }
1265 },
1266 {
1267 .name = "tda9873h",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001269 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1270 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 .registers = 3,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001272 .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001274 /* callbacks */
1275 .checkit = tda9873_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 .getmode = tda9873_getmode,
1277 .setmode = tda9873_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1280 .inputreg = TDA9873_SW,
1281 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001282 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1284
1285 },
1286 {
1287 .name = "tda9874h/a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001289 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1290 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001291 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001293 /* callbacks */
1294 .initialize = tda9874a_initialize,
1295 .checkit = tda9874a_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .getmode = tda9874a_getmode,
1297 .setmode = tda9874a_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 },
1299 {
1300 .name = "tda9850",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001302 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1303 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 .registers = 11,
1305
1306 .getmode = tda985x_getmode,
1307 .setmode = tda985x_setmode,
1308
1309 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1310 },
1311 {
1312 .name = "tda9855",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001314 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1315 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 .registers = 11,
1317 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1318
1319 .leftreg = TDA9855_VL,
1320 .rightreg = TDA9855_VR,
1321 .bassreg = TDA9855_BA,
1322 .treblereg = TDA9855_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001323
1324 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 .volfunc = tda9855_volume,
1326 .bassfunc = tda9855_bass,
1327 .treblefunc = tda9855_treble,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 .getmode = tda985x_getmode,
1329 .setmode = tda985x_setmode,
1330
1331 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1332 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1333 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1334 0x07, 0x10, 0x10, 0x03 }}
1335 },
1336 {
1337 .name = "tea6300",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001339 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1340 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 .registers = 6,
1342 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1343
1344 .leftreg = TEA6300_VR,
1345 .rightreg = TEA6300_VL,
1346 .bassreg = TEA6300_BA,
1347 .treblereg = TEA6300_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001348
1349 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 .volfunc = tea6300_shift10,
1351 .bassfunc = tea6300_shift12,
1352 .treblefunc = tea6300_shift12,
1353
1354 .inputreg = TEA6300_S,
1355 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1356 .inputmute = TEA6300_S_GMU,
1357 },
1358 {
1359 .name = "tea6320",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001361 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1362 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 .registers = 8,
1364 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1365
1366 .leftreg = TEA6320_V,
1367 .rightreg = TEA6320_V,
1368 .bassreg = TEA6320_BA,
1369 .treblereg = TEA6320_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001370
1371 /* callbacks */
1372 .initialize = tea6320_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 .volfunc = tea6320_volume,
1374 .bassfunc = tea6320_shift11,
1375 .treblefunc = tea6320_shift11,
1376
1377 .inputreg = TEA6320_S,
1378 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1379 .inputmute = TEA6300_S_GMU,
1380 },
1381 {
1382 .name = "tea6420",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001384 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1385 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 .registers = 1,
1387 .flags = CHIP_HAS_INPUTSEL,
1388
1389 .inputreg = -1,
1390 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1391 .inputmute = TEA6300_S_GMU,
1392 },
1393 {
1394 .name = "tda8425",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001396 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1397 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 .registers = 9,
1399 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1400
1401 .leftreg = TDA8425_VL,
1402 .rightreg = TDA8425_VR,
1403 .bassreg = TDA8425_BA,
1404 .treblereg = TDA8425_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001405
1406 /* callbacks */
1407 .initialize = tda8425_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 .volfunc = tda8425_shift10,
1409 .bassfunc = tda8425_shift12,
1410 .treblefunc = tda8425_shift12,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001411 .setmode = tda8425_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 .inputreg = TDA8425_S1,
1414 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1415 .inputmute = TDA8425_S1_OFF,
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 },
1418 {
1419 .name = "pic16c54 (PV951)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001421 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1422 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 .registers = 2,
1424 .flags = CHIP_HAS_INPUTSEL,
1425
1426 .inputreg = PIC16C54_REG_MISC,
1427 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1428 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1429 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001430 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 .inputmute = PIC16C54_MISC_SND_MUTE,
1432 },
1433 {
1434 .name = "ta8874z",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 .checkit = ta8874z_checkit,
1436 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001437 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1438 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 .registers = 2,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001440 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001442 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 .getmode = ta8874z_getmode,
1444 .setmode = ta8874z_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001446 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 },
1448 { .name = NULL } /* EOF */
1449};
1450
1451
1452/* ---------------------------------------------------------------------- */
1453/* i2c registration */
1454
Jean Delvared2653e92008-04-29 23:11:39 +02001455static int chip_probe(struct i2c_client *client, const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 struct CHIPSTATE *chip;
1458 struct CHIPDESC *desc;
1459
Hans Verkuil08e14052007-09-14 04:50:44 -03001460 if (debug) {
1461 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1462 printk(KERN_INFO "tvaudio: known chips: ");
1463 for (desc = chiplist; desc->name != NULL; desc++)
1464 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1465 printk("\n");
1466 }
1467
Panagiotis Issaris74081872006-01-11 19:40:56 -02001468 chip = kzalloc(sizeof(*chip),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (!chip)
1470 return -ENOMEM;
Hans Verkuil08e14052007-09-14 04:50:44 -03001471 chip->c = client;
1472 i2c_set_clientdata(client, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 /* find description for the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -03001475 v4l_dbg(1, debug, client, "chip found @ 0x%x\n", client->addr<<1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 for (desc = chiplist; desc->name != NULL; desc++) {
1477 if (0 == *(desc->insmodopt))
1478 continue;
Hans Verkuil08e14052007-09-14 04:50:44 -03001479 if (client->addr < desc->addr_lo ||
1480 client->addr > desc->addr_hi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 continue;
1482 if (desc->checkit && !desc->checkit(chip))
1483 continue;
1484 break;
1485 }
1486 if (desc->name == NULL) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001487 v4l_dbg(1, debug, client, "no matching chip description found\n");
Mauro Carvalho Chehab5c653352008-11-13 13:06:33 -03001488 kfree(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return -EIO;
1490 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001491 v4l_info(client, "%s found @ 0x%x (%s)\n", desc->name, client->addr<<1, client->adapter->name);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001492 if (desc->flags) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001493 v4l_dbg(1, debug, client, "matches:%s%s%s.\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001494 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
1495 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1496 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 /* fill required data structures */
Jean Delvareae429082008-05-11 20:37:06 +02001500 if (!id)
1501 strlcpy(client->name, desc->name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 chip->type = desc-chiplist;
1503 chip->shadow.count = desc->registers+1;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001504 chip->prevmode = -1;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001505 chip->audmode = V4L2_TUNER_MODE_LANG1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 /* initialization */
1508 if (desc->initialize != NULL)
1509 desc->initialize(chip);
1510 else
1511 chip_cmd(chip,"init",&desc->init);
1512
1513 if (desc->flags & CHIP_HAS_VOLUME) {
1514 chip->left = desc->leftinit ? desc->leftinit : 65535;
1515 chip->right = desc->rightinit ? desc->rightinit : 65535;
1516 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1517 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1518 }
1519 if (desc->flags & CHIP_HAS_BASSTREBLE) {
1520 chip->treble = desc->trebleinit ? desc->trebleinit : 32768;
1521 chip->bass = desc->bassinit ? desc->bassinit : 32768;
1522 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1523 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1524 }
1525
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001526 chip->thread = NULL;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001527 if (desc->flags & CHIP_NEED_CHECKMODE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 /* start async thread */
1529 init_timer(&chip->wt);
1530 chip->wt.function = chip_thread_wake;
1531 chip->wt.data = (unsigned long)chip;
Hans Verkuil08e14052007-09-14 04:50:44 -03001532 chip->thread = kthread_run(chip_thread, chip, chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001533 if (IS_ERR(chip->thread)) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001534 v4l_warn(chip->c, "%s: failed to create kthread\n",
1535 chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001536 chip->thread = NULL;
1537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539 return 0;
1540}
1541
Hans Verkuil08e14052007-09-14 04:50:44 -03001542static int chip_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1545
1546 del_timer_sync(&chip->wt);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001547 if (chip->thread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 /* shutdown async thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001549 kthread_stop(chip->thread);
1550 chip->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 kfree(chip);
1554 return 0;
1555}
1556
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001557static int tvaudio_get_ctrl(struct CHIPSTATE *chip,
1558 struct v4l2_control *ctrl)
1559{
1560 struct CHIPDESC *desc = chiplist + chip->type;
1561
1562 switch (ctrl->id) {
1563 case V4L2_CID_AUDIO_MUTE:
1564 ctrl->value=chip->muted;
1565 return 0;
1566 case V4L2_CID_AUDIO_VOLUME:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001567 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001568 break;
1569 ctrl->value = max(chip->left,chip->right);
1570 return 0;
1571 case V4L2_CID_AUDIO_BALANCE:
1572 {
1573 int volume;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001574 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001575 break;
1576 volume = max(chip->left,chip->right);
1577 if (volume)
1578 ctrl->value=(32768*min(chip->left,chip->right))/volume;
1579 else
1580 ctrl->value=32768;
1581 return 0;
1582 }
1583 case V4L2_CID_AUDIO_BASS:
1584 if (desc->flags & CHIP_HAS_BASSTREBLE)
1585 break;
1586 ctrl->value = chip->bass;
1587 return 0;
1588 case V4L2_CID_AUDIO_TREBLE:
1589 if (desc->flags & CHIP_HAS_BASSTREBLE)
1590 return -EINVAL;
1591 ctrl->value = chip->treble;
1592 return 0;
1593 }
1594 return -EINVAL;
1595}
1596
1597static int tvaudio_set_ctrl(struct CHIPSTATE *chip,
1598 struct v4l2_control *ctrl)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001599{
1600 struct CHIPDESC *desc = chiplist + chip->type;
1601
1602 switch (ctrl->id) {
1603 case V4L2_CID_AUDIO_MUTE:
1604 if (ctrl->value < 0 || ctrl->value >= 2)
1605 return -ERANGE;
1606 chip->muted = ctrl->value;
1607 if (chip->muted)
1608 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1609 else
1610 chip_write_masked(chip,desc->inputreg,
1611 desc->inputmap[chip->input],desc->inputmask);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001612 return 0;
1613 case V4L2_CID_AUDIO_VOLUME:
1614 {
1615 int volume,balance;
1616
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001617 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001618 break;
1619
1620 volume = max(chip->left,chip->right);
1621 if (volume)
1622 balance=(32768*min(chip->left,chip->right))/volume;
1623 else
1624 balance=32768;
1625
1626 volume=ctrl->value;
1627 chip->left = (min(65536 - balance,32768) * volume) / 32768;
1628 chip->right = (min(balance,volume *(__u16)32768)) / 32768;
1629
1630 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1631 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1632
1633 return 0;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001634 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001635 case V4L2_CID_AUDIO_BALANCE:
1636 {
1637 int volume, balance;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001638 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001639 break;
1640
1641 volume = max(chip->left,chip->right);
1642 balance = ctrl->value;
1643
1644 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1645 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1646
1647 return 0;
1648 }
1649 case V4L2_CID_AUDIO_BASS:
1650 if (desc->flags & CHIP_HAS_BASSTREBLE)
1651 break;
1652 chip->bass = ctrl->value;
1653 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1654
1655 return 0;
1656 case V4L2_CID_AUDIO_TREBLE:
1657 if (desc->flags & CHIP_HAS_BASSTREBLE)
1658 return -EINVAL;
1659
1660 chip->treble = ctrl->value;
1661 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1662
1663 return 0;
1664 }
1665 return -EINVAL;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001666}
1667
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669/* ---------------------------------------------------------------------- */
1670/* video4linux interface */
1671
1672static int chip_command(struct i2c_client *client,
1673 unsigned int cmd, void *arg)
1674{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1676 struct CHIPDESC *desc = chiplist + chip->type;
1677
Hans Verkuil08e14052007-09-14 04:50:44 -03001678 v4l_dbg(1, debug, chip->c, "%s: chip_command 0x%x\n", chip->c->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 case AUDC_SET_RADIO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001682 chip->radio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 chip->watch_stereo = 0;
1684 /* del_timer(&chip->wt); */
1685 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 /* --- v4l ioctls --- */
1687 /* take care: bttv does userspace copying, we'll get a
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001688 kernel pointer here... */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001689 case VIDIOC_QUERYCTRL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001691 struct v4l2_queryctrl *qc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001693 switch (qc->id) {
1694 case V4L2_CID_AUDIO_MUTE:
1695 break;
1696 case V4L2_CID_AUDIO_VOLUME:
1697 case V4L2_CID_AUDIO_BALANCE:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001698 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001699 return -EINVAL;
1700 break;
1701 case V4L2_CID_AUDIO_BASS:
1702 case V4L2_CID_AUDIO_TREBLE:
1703 if (desc->flags & CHIP_HAS_BASSTREBLE)
1704 return -EINVAL;
1705 break;
1706 default:
1707 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001709 return v4l2_ctrl_query_fill_std(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001711 case VIDIOC_S_CTRL:
1712 return tvaudio_set_ctrl(chip, arg);
1713
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001714 case VIDIOC_G_CTRL:
1715 return tvaudio_get_ctrl(chip, arg);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001716 case VIDIOC_INT_G_AUDIO_ROUTING:
1717 {
1718 struct v4l2_routing *rt = arg;
1719
1720 rt->input = chip->input;
1721 rt->output = 0;
1722 break;
1723 }
Hans Verkuil2474ed42006-03-19 12:35:57 -03001724 case VIDIOC_INT_S_AUDIO_ROUTING:
1725 {
1726 struct v4l2_routing *rt = arg;
1727
1728 if (!(desc->flags & CHIP_HAS_INPUTSEL) || rt->input >= 4)
1729 return -EINVAL;
1730 /* There are four inputs: tuner, radio, extern and intern. */
1731 chip->input = rt->input;
1732 if (chip->muted)
1733 break;
1734 chip_write_masked(chip, desc->inputreg,
1735 desc->inputmap[chip->input], desc->inputmask);
1736 break;
1737 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001738 case VIDIOC_S_TUNER:
1739 {
1740 struct v4l2_tuner *vt = arg;
1741 int mode = 0;
1742
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001743 if (chip->radio)
1744 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001745 switch (vt->audmode) {
1746 case V4L2_TUNER_MODE_MONO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001747 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001748 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil8a854282006-01-09 15:25:43 -02001749 case V4L2_TUNER_MODE_LANG2:
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001750 mode = vt->audmode;
1751 break;
1752 case V4L2_TUNER_MODE_LANG1_LANG2:
1753 mode = V4L2_TUNER_MODE_STEREO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001754 break;
1755 default:
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001756 return -EINVAL;
Hans Verkuil8a854282006-01-09 15:25:43 -02001757 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001758 chip->audmode = vt->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001759
1760 if (desc->setmode && mode) {
1761 chip->watch_stereo = 0;
1762 /* del_timer(&chip->wt); */
1763 chip->mode = mode;
1764 desc->setmode(chip, mode);
1765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 break;
1767 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001768 case VIDIOC_G_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 {
Hans Verkuil8a854282006-01-09 15:25:43 -02001770 struct v4l2_tuner *vt = arg;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001771 int mode = V4L2_TUNER_MODE_MONO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001772
Hans Verkuild3900bc2006-01-09 15:25:44 -02001773 if (chip->radio)
1774 break;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001775 vt->audmode = chip->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001776 vt->rxsubchans = 0;
1777 vt->capability = V4L2_TUNER_CAP_STEREO |
1778 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001779
1780 if (desc->getmode)
1781 mode = desc->getmode(chip);
1782
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001783 if (mode & V4L2_TUNER_MODE_MONO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001784 vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001785 if (mode & V4L2_TUNER_MODE_STEREO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001786 vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001787 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1788 When this module is converted fully to v4l2, then this
1789 should change for those chips that can detect SAP. */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001790 if (mode & V4L2_TUNER_MODE_LANG1)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001791 vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1792 V4L2_TUNER_SUB_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001793 break;
1794 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001795 case VIDIOC_S_STD:
1796 chip->radio = 0;
1797 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001798 case VIDIOC_S_FREQUENCY:
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001799 chip->mode = 0; /* automatic */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001800
1801 /* For chips that provide getmode, setmode and checkmode,
1802 a kthread is created to automatically to set the audio
1803 standard. In this case, start with MONO and wait 2 seconds
1804 for the decoding to stablize. Then, run kthread to change
1805 to stereo, if carrier detected.
1806 */
1807 if (chip->thread) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001808 desc->setmode(chip,V4L2_TUNER_MODE_MONO);
1809 if (chip->prevmode != V4L2_TUNER_MODE_MONO)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001810 chip->prevmode = -1; /* reset previous mode */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -03001811 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001813 break;
Hans Verkuil74cab312007-04-27 12:31:26 -03001814
1815 case VIDIOC_G_CHIP_IDENT:
1816 return v4l2_chip_ident_i2c_client(client, arg, V4L2_IDENT_TVAUDIO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818 return 0;
1819}
1820
Hans Verkuil08e14052007-09-14 04:50:44 -03001821static int chip_legacy_probe(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Hans Verkuil08e14052007-09-14 04:50:44 -03001823 /* don't attach on saa7146 based cards,
1824 because dedicated drivers are used */
1825 if ((adap->id == I2C_HW_SAA7146))
1826 return 0;
1827 if (adap->class & I2C_CLASS_TV_ANALOG)
1828 return 1;
1829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Jean Delvareae429082008-05-11 20:37:06 +02001832/* This driver supports many devices and the idea is to let the driver
1833 detect which device is present. So rather than listing all supported
1834 devices here, we pretend to support a single, fake device type. */
1835static const struct i2c_device_id chip_id[] = {
1836 { "tvaudio", 0 },
1837 { }
1838};
1839MODULE_DEVICE_TABLE(i2c, chip_id);
1840
Hans Verkuil08e14052007-09-14 04:50:44 -03001841static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1842 .name = "tvaudio",
1843 .driverid = I2C_DRIVERID_TVAUDIO,
1844 .command = chip_command,
1845 .probe = chip_probe,
1846 .remove = chip_remove,
1847 .legacy_probe = chip_legacy_probe,
Jean Delvareae429082008-05-11 20:37:06 +02001848 .id_table = chip_id,
Hans Verkuil08e14052007-09-14 04:50:44 -03001849};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851/*
1852 * Local variables:
1853 * c-basic-offset: 8
1854 * End:
1855 */