blob: ee6aca4ccd9f51d2a0326015c5bd7faf2fce1cc8 [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
115 /* index into CHIPDESC array */
116 int type;
117
118 /* shadow register set */
119 audiocmd shadow;
120
121 /* current settings */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300122 __u16 left,right,treble,bass,muted,mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 int prevmode;
Hans Verkuil8a854282006-01-09 15:25:43 -0200124 int radio;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300125 int input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300128 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct timer_list wt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int watch_stereo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200131 int audmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/* ---------------------------------------------------------------------- */
135/* i2c addresses */
136
137static unsigned short normal_i2c[] = {
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -0300138 I2C_ADDR_TDA8425 >> 1,
139 I2C_ADDR_TEA6300 >> 1,
140 I2C_ADDR_TEA6420 >> 1,
141 I2C_ADDR_TDA9840 >> 1,
142 I2C_ADDR_TDA985x_L >> 1,
143 I2C_ADDR_TDA985x_H >> 1,
144 I2C_ADDR_TDA9874 >> 1,
145 I2C_ADDR_PIC16C54 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147I2C_CLIENT_INSMOD;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* ---------------------------------------------------------------------- */
150/* i2c I/O functions */
151
152static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
153{
154 unsigned char buffer[2];
155
156 if (-1 == subaddr) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300157 v4l_dbg(1, debug, chip->c, "%s: chip_write: 0x%x\n",
158 chip->c->name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 chip->shadow.bytes[1] = val;
160 buffer[0] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300161 if (1 != i2c_master_send(chip->c,buffer,1)) {
162 v4l_warn(chip->c, "%s: I/O error (write 0x%x)\n",
163 chip->c->name, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -1;
165 }
166 } else {
Hans Verkuil08e14052007-09-14 04:50:44 -0300167 v4l_dbg(1, debug, chip->c, "%s: chip_write: reg%d=0x%x\n",
168 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 chip->shadow.bytes[subaddr+1] = val;
170 buffer[0] = subaddr;
171 buffer[1] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300172 if (2 != i2c_master_send(chip->c,buffer,2)) {
173 v4l_warn(chip->c, "%s: I/O error (write reg%d=0x%x)\n",
174 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return -1;
176 }
177 }
178 return 0;
179}
180
181static int chip_write_masked(struct CHIPSTATE *chip, int subaddr, int val, int mask)
182{
183 if (mask != 0) {
184 if (-1 == subaddr) {
185 val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
186 } else {
187 val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
188 }
189 }
190 return chip_write(chip, subaddr, val);
191}
192
193static int chip_read(struct CHIPSTATE *chip)
194{
195 unsigned char buffer;
196
Hans Verkuil08e14052007-09-14 04:50:44 -0300197 if (1 != i2c_master_recv(chip->c,&buffer,1)) {
198 v4l_warn(chip->c, "%s: I/O error (read)\n",
199 chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -1;
201 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300202 v4l_dbg(1, debug, chip->c, "%s: chip_read: 0x%x\n",chip->c->name, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return buffer;
204}
205
206static int chip_read2(struct CHIPSTATE *chip, int subaddr)
207{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700208 unsigned char write[1];
209 unsigned char read[1];
210 struct i2c_msg msgs[2] = {
Hans Verkuil08e14052007-09-14 04:50:44 -0300211 { chip->c->addr, 0, 1, write },
212 { chip->c->addr, I2C_M_RD, 1, read }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700213 };
214 write[0] = subaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Hans Verkuil08e14052007-09-14 04:50:44 -0300216 if (2 != i2c_transfer(chip->c->adapter,msgs,2)) {
217 v4l_warn(chip->c, "%s: I/O error (read2)\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return -1;
219 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300220 v4l_dbg(1, debug, chip->c, "%s: chip_read2: reg%d=0x%x\n",
221 chip->c->name, subaddr,read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return read[0];
223}
224
225static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
226{
227 int i;
228
229 if (0 == cmd->count)
230 return 0;
231
232 /* update our shadow register set; print bytes if (debug > 0) */
Hans Verkuil08e14052007-09-14 04:50:44 -0300233 v4l_dbg(1, debug, chip->c, "%s: chip_cmd(%s): reg=%d, data:",
234 chip->c->name, name,cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700236 if (debug)
237 printk(" 0x%x",cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
239 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700240 if (debug)
241 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 /* send data to the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -0300244 if (cmd->count != i2c_master_send(chip->c,cmd->bytes,cmd->count)) {
245 v4l_warn(chip->c, "%s: I/O error (%s)\n", chip->c->name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return -1;
247 }
248 return 0;
249}
250
251/* ---------------------------------------------------------------------- */
252/* kernel thread for doing i2c stuff asyncronly
253 * right now it is used only to check the audio mode (mono/stereo/whatever)
254 * some time after switching to another TV channel, then turn on stereo
255 * if available, ...
256 */
257
258static void chip_thread_wake(unsigned long data)
259{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700260 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300261 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264static int chip_thread(void *data)
265{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700266 struct CHIPSTATE *chip = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 struct CHIPDESC *desc = chiplist + chip->type;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300268 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Hans Verkuil08e14052007-09-14 04:50:44 -0300270 v4l_dbg(1, debug, chip->c, "%s: thread started\n", chip->c->name);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700271 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300273 set_current_state(TASK_INTERRUPTIBLE);
274 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300276 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700277 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300278 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
Hans Verkuil08e14052007-09-14 04:50:44 -0300280 v4l_dbg(1, debug, chip->c, "%s: thread wakeup\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* don't do anything for radio or if mode != auto */
Hans Verkuil8a854282006-01-09 15:25:43 -0200283 if (chip->radio || chip->mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 continue;
285
286 /* have a look what's going on */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300287 mode = desc->getmode(chip);
288 if (mode == chip->prevmode)
289 continue;
290
291 /* chip detected a new audio mode - set it */
292 v4l_dbg(1, debug, chip->c, "%s: thread checkmode\n",
293 chip->c->name);
294
295 chip->prevmode = mode;
296
297 if (mode & V4L2_TUNER_MODE_STEREO)
298 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
299 if (mode & V4L2_TUNER_MODE_LANG1_LANG2)
300 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
301 else if (mode & V4L2_TUNER_MODE_LANG1)
302 desc->setmode(chip, V4L2_TUNER_MODE_LANG1);
303 else if (mode & V4L2_TUNER_MODE_LANG2)
304 desc->setmode(chip, V4L2_TUNER_MODE_LANG2);
305 else
306 desc->setmode(chip, V4L2_TUNER_MODE_MONO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /* schedule next check */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -0300309 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
Hans Verkuil08e14052007-09-14 04:50:44 -0300312 v4l_dbg(1, debug, chip->c, "%s: thread exiting\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return 0;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/* ---------------------------------------------------------------------- */
317/* audio chip descriptions - defines+functions for tda9840 */
318
319#define TDA9840_SW 0x00
320#define TDA9840_LVADJ 0x02
321#define TDA9840_STADJ 0x03
322#define TDA9840_TEST 0x04
323
324#define TDA9840_MONO 0x10
325#define TDA9840_STEREO 0x2a
326#define TDA9840_DUALA 0x12
327#define TDA9840_DUALB 0x1e
328#define TDA9840_DUALAB 0x1a
329#define TDA9840_DUALBA 0x16
330#define TDA9840_EXTERNAL 0x7a
331
332#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
333#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
334#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
335
336#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
337#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
338
339static int tda9840_getmode(struct CHIPSTATE *chip)
340{
341 int val, mode;
342
343 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300344 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (val & TDA9840_DS_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300346 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (val & TDA9840_ST_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300348 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Hans Verkuil08e14052007-09-14 04:50:44 -0300350 v4l_dbg(1, debug, chip->c, "tda9840_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700351 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return mode;
353}
354
355static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
356{
357 int update = 1;
358 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
359
360 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300361 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 t |= TDA9840_MONO;
363 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300364 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 t |= TDA9840_STEREO;
366 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300367 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 t |= TDA9840_DUALA;
369 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300370 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 t |= TDA9840_DUALB;
372 break;
373 default:
374 update = 0;
375 }
376
377 if (update)
378 chip_write(chip, TDA9840_SW, t);
379}
380
Hans Verkuil94f9e562006-01-23 09:47:40 -0200381static int tda9840_checkit(struct CHIPSTATE *chip)
382{
383 int rc;
384 rc = chip_read(chip);
385 /* lower 5 bits should be 0 */
386 return ((rc & 0x1f) == 0) ? 1 : 0;
387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/* ---------------------------------------------------------------------- */
390/* audio chip descriptions - defines+functions for tda985x */
391
392/* subaddresses for TDA9855 */
393#define TDA9855_VR 0x00 /* Volume, right */
394#define TDA9855_VL 0x01 /* Volume, left */
395#define TDA9855_BA 0x02 /* Bass */
396#define TDA9855_TR 0x03 /* Treble */
397#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
398
399/* subaddresses for TDA9850 */
400#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
401
402/* subaddesses for both chips */
403#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
404#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
405#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
406#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
407#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
408#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
409
410/* Masks for bits in TDA9855 subaddresses */
411/* 0x00 - VR in TDA9855 */
412/* 0x01 - VL in TDA9855 */
413/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
414 * in 1dB steps - mute is 0x27 */
415
416
417/* 0x02 - BA in TDA9855 */
418/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
419 * in .5dB steps - 0 is 0x0E */
420
421
422/* 0x03 - TR in TDA9855 */
423/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
424 * in 3dB steps - 0 is 0x7 */
425
426/* Masks for bits in both chips' subaddresses */
427/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
428/* Unique to TDA9855: */
429/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
430 * in 3dB steps - mute is 0x0 */
431
432/* Unique to TDA9850: */
433/* lower 4 bits control stereo noise threshold, over which stereo turns off
434 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
435
436
437/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
438/* Unique to TDA9855: */
439#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
440#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
441#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
442#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
443 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800444 * of line in and line out, only the
445 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
447#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
448
449/* Unique to TDA9850: */
450/* lower 4 bits contol SAP noise threshold, over which SAP turns off
451 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
452
453
454/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
455/* Common to TDA9855 and TDA9850: */
456#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
457#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
458#define TDA985x_MONO 0 /* Forces Mono output */
459#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
460
461/* Unique to TDA9855: */
462#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
463#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
464#define TDA9855_LINEAR 0 /* Linear Stereo */
465#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
466#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
467#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
468#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
469
470/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
471/* Common to both TDA9855 and TDA9850: */
472/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
473 * in .5dB steps - 0dB is 0x7 */
474
475/* 0x08, 0x09 - A1 and A2 (read/write) */
476/* Common to both TDA9855 and TDA9850: */
477/* lower 5 bites are wideband and spectral expander alignment
478 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
479#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
480#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
481#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
482
483/* 0x0a - A3 */
484/* Common to both TDA9855 and TDA9850: */
485/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
486 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
487#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
488
489static int tda9855_volume(int val) { return val/0x2e8+0x27; }
490static int tda9855_bass(int val) { return val/0xccc+0x06; }
491static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
492
493static int tda985x_getmode(struct CHIPSTATE *chip)
494{
495 int mode;
496
497 mode = ((TDA985x_STP | TDA985x_SAPP) &
498 chip_read(chip)) >> 4;
499 /* Add mono mode regardless of SAP and stereo */
500 /* Allows forced mono */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300501 return mode | V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
505{
506 int update = 1;
507 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
508
509 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300510 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 c6 |= TDA985x_MONO;
512 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300513 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 c6 |= TDA985x_STEREO;
515 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300516 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 c6 |= TDA985x_SAP;
518 break;
519 default:
520 update = 0;
521 }
522 if (update)
523 chip_write(chip,TDA985x_C6,c6);
524}
525
526
527/* ---------------------------------------------------------------------- */
528/* audio chip descriptions - defines+functions for tda9873h */
529
530/* Subaddresses for TDA9873H */
531
532#define TDA9873_SW 0x00 /* Switching */
533#define TDA9873_AD 0x01 /* Adjust */
534#define TDA9873_PT 0x02 /* Port */
535
536/* Subaddress 0x00: Switching Data
537 * B7..B0:
538 *
539 * B1, B0: Input source selection
540 * 0, 0 internal
541 * 1, 0 external stereo
542 * 0, 1 external mono
543 */
544#define TDA9873_INP_MASK 3
545#define TDA9873_INTERNAL 0
546#define TDA9873_EXT_STEREO 2
547#define TDA9873_EXT_MONO 1
548
549/* B3, B2: output signal select
550 * B4 : transmission mode
551 * 0, 0, 1 Mono
552 * 1, 0, 0 Stereo
553 * 1, 1, 1 Stereo (reversed channel)
554 * 0, 0, 0 Dual AB
555 * 0, 0, 1 Dual AA
556 * 0, 1, 0 Dual BB
557 * 0, 1, 1 Dual BA
558 */
559
560#define TDA9873_TR_MASK (7 << 2)
561#define TDA9873_TR_MONO 4
562#define TDA9873_TR_STEREO 1 << 4
563#define TDA9873_TR_REVERSE (1 << 3) & (1 << 2)
564#define TDA9873_TR_DUALA 1 << 2
565#define TDA9873_TR_DUALB 1 << 3
566
567/* output level controls
568 * B5: output level switch (0 = reduced gain, 1 = normal gain)
569 * B6: mute (1 = muted)
570 * B7: auto-mute (1 = auto-mute enabled)
571 */
572
573#define TDA9873_GAIN_NORMAL 1 << 5
574#define TDA9873_MUTE 1 << 6
575#define TDA9873_AUTOMUTE 1 << 7
576
577/* Subaddress 0x01: Adjust/standard */
578
579/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
580 * Recommended value is +0 dB
581 */
582
583#define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
584
585/* Bits C6..C4 control FM stantard
586 * C6, C5, C4
587 * 0, 0, 0 B/G (PAL FM)
588 * 0, 0, 1 M
589 * 0, 1, 0 D/K(1)
590 * 0, 1, 1 D/K(2)
591 * 1, 0, 0 D/K(3)
592 * 1, 0, 1 I
593 */
594#define TDA9873_BG 0
595#define TDA9873_M 1
596#define TDA9873_DK1 2
597#define TDA9873_DK2 3
598#define TDA9873_DK3 4
599#define TDA9873_I 5
600
601/* C7 controls identification response time (1=fast/0=normal)
602 */
603#define TDA9873_IDR_NORM 0
604#define TDA9873_IDR_FAST 1 << 7
605
606
607/* Subaddress 0x02: Port data */
608
609/* E1, E0 free programmable ports P1/P2
610 0, 0 both ports low
611 0, 1 P1 high
612 1, 0 P2 high
613 1, 1 both ports high
614*/
615
616#define TDA9873_PORTS 3
617
618/* E2: test port */
619#define TDA9873_TST_PORT 1 << 2
620
621/* E5..E3 control mono output channel (together with transmission mode bit B4)
622 *
623 * E5 E4 E3 B4 OUTM
624 * 0 0 0 0 mono
625 * 0 0 1 0 DUAL B
626 * 0 1 0 1 mono (from stereo decoder)
627 */
628#define TDA9873_MOUT_MONO 0
629#define TDA9873_MOUT_FMONO 0
630#define TDA9873_MOUT_DUALA 0
631#define TDA9873_MOUT_DUALB 1 << 3
632#define TDA9873_MOUT_ST 1 << 4
633#define TDA9873_MOUT_EXTM (1 << 4 ) & (1 << 3)
634#define TDA9873_MOUT_EXTL 1 << 5
635#define TDA9873_MOUT_EXTR (1 << 5 ) & (1 << 3)
636#define TDA9873_MOUT_EXTLR (1 << 5 ) & (1 << 4)
637#define TDA9873_MOUT_MUTE (1 << 5 ) & (1 << 4) & (1 << 3)
638
639/* Status bits: (chip read) */
640#define TDA9873_PONR 0 /* Power-on reset detected if = 1 */
641#define TDA9873_STEREO 2 /* Stereo sound is identified */
642#define TDA9873_DUAL 4 /* Dual sound is identified */
643
644static int tda9873_getmode(struct CHIPSTATE *chip)
645{
646 int val,mode;
647
648 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300649 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (val & TDA9873_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300651 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (val & TDA9873_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300653 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Hans Verkuil08e14052007-09-14 04:50:44 -0300654 v4l_dbg(1, debug, chip->c, "tda9873_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700655 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return mode;
657}
658
659static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
660{
661 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
662 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
663
664 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300665 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return;
667 }
668
Hans Verkuil08e14052007-09-14 04:50:44 -0300669 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
670 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): sw_data = %d\n", sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300673 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 sw_data |= TDA9873_TR_MONO;
675 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300676 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 sw_data |= TDA9873_TR_STEREO;
678 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300679 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 sw_data |= TDA9873_TR_DUALA;
681 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300682 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 sw_data |= TDA9873_TR_DUALB;
684 break;
685 default:
686 chip->mode = 0;
687 return;
688 }
689
690 chip_write(chip, TDA9873_SW, sw_data);
Hans Verkuil08e14052007-09-14 04:50:44 -0300691 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 mode, sw_data);
693}
694
695static int tda9873_checkit(struct CHIPSTATE *chip)
696{
697 int rc;
698
699 if (-1 == (rc = chip_read2(chip,254)))
700 return 0;
701 return (rc & ~0x1f) == 0x80;
702}
703
704
705/* ---------------------------------------------------------------------- */
706/* audio chip description - defines+functions for tda9874h and tda9874a */
707/* Dariusz Kowalewski <darekk@automex.pl> */
708
709/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
710#define TDA9874A_AGCGR 0x00 /* AGC gain */
711#define TDA9874A_GCONR 0x01 /* general config */
712#define TDA9874A_MSR 0x02 /* monitor select */
713#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
714#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
715#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
716#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
717#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
718#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
719#define TDA9874A_DCR 0x09 /* demodulator config */
720#define TDA9874A_FMER 0x0a /* FM de-emphasis */
721#define TDA9874A_FMMR 0x0b /* FM dematrix */
722#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
723#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
724#define TDA9874A_NCONR 0x0e /* NICAM config */
725#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
726#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
727#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
728#define TDA9874A_AMCONR 0x12 /* audio mute control */
729#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
730#define TDA9874A_AOSR 0x14 /* analog output select */
731#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
732#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
733#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
734#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
735#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
736
737/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
738#define TDA9874A_DSR 0x00 /* device status */
739#define TDA9874A_NSR 0x01 /* NICAM status */
740#define TDA9874A_NECR 0x02 /* NICAM error count */
741#define TDA9874A_DR1 0x03 /* add. data LSB */
742#define TDA9874A_DR2 0x04 /* add. data MSB */
743#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
744#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
745#define TDA9874A_SIFLR 0x07 /* SIF level */
746#define TDA9874A_TR2 252 /* test reg. 2 */
747#define TDA9874A_TR1 253 /* test reg. 1 */
748#define TDA9874A_DIC 254 /* device id. code */
749#define TDA9874A_SIC 255 /* software id. code */
750
751
752static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
753static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
754static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
755static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
756static int tda9874a_dic = -1; /* device id. code */
757
758/* insmod options for tda9874a */
759static unsigned int tda9874a_SIF = UNSET;
760static unsigned int tda9874a_AMSEL = UNSET;
761static unsigned int tda9874a_STD = UNSET;
762module_param(tda9874a_SIF, int, 0444);
763module_param(tda9874a_AMSEL, int, 0444);
764module_param(tda9874a_STD, int, 0444);
765
766/*
767 * initialization table for tda9874 decoder:
768 * - carrier 1 freq. registers (3 bytes)
769 * - carrier 2 freq. registers (3 bytes)
770 * - demudulator config register
771 * - FM de-emphasis register (slow identification mode)
772 * Note: frequency registers must be written in single i2c transfer.
773 */
774static struct tda9874a_MODES {
775 char *name;
776 audiocmd cmd;
777} tda9874a_modelist[9] = {
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300778 { "A2, B/G", /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
780 { "A2, M (Korea)",
781 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
782 { "A2, D/K (1)",
783 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
784 { "A2, D/K (2)",
785 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
786 { "A2, D/K (3)",
787 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
788 { "NICAM, I",
789 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
790 { "NICAM, B/G",
791 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300792 { "NICAM, D/K",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
794 { "NICAM, L",
795 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
796};
797
798static int tda9874a_setup(struct CHIPSTATE *chip)
799{
800 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
801 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
802 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
803 if(tda9874a_dic == 0x11) {
804 chip_write(chip, TDA9874A_FMMR, 0x80);
805 } else { /* dic == 0x07 */
806 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
807 chip_write(chip, TDA9874A_FMMR, 0x00);
808 }
809 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
810 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
811 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
812 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
813 /* Note: If signal quality is poor you may want to change NICAM */
814 /* error limit registers (NLELR and NUELR) to some greater values. */
815 /* Then the sound would remain stereo, but won't be so clear. */
816 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
817 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
818
819 if(tda9874a_dic == 0x11) {
820 chip_write(chip, TDA9874A_AMCONR, 0xf9);
821 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
822 chip_write(chip, TDA9874A_AOSR, 0x80);
823 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
824 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
825 } else { /* dic == 0x07 */
826 chip_write(chip, TDA9874A_AMCONR, 0xfb);
827 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700828 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300830 v4l_dbg(1, debug, chip->c, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
832 return 1;
833}
834
835static int tda9874a_getmode(struct CHIPSTATE *chip)
836{
837 int dsr,nsr,mode;
838 int necr; /* just for debugging */
839
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300840 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
843 return mode;
844 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
845 return mode;
846 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
847 return mode;
848
849 /* need to store dsr/nsr somewhere */
850 chip->shadow.bytes[MAXREGS-2] = dsr;
851 chip->shadow.bytes[MAXREGS-1] = nsr;
852
853 if(tda9874a_mode) {
854 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
855 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
856 * that sound has (temporarily) switched from NICAM to
857 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
858 * error count. So in fact there is no stereo in this case :-(
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300859 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * external 4052 multiplexer in audio_hook().
861 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if(nsr & 0x02) /* NSR.S/MB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300863 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if(nsr & 0x01) /* NSR.D/SB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300865 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 } else {
867 if(dsr & 0x02) /* DSR.IDSTE=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300868 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if(dsr & 0x04) /* DSR.IDDUA=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300870 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
Hans Verkuil08e14052007-09-14 04:50:44 -0300873 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 -0700874 dsr, nsr, necr, mode);
875 return mode;
876}
877
878static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
879{
880 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
881 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
882 if(tda9874a_mode) {
883 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
884 tda9874a_NCONR &= 0xfe; /* enable */
885 else
886 tda9874a_NCONR |= 0x01; /* disable */
887 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
888 }
889
890 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
891 * and has auto-select function for audio output (AOSR register).
892 * Old TDA9874H doesn't support these features.
893 * TDA9874A also has additional mono output pin (OUTM), which
894 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
895 */
896 if(tda9874a_dic == 0x11) {
897 int aosr = 0x80;
898 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
899
900 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300901 case V4L2_TUNER_MODE_MONO:
902 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300904 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 aosr = 0x80; /* auto-select, dual A/A */
906 mdacosr = (tda9874a_mode) ? 0x82:0x80;
907 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300908 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 aosr = 0xa0; /* auto-select, dual B/B */
910 mdacosr = (tda9874a_mode) ? 0x83:0x81;
911 break;
912 default:
913 chip->mode = 0;
914 return;
915 }
916 chip_write(chip, TDA9874A_AOSR, aosr);
917 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
918
Hans Verkuil08e14052007-09-14 04:50:44 -0300919 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 -0700920 mode, aosr, mdacosr);
921
922 } else { /* dic == 0x07 */
923 int fmmr,aosr;
924
925 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300926 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 fmmr = 0x00; /* mono */
928 aosr = 0x10; /* A/A */
929 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300930 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if(tda9874a_mode) {
932 fmmr = 0x00;
933 aosr = 0x00; /* handled by NICAM auto-mute */
934 } else {
935 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
936 aosr = 0x00;
937 }
938 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300939 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 fmmr = 0x02; /* dual */
941 aosr = 0x10; /* dual A/A */
942 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300943 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 fmmr = 0x02; /* dual */
945 aosr = 0x20; /* dual B/B */
946 break;
947 default:
948 chip->mode = 0;
949 return;
950 }
951 chip_write(chip, TDA9874A_FMMR, fmmr);
952 chip_write(chip, TDA9874A_AOSR, aosr);
953
Hans Verkuil08e14052007-09-14 04:50:44 -0300954 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 -0700955 mode, fmmr, aosr);
956 }
957}
958
959static int tda9874a_checkit(struct CHIPSTATE *chip)
960{
961 int dic,sic; /* device id. and software id. codes */
962
963 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
964 return 0;
965 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
966 return 0;
967
Hans Verkuil08e14052007-09-14 04:50:44 -0300968 v4l_dbg(1, debug, chip->c, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300971 v4l_info(chip->c, "found tda9874%s.\n", (dic == 0x11) ? "a":"h");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 tda9874a_dic = dic; /* remember device id. */
973 return 1;
974 }
975 return 0; /* not found */
976}
977
978static int tda9874a_initialize(struct CHIPSTATE *chip)
979{
980 if (tda9874a_SIF > 2)
981 tda9874a_SIF = 1;
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300982 if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 tda9874a_STD = 0;
984 if(tda9874a_AMSEL > 1)
985 tda9874a_AMSEL = 0;
986
987 if(tda9874a_SIF == 1)
988 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
989 else
990 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
991
992 tda9874a_ESP = tda9874a_STD;
993 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
994
995 if(tda9874a_AMSEL == 0)
996 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
997 else
998 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
999
1000 tda9874a_setup(chip);
1001 return 0;
1002}
1003
1004
1005/* ---------------------------------------------------------------------- */
1006/* audio chip descriptions - defines+functions for tea6420 */
1007
1008#define TEA6300_VL 0x00 /* volume left */
1009#define TEA6300_VR 0x01 /* volume right */
1010#define TEA6300_BA 0x02 /* bass */
1011#define TEA6300_TR 0x03 /* treble */
1012#define TEA6300_FA 0x04 /* fader control */
1013#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001014 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015#define TEA6300_S_SA 0x01 /* stereo A input */
1016#define TEA6300_S_SB 0x02 /* stereo B */
1017#define TEA6300_S_SC 0x04 /* stereo C */
1018#define TEA6300_S_GMU 0x80 /* general mute */
1019
1020#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1021#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1022#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1023#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1024#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1025#define TEA6320_BA 0x05 /* bass (0-4) */
1026#define TEA6320_TR 0x06 /* treble (0-4) */
1027#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001028 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029#define TEA6320_S_SA 0x07 /* stereo A input */
1030#define TEA6320_S_SB 0x06 /* stereo B */
1031#define TEA6320_S_SC 0x05 /* stereo C */
1032#define TEA6320_S_SD 0x04 /* stereo D */
1033#define TEA6320_S_GMU 0x80 /* general mute */
1034
1035#define TEA6420_S_SA 0x00 /* stereo A input */
1036#define TEA6420_S_SB 0x01 /* stereo B */
1037#define TEA6420_S_SC 0x02 /* stereo C */
1038#define TEA6420_S_SD 0x03 /* stereo D */
1039#define TEA6420_S_SE 0x04 /* stereo E */
1040#define TEA6420_S_GMU 0x05 /* general mute */
1041
1042static int tea6300_shift10(int val) { return val >> 10; }
1043static int tea6300_shift12(int val) { return val >> 12; }
1044
1045/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1046/* 0x0c mirror those immediately higher) */
1047static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1048static int tea6320_shift11(int val) { return val >> 11; }
1049static int tea6320_initialize(struct CHIPSTATE * chip)
1050{
1051 chip_write(chip, TEA6320_FFR, 0x3f);
1052 chip_write(chip, TEA6320_FFL, 0x3f);
1053 chip_write(chip, TEA6320_FRR, 0x3f);
1054 chip_write(chip, TEA6320_FRL, 0x3f);
1055
1056 return 0;
1057}
1058
1059
1060/* ---------------------------------------------------------------------- */
1061/* audio chip descriptions - defines+functions for tda8425 */
1062
1063#define TDA8425_VL 0x00 /* volume left */
1064#define TDA8425_VR 0x01 /* volume right */
1065#define TDA8425_BA 0x02 /* bass */
1066#define TDA8425_TR 0x03 /* treble */
1067#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001068 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1070#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1071#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1072#define TDA8425_S1_MU 0x20 /* mute bit */
1073#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1074#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1075#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1076#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1077#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1078#define TDA8425_S1_ML 0x06 /* language selector */
1079#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1080#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1081#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1082#define TDA8425_S1_IS 0x01 /* channel selector */
1083
1084
1085static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1086static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1087
1088static int tda8425_initialize(struct CHIPSTATE *chip)
1089{
1090 struct CHIPDESC *desc = chiplist + chip->type;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001091 int inputmap[4] = { /* tuner */ TDA8425_S1_CH2, /* radio */ TDA8425_S1_CH1,
1092 /* extern */ TDA8425_S1_CH1, /* intern */ TDA8425_S1_OFF};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Hans Verkuil08e14052007-09-14 04:50:44 -03001094 if (chip->c->adapter->id == I2C_HW_B_RIVA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 memcpy (desc->inputmap, inputmap, sizeof (inputmap));
1096 }
1097 return 0;
1098}
1099
1100static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1101{
1102 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1103
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001104 if (mode & V4L2_TUNER_MODE_LANG1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 s1 |= TDA8425_S1_ML_SOUND_A;
1106 s1 |= TDA8425_S1_STEREO_PSEUDO;
1107
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001108 } else if (mode & V4L2_TUNER_MODE_LANG2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 s1 |= TDA8425_S1_ML_SOUND_B;
1110 s1 |= TDA8425_S1_STEREO_PSEUDO;
1111
1112 } else {
1113 s1 |= TDA8425_S1_ML_STEREO;
1114
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001115 if (mode & V4L2_TUNER_MODE_MONO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 s1 |= TDA8425_S1_STEREO_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001117 if (mode & V4L2_TUNER_MODE_STEREO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 s1 |= TDA8425_S1_STEREO_SPATIAL;
1119 }
1120 chip_write(chip,TDA8425_S1,s1);
1121}
1122
1123
1124/* ---------------------------------------------------------------------- */
1125/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1126
1127/* the registers of 16C54, I2C sub address. */
1128#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1129#define PIC16C54_REG_MISC 0x02
1130
1131/* bit definition of the RESET register, I2C data. */
1132#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001133 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1135#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1136#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1137#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1138#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1139#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1140#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1141
1142/* ---------------------------------------------------------------------- */
1143/* audio chip descriptions - defines+functions for TA8874Z */
1144
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001145/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146#define TA8874Z_LED_STE 0x80
1147#define TA8874Z_LED_BIL 0x40
1148#define TA8874Z_LED_EXT 0x20
1149#define TA8874Z_MONO_SET 0x10
1150#define TA8874Z_MUTE 0x08
1151#define TA8874Z_F_MONO 0x04
1152#define TA8874Z_MODE_SUB 0x02
1153#define TA8874Z_MODE_MAIN 0x01
1154
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001155/* write 2nd byte */
1156/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157#define TA8874Z_SEPARATION 0x3f
1158#define TA8874Z_SEPARATION_DEFAULT 0x10
1159
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001160/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161#define TA8874Z_B1 0x80
1162#define TA8874Z_B0 0x40
1163#define TA8874Z_CHAG_FLAG 0x20
1164
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001165/*
1166 * B1 B0
1167 * mono L H
1168 * stereo L L
1169 * BIL H L
1170 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171static int ta8874z_getmode(struct CHIPSTATE *chip)
1172{
1173 int val, mode;
1174
1175 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001176 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (val & TA8874Z_B1){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001178 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }else if (!(val & TA8874Z_B0)){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001180 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001182 /* 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 -07001183 return mode;
1184}
1185
1186static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1187static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1188static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1189static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1190
1191static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1192{
1193 int update = 1;
1194 audiocmd *t = NULL;
Hans Verkuil08e14052007-09-14 04:50:44 -03001195 v4l_dbg(1, debug, chip->c, "ta8874z_setmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 switch(mode){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001198 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 t = &ta8874z_mono;
1200 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001201 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 t = &ta8874z_stereo;
1203 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001204 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 t = &ta8874z_main;
1206 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001207 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 t = &ta8874z_sub;
1209 break;
1210 default:
1211 update = 0;
1212 }
1213
1214 if(update)
1215 chip_cmd(chip, "TA8874Z", t);
1216}
1217
1218static int ta8874z_checkit(struct CHIPSTATE *chip)
1219{
1220 int rc;
1221 rc = chip_read(chip);
1222 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1223}
1224
1225/* ---------------------------------------------------------------------- */
1226/* audio chip descriptions - struct CHIPDESC */
1227
1228/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001229static int tda8425 = 1;
1230static int tda9840 = 1;
1231static int tda9850 = 1;
1232static int tda9855 = 1;
1233static int tda9873 = 1;
1234static int tda9874a = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001235static int tea6300; /* default 0 - address clash with msp34xx */
1236static int tea6320; /* default 0 - address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001237static int tea6420 = 1;
1238static int pic16c54 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001239static int ta8874z; /* default 0 - address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241module_param(tda8425, int, 0444);
1242module_param(tda9840, int, 0444);
1243module_param(tda9850, int, 0444);
1244module_param(tda9855, int, 0444);
1245module_param(tda9873, int, 0444);
1246module_param(tda9874a, int, 0444);
1247module_param(tea6300, int, 0444);
1248module_param(tea6320, int, 0444);
1249module_param(tea6420, int, 0444);
1250module_param(pic16c54, int, 0444);
1251module_param(ta8874z, int, 0444);
1252
1253static struct CHIPDESC chiplist[] = {
1254 {
1255 .name = "tda9840",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001257 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1258 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 .registers = 5,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001260 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001262 /* callbacks */
Hans Verkuil94f9e562006-01-23 09:47:40 -02001263 .checkit = tda9840_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 .getmode = tda9840_getmode,
1265 .setmode = tda9840_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001267 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /* ,TDA9840_SW, TDA9840_MONO */} }
1269 },
1270 {
1271 .name = "tda9873h",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001273 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1274 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 .registers = 3,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001276 .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001278 /* callbacks */
1279 .checkit = tda9873_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 .getmode = tda9873_getmode,
1281 .setmode = tda9873_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1284 .inputreg = TDA9873_SW,
1285 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001286 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1288
1289 },
1290 {
1291 .name = "tda9874h/a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001293 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1294 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001295 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001297 /* callbacks */
1298 .initialize = tda9874a_initialize,
1299 .checkit = tda9874a_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 .getmode = tda9874a_getmode,
1301 .setmode = tda9874a_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 },
1303 {
1304 .name = "tda9850",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001306 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1307 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 .registers = 11,
1309
1310 .getmode = tda985x_getmode,
1311 .setmode = tda985x_setmode,
1312
1313 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1314 },
1315 {
1316 .name = "tda9855",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001318 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1319 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 .registers = 11,
1321 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1322
1323 .leftreg = TDA9855_VL,
1324 .rightreg = TDA9855_VR,
1325 .bassreg = TDA9855_BA,
1326 .treblereg = TDA9855_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001327
1328 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 .volfunc = tda9855_volume,
1330 .bassfunc = tda9855_bass,
1331 .treblefunc = tda9855_treble,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 .getmode = tda985x_getmode,
1333 .setmode = tda985x_setmode,
1334
1335 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1336 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1337 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1338 0x07, 0x10, 0x10, 0x03 }}
1339 },
1340 {
1341 .name = "tea6300",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001343 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1344 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 .registers = 6,
1346 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1347
1348 .leftreg = TEA6300_VR,
1349 .rightreg = TEA6300_VL,
1350 .bassreg = TEA6300_BA,
1351 .treblereg = TEA6300_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001352
1353 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 .volfunc = tea6300_shift10,
1355 .bassfunc = tea6300_shift12,
1356 .treblefunc = tea6300_shift12,
1357
1358 .inputreg = TEA6300_S,
1359 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1360 .inputmute = TEA6300_S_GMU,
1361 },
1362 {
1363 .name = "tea6320",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001365 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1366 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 .registers = 8,
1368 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1369
1370 .leftreg = TEA6320_V,
1371 .rightreg = TEA6320_V,
1372 .bassreg = TEA6320_BA,
1373 .treblereg = TEA6320_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001374
1375 /* callbacks */
1376 .initialize = tea6320_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .volfunc = tea6320_volume,
1378 .bassfunc = tea6320_shift11,
1379 .treblefunc = tea6320_shift11,
1380
1381 .inputreg = TEA6320_S,
1382 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1383 .inputmute = TEA6300_S_GMU,
1384 },
1385 {
1386 .name = "tea6420",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001388 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1389 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 .registers = 1,
1391 .flags = CHIP_HAS_INPUTSEL,
1392
1393 .inputreg = -1,
1394 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1395 .inputmute = TEA6300_S_GMU,
1396 },
1397 {
1398 .name = "tda8425",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001400 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1401 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 .registers = 9,
1403 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1404
1405 .leftreg = TDA8425_VL,
1406 .rightreg = TDA8425_VR,
1407 .bassreg = TDA8425_BA,
1408 .treblereg = TDA8425_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001409
1410 /* callbacks */
1411 .initialize = tda8425_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 .volfunc = tda8425_shift10,
1413 .bassfunc = tda8425_shift12,
1414 .treblefunc = tda8425_shift12,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001415 .setmode = tda8425_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 .inputreg = TDA8425_S1,
1418 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1419 .inputmute = TDA8425_S1_OFF,
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 },
1422 {
1423 .name = "pic16c54 (PV951)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001425 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1426 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 .registers = 2,
1428 .flags = CHIP_HAS_INPUTSEL,
1429
1430 .inputreg = PIC16C54_REG_MISC,
1431 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1432 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1433 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001434 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 .inputmute = PIC16C54_MISC_SND_MUTE,
1436 },
1437 {
1438 .name = "ta8874z",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 .checkit = ta8874z_checkit,
1440 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001441 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1442 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 .registers = 2,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001444 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001446 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 .getmode = ta8874z_getmode,
1448 .setmode = ta8874z_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001450 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 },
1452 { .name = NULL } /* EOF */
1453};
1454
1455
1456/* ---------------------------------------------------------------------- */
1457/* i2c registration */
1458
Jean Delvared2653e92008-04-29 23:11:39 +02001459static int chip_probe(struct i2c_client *client, const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 struct CHIPSTATE *chip;
1462 struct CHIPDESC *desc;
1463
Hans Verkuil08e14052007-09-14 04:50:44 -03001464 if (debug) {
1465 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1466 printk(KERN_INFO "tvaudio: known chips: ");
1467 for (desc = chiplist; desc->name != NULL; desc++)
1468 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1469 printk("\n");
1470 }
1471
Panagiotis Issaris74081872006-01-11 19:40:56 -02001472 chip = kzalloc(sizeof(*chip),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (!chip)
1474 return -ENOMEM;
Hans Verkuil08e14052007-09-14 04:50:44 -03001475 chip->c = client;
1476 i2c_set_clientdata(client, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 /* find description for the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -03001479 v4l_dbg(1, debug, client, "chip found @ 0x%x\n", client->addr<<1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 for (desc = chiplist; desc->name != NULL; desc++) {
1481 if (0 == *(desc->insmodopt))
1482 continue;
Hans Verkuil08e14052007-09-14 04:50:44 -03001483 if (client->addr < desc->addr_lo ||
1484 client->addr > desc->addr_hi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 continue;
1486 if (desc->checkit && !desc->checkit(chip))
1487 continue;
1488 break;
1489 }
1490 if (desc->name == NULL) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001491 v4l_dbg(1, debug, client, "no matching chip description found\n");
Mauro Carvalho Chehab5c653352008-11-13 13:06:33 -03001492 kfree(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return -EIO;
1494 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001495 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 -08001496 if (desc->flags) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001497 v4l_dbg(1, debug, client, "matches:%s%s%s.\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001498 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
1499 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1500 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 /* fill required data structures */
Jean Delvareae429082008-05-11 20:37:06 +02001504 if (!id)
1505 strlcpy(client->name, desc->name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 chip->type = desc-chiplist;
1507 chip->shadow.count = desc->registers+1;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001508 chip->prevmode = -1;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001509 chip->audmode = V4L2_TUNER_MODE_LANG1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 /* initialization */
1512 if (desc->initialize != NULL)
1513 desc->initialize(chip);
1514 else
1515 chip_cmd(chip,"init",&desc->init);
1516
1517 if (desc->flags & CHIP_HAS_VOLUME) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001518 if (!desc->volfunc) {
1519 /* This shouldn't be happen. Warn user, but keep working
1520 without volume controls
1521 */
1522 v4l_info(chip->c, "volume callback undefined!\n");
1523 desc->flags &= ~CHIP_HAS_VOLUME;
1524 } else {
1525 chip->left = desc->leftinit ? desc->leftinit : 65535;
1526 chip->right = desc->rightinit ? desc->rightinit : 65535;
1527 chip_write(chip, desc->leftreg,
1528 desc->volfunc(chip->left));
1529 chip_write(chip, desc->rightreg,
1530 desc->volfunc(chip->right));
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533 if (desc->flags & CHIP_HAS_BASSTREBLE) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001534 if (!desc->bassfunc || !desc->treblefunc) {
1535 /* This shouldn't be happen. Warn user, but keep working
1536 without bass/treble controls
1537 */
1538 v4l_info(chip->c, "bass/treble callbacks undefined!\n");
1539 desc->flags &= ~CHIP_HAS_BASSTREBLE;
1540 } else {
1541 chip->treble = desc->trebleinit ?
1542 desc->trebleinit : 32768;
1543 chip->bass = desc->bassinit ?
1544 desc->bassinit : 32768;
1545 chip_write(chip, desc->bassreg,
1546 desc->bassfunc(chip->bass));
1547 chip_write(chip, desc->treblereg,
1548 desc->treblefunc(chip->treble));
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
1551
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001552 chip->thread = NULL;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001553 if (desc->flags & CHIP_NEED_CHECKMODE) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001554 if (!desc->getmode || !desc->setmode) {
1555 /* This shouldn't be happen. Warn user, but keep working
1556 without kthread
1557 */
1558 v4l_info(chip->c, "set/get mode callbacks undefined!\n");
1559 return 0;
1560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 /* start async thread */
1562 init_timer(&chip->wt);
1563 chip->wt.function = chip_thread_wake;
1564 chip->wt.data = (unsigned long)chip;
Hans Verkuil08e14052007-09-14 04:50:44 -03001565 chip->thread = kthread_run(chip_thread, chip, chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001566 if (IS_ERR(chip->thread)) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001567 v4l_warn(chip->c, "%s: failed to create kthread\n",
1568 chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001569 chip->thread = NULL;
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572 return 0;
1573}
1574
Hans Verkuil08e14052007-09-14 04:50:44 -03001575static int chip_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1578
1579 del_timer_sync(&chip->wt);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001580 if (chip->thread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 /* shutdown async thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001582 kthread_stop(chip->thread);
1583 chip->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 kfree(chip);
1587 return 0;
1588}
1589
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001590static int tvaudio_get_ctrl(struct CHIPSTATE *chip,
1591 struct v4l2_control *ctrl)
1592{
1593 struct CHIPDESC *desc = chiplist + chip->type;
1594
1595 switch (ctrl->id) {
1596 case V4L2_CID_AUDIO_MUTE:
1597 ctrl->value=chip->muted;
1598 return 0;
1599 case V4L2_CID_AUDIO_VOLUME:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001600 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001601 break;
1602 ctrl->value = max(chip->left,chip->right);
1603 return 0;
1604 case V4L2_CID_AUDIO_BALANCE:
1605 {
1606 int volume;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001607 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001608 break;
1609 volume = max(chip->left,chip->right);
1610 if (volume)
1611 ctrl->value=(32768*min(chip->left,chip->right))/volume;
1612 else
1613 ctrl->value=32768;
1614 return 0;
1615 }
1616 case V4L2_CID_AUDIO_BASS:
1617 if (desc->flags & CHIP_HAS_BASSTREBLE)
1618 break;
1619 ctrl->value = chip->bass;
1620 return 0;
1621 case V4L2_CID_AUDIO_TREBLE:
1622 if (desc->flags & CHIP_HAS_BASSTREBLE)
1623 return -EINVAL;
1624 ctrl->value = chip->treble;
1625 return 0;
1626 }
1627 return -EINVAL;
1628}
1629
1630static int tvaudio_set_ctrl(struct CHIPSTATE *chip,
1631 struct v4l2_control *ctrl)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001632{
1633 struct CHIPDESC *desc = chiplist + chip->type;
1634
1635 switch (ctrl->id) {
1636 case V4L2_CID_AUDIO_MUTE:
1637 if (ctrl->value < 0 || ctrl->value >= 2)
1638 return -ERANGE;
1639 chip->muted = ctrl->value;
1640 if (chip->muted)
1641 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1642 else
1643 chip_write_masked(chip,desc->inputreg,
1644 desc->inputmap[chip->input],desc->inputmask);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001645 return 0;
1646 case V4L2_CID_AUDIO_VOLUME:
1647 {
1648 int volume,balance;
1649
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001650 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001651 break;
1652
1653 volume = max(chip->left,chip->right);
1654 if (volume)
1655 balance=(32768*min(chip->left,chip->right))/volume;
1656 else
1657 balance=32768;
1658
1659 volume=ctrl->value;
1660 chip->left = (min(65536 - balance,32768) * volume) / 32768;
1661 chip->right = (min(balance,volume *(__u16)32768)) / 32768;
1662
1663 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1664 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1665
1666 return 0;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001667 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001668 case V4L2_CID_AUDIO_BALANCE:
1669 {
1670 int volume, balance;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001671 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001672 break;
1673
1674 volume = max(chip->left,chip->right);
1675 balance = ctrl->value;
1676
1677 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1678 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1679
1680 return 0;
1681 }
1682 case V4L2_CID_AUDIO_BASS:
1683 if (desc->flags & CHIP_HAS_BASSTREBLE)
1684 break;
1685 chip->bass = ctrl->value;
1686 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1687
1688 return 0;
1689 case V4L2_CID_AUDIO_TREBLE:
1690 if (desc->flags & CHIP_HAS_BASSTREBLE)
1691 return -EINVAL;
1692
1693 chip->treble = ctrl->value;
1694 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1695
1696 return 0;
1697 }
1698 return -EINVAL;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001699}
1700
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702/* ---------------------------------------------------------------------- */
1703/* video4linux interface */
1704
1705static int chip_command(struct i2c_client *client,
1706 unsigned int cmd, void *arg)
1707{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1709 struct CHIPDESC *desc = chiplist + chip->type;
1710
Hans Verkuil08e14052007-09-14 04:50:44 -03001711 v4l_dbg(1, debug, chip->c, "%s: chip_command 0x%x\n", chip->c->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 case AUDC_SET_RADIO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001715 chip->radio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 chip->watch_stereo = 0;
1717 /* del_timer(&chip->wt); */
1718 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* --- v4l ioctls --- */
1720 /* take care: bttv does userspace copying, we'll get a
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001721 kernel pointer here... */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001722 case VIDIOC_QUERYCTRL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001724 struct v4l2_queryctrl *qc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001726 switch (qc->id) {
1727 case V4L2_CID_AUDIO_MUTE:
1728 break;
1729 case V4L2_CID_AUDIO_VOLUME:
1730 case V4L2_CID_AUDIO_BALANCE:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001731 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001732 return -EINVAL;
1733 break;
1734 case V4L2_CID_AUDIO_BASS:
1735 case V4L2_CID_AUDIO_TREBLE:
1736 if (desc->flags & CHIP_HAS_BASSTREBLE)
1737 return -EINVAL;
1738 break;
1739 default:
1740 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001742 return v4l2_ctrl_query_fill_std(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001744 case VIDIOC_S_CTRL:
1745 return tvaudio_set_ctrl(chip, arg);
1746
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001747 case VIDIOC_G_CTRL:
1748 return tvaudio_get_ctrl(chip, arg);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001749 case VIDIOC_INT_G_AUDIO_ROUTING:
1750 {
1751 struct v4l2_routing *rt = arg;
1752
1753 rt->input = chip->input;
1754 rt->output = 0;
1755 break;
1756 }
Hans Verkuil2474ed42006-03-19 12:35:57 -03001757 case VIDIOC_INT_S_AUDIO_ROUTING:
1758 {
1759 struct v4l2_routing *rt = arg;
1760
1761 if (!(desc->flags & CHIP_HAS_INPUTSEL) || rt->input >= 4)
1762 return -EINVAL;
1763 /* There are four inputs: tuner, radio, extern and intern. */
1764 chip->input = rt->input;
1765 if (chip->muted)
1766 break;
1767 chip_write_masked(chip, desc->inputreg,
1768 desc->inputmap[chip->input], desc->inputmask);
1769 break;
1770 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001771 case VIDIOC_S_TUNER:
1772 {
1773 struct v4l2_tuner *vt = arg;
1774 int mode = 0;
1775
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001776 if (chip->radio)
1777 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001778 switch (vt->audmode) {
1779 case V4L2_TUNER_MODE_MONO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001780 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001781 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil8a854282006-01-09 15:25:43 -02001782 case V4L2_TUNER_MODE_LANG2:
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001783 mode = vt->audmode;
1784 break;
1785 case V4L2_TUNER_MODE_LANG1_LANG2:
1786 mode = V4L2_TUNER_MODE_STEREO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001787 break;
1788 default:
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001789 return -EINVAL;
Hans Verkuil8a854282006-01-09 15:25:43 -02001790 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001791 chip->audmode = vt->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001792
1793 if (desc->setmode && mode) {
1794 chip->watch_stereo = 0;
1795 /* del_timer(&chip->wt); */
1796 chip->mode = mode;
1797 desc->setmode(chip, mode);
1798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 break;
1800 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001801 case VIDIOC_G_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 {
Hans Verkuil8a854282006-01-09 15:25:43 -02001803 struct v4l2_tuner *vt = arg;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001804 int mode = V4L2_TUNER_MODE_MONO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001805
Hans Verkuild3900bc2006-01-09 15:25:44 -02001806 if (chip->radio)
1807 break;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001808 vt->audmode = chip->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001809 vt->rxsubchans = 0;
1810 vt->capability = V4L2_TUNER_CAP_STEREO |
1811 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001812
1813 if (desc->getmode)
1814 mode = desc->getmode(chip);
1815
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001816 if (mode & V4L2_TUNER_MODE_MONO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001817 vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001818 if (mode & V4L2_TUNER_MODE_STEREO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001819 vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001820 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1821 When this module is converted fully to v4l2, then this
1822 should change for those chips that can detect SAP. */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001823 if (mode & V4L2_TUNER_MODE_LANG1)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001824 vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1825 V4L2_TUNER_SUB_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001826 break;
1827 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001828 case VIDIOC_S_STD:
1829 chip->radio = 0;
1830 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001831 case VIDIOC_S_FREQUENCY:
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001832 chip->mode = 0; /* automatic */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001833
1834 /* For chips that provide getmode, setmode and checkmode,
1835 a kthread is created to automatically to set the audio
1836 standard. In this case, start with MONO and wait 2 seconds
1837 for the decoding to stablize. Then, run kthread to change
1838 to stereo, if carrier detected.
1839 */
1840 if (chip->thread) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001841 desc->setmode(chip,V4L2_TUNER_MODE_MONO);
1842 if (chip->prevmode != V4L2_TUNER_MODE_MONO)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001843 chip->prevmode = -1; /* reset previous mode */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -03001844 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001846 break;
Hans Verkuil74cab312007-04-27 12:31:26 -03001847
1848 case VIDIOC_G_CHIP_IDENT:
1849 return v4l2_chip_ident_i2c_client(client, arg, V4L2_IDENT_TVAUDIO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851 return 0;
1852}
1853
Hans Verkuil08e14052007-09-14 04:50:44 -03001854static int chip_legacy_probe(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
Hans Verkuil08e14052007-09-14 04:50:44 -03001856 /* don't attach on saa7146 based cards,
1857 because dedicated drivers are used */
1858 if ((adap->id == I2C_HW_SAA7146))
1859 return 0;
1860 if (adap->class & I2C_CLASS_TV_ANALOG)
1861 return 1;
1862 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Jean Delvareae429082008-05-11 20:37:06 +02001865/* This driver supports many devices and the idea is to let the driver
1866 detect which device is present. So rather than listing all supported
1867 devices here, we pretend to support a single, fake device type. */
1868static const struct i2c_device_id chip_id[] = {
1869 { "tvaudio", 0 },
1870 { }
1871};
1872MODULE_DEVICE_TABLE(i2c, chip_id);
1873
Hans Verkuil08e14052007-09-14 04:50:44 -03001874static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1875 .name = "tvaudio",
1876 .driverid = I2C_DRIVERID_TVAUDIO,
1877 .command = chip_command,
1878 .probe = chip_probe,
1879 .remove = chip_remove,
1880 .legacy_probe = chip_legacy_probe,
Jean Delvareae429082008-05-11 20:37:06 +02001881 .id_table = chip_id,
Hans Verkuil08e14052007-09-14 04:50:44 -03001882};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884/*
1885 * Local variables:
1886 * c-basic-offset: 8
1887 * End:
1888 */