blob: 5ec369d54e6e068ef7b6076c23793be90a5fb019 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Mauro Carvalho Chehabb4ab1142008-11-13 14:07:54 -03002 * Driver for simple i2c audio chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 *
Mauro Carvalho Chehabb4ab1142008-11-13 14:07:54 -030010 * Copyright(c) 2005-2008 Mauro Carvalho Chehab
11 * - Some cleanups, code fixes, etc
12 * - Convert it to V4L2 API
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * This code is placed under the terms of the GNU General Public License
15 *
16 * OPTIONS:
17 * debug - set to 1 if you'd like to see debug messages
18 *
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/sched.h>
24#include <linux/string.h>
25#include <linux/timer.h>
26#include <linux/delay.h>
27#include <linux/errno.h>
28#include <linux/slab.h>
29#include <linux/videodev.h>
30#include <linux/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
Cedric Le Goaterbc282872006-09-11 16:31:45 -030032#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080033#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -030035#include <media/tvaudio.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -020036#include <media/v4l2-common.h>
Hans Verkuil74cab312007-04-27 12:31:26 -030037#include <media/v4l2-chip-ident.h>
Hans Verkuil08e14052007-09-14 04:50:44 -030038#include <media/v4l2-i2c-drv-legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Mauro Carvalho Chehab7c9b5042006-03-18 08:08:14 -030040#include <media/i2c-addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* ---------------------------------------------------------------------- */
43/* insmod args */
44
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030045static int debug; /* insmod parameter */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046module_param(debug, int, 0644);
47
48MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
49MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
50MODULE_LICENSE("GPL");
51
52#define UNSET (-1U)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* ---------------------------------------------------------------------- */
55/* our structs */
56
57#define MAXREGS 64
58
59struct CHIPSTATE;
60typedef int (*getvalue)(int);
61typedef int (*checkit)(struct CHIPSTATE*);
62typedef int (*initialize)(struct CHIPSTATE*);
63typedef int (*getmode)(struct CHIPSTATE*);
64typedef void (*setmode)(struct CHIPSTATE*, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* i2c command */
67typedef struct AUDIOCMD {
68 int count; /* # of bytes to send */
69 unsigned char bytes[MAXREGS+1]; /* addr, data, data, ... */
70} audiocmd;
71
72/* chip description */
73struct CHIPDESC {
74 char *name; /* chip name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 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
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -030085#define CHIP_NEED_CHECKMODE 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* various i2c command sequences */
88 audiocmd init;
89
90 /* which register has which value */
91 int leftreg,rightreg,treblereg,bassreg;
92
93 /* initialize with (defaults to 65535/65535/32768/32768 */
94 int leftinit,rightinit,trebleinit,bassinit;
95
96 /* functions to convert the values (v4l -> chip) */
97 getvalue volfunc,treblefunc,bassfunc;
98
99 /* get/set mode */
100 getmode getmode;
101 setmode setmode;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* input switch register + values for v4l inputs */
104 int inputreg;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300105 int inputmap[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int inputmute;
107 int inputmask;
108};
109static struct CHIPDESC chiplist[];
110
111/* current state of the chip */
112struct CHIPSTATE {
Hans Verkuil08e14052007-09-14 04:50:44 -0300113 struct i2c_client *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300115 /* chip-specific description - should point to
116 an entry at CHIPDESC table */
117 struct CHIPDESC *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 /* shadow register set */
120 audiocmd shadow;
121
122 /* current settings */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300123 __u16 left,right,treble,bass,muted,mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 int prevmode;
Hans Verkuil8a854282006-01-09 15:25:43 -0200125 int radio;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300126 int input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /* thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300129 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct timer_list wt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 int watch_stereo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200132 int audmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/* ---------------------------------------------------------------------- */
136/* i2c addresses */
137
138static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -0300139 I2C_ADDR_TDA8425 >> 1,
140 I2C_ADDR_TEA6300 >> 1,
141 I2C_ADDR_TEA6420 >> 1,
142 I2C_ADDR_TDA9840 >> 1,
143 I2C_ADDR_TDA985x_L >> 1,
144 I2C_ADDR_TDA985x_H >> 1,
145 I2C_ADDR_TDA9874 >> 1,
146 I2C_ADDR_PIC16C54 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148I2C_CLIENT_INSMOD;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* ---------------------------------------------------------------------- */
151/* i2c I/O functions */
152
153static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
154{
155 unsigned char buffer[2];
156
157 if (-1 == subaddr) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300158 v4l_dbg(1, debug, chip->c, "%s: chip_write: 0x%x\n",
159 chip->c->name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 chip->shadow.bytes[1] = val;
161 buffer[0] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300162 if (1 != i2c_master_send(chip->c,buffer,1)) {
163 v4l_warn(chip->c, "%s: I/O error (write 0x%x)\n",
164 chip->c->name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return -1;
166 }
167 } else {
Hans Verkuil08e14052007-09-14 04:50:44 -0300168 v4l_dbg(1, debug, chip->c, "%s: chip_write: reg%d=0x%x\n",
169 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 chip->shadow.bytes[subaddr+1] = val;
171 buffer[0] = subaddr;
172 buffer[1] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300173 if (2 != i2c_master_send(chip->c,buffer,2)) {
174 v4l_warn(chip->c, "%s: I/O error (write reg%d=0x%x)\n",
175 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return -1;
177 }
178 }
179 return 0;
180}
181
182static int chip_write_masked(struct CHIPSTATE *chip, int subaddr, int val, int mask)
183{
184 if (mask != 0) {
185 if (-1 == subaddr) {
186 val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
187 } else {
188 val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
189 }
190 }
191 return chip_write(chip, subaddr, val);
192}
193
194static int chip_read(struct CHIPSTATE *chip)
195{
196 unsigned char buffer;
197
Hans Verkuil08e14052007-09-14 04:50:44 -0300198 if (1 != i2c_master_recv(chip->c,&buffer,1)) {
199 v4l_warn(chip->c, "%s: I/O error (read)\n",
200 chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return -1;
202 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300203 v4l_dbg(1, debug, chip->c, "%s: chip_read: 0x%x\n",chip->c->name, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return buffer;
205}
206
207static int chip_read2(struct CHIPSTATE *chip, int subaddr)
208{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700209 unsigned char write[1];
210 unsigned char read[1];
211 struct i2c_msg msgs[2] = {
Hans Verkuil08e14052007-09-14 04:50:44 -0300212 { chip->c->addr, 0, 1, write },
213 { chip->c->addr, I2C_M_RD, 1, read }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700214 };
215 write[0] = subaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Hans Verkuil08e14052007-09-14 04:50:44 -0300217 if (2 != i2c_transfer(chip->c->adapter,msgs,2)) {
218 v4l_warn(chip->c, "%s: I/O error (read2)\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return -1;
220 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300221 v4l_dbg(1, debug, chip->c, "%s: chip_read2: reg%d=0x%x\n",
222 chip->c->name, subaddr,read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return read[0];
224}
225
226static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
227{
228 int i;
229
230 if (0 == cmd->count)
231 return 0;
232
233 /* update our shadow register set; print bytes if (debug > 0) */
Hans Verkuil08e14052007-09-14 04:50:44 -0300234 v4l_dbg(1, debug, chip->c, "%s: chip_cmd(%s): reg=%d, data:",
235 chip->c->name, name,cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700237 if (debug)
238 printk(" 0x%x",cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
240 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700241 if (debug)
242 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /* send data to the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -0300245 if (cmd->count != i2c_master_send(chip->c,cmd->bytes,cmd->count)) {
246 v4l_warn(chip->c, "%s: I/O error (%s)\n", chip->c->name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -1;
248 }
249 return 0;
250}
251
252/* ---------------------------------------------------------------------- */
253/* kernel thread for doing i2c stuff asyncronly
254 * right now it is used only to check the audio mode (mono/stereo/whatever)
255 * some time after switching to another TV channel, then turn on stereo
256 * if available, ...
257 */
258
259static void chip_thread_wake(unsigned long data)
260{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700261 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300262 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265static int chip_thread(void *data)
266{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700267 struct CHIPSTATE *chip = data;
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300268 struct CHIPDESC *desc = chip->desc;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300269 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Hans Verkuil08e14052007-09-14 04:50:44 -0300271 v4l_dbg(1, debug, chip->c, "%s: thread started\n", chip->c->name);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700272 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300274 set_current_state(TASK_INTERRUPTIBLE);
275 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300277 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700278 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300279 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 break;
Hans Verkuil08e14052007-09-14 04:50:44 -0300281 v4l_dbg(1, debug, chip->c, "%s: thread wakeup\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* don't do anything for radio or if mode != auto */
Hans Verkuil8a854282006-01-09 15:25:43 -0200284 if (chip->radio || chip->mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 continue;
286
287 /* have a look what's going on */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300288 mode = desc->getmode(chip);
289 if (mode == chip->prevmode)
290 continue;
291
292 /* chip detected a new audio mode - set it */
293 v4l_dbg(1, debug, chip->c, "%s: thread checkmode\n",
294 chip->c->name);
295
296 chip->prevmode = mode;
297
298 if (mode & V4L2_TUNER_MODE_STEREO)
299 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
300 if (mode & V4L2_TUNER_MODE_LANG1_LANG2)
301 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
302 else if (mode & V4L2_TUNER_MODE_LANG1)
303 desc->setmode(chip, V4L2_TUNER_MODE_LANG1);
304 else if (mode & V4L2_TUNER_MODE_LANG2)
305 desc->setmode(chip, V4L2_TUNER_MODE_LANG2);
306 else
307 desc->setmode(chip, V4L2_TUNER_MODE_MONO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 /* schedule next check */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -0300310 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
Hans Verkuil08e14052007-09-14 04:50:44 -0300313 v4l_dbg(1, debug, chip->c, "%s: thread exiting\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return 0;
315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/* ---------------------------------------------------------------------- */
318/* audio chip descriptions - defines+functions for tda9840 */
319
320#define TDA9840_SW 0x00
321#define TDA9840_LVADJ 0x02
322#define TDA9840_STADJ 0x03
323#define TDA9840_TEST 0x04
324
325#define TDA9840_MONO 0x10
326#define TDA9840_STEREO 0x2a
327#define TDA9840_DUALA 0x12
328#define TDA9840_DUALB 0x1e
329#define TDA9840_DUALAB 0x1a
330#define TDA9840_DUALBA 0x16
331#define TDA9840_EXTERNAL 0x7a
332
333#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
334#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
335#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
336
337#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
338#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
339
340static int tda9840_getmode(struct CHIPSTATE *chip)
341{
342 int val, mode;
343
344 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300345 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (val & TDA9840_DS_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300347 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (val & TDA9840_ST_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300349 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Hans Verkuil08e14052007-09-14 04:50:44 -0300351 v4l_dbg(1, debug, chip->c, "tda9840_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700352 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return mode;
354}
355
356static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
357{
358 int update = 1;
359 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
360
361 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300362 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 t |= TDA9840_MONO;
364 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300365 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 t |= TDA9840_STEREO;
367 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300368 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 t |= TDA9840_DUALA;
370 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300371 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 t |= TDA9840_DUALB;
373 break;
374 default:
375 update = 0;
376 }
377
378 if (update)
379 chip_write(chip, TDA9840_SW, t);
380}
381
Hans Verkuil94f9e562006-01-23 09:47:40 -0200382static int tda9840_checkit(struct CHIPSTATE *chip)
383{
384 int rc;
385 rc = chip_read(chip);
386 /* lower 5 bits should be 0 */
387 return ((rc & 0x1f) == 0) ? 1 : 0;
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/* ---------------------------------------------------------------------- */
391/* audio chip descriptions - defines+functions for tda985x */
392
393/* subaddresses for TDA9855 */
394#define TDA9855_VR 0x00 /* Volume, right */
395#define TDA9855_VL 0x01 /* Volume, left */
396#define TDA9855_BA 0x02 /* Bass */
397#define TDA9855_TR 0x03 /* Treble */
398#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
399
400/* subaddresses for TDA9850 */
401#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
402
403/* subaddesses for both chips */
404#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
405#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
406#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
407#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
408#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
409#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
410
411/* Masks for bits in TDA9855 subaddresses */
412/* 0x00 - VR in TDA9855 */
413/* 0x01 - VL in TDA9855 */
414/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
415 * in 1dB steps - mute is 0x27 */
416
417
418/* 0x02 - BA in TDA9855 */
419/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
420 * in .5dB steps - 0 is 0x0E */
421
422
423/* 0x03 - TR in TDA9855 */
424/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
425 * in 3dB steps - 0 is 0x7 */
426
427/* Masks for bits in both chips' subaddresses */
428/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
429/* Unique to TDA9855: */
430/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
431 * in 3dB steps - mute is 0x0 */
432
433/* Unique to TDA9850: */
434/* lower 4 bits control stereo noise threshold, over which stereo turns off
435 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
436
437
438/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
439/* Unique to TDA9855: */
440#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
441#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
442#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
443#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
444 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800445 * of line in and line out, only the
446 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
448#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
449
450/* Unique to TDA9850: */
451/* lower 4 bits contol SAP noise threshold, over which SAP turns off
452 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
453
454
455/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
456/* Common to TDA9855 and TDA9850: */
457#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
458#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
459#define TDA985x_MONO 0 /* Forces Mono output */
460#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
461
462/* Unique to TDA9855: */
463#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
464#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
465#define TDA9855_LINEAR 0 /* Linear Stereo */
466#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
467#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
468#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
469#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
470
471/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
472/* Common to both TDA9855 and TDA9850: */
473/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
474 * in .5dB steps - 0dB is 0x7 */
475
476/* 0x08, 0x09 - A1 and A2 (read/write) */
477/* Common to both TDA9855 and TDA9850: */
478/* lower 5 bites are wideband and spectral expander alignment
479 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
480#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
481#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
482#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
483
484/* 0x0a - A3 */
485/* Common to both TDA9855 and TDA9850: */
486/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
487 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
488#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
489
490static int tda9855_volume(int val) { return val/0x2e8+0x27; }
491static int tda9855_bass(int val) { return val/0xccc+0x06; }
492static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
493
494static int tda985x_getmode(struct CHIPSTATE *chip)
495{
496 int mode;
497
498 mode = ((TDA985x_STP | TDA985x_SAPP) &
499 chip_read(chip)) >> 4;
500 /* Add mono mode regardless of SAP and stereo */
501 /* Allows forced mono */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300502 return mode | V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
506{
507 int update = 1;
508 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
509
510 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300511 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 c6 |= TDA985x_MONO;
513 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300514 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 c6 |= TDA985x_STEREO;
516 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300517 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 c6 |= TDA985x_SAP;
519 break;
520 default:
521 update = 0;
522 }
523 if (update)
524 chip_write(chip,TDA985x_C6,c6);
525}
526
527
528/* ---------------------------------------------------------------------- */
529/* audio chip descriptions - defines+functions for tda9873h */
530
531/* Subaddresses for TDA9873H */
532
533#define TDA9873_SW 0x00 /* Switching */
534#define TDA9873_AD 0x01 /* Adjust */
535#define TDA9873_PT 0x02 /* Port */
536
537/* Subaddress 0x00: Switching Data
538 * B7..B0:
539 *
540 * B1, B0: Input source selection
541 * 0, 0 internal
542 * 1, 0 external stereo
543 * 0, 1 external mono
544 */
545#define TDA9873_INP_MASK 3
546#define TDA9873_INTERNAL 0
547#define TDA9873_EXT_STEREO 2
548#define TDA9873_EXT_MONO 1
549
550/* B3, B2: output signal select
551 * B4 : transmission mode
552 * 0, 0, 1 Mono
553 * 1, 0, 0 Stereo
554 * 1, 1, 1 Stereo (reversed channel)
555 * 0, 0, 0 Dual AB
556 * 0, 0, 1 Dual AA
557 * 0, 1, 0 Dual BB
558 * 0, 1, 1 Dual BA
559 */
560
561#define TDA9873_TR_MASK (7 << 2)
562#define TDA9873_TR_MONO 4
563#define TDA9873_TR_STEREO 1 << 4
564#define TDA9873_TR_REVERSE (1 << 3) & (1 << 2)
565#define TDA9873_TR_DUALA 1 << 2
566#define TDA9873_TR_DUALB 1 << 3
567
568/* output level controls
569 * B5: output level switch (0 = reduced gain, 1 = normal gain)
570 * B6: mute (1 = muted)
571 * B7: auto-mute (1 = auto-mute enabled)
572 */
573
574#define TDA9873_GAIN_NORMAL 1 << 5
575#define TDA9873_MUTE 1 << 6
576#define TDA9873_AUTOMUTE 1 << 7
577
578/* Subaddress 0x01: Adjust/standard */
579
580/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
581 * Recommended value is +0 dB
582 */
583
584#define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
585
586/* Bits C6..C4 control FM stantard
587 * C6, C5, C4
588 * 0, 0, 0 B/G (PAL FM)
589 * 0, 0, 1 M
590 * 0, 1, 0 D/K(1)
591 * 0, 1, 1 D/K(2)
592 * 1, 0, 0 D/K(3)
593 * 1, 0, 1 I
594 */
595#define TDA9873_BG 0
596#define TDA9873_M 1
597#define TDA9873_DK1 2
598#define TDA9873_DK2 3
599#define TDA9873_DK3 4
600#define TDA9873_I 5
601
602/* C7 controls identification response time (1=fast/0=normal)
603 */
604#define TDA9873_IDR_NORM 0
605#define TDA9873_IDR_FAST 1 << 7
606
607
608/* Subaddress 0x02: Port data */
609
610/* E1, E0 free programmable ports P1/P2
611 0, 0 both ports low
612 0, 1 P1 high
613 1, 0 P2 high
614 1, 1 both ports high
615*/
616
617#define TDA9873_PORTS 3
618
619/* E2: test port */
620#define TDA9873_TST_PORT 1 << 2
621
622/* E5..E3 control mono output channel (together with transmission mode bit B4)
623 *
624 * E5 E4 E3 B4 OUTM
625 * 0 0 0 0 mono
626 * 0 0 1 0 DUAL B
627 * 0 1 0 1 mono (from stereo decoder)
628 */
629#define TDA9873_MOUT_MONO 0
630#define TDA9873_MOUT_FMONO 0
631#define TDA9873_MOUT_DUALA 0
632#define TDA9873_MOUT_DUALB 1 << 3
633#define TDA9873_MOUT_ST 1 << 4
634#define TDA9873_MOUT_EXTM (1 << 4 ) & (1 << 3)
635#define TDA9873_MOUT_EXTL 1 << 5
636#define TDA9873_MOUT_EXTR (1 << 5 ) & (1 << 3)
637#define TDA9873_MOUT_EXTLR (1 << 5 ) & (1 << 4)
638#define TDA9873_MOUT_MUTE (1 << 5 ) & (1 << 4) & (1 << 3)
639
640/* Status bits: (chip read) */
641#define TDA9873_PONR 0 /* Power-on reset detected if = 1 */
642#define TDA9873_STEREO 2 /* Stereo sound is identified */
643#define TDA9873_DUAL 4 /* Dual sound is identified */
644
645static int tda9873_getmode(struct CHIPSTATE *chip)
646{
647 int val,mode;
648
649 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300650 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (val & TDA9873_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300652 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (val & TDA9873_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300654 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Hans Verkuil08e14052007-09-14 04:50:44 -0300655 v4l_dbg(1, debug, chip->c, "tda9873_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700656 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return mode;
658}
659
660static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
661{
662 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
663 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
664
665 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300666 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return;
668 }
669
Hans Verkuil08e14052007-09-14 04:50:44 -0300670 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
671 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): sw_data = %d\n", sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300674 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 sw_data |= TDA9873_TR_MONO;
676 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300677 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 sw_data |= TDA9873_TR_STEREO;
679 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300680 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 sw_data |= TDA9873_TR_DUALA;
682 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300683 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 sw_data |= TDA9873_TR_DUALB;
685 break;
686 default:
687 chip->mode = 0;
688 return;
689 }
690
691 chip_write(chip, TDA9873_SW, sw_data);
Hans Verkuil08e14052007-09-14 04:50:44 -0300692 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 mode, sw_data);
694}
695
696static int tda9873_checkit(struct CHIPSTATE *chip)
697{
698 int rc;
699
700 if (-1 == (rc = chip_read2(chip,254)))
701 return 0;
702 return (rc & ~0x1f) == 0x80;
703}
704
705
706/* ---------------------------------------------------------------------- */
707/* audio chip description - defines+functions for tda9874h and tda9874a */
708/* Dariusz Kowalewski <darekk@automex.pl> */
709
710/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
711#define TDA9874A_AGCGR 0x00 /* AGC gain */
712#define TDA9874A_GCONR 0x01 /* general config */
713#define TDA9874A_MSR 0x02 /* monitor select */
714#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
715#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
716#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
717#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
718#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
719#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
720#define TDA9874A_DCR 0x09 /* demodulator config */
721#define TDA9874A_FMER 0x0a /* FM de-emphasis */
722#define TDA9874A_FMMR 0x0b /* FM dematrix */
723#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
724#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
725#define TDA9874A_NCONR 0x0e /* NICAM config */
726#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
727#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
728#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
729#define TDA9874A_AMCONR 0x12 /* audio mute control */
730#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
731#define TDA9874A_AOSR 0x14 /* analog output select */
732#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
733#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
734#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
735#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
736#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
737
738/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
739#define TDA9874A_DSR 0x00 /* device status */
740#define TDA9874A_NSR 0x01 /* NICAM status */
741#define TDA9874A_NECR 0x02 /* NICAM error count */
742#define TDA9874A_DR1 0x03 /* add. data LSB */
743#define TDA9874A_DR2 0x04 /* add. data MSB */
744#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
745#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
746#define TDA9874A_SIFLR 0x07 /* SIF level */
747#define TDA9874A_TR2 252 /* test reg. 2 */
748#define TDA9874A_TR1 253 /* test reg. 1 */
749#define TDA9874A_DIC 254 /* device id. code */
750#define TDA9874A_SIC 255 /* software id. code */
751
752
753static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
754static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
755static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
756static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
757static int tda9874a_dic = -1; /* device id. code */
758
759/* insmod options for tda9874a */
760static unsigned int tda9874a_SIF = UNSET;
761static unsigned int tda9874a_AMSEL = UNSET;
762static unsigned int tda9874a_STD = UNSET;
763module_param(tda9874a_SIF, int, 0444);
764module_param(tda9874a_AMSEL, int, 0444);
765module_param(tda9874a_STD, int, 0444);
766
767/*
768 * initialization table for tda9874 decoder:
769 * - carrier 1 freq. registers (3 bytes)
770 * - carrier 2 freq. registers (3 bytes)
771 * - demudulator config register
772 * - FM de-emphasis register (slow identification mode)
773 * Note: frequency registers must be written in single i2c transfer.
774 */
775static struct tda9874a_MODES {
776 char *name;
777 audiocmd cmd;
778} tda9874a_modelist[9] = {
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300779 { "A2, B/G", /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
781 { "A2, M (Korea)",
782 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
783 { "A2, D/K (1)",
784 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
785 { "A2, D/K (2)",
786 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
787 { "A2, D/K (3)",
788 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
789 { "NICAM, I",
790 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
791 { "NICAM, B/G",
792 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300793 { "NICAM, D/K",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
795 { "NICAM, L",
796 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
797};
798
799static int tda9874a_setup(struct CHIPSTATE *chip)
800{
801 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
802 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
803 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
804 if(tda9874a_dic == 0x11) {
805 chip_write(chip, TDA9874A_FMMR, 0x80);
806 } else { /* dic == 0x07 */
807 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
808 chip_write(chip, TDA9874A_FMMR, 0x00);
809 }
810 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
811 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
812 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
813 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
814 /* Note: If signal quality is poor you may want to change NICAM */
815 /* error limit registers (NLELR and NUELR) to some greater values. */
816 /* Then the sound would remain stereo, but won't be so clear. */
817 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
818 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
819
820 if(tda9874a_dic == 0x11) {
821 chip_write(chip, TDA9874A_AMCONR, 0xf9);
822 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
823 chip_write(chip, TDA9874A_AOSR, 0x80);
824 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
825 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
826 } else { /* dic == 0x07 */
827 chip_write(chip, TDA9874A_AMCONR, 0xfb);
828 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700829 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300831 v4l_dbg(1, debug, chip->c, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
833 return 1;
834}
835
836static int tda9874a_getmode(struct CHIPSTATE *chip)
837{
838 int dsr,nsr,mode;
839 int necr; /* just for debugging */
840
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300841 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
844 return mode;
845 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
846 return mode;
847 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
848 return mode;
849
850 /* need to store dsr/nsr somewhere */
851 chip->shadow.bytes[MAXREGS-2] = dsr;
852 chip->shadow.bytes[MAXREGS-1] = nsr;
853
854 if(tda9874a_mode) {
855 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
856 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
857 * that sound has (temporarily) switched from NICAM to
858 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
859 * error count. So in fact there is no stereo in this case :-(
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300860 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 * external 4052 multiplexer in audio_hook().
862 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if(nsr & 0x02) /* NSR.S/MB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300864 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if(nsr & 0x01) /* NSR.D/SB=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 } else {
868 if(dsr & 0x02) /* DSR.IDSTE=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300869 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if(dsr & 0x04) /* DSR.IDDUA=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300871 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
Hans Verkuil08e14052007-09-14 04:50:44 -0300874 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 -0700875 dsr, nsr, necr, mode);
876 return mode;
877}
878
879static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
880{
881 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
882 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
883 if(tda9874a_mode) {
884 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
885 tda9874a_NCONR &= 0xfe; /* enable */
886 else
887 tda9874a_NCONR |= 0x01; /* disable */
888 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
889 }
890
891 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
892 * and has auto-select function for audio output (AOSR register).
893 * Old TDA9874H doesn't support these features.
894 * TDA9874A also has additional mono output pin (OUTM), which
895 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
896 */
897 if(tda9874a_dic == 0x11) {
898 int aosr = 0x80;
899 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
900
901 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300902 case V4L2_TUNER_MODE_MONO:
903 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300905 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 aosr = 0x80; /* auto-select, dual A/A */
907 mdacosr = (tda9874a_mode) ? 0x82:0x80;
908 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300909 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 aosr = 0xa0; /* auto-select, dual B/B */
911 mdacosr = (tda9874a_mode) ? 0x83:0x81;
912 break;
913 default:
914 chip->mode = 0;
915 return;
916 }
917 chip_write(chip, TDA9874A_AOSR, aosr);
918 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
919
Hans Verkuil08e14052007-09-14 04:50:44 -0300920 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 -0700921 mode, aosr, mdacosr);
922
923 } else { /* dic == 0x07 */
924 int fmmr,aosr;
925
926 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300927 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 fmmr = 0x00; /* mono */
929 aosr = 0x10; /* A/A */
930 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300931 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if(tda9874a_mode) {
933 fmmr = 0x00;
934 aosr = 0x00; /* handled by NICAM auto-mute */
935 } else {
936 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
937 aosr = 0x00;
938 }
939 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300940 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 fmmr = 0x02; /* dual */
942 aosr = 0x10; /* dual A/A */
943 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300944 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 fmmr = 0x02; /* dual */
946 aosr = 0x20; /* dual B/B */
947 break;
948 default:
949 chip->mode = 0;
950 return;
951 }
952 chip_write(chip, TDA9874A_FMMR, fmmr);
953 chip_write(chip, TDA9874A_AOSR, aosr);
954
Hans Verkuil08e14052007-09-14 04:50:44 -0300955 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 -0700956 mode, fmmr, aosr);
957 }
958}
959
960static int tda9874a_checkit(struct CHIPSTATE *chip)
961{
962 int dic,sic; /* device id. and software id. codes */
963
964 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
965 return 0;
966 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
967 return 0;
968
Hans Verkuil08e14052007-09-14 04:50:44 -0300969 v4l_dbg(1, debug, chip->c, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300972 v4l_info(chip->c, "found tda9874%s.\n", (dic == 0x11) ? "a":"h");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 tda9874a_dic = dic; /* remember device id. */
974 return 1;
975 }
976 return 0; /* not found */
977}
978
979static int tda9874a_initialize(struct CHIPSTATE *chip)
980{
981 if (tda9874a_SIF > 2)
982 tda9874a_SIF = 1;
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300983 if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tda9874a_STD = 0;
985 if(tda9874a_AMSEL > 1)
986 tda9874a_AMSEL = 0;
987
988 if(tda9874a_SIF == 1)
989 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
990 else
991 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
992
993 tda9874a_ESP = tda9874a_STD;
994 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
995
996 if(tda9874a_AMSEL == 0)
997 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
998 else
999 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
1000
1001 tda9874a_setup(chip);
1002 return 0;
1003}
1004
1005
1006/* ---------------------------------------------------------------------- */
1007/* audio chip descriptions - defines+functions for tea6420 */
1008
1009#define TEA6300_VL 0x00 /* volume left */
1010#define TEA6300_VR 0x01 /* volume right */
1011#define TEA6300_BA 0x02 /* bass */
1012#define TEA6300_TR 0x03 /* treble */
1013#define TEA6300_FA 0x04 /* fader control */
1014#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001015 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016#define TEA6300_S_SA 0x01 /* stereo A input */
1017#define TEA6300_S_SB 0x02 /* stereo B */
1018#define TEA6300_S_SC 0x04 /* stereo C */
1019#define TEA6300_S_GMU 0x80 /* general mute */
1020
1021#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1022#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1023#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1024#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1025#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1026#define TEA6320_BA 0x05 /* bass (0-4) */
1027#define TEA6320_TR 0x06 /* treble (0-4) */
1028#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001029 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#define TEA6320_S_SA 0x07 /* stereo A input */
1031#define TEA6320_S_SB 0x06 /* stereo B */
1032#define TEA6320_S_SC 0x05 /* stereo C */
1033#define TEA6320_S_SD 0x04 /* stereo D */
1034#define TEA6320_S_GMU 0x80 /* general mute */
1035
1036#define TEA6420_S_SA 0x00 /* stereo A input */
1037#define TEA6420_S_SB 0x01 /* stereo B */
1038#define TEA6420_S_SC 0x02 /* stereo C */
1039#define TEA6420_S_SD 0x03 /* stereo D */
1040#define TEA6420_S_SE 0x04 /* stereo E */
1041#define TEA6420_S_GMU 0x05 /* general mute */
1042
1043static int tea6300_shift10(int val) { return val >> 10; }
1044static int tea6300_shift12(int val) { return val >> 12; }
1045
1046/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1047/* 0x0c mirror those immediately higher) */
1048static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1049static int tea6320_shift11(int val) { return val >> 11; }
1050static int tea6320_initialize(struct CHIPSTATE * chip)
1051{
1052 chip_write(chip, TEA6320_FFR, 0x3f);
1053 chip_write(chip, TEA6320_FFL, 0x3f);
1054 chip_write(chip, TEA6320_FRR, 0x3f);
1055 chip_write(chip, TEA6320_FRL, 0x3f);
1056
1057 return 0;
1058}
1059
1060
1061/* ---------------------------------------------------------------------- */
1062/* audio chip descriptions - defines+functions for tda8425 */
1063
1064#define TDA8425_VL 0x00 /* volume left */
1065#define TDA8425_VR 0x01 /* volume right */
1066#define TDA8425_BA 0x02 /* bass */
1067#define TDA8425_TR 0x03 /* treble */
1068#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001069 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1071#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1072#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1073#define TDA8425_S1_MU 0x20 /* mute bit */
1074#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1075#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1076#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1077#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1078#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1079#define TDA8425_S1_ML 0x06 /* language selector */
1080#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1081#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1082#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1083#define TDA8425_S1_IS 0x01 /* channel selector */
1084
1085
1086static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1087static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1088
1089static int tda8425_initialize(struct CHIPSTATE *chip)
1090{
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001091 struct CHIPDESC *desc = chip->desc;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001092 int inputmap[4] = { /* tuner */ TDA8425_S1_CH2, /* radio */ TDA8425_S1_CH1,
1093 /* extern */ TDA8425_S1_CH1, /* intern */ TDA8425_S1_OFF};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Hans Verkuil08e14052007-09-14 04:50:44 -03001095 if (chip->c->adapter->id == I2C_HW_B_RIVA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 memcpy (desc->inputmap, inputmap, sizeof (inputmap));
1097 }
1098 return 0;
1099}
1100
1101static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1102{
1103 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1104
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001105 if (mode & V4L2_TUNER_MODE_LANG1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 s1 |= TDA8425_S1_ML_SOUND_A;
1107 s1 |= TDA8425_S1_STEREO_PSEUDO;
1108
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001109 } else if (mode & V4L2_TUNER_MODE_LANG2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 s1 |= TDA8425_S1_ML_SOUND_B;
1111 s1 |= TDA8425_S1_STEREO_PSEUDO;
1112
1113 } else {
1114 s1 |= TDA8425_S1_ML_STEREO;
1115
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001116 if (mode & V4L2_TUNER_MODE_MONO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 s1 |= TDA8425_S1_STEREO_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001118 if (mode & V4L2_TUNER_MODE_STEREO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 s1 |= TDA8425_S1_STEREO_SPATIAL;
1120 }
1121 chip_write(chip,TDA8425_S1,s1);
1122}
1123
1124
1125/* ---------------------------------------------------------------------- */
1126/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1127
1128/* the registers of 16C54, I2C sub address. */
1129#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1130#define PIC16C54_REG_MISC 0x02
1131
1132/* bit definition of the RESET register, I2C data. */
1133#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001134 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1136#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1137#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1138#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1139#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1140#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1141#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1142
1143/* ---------------------------------------------------------------------- */
1144/* audio chip descriptions - defines+functions for TA8874Z */
1145
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001146/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147#define TA8874Z_LED_STE 0x80
1148#define TA8874Z_LED_BIL 0x40
1149#define TA8874Z_LED_EXT 0x20
1150#define TA8874Z_MONO_SET 0x10
1151#define TA8874Z_MUTE 0x08
1152#define TA8874Z_F_MONO 0x04
1153#define TA8874Z_MODE_SUB 0x02
1154#define TA8874Z_MODE_MAIN 0x01
1155
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001156/* write 2nd byte */
1157/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158#define TA8874Z_SEPARATION 0x3f
1159#define TA8874Z_SEPARATION_DEFAULT 0x10
1160
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001161/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162#define TA8874Z_B1 0x80
1163#define TA8874Z_B0 0x40
1164#define TA8874Z_CHAG_FLAG 0x20
1165
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001166/*
1167 * B1 B0
1168 * mono L H
1169 * stereo L L
1170 * BIL H L
1171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172static int ta8874z_getmode(struct CHIPSTATE *chip)
1173{
1174 int val, mode;
1175
1176 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001177 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (val & TA8874Z_B1){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001179 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }else if (!(val & TA8874Z_B0)){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001181 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001183 /* 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 -07001184 return mode;
1185}
1186
1187static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1188static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1189static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1190static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1191
1192static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1193{
1194 int update = 1;
1195 audiocmd *t = NULL;
Hans Verkuil08e14052007-09-14 04:50:44 -03001196 v4l_dbg(1, debug, chip->c, "ta8874z_setmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 switch(mode){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001199 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 t = &ta8874z_mono;
1201 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001202 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 t = &ta8874z_stereo;
1204 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001205 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 t = &ta8874z_main;
1207 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001208 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 t = &ta8874z_sub;
1210 break;
1211 default:
1212 update = 0;
1213 }
1214
1215 if(update)
1216 chip_cmd(chip, "TA8874Z", t);
1217}
1218
1219static int ta8874z_checkit(struct CHIPSTATE *chip)
1220{
1221 int rc;
1222 rc = chip_read(chip);
1223 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1224}
1225
1226/* ---------------------------------------------------------------------- */
1227/* audio chip descriptions - struct CHIPDESC */
1228
1229/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001230static int tda8425 = 1;
1231static int tda9840 = 1;
1232static int tda9850 = 1;
1233static int tda9855 = 1;
1234static int tda9873 = 1;
1235static int tda9874a = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001236static int tea6300; /* default 0 - address clash with msp34xx */
1237static int tea6320; /* default 0 - address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001238static int tea6420 = 1;
1239static int pic16c54 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001240static int ta8874z; /* default 0 - address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242module_param(tda8425, int, 0444);
1243module_param(tda9840, int, 0444);
1244module_param(tda9850, int, 0444);
1245module_param(tda9855, int, 0444);
1246module_param(tda9873, int, 0444);
1247module_param(tda9874a, int, 0444);
1248module_param(tea6300, int, 0444);
1249module_param(tea6320, int, 0444);
1250module_param(tea6420, int, 0444);
1251module_param(pic16c54, int, 0444);
1252module_param(ta8874z, int, 0444);
1253
1254static struct CHIPDESC chiplist[] = {
1255 {
1256 .name = "tda9840",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001258 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1259 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 .registers = 5,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001261 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001263 /* callbacks */
Hans Verkuil94f9e562006-01-23 09:47:40 -02001264 .checkit = tda9840_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 .getmode = tda9840_getmode,
1266 .setmode = tda9840_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001268 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /* ,TDA9840_SW, TDA9840_MONO */} }
1270 },
1271 {
1272 .name = "tda9873h",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001274 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1275 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 .registers = 3,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001277 .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001279 /* callbacks */
1280 .checkit = tda9873_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 .getmode = tda9873_getmode,
1282 .setmode = tda9873_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1285 .inputreg = TDA9873_SW,
1286 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001287 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1289
1290 },
1291 {
1292 .name = "tda9874h/a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001294 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1295 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001296 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001298 /* callbacks */
1299 .initialize = tda9874a_initialize,
1300 .checkit = tda9874a_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 .getmode = tda9874a_getmode,
1302 .setmode = tda9874a_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 },
1304 {
1305 .name = "tda9850",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001307 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1308 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .registers = 11,
1310
1311 .getmode = tda985x_getmode,
1312 .setmode = tda985x_setmode,
1313
1314 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1315 },
1316 {
1317 .name = "tda9855",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001319 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1320 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 .registers = 11,
1322 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1323
1324 .leftreg = TDA9855_VL,
1325 .rightreg = TDA9855_VR,
1326 .bassreg = TDA9855_BA,
1327 .treblereg = TDA9855_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001328
1329 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 .volfunc = tda9855_volume,
1331 .bassfunc = tda9855_bass,
1332 .treblefunc = tda9855_treble,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 .getmode = tda985x_getmode,
1334 .setmode = tda985x_setmode,
1335
1336 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1337 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1338 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1339 0x07, 0x10, 0x10, 0x03 }}
1340 },
1341 {
1342 .name = "tea6300",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001344 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1345 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 .registers = 6,
1347 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1348
1349 .leftreg = TEA6300_VR,
1350 .rightreg = TEA6300_VL,
1351 .bassreg = TEA6300_BA,
1352 .treblereg = TEA6300_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001353
1354 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 .volfunc = tea6300_shift10,
1356 .bassfunc = tea6300_shift12,
1357 .treblefunc = tea6300_shift12,
1358
1359 .inputreg = TEA6300_S,
1360 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1361 .inputmute = TEA6300_S_GMU,
1362 },
1363 {
1364 .name = "tea6320",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001366 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1367 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 .registers = 8,
1369 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1370
1371 .leftreg = TEA6320_V,
1372 .rightreg = TEA6320_V,
1373 .bassreg = TEA6320_BA,
1374 .treblereg = TEA6320_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001375
1376 /* callbacks */
1377 .initialize = tea6320_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 .volfunc = tea6320_volume,
1379 .bassfunc = tea6320_shift11,
1380 .treblefunc = tea6320_shift11,
1381
1382 .inputreg = TEA6320_S,
1383 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1384 .inputmute = TEA6300_S_GMU,
1385 },
1386 {
1387 .name = "tea6420",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001389 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1390 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .registers = 1,
1392 .flags = CHIP_HAS_INPUTSEL,
1393
1394 .inputreg = -1,
1395 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1396 .inputmute = TEA6300_S_GMU,
1397 },
1398 {
1399 .name = "tda8425",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001401 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1402 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 .registers = 9,
1404 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1405
1406 .leftreg = TDA8425_VL,
1407 .rightreg = TDA8425_VR,
1408 .bassreg = TDA8425_BA,
1409 .treblereg = TDA8425_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001410
1411 /* callbacks */
1412 .initialize = tda8425_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 .volfunc = tda8425_shift10,
1414 .bassfunc = tda8425_shift12,
1415 .treblefunc = tda8425_shift12,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001416 .setmode = tda8425_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 .inputreg = TDA8425_S1,
1419 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1420 .inputmute = TDA8425_S1_OFF,
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 },
1423 {
1424 .name = "pic16c54 (PV951)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001426 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1427 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 .registers = 2,
1429 .flags = CHIP_HAS_INPUTSEL,
1430
1431 .inputreg = PIC16C54_REG_MISC,
1432 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1433 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1434 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001435 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 .inputmute = PIC16C54_MISC_SND_MUTE,
1437 },
1438 {
1439 .name = "ta8874z",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 .checkit = ta8874z_checkit,
1441 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001442 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1443 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 .registers = 2,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001445 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001447 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 .getmode = ta8874z_getmode,
1449 .setmode = ta8874z_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001451 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 },
1453 { .name = NULL } /* EOF */
1454};
1455
1456
1457/* ---------------------------------------------------------------------- */
1458/* i2c registration */
1459
Jean Delvared2653e92008-04-29 23:11:39 +02001460static int chip_probe(struct i2c_client *client, const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 struct CHIPSTATE *chip;
1463 struct CHIPDESC *desc;
1464
Hans Verkuil08e14052007-09-14 04:50:44 -03001465 if (debug) {
1466 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1467 printk(KERN_INFO "tvaudio: known chips: ");
1468 for (desc = chiplist; desc->name != NULL; desc++)
1469 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1470 printk("\n");
1471 }
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;
Hans Verkuil08e14052007-09-14 04:50:44 -03001476 chip->c = client;
1477 i2c_set_clientdata(client, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 /* find description for the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -03001480 v4l_dbg(1, debug, client, "chip found @ 0x%x\n", client->addr<<1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 for (desc = chiplist; desc->name != NULL; desc++) {
1482 if (0 == *(desc->insmodopt))
1483 continue;
Hans Verkuil08e14052007-09-14 04:50:44 -03001484 if (client->addr < desc->addr_lo ||
1485 client->addr > desc->addr_hi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 continue;
1487 if (desc->checkit && !desc->checkit(chip))
1488 continue;
1489 break;
1490 }
1491 if (desc->name == NULL) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001492 v4l_dbg(1, debug, client, "no matching chip description found\n");
Mauro Carvalho Chehab5c653352008-11-13 13:06:33 -03001493 kfree(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return -EIO;
1495 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001496 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 -08001497 if (desc->flags) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001498 v4l_dbg(1, debug, client, "matches:%s%s%s.\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001499 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
1500 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1501 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 /* fill required data structures */
Jean Delvareae429082008-05-11 20:37:06 +02001505 if (!id)
1506 strlcpy(client->name, desc->name, I2C_NAME_SIZE);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001507 chip->desc = desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 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
1512 /* initialization */
1513 if (desc->initialize != NULL)
1514 desc->initialize(chip);
1515 else
1516 chip_cmd(chip,"init",&desc->init);
1517
1518 if (desc->flags & CHIP_HAS_VOLUME) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001519 if (!desc->volfunc) {
1520 /* This shouldn't be happen. Warn user, but keep working
1521 without volume controls
1522 */
1523 v4l_info(chip->c, "volume callback undefined!\n");
1524 desc->flags &= ~CHIP_HAS_VOLUME;
1525 } else {
1526 chip->left = desc->leftinit ? desc->leftinit : 65535;
1527 chip->right = desc->rightinit ? desc->rightinit : 65535;
1528 chip_write(chip, desc->leftreg,
1529 desc->volfunc(chip->left));
1530 chip_write(chip, desc->rightreg,
1531 desc->volfunc(chip->right));
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534 if (desc->flags & CHIP_HAS_BASSTREBLE) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001535 if (!desc->bassfunc || !desc->treblefunc) {
1536 /* This shouldn't be happen. Warn user, but keep working
1537 without bass/treble controls
1538 */
1539 v4l_info(chip->c, "bass/treble callbacks undefined!\n");
1540 desc->flags &= ~CHIP_HAS_BASSTREBLE;
1541 } else {
1542 chip->treble = desc->trebleinit ?
1543 desc->trebleinit : 32768;
1544 chip->bass = desc->bassinit ?
1545 desc->bassinit : 32768;
1546 chip_write(chip, desc->bassreg,
1547 desc->bassfunc(chip->bass));
1548 chip_write(chip, desc->treblereg,
1549 desc->treblefunc(chip->treble));
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
1552
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001553 chip->thread = NULL;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001554 if (desc->flags & CHIP_NEED_CHECKMODE) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001555 if (!desc->getmode || !desc->setmode) {
1556 /* This shouldn't be happen. Warn user, but keep working
1557 without kthread
1558 */
1559 v4l_info(chip->c, "set/get mode callbacks undefined!\n");
1560 return 0;
1561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 /* start async thread */
1563 init_timer(&chip->wt);
1564 chip->wt.function = chip_thread_wake;
1565 chip->wt.data = (unsigned long)chip;
Hans Verkuil08e14052007-09-14 04:50:44 -03001566 chip->thread = kthread_run(chip_thread, chip, chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001567 if (IS_ERR(chip->thread)) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001568 v4l_warn(chip->c, "%s: failed to create kthread\n",
1569 chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001570 chip->thread = NULL;
1571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573 return 0;
1574}
1575
Hans Verkuil08e14052007-09-14 04:50:44 -03001576static int chip_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1579
1580 del_timer_sync(&chip->wt);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001581 if (chip->thread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /* shutdown async thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001583 kthread_stop(chip->thread);
1584 chip->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 kfree(chip);
1588 return 0;
1589}
1590
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001591static int tvaudio_get_ctrl(struct CHIPSTATE *chip,
1592 struct v4l2_control *ctrl)
1593{
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001594 struct CHIPDESC *desc = chip->desc;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001595
1596 switch (ctrl->id) {
1597 case V4L2_CID_AUDIO_MUTE:
1598 ctrl->value=chip->muted;
1599 return 0;
1600 case V4L2_CID_AUDIO_VOLUME:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001601 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001602 break;
1603 ctrl->value = max(chip->left,chip->right);
1604 return 0;
1605 case V4L2_CID_AUDIO_BALANCE:
1606 {
1607 int volume;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001608 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001609 break;
1610 volume = max(chip->left,chip->right);
1611 if (volume)
1612 ctrl->value=(32768*min(chip->left,chip->right))/volume;
1613 else
1614 ctrl->value=32768;
1615 return 0;
1616 }
1617 case V4L2_CID_AUDIO_BASS:
1618 if (desc->flags & CHIP_HAS_BASSTREBLE)
1619 break;
1620 ctrl->value = chip->bass;
1621 return 0;
1622 case V4L2_CID_AUDIO_TREBLE:
1623 if (desc->flags & CHIP_HAS_BASSTREBLE)
1624 return -EINVAL;
1625 ctrl->value = chip->treble;
1626 return 0;
1627 }
1628 return -EINVAL;
1629}
1630
1631static int tvaudio_set_ctrl(struct CHIPSTATE *chip,
1632 struct v4l2_control *ctrl)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001633{
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001634 struct CHIPDESC *desc = chip->desc;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001635
1636 switch (ctrl->id) {
1637 case V4L2_CID_AUDIO_MUTE:
1638 if (ctrl->value < 0 || ctrl->value >= 2)
1639 return -ERANGE;
1640 chip->muted = ctrl->value;
1641 if (chip->muted)
1642 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1643 else
1644 chip_write_masked(chip,desc->inputreg,
1645 desc->inputmap[chip->input],desc->inputmask);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001646 return 0;
1647 case V4L2_CID_AUDIO_VOLUME:
1648 {
1649 int volume,balance;
1650
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001651 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001652 break;
1653
1654 volume = max(chip->left,chip->right);
1655 if (volume)
1656 balance=(32768*min(chip->left,chip->right))/volume;
1657 else
1658 balance=32768;
1659
1660 volume=ctrl->value;
1661 chip->left = (min(65536 - balance,32768) * volume) / 32768;
1662 chip->right = (min(balance,volume *(__u16)32768)) / 32768;
1663
1664 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1665 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1666
1667 return 0;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001668 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001669 case V4L2_CID_AUDIO_BALANCE:
1670 {
1671 int volume, balance;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001672 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001673 break;
1674
1675 volume = max(chip->left,chip->right);
1676 balance = ctrl->value;
1677
1678 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1679 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1680
1681 return 0;
1682 }
1683 case V4L2_CID_AUDIO_BASS:
1684 if (desc->flags & CHIP_HAS_BASSTREBLE)
1685 break;
1686 chip->bass = ctrl->value;
1687 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1688
1689 return 0;
1690 case V4L2_CID_AUDIO_TREBLE:
1691 if (desc->flags & CHIP_HAS_BASSTREBLE)
1692 return -EINVAL;
1693
1694 chip->treble = ctrl->value;
1695 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1696
1697 return 0;
1698 }
1699 return -EINVAL;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001700}
1701
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703/* ---------------------------------------------------------------------- */
1704/* video4linux interface */
1705
1706static int chip_command(struct i2c_client *client,
1707 unsigned int cmd, void *arg)
1708{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 struct CHIPSTATE *chip = i2c_get_clientdata(client);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001710 struct CHIPDESC *desc = chip->desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Hans Verkuil08e14052007-09-14 04:50:44 -03001712 v4l_dbg(1, debug, chip->c, "%s: chip_command 0x%x\n", chip->c->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 case AUDC_SET_RADIO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001716 chip->radio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 chip->watch_stereo = 0;
1718 /* del_timer(&chip->wt); */
1719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 /* --- v4l ioctls --- */
1721 /* take care: bttv does userspace copying, we'll get a
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001722 kernel pointer here... */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001723 case VIDIOC_QUERYCTRL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001725 struct v4l2_queryctrl *qc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001727 switch (qc->id) {
1728 case V4L2_CID_AUDIO_MUTE:
1729 break;
1730 case V4L2_CID_AUDIO_VOLUME:
1731 case V4L2_CID_AUDIO_BALANCE:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001732 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001733 return -EINVAL;
1734 break;
1735 case V4L2_CID_AUDIO_BASS:
1736 case V4L2_CID_AUDIO_TREBLE:
1737 if (desc->flags & CHIP_HAS_BASSTREBLE)
1738 return -EINVAL;
1739 break;
1740 default:
1741 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001743 return v4l2_ctrl_query_fill_std(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001745 case VIDIOC_S_CTRL:
1746 return tvaudio_set_ctrl(chip, arg);
1747
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001748 case VIDIOC_G_CTRL:
1749 return tvaudio_get_ctrl(chip, arg);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001750 case VIDIOC_INT_G_AUDIO_ROUTING:
1751 {
1752 struct v4l2_routing *rt = arg;
1753
1754 rt->input = chip->input;
1755 rt->output = 0;
1756 break;
1757 }
Hans Verkuil2474ed42006-03-19 12:35:57 -03001758 case VIDIOC_INT_S_AUDIO_ROUTING:
1759 {
1760 struct v4l2_routing *rt = arg;
1761
1762 if (!(desc->flags & CHIP_HAS_INPUTSEL) || rt->input >= 4)
1763 return -EINVAL;
1764 /* There are four inputs: tuner, radio, extern and intern. */
1765 chip->input = rt->input;
1766 if (chip->muted)
1767 break;
1768 chip_write_masked(chip, desc->inputreg,
1769 desc->inputmap[chip->input], desc->inputmask);
1770 break;
1771 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001772 case VIDIOC_S_TUNER:
1773 {
1774 struct v4l2_tuner *vt = arg;
1775 int mode = 0;
1776
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001777 if (chip->radio)
1778 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001779 switch (vt->audmode) {
1780 case V4L2_TUNER_MODE_MONO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001781 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001782 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil8a854282006-01-09 15:25:43 -02001783 case V4L2_TUNER_MODE_LANG2:
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001784 mode = vt->audmode;
1785 break;
1786 case V4L2_TUNER_MODE_LANG1_LANG2:
1787 mode = V4L2_TUNER_MODE_STEREO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001788 break;
1789 default:
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001790 return -EINVAL;
Hans Verkuil8a854282006-01-09 15:25:43 -02001791 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001792 chip->audmode = vt->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001793
1794 if (desc->setmode && mode) {
1795 chip->watch_stereo = 0;
1796 /* del_timer(&chip->wt); */
1797 chip->mode = mode;
1798 desc->setmode(chip, mode);
1799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 break;
1801 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001802 case VIDIOC_G_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 {
Hans Verkuil8a854282006-01-09 15:25:43 -02001804 struct v4l2_tuner *vt = arg;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001805 int mode = V4L2_TUNER_MODE_MONO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001806
Hans Verkuild3900bc2006-01-09 15:25:44 -02001807 if (chip->radio)
1808 break;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001809 vt->audmode = chip->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001810 vt->rxsubchans = 0;
1811 vt->capability = V4L2_TUNER_CAP_STEREO |
1812 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001813
1814 if (desc->getmode)
1815 mode = desc->getmode(chip);
1816
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001817 if (mode & V4L2_TUNER_MODE_MONO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001818 vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001819 if (mode & V4L2_TUNER_MODE_STEREO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001820 vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001821 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1822 When this module is converted fully to v4l2, then this
1823 should change for those chips that can detect SAP. */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001824 if (mode & V4L2_TUNER_MODE_LANG1)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001825 vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1826 V4L2_TUNER_SUB_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001827 break;
1828 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001829 case VIDIOC_S_STD:
1830 chip->radio = 0;
1831 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001832 case VIDIOC_S_FREQUENCY:
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001833 chip->mode = 0; /* automatic */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001834
1835 /* For chips that provide getmode, setmode and checkmode,
1836 a kthread is created to automatically to set the audio
1837 standard. In this case, start with MONO and wait 2 seconds
1838 for the decoding to stablize. Then, run kthread to change
1839 to stereo, if carrier detected.
1840 */
1841 if (chip->thread) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001842 desc->setmode(chip,V4L2_TUNER_MODE_MONO);
1843 if (chip->prevmode != V4L2_TUNER_MODE_MONO)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001844 chip->prevmode = -1; /* reset previous mode */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -03001845 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001847 break;
Hans Verkuil74cab312007-04-27 12:31:26 -03001848
1849 case VIDIOC_G_CHIP_IDENT:
1850 return v4l2_chip_ident_i2c_client(client, arg, V4L2_IDENT_TVAUDIO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852 return 0;
1853}
1854
Hans Verkuil08e14052007-09-14 04:50:44 -03001855static int chip_legacy_probe(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Hans Verkuil08e14052007-09-14 04:50:44 -03001857 /* don't attach on saa7146 based cards,
1858 because dedicated drivers are used */
1859 if ((adap->id == I2C_HW_SAA7146))
1860 return 0;
1861 if (adap->class & I2C_CLASS_TV_ANALOG)
1862 return 1;
1863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
Jean Delvareae429082008-05-11 20:37:06 +02001866/* This driver supports many devices and the idea is to let the driver
1867 detect which device is present. So rather than listing all supported
1868 devices here, we pretend to support a single, fake device type. */
1869static const struct i2c_device_id chip_id[] = {
1870 { "tvaudio", 0 },
1871 { }
1872};
1873MODULE_DEVICE_TABLE(i2c, chip_id);
1874
Hans Verkuil08e14052007-09-14 04:50:44 -03001875static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1876 .name = "tvaudio",
1877 .driverid = I2C_DRIVERID_TVAUDIO,
1878 .command = chip_command,
1879 .probe = chip_probe,
1880 .remove = chip_remove,
1881 .legacy_probe = chip_legacy_probe,
Jean Delvareae429082008-05-11 20:37:06 +02001882 .id_table = chip_id,
Hans Verkuil08e14052007-09-14 04:50:44 -03001883};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885/*
1886 * Local variables:
1887 * c-basic-offset: 8
1888 * End:
1889 */