blob: 779ce7f865c373a5b18ee5c41ba87ea3ee6b41b6 [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};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/* current state of the chip */
111struct CHIPSTATE {
Hans Verkuil08e14052007-09-14 04:50:44 -0300112 struct i2c_client *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300114 /* chip-specific description - should point to
115 an entry at CHIPDESC table */
116 struct CHIPDESC *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
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
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300156 if (subaddr < 0) {
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 {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300167 if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
168 v4l_info(chip->c,
169 "Tried to access a non-existent register: %d\n",
170 subaddr);
171 return -EINVAL;
172 }
173
Hans Verkuil08e14052007-09-14 04:50:44 -0300174 v4l_dbg(1, debug, chip->c, "%s: chip_write: reg%d=0x%x\n",
175 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 chip->shadow.bytes[subaddr+1] = val;
177 buffer[0] = subaddr;
178 buffer[1] = val;
Hans Verkuil08e14052007-09-14 04:50:44 -0300179 if (2 != i2c_master_send(chip->c,buffer,2)) {
180 v4l_warn(chip->c, "%s: I/O error (write reg%d=0x%x)\n",
181 chip->c->name, subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return -1;
183 }
184 }
185 return 0;
186}
187
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300188static int chip_write_masked(struct CHIPSTATE *chip,
189 int subaddr, int val, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 if (mask != 0) {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300192 if (subaddr < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
194 } else {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300195 if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
196 v4l_info(chip->c,
197 "Tried to access a non-existent register: %d\n",
198 subaddr);
199 return -EINVAL;
200 }
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
203 }
204 }
205 return chip_write(chip, subaddr, val);
206}
207
208static int chip_read(struct CHIPSTATE *chip)
209{
210 unsigned char buffer;
211
Hans Verkuil08e14052007-09-14 04:50:44 -0300212 if (1 != i2c_master_recv(chip->c,&buffer,1)) {
213 v4l_warn(chip->c, "%s: I/O error (read)\n",
214 chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return -1;
216 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300217 v4l_dbg(1, debug, chip->c, "%s: chip_read: 0x%x\n",chip->c->name, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return buffer;
219}
220
221static int chip_read2(struct CHIPSTATE *chip, int subaddr)
222{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700223 unsigned char write[1];
224 unsigned char read[1];
225 struct i2c_msg msgs[2] = {
Hans Verkuil08e14052007-09-14 04:50:44 -0300226 { chip->c->addr, 0, 1, write },
227 { chip->c->addr, I2C_M_RD, 1, read }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700228 };
229 write[0] = subaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Hans Verkuil08e14052007-09-14 04:50:44 -0300231 if (2 != i2c_transfer(chip->c->adapter,msgs,2)) {
232 v4l_warn(chip->c, "%s: I/O error (read2)\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -1;
234 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300235 v4l_dbg(1, debug, chip->c, "%s: chip_read2: reg%d=0x%x\n",
236 chip->c->name, subaddr,read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return read[0];
238}
239
240static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
241{
242 int i;
243
244 if (0 == cmd->count)
245 return 0;
246
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300247 if (cmd->count + cmd->bytes[0] - 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
248 v4l_info(chip->c,
249 "Tried to access a non-existent register range: %d to %d\n",
250 cmd->bytes[0] + 1, cmd->bytes[0] + cmd->count - 1);
251 return -EINVAL;
252 }
253
254 /* FIXME: it seems that the shadow bytes are wrong bellow !*/
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* update our shadow register set; print bytes if (debug > 0) */
Hans Verkuil08e14052007-09-14 04:50:44 -0300257 v4l_dbg(1, debug, chip->c, "%s: chip_cmd(%s): reg=%d, data:",
258 chip->c->name, name,cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700260 if (debug)
261 printk(" 0x%x",cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
263 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700264 if (debug)
265 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* send data to the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -0300268 if (cmd->count != i2c_master_send(chip->c,cmd->bytes,cmd->count)) {
269 v4l_warn(chip->c, "%s: I/O error (%s)\n", chip->c->name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -1;
271 }
272 return 0;
273}
274
275/* ---------------------------------------------------------------------- */
276/* kernel thread for doing i2c stuff asyncronly
277 * right now it is used only to check the audio mode (mono/stereo/whatever)
278 * some time after switching to another TV channel, then turn on stereo
279 * if available, ...
280 */
281
282static void chip_thread_wake(unsigned long data)
283{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700284 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300285 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288static int chip_thread(void *data)
289{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700290 struct CHIPSTATE *chip = data;
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300291 struct CHIPDESC *desc = chip->desc;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300292 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Hans Verkuil08e14052007-09-14 04:50:44 -0300294 v4l_dbg(1, debug, chip->c, "%s: thread started\n", chip->c->name);
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700295 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300297 set_current_state(TASK_INTERRUPTIBLE);
298 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300300 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700301 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300302 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 break;
Hans Verkuil08e14052007-09-14 04:50:44 -0300304 v4l_dbg(1, debug, chip->c, "%s: thread wakeup\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* don't do anything for radio or if mode != auto */
Hans Verkuil8a854282006-01-09 15:25:43 -0200307 if (chip->radio || chip->mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 continue;
309
310 /* have a look what's going on */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300311 mode = desc->getmode(chip);
312 if (mode == chip->prevmode)
313 continue;
314
315 /* chip detected a new audio mode - set it */
316 v4l_dbg(1, debug, chip->c, "%s: thread checkmode\n",
317 chip->c->name);
318
319 chip->prevmode = mode;
320
321 if (mode & V4L2_TUNER_MODE_STEREO)
322 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
323 if (mode & V4L2_TUNER_MODE_LANG1_LANG2)
324 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
325 else if (mode & V4L2_TUNER_MODE_LANG1)
326 desc->setmode(chip, V4L2_TUNER_MODE_LANG1);
327 else if (mode & V4L2_TUNER_MODE_LANG2)
328 desc->setmode(chip, V4L2_TUNER_MODE_LANG2);
329 else
330 desc->setmode(chip, V4L2_TUNER_MODE_MONO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* schedule next check */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -0300333 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
Hans Verkuil08e14052007-09-14 04:50:44 -0300336 v4l_dbg(1, debug, chip->c, "%s: thread exiting\n", chip->c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return 0;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/* ---------------------------------------------------------------------- */
341/* audio chip descriptions - defines+functions for tda9840 */
342
343#define TDA9840_SW 0x00
344#define TDA9840_LVADJ 0x02
345#define TDA9840_STADJ 0x03
346#define TDA9840_TEST 0x04
347
348#define TDA9840_MONO 0x10
349#define TDA9840_STEREO 0x2a
350#define TDA9840_DUALA 0x12
351#define TDA9840_DUALB 0x1e
352#define TDA9840_DUALAB 0x1a
353#define TDA9840_DUALBA 0x16
354#define TDA9840_EXTERNAL 0x7a
355
356#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
357#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
358#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
359
360#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
361#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
362
363static int tda9840_getmode(struct CHIPSTATE *chip)
364{
365 int val, mode;
366
367 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300368 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (val & TDA9840_DS_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300370 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (val & TDA9840_ST_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300372 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Hans Verkuil08e14052007-09-14 04:50:44 -0300374 v4l_dbg(1, debug, chip->c, "tda9840_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700375 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return mode;
377}
378
379static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
380{
381 int update = 1;
382 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
383
384 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300385 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 t |= TDA9840_MONO;
387 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300388 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 t |= TDA9840_STEREO;
390 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300391 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 t |= TDA9840_DUALA;
393 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300394 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 t |= TDA9840_DUALB;
396 break;
397 default:
398 update = 0;
399 }
400
401 if (update)
402 chip_write(chip, TDA9840_SW, t);
403}
404
Hans Verkuil94f9e562006-01-23 09:47:40 -0200405static int tda9840_checkit(struct CHIPSTATE *chip)
406{
407 int rc;
408 rc = chip_read(chip);
409 /* lower 5 bits should be 0 */
410 return ((rc & 0x1f) == 0) ? 1 : 0;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/* ---------------------------------------------------------------------- */
414/* audio chip descriptions - defines+functions for tda985x */
415
416/* subaddresses for TDA9855 */
417#define TDA9855_VR 0x00 /* Volume, right */
418#define TDA9855_VL 0x01 /* Volume, left */
419#define TDA9855_BA 0x02 /* Bass */
420#define TDA9855_TR 0x03 /* Treble */
421#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
422
423/* subaddresses for TDA9850 */
424#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
425
426/* subaddesses for both chips */
427#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
428#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
429#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
430#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
431#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
432#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
433
434/* Masks for bits in TDA9855 subaddresses */
435/* 0x00 - VR in TDA9855 */
436/* 0x01 - VL in TDA9855 */
437/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
438 * in 1dB steps - mute is 0x27 */
439
440
441/* 0x02 - BA in TDA9855 */
442/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
443 * in .5dB steps - 0 is 0x0E */
444
445
446/* 0x03 - TR in TDA9855 */
447/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
448 * in 3dB steps - 0 is 0x7 */
449
450/* Masks for bits in both chips' subaddresses */
451/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
452/* Unique to TDA9855: */
453/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
454 * in 3dB steps - mute is 0x0 */
455
456/* Unique to TDA9850: */
457/* lower 4 bits control stereo noise threshold, over which stereo turns off
458 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
459
460
461/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
462/* Unique to TDA9855: */
463#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
464#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
465#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
466#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
467 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800468 * of line in and line out, only the
469 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
471#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
472
473/* Unique to TDA9850: */
474/* lower 4 bits contol SAP noise threshold, over which SAP turns off
475 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
476
477
478/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
479/* Common to TDA9855 and TDA9850: */
480#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
481#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
482#define TDA985x_MONO 0 /* Forces Mono output */
483#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
484
485/* Unique to TDA9855: */
486#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
487#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
488#define TDA9855_LINEAR 0 /* Linear Stereo */
489#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
490#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
491#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
492#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
493
494/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
495/* Common to both TDA9855 and TDA9850: */
496/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
497 * in .5dB steps - 0dB is 0x7 */
498
499/* 0x08, 0x09 - A1 and A2 (read/write) */
500/* Common to both TDA9855 and TDA9850: */
501/* lower 5 bites are wideband and spectral expander alignment
502 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
503#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
504#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
505#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
506
507/* 0x0a - A3 */
508/* Common to both TDA9855 and TDA9850: */
509/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
510 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
511#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
512
513static int tda9855_volume(int val) { return val/0x2e8+0x27; }
514static int tda9855_bass(int val) { return val/0xccc+0x06; }
515static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
516
517static int tda985x_getmode(struct CHIPSTATE *chip)
518{
519 int mode;
520
521 mode = ((TDA985x_STP | TDA985x_SAPP) &
522 chip_read(chip)) >> 4;
523 /* Add mono mode regardless of SAP and stereo */
524 /* Allows forced mono */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300525 return mode | V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
528static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
529{
530 int update = 1;
531 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
532
533 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300534 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 c6 |= TDA985x_MONO;
536 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300537 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 c6 |= TDA985x_STEREO;
539 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300540 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 c6 |= TDA985x_SAP;
542 break;
543 default:
544 update = 0;
545 }
546 if (update)
547 chip_write(chip,TDA985x_C6,c6);
548}
549
550
551/* ---------------------------------------------------------------------- */
552/* audio chip descriptions - defines+functions for tda9873h */
553
554/* Subaddresses for TDA9873H */
555
556#define TDA9873_SW 0x00 /* Switching */
557#define TDA9873_AD 0x01 /* Adjust */
558#define TDA9873_PT 0x02 /* Port */
559
560/* Subaddress 0x00: Switching Data
561 * B7..B0:
562 *
563 * B1, B0: Input source selection
564 * 0, 0 internal
565 * 1, 0 external stereo
566 * 0, 1 external mono
567 */
568#define TDA9873_INP_MASK 3
569#define TDA9873_INTERNAL 0
570#define TDA9873_EXT_STEREO 2
571#define TDA9873_EXT_MONO 1
572
573/* B3, B2: output signal select
574 * B4 : transmission mode
575 * 0, 0, 1 Mono
576 * 1, 0, 0 Stereo
577 * 1, 1, 1 Stereo (reversed channel)
578 * 0, 0, 0 Dual AB
579 * 0, 0, 1 Dual AA
580 * 0, 1, 0 Dual BB
581 * 0, 1, 1 Dual BA
582 */
583
584#define TDA9873_TR_MASK (7 << 2)
585#define TDA9873_TR_MONO 4
586#define TDA9873_TR_STEREO 1 << 4
587#define TDA9873_TR_REVERSE (1 << 3) & (1 << 2)
588#define TDA9873_TR_DUALA 1 << 2
589#define TDA9873_TR_DUALB 1 << 3
590
591/* output level controls
592 * B5: output level switch (0 = reduced gain, 1 = normal gain)
593 * B6: mute (1 = muted)
594 * B7: auto-mute (1 = auto-mute enabled)
595 */
596
597#define TDA9873_GAIN_NORMAL 1 << 5
598#define TDA9873_MUTE 1 << 6
599#define TDA9873_AUTOMUTE 1 << 7
600
601/* Subaddress 0x01: Adjust/standard */
602
603/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
604 * Recommended value is +0 dB
605 */
606
607#define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
608
609/* Bits C6..C4 control FM stantard
610 * C6, C5, C4
611 * 0, 0, 0 B/G (PAL FM)
612 * 0, 0, 1 M
613 * 0, 1, 0 D/K(1)
614 * 0, 1, 1 D/K(2)
615 * 1, 0, 0 D/K(3)
616 * 1, 0, 1 I
617 */
618#define TDA9873_BG 0
619#define TDA9873_M 1
620#define TDA9873_DK1 2
621#define TDA9873_DK2 3
622#define TDA9873_DK3 4
623#define TDA9873_I 5
624
625/* C7 controls identification response time (1=fast/0=normal)
626 */
627#define TDA9873_IDR_NORM 0
628#define TDA9873_IDR_FAST 1 << 7
629
630
631/* Subaddress 0x02: Port data */
632
633/* E1, E0 free programmable ports P1/P2
634 0, 0 both ports low
635 0, 1 P1 high
636 1, 0 P2 high
637 1, 1 both ports high
638*/
639
640#define TDA9873_PORTS 3
641
642/* E2: test port */
643#define TDA9873_TST_PORT 1 << 2
644
645/* E5..E3 control mono output channel (together with transmission mode bit B4)
646 *
647 * E5 E4 E3 B4 OUTM
648 * 0 0 0 0 mono
649 * 0 0 1 0 DUAL B
650 * 0 1 0 1 mono (from stereo decoder)
651 */
652#define TDA9873_MOUT_MONO 0
653#define TDA9873_MOUT_FMONO 0
654#define TDA9873_MOUT_DUALA 0
655#define TDA9873_MOUT_DUALB 1 << 3
656#define TDA9873_MOUT_ST 1 << 4
657#define TDA9873_MOUT_EXTM (1 << 4 ) & (1 << 3)
658#define TDA9873_MOUT_EXTL 1 << 5
659#define TDA9873_MOUT_EXTR (1 << 5 ) & (1 << 3)
660#define TDA9873_MOUT_EXTLR (1 << 5 ) & (1 << 4)
661#define TDA9873_MOUT_MUTE (1 << 5 ) & (1 << 4) & (1 << 3)
662
663/* Status bits: (chip read) */
664#define TDA9873_PONR 0 /* Power-on reset detected if = 1 */
665#define TDA9873_STEREO 2 /* Stereo sound is identified */
666#define TDA9873_DUAL 4 /* Dual sound is identified */
667
668static int tda9873_getmode(struct CHIPSTATE *chip)
669{
670 int val,mode;
671
672 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300673 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (val & TDA9873_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300675 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (val & TDA9873_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300677 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Hans Verkuil08e14052007-09-14 04:50:44 -0300678 v4l_dbg(1, debug, chip->c, "tda9873_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700679 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return mode;
681}
682
683static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
684{
685 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
686 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
687
688 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300689 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return;
691 }
692
Hans Verkuil08e14052007-09-14 04:50:44 -0300693 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
694 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): sw_data = %d\n", sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300697 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 sw_data |= TDA9873_TR_MONO;
699 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300700 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 sw_data |= TDA9873_TR_STEREO;
702 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300703 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 sw_data |= TDA9873_TR_DUALA;
705 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300706 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 sw_data |= TDA9873_TR_DUALB;
708 break;
709 default:
710 chip->mode = 0;
711 return;
712 }
713
714 chip_write(chip, TDA9873_SW, sw_data);
Hans Verkuil08e14052007-09-14 04:50:44 -0300715 v4l_dbg(1, debug, chip->c, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 mode, sw_data);
717}
718
719static int tda9873_checkit(struct CHIPSTATE *chip)
720{
721 int rc;
722
723 if (-1 == (rc = chip_read2(chip,254)))
724 return 0;
725 return (rc & ~0x1f) == 0x80;
726}
727
728
729/* ---------------------------------------------------------------------- */
730/* audio chip description - defines+functions for tda9874h and tda9874a */
731/* Dariusz Kowalewski <darekk@automex.pl> */
732
733/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
734#define TDA9874A_AGCGR 0x00 /* AGC gain */
735#define TDA9874A_GCONR 0x01 /* general config */
736#define TDA9874A_MSR 0x02 /* monitor select */
737#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
738#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
739#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
740#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
741#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
742#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
743#define TDA9874A_DCR 0x09 /* demodulator config */
744#define TDA9874A_FMER 0x0a /* FM de-emphasis */
745#define TDA9874A_FMMR 0x0b /* FM dematrix */
746#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
747#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
748#define TDA9874A_NCONR 0x0e /* NICAM config */
749#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
750#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
751#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
752#define TDA9874A_AMCONR 0x12 /* audio mute control */
753#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
754#define TDA9874A_AOSR 0x14 /* analog output select */
755#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
756#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
757#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
758#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
759#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
760
761/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
762#define TDA9874A_DSR 0x00 /* device status */
763#define TDA9874A_NSR 0x01 /* NICAM status */
764#define TDA9874A_NECR 0x02 /* NICAM error count */
765#define TDA9874A_DR1 0x03 /* add. data LSB */
766#define TDA9874A_DR2 0x04 /* add. data MSB */
767#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
768#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
769#define TDA9874A_SIFLR 0x07 /* SIF level */
770#define TDA9874A_TR2 252 /* test reg. 2 */
771#define TDA9874A_TR1 253 /* test reg. 1 */
772#define TDA9874A_DIC 254 /* device id. code */
773#define TDA9874A_SIC 255 /* software id. code */
774
775
776static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
777static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
778static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
779static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
780static int tda9874a_dic = -1; /* device id. code */
781
782/* insmod options for tda9874a */
783static unsigned int tda9874a_SIF = UNSET;
784static unsigned int tda9874a_AMSEL = UNSET;
785static unsigned int tda9874a_STD = UNSET;
786module_param(tda9874a_SIF, int, 0444);
787module_param(tda9874a_AMSEL, int, 0444);
788module_param(tda9874a_STD, int, 0444);
789
790/*
791 * initialization table for tda9874 decoder:
792 * - carrier 1 freq. registers (3 bytes)
793 * - carrier 2 freq. registers (3 bytes)
794 * - demudulator config register
795 * - FM de-emphasis register (slow identification mode)
796 * Note: frequency registers must be written in single i2c transfer.
797 */
798static struct tda9874a_MODES {
799 char *name;
800 audiocmd cmd;
801} tda9874a_modelist[9] = {
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300802 { "A2, B/G", /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
804 { "A2, M (Korea)",
805 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
806 { "A2, D/K (1)",
807 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
808 { "A2, D/K (2)",
809 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
810 { "A2, D/K (3)",
811 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
812 { "NICAM, I",
813 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
814 { "NICAM, B/G",
815 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300816 { "NICAM, D/K",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
818 { "NICAM, L",
819 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
820};
821
822static int tda9874a_setup(struct CHIPSTATE *chip)
823{
824 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
825 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
826 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
827 if(tda9874a_dic == 0x11) {
828 chip_write(chip, TDA9874A_FMMR, 0x80);
829 } else { /* dic == 0x07 */
830 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
831 chip_write(chip, TDA9874A_FMMR, 0x00);
832 }
833 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
834 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
835 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
836 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
837 /* Note: If signal quality is poor you may want to change NICAM */
838 /* error limit registers (NLELR and NUELR) to some greater values. */
839 /* Then the sound would remain stereo, but won't be so clear. */
840 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
841 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
842
843 if(tda9874a_dic == 0x11) {
844 chip_write(chip, TDA9874A_AMCONR, 0xf9);
845 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
846 chip_write(chip, TDA9874A_AOSR, 0x80);
847 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
848 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
849 } else { /* dic == 0x07 */
850 chip_write(chip, TDA9874A_AMCONR, 0xfb);
851 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700852 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
Hans Verkuil08e14052007-09-14 04:50:44 -0300854 v4l_dbg(1, debug, chip->c, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
856 return 1;
857}
858
859static int tda9874a_getmode(struct CHIPSTATE *chip)
860{
861 int dsr,nsr,mode;
862 int necr; /* just for debugging */
863
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300864 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
867 return mode;
868 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
869 return mode;
870 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
871 return mode;
872
873 /* need to store dsr/nsr somewhere */
874 chip->shadow.bytes[MAXREGS-2] = dsr;
875 chip->shadow.bytes[MAXREGS-1] = nsr;
876
877 if(tda9874a_mode) {
878 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
879 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
880 * that sound has (temporarily) switched from NICAM to
881 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
882 * error count. So in fact there is no stereo in this case :-(
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300883 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * external 4052 multiplexer in audio_hook().
885 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if(nsr & 0x02) /* NSR.S/MB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300887 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if(nsr & 0x01) /* NSR.D/SB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300889 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 } else {
891 if(dsr & 0x02) /* DSR.IDSTE=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300892 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if(dsr & 0x04) /* DSR.IDDUA=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300894 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
Hans Verkuil08e14052007-09-14 04:50:44 -0300897 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 -0700898 dsr, nsr, necr, mode);
899 return mode;
900}
901
902static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
903{
904 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
905 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
906 if(tda9874a_mode) {
907 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
908 tda9874a_NCONR &= 0xfe; /* enable */
909 else
910 tda9874a_NCONR |= 0x01; /* disable */
911 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
912 }
913
914 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
915 * and has auto-select function for audio output (AOSR register).
916 * Old TDA9874H doesn't support these features.
917 * TDA9874A also has additional mono output pin (OUTM), which
918 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
919 */
920 if(tda9874a_dic == 0x11) {
921 int aosr = 0x80;
922 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
923
924 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300925 case V4L2_TUNER_MODE_MONO:
926 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300928 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 aosr = 0x80; /* auto-select, dual A/A */
930 mdacosr = (tda9874a_mode) ? 0x82:0x80;
931 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300932 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 aosr = 0xa0; /* auto-select, dual B/B */
934 mdacosr = (tda9874a_mode) ? 0x83:0x81;
935 break;
936 default:
937 chip->mode = 0;
938 return;
939 }
940 chip_write(chip, TDA9874A_AOSR, aosr);
941 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
942
Hans Verkuil08e14052007-09-14 04:50:44 -0300943 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 -0700944 mode, aosr, mdacosr);
945
946 } else { /* dic == 0x07 */
947 int fmmr,aosr;
948
949 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300950 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 fmmr = 0x00; /* mono */
952 aosr = 0x10; /* A/A */
953 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300954 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if(tda9874a_mode) {
956 fmmr = 0x00;
957 aosr = 0x00; /* handled by NICAM auto-mute */
958 } else {
959 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
960 aosr = 0x00;
961 }
962 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300963 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 fmmr = 0x02; /* dual */
965 aosr = 0x10; /* dual A/A */
966 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300967 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 fmmr = 0x02; /* dual */
969 aosr = 0x20; /* dual B/B */
970 break;
971 default:
972 chip->mode = 0;
973 return;
974 }
975 chip_write(chip, TDA9874A_FMMR, fmmr);
976 chip_write(chip, TDA9874A_AOSR, aosr);
977
Hans Verkuil08e14052007-09-14 04:50:44 -0300978 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 -0700979 mode, fmmr, aosr);
980 }
981}
982
983static int tda9874a_checkit(struct CHIPSTATE *chip)
984{
985 int dic,sic; /* device id. and software id. codes */
986
987 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
988 return 0;
989 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
990 return 0;
991
Hans Verkuil08e14052007-09-14 04:50:44 -0300992 v4l_dbg(1, debug, chip->c, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuil08e14052007-09-14 04:50:44 -0300995 v4l_info(chip->c, "found tda9874%s.\n", (dic == 0x11) ? "a":"h");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 tda9874a_dic = dic; /* remember device id. */
997 return 1;
998 }
999 return 0; /* not found */
1000}
1001
1002static int tda9874a_initialize(struct CHIPSTATE *chip)
1003{
1004 if (tda9874a_SIF > 2)
1005 tda9874a_SIF = 1;
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -03001006 if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 tda9874a_STD = 0;
1008 if(tda9874a_AMSEL > 1)
1009 tda9874a_AMSEL = 0;
1010
1011 if(tda9874a_SIF == 1)
1012 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
1013 else
1014 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
1015
1016 tda9874a_ESP = tda9874a_STD;
1017 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
1018
1019 if(tda9874a_AMSEL == 0)
1020 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
1021 else
1022 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
1023
1024 tda9874a_setup(chip);
1025 return 0;
1026}
1027
1028
1029/* ---------------------------------------------------------------------- */
1030/* audio chip descriptions - defines+functions for tea6420 */
1031
1032#define TEA6300_VL 0x00 /* volume left */
1033#define TEA6300_VR 0x01 /* volume right */
1034#define TEA6300_BA 0x02 /* bass */
1035#define TEA6300_TR 0x03 /* treble */
1036#define TEA6300_FA 0x04 /* fader control */
1037#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001038 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039#define TEA6300_S_SA 0x01 /* stereo A input */
1040#define TEA6300_S_SB 0x02 /* stereo B */
1041#define TEA6300_S_SC 0x04 /* stereo C */
1042#define TEA6300_S_GMU 0x80 /* general mute */
1043
1044#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1045#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1046#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1047#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1048#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1049#define TEA6320_BA 0x05 /* bass (0-4) */
1050#define TEA6320_TR 0x06 /* treble (0-4) */
1051#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001052 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053#define TEA6320_S_SA 0x07 /* stereo A input */
1054#define TEA6320_S_SB 0x06 /* stereo B */
1055#define TEA6320_S_SC 0x05 /* stereo C */
1056#define TEA6320_S_SD 0x04 /* stereo D */
1057#define TEA6320_S_GMU 0x80 /* general mute */
1058
1059#define TEA6420_S_SA 0x00 /* stereo A input */
1060#define TEA6420_S_SB 0x01 /* stereo B */
1061#define TEA6420_S_SC 0x02 /* stereo C */
1062#define TEA6420_S_SD 0x03 /* stereo D */
1063#define TEA6420_S_SE 0x04 /* stereo E */
1064#define TEA6420_S_GMU 0x05 /* general mute */
1065
1066static int tea6300_shift10(int val) { return val >> 10; }
1067static int tea6300_shift12(int val) { return val >> 12; }
1068
1069/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1070/* 0x0c mirror those immediately higher) */
1071static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1072static int tea6320_shift11(int val) { return val >> 11; }
1073static int tea6320_initialize(struct CHIPSTATE * chip)
1074{
1075 chip_write(chip, TEA6320_FFR, 0x3f);
1076 chip_write(chip, TEA6320_FFL, 0x3f);
1077 chip_write(chip, TEA6320_FRR, 0x3f);
1078 chip_write(chip, TEA6320_FRL, 0x3f);
1079
1080 return 0;
1081}
1082
1083
1084/* ---------------------------------------------------------------------- */
1085/* audio chip descriptions - defines+functions for tda8425 */
1086
1087#define TDA8425_VL 0x00 /* volume left */
1088#define TDA8425_VR 0x01 /* volume right */
1089#define TDA8425_BA 0x02 /* bass */
1090#define TDA8425_TR 0x03 /* treble */
1091#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001092 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1094#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1095#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1096#define TDA8425_S1_MU 0x20 /* mute bit */
1097#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1098#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1099#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1100#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1101#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1102#define TDA8425_S1_ML 0x06 /* language selector */
1103#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1104#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1105#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1106#define TDA8425_S1_IS 0x01 /* channel selector */
1107
1108
1109static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1110static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1111
1112static int tda8425_initialize(struct CHIPSTATE *chip)
1113{
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001114 struct CHIPDESC *desc = chip->desc;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001115 int inputmap[4] = { /* tuner */ TDA8425_S1_CH2, /* radio */ TDA8425_S1_CH1,
1116 /* extern */ TDA8425_S1_CH1, /* intern */ TDA8425_S1_OFF};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Hans Verkuil08e14052007-09-14 04:50:44 -03001118 if (chip->c->adapter->id == I2C_HW_B_RIVA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 memcpy (desc->inputmap, inputmap, sizeof (inputmap));
1120 }
1121 return 0;
1122}
1123
1124static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1125{
1126 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1127
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001128 if (mode & V4L2_TUNER_MODE_LANG1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 s1 |= TDA8425_S1_ML_SOUND_A;
1130 s1 |= TDA8425_S1_STEREO_PSEUDO;
1131
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001132 } else if (mode & V4L2_TUNER_MODE_LANG2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 s1 |= TDA8425_S1_ML_SOUND_B;
1134 s1 |= TDA8425_S1_STEREO_PSEUDO;
1135
1136 } else {
1137 s1 |= TDA8425_S1_ML_STEREO;
1138
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001139 if (mode & V4L2_TUNER_MODE_MONO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 s1 |= TDA8425_S1_STEREO_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001141 if (mode & V4L2_TUNER_MODE_STEREO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 s1 |= TDA8425_S1_STEREO_SPATIAL;
1143 }
1144 chip_write(chip,TDA8425_S1,s1);
1145}
1146
1147
1148/* ---------------------------------------------------------------------- */
1149/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1150
1151/* the registers of 16C54, I2C sub address. */
1152#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1153#define PIC16C54_REG_MISC 0x02
1154
1155/* bit definition of the RESET register, I2C data. */
1156#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001157 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1159#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1160#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1161#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1162#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1163#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1164#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1165
1166/* ---------------------------------------------------------------------- */
1167/* audio chip descriptions - defines+functions for TA8874Z */
1168
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001169/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170#define TA8874Z_LED_STE 0x80
1171#define TA8874Z_LED_BIL 0x40
1172#define TA8874Z_LED_EXT 0x20
1173#define TA8874Z_MONO_SET 0x10
1174#define TA8874Z_MUTE 0x08
1175#define TA8874Z_F_MONO 0x04
1176#define TA8874Z_MODE_SUB 0x02
1177#define TA8874Z_MODE_MAIN 0x01
1178
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001179/* write 2nd byte */
1180/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181#define TA8874Z_SEPARATION 0x3f
1182#define TA8874Z_SEPARATION_DEFAULT 0x10
1183
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001184/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185#define TA8874Z_B1 0x80
1186#define TA8874Z_B0 0x40
1187#define TA8874Z_CHAG_FLAG 0x20
1188
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001189/*
1190 * B1 B0
1191 * mono L H
1192 * stereo L L
1193 * BIL H L
1194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195static int ta8874z_getmode(struct CHIPSTATE *chip)
1196{
1197 int val, mode;
1198
1199 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001200 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (val & TA8874Z_B1){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001202 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }else if (!(val & TA8874Z_B0)){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001204 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001206 /* 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 -07001207 return mode;
1208}
1209
1210static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1211static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1212static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1213static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1214
1215static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1216{
1217 int update = 1;
1218 audiocmd *t = NULL;
Hans Verkuil08e14052007-09-14 04:50:44 -03001219 v4l_dbg(1, debug, chip->c, "ta8874z_setmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 switch(mode){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001222 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 t = &ta8874z_mono;
1224 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001225 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 t = &ta8874z_stereo;
1227 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001228 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 t = &ta8874z_main;
1230 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001231 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 t = &ta8874z_sub;
1233 break;
1234 default:
1235 update = 0;
1236 }
1237
1238 if(update)
1239 chip_cmd(chip, "TA8874Z", t);
1240}
1241
1242static int ta8874z_checkit(struct CHIPSTATE *chip)
1243{
1244 int rc;
1245 rc = chip_read(chip);
1246 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1247}
1248
1249/* ---------------------------------------------------------------------- */
1250/* audio chip descriptions - struct CHIPDESC */
1251
1252/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001253static int tda8425 = 1;
1254static int tda9840 = 1;
1255static int tda9850 = 1;
1256static int tda9855 = 1;
1257static int tda9873 = 1;
1258static int tda9874a = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001259static int tea6300; /* default 0 - address clash with msp34xx */
1260static int tea6320; /* default 0 - address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001261static int tea6420 = 1;
1262static int pic16c54 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001263static int ta8874z; /* default 0 - address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265module_param(tda8425, int, 0444);
1266module_param(tda9840, int, 0444);
1267module_param(tda9850, int, 0444);
1268module_param(tda9855, int, 0444);
1269module_param(tda9873, int, 0444);
1270module_param(tda9874a, int, 0444);
1271module_param(tea6300, int, 0444);
1272module_param(tea6320, int, 0444);
1273module_param(tea6420, int, 0444);
1274module_param(pic16c54, int, 0444);
1275module_param(ta8874z, int, 0444);
1276
1277static struct CHIPDESC chiplist[] = {
1278 {
1279 .name = "tda9840",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001281 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1282 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 .registers = 5,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001284 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001286 /* callbacks */
Hans Verkuil94f9e562006-01-23 09:47:40 -02001287 .checkit = tda9840_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 .getmode = tda9840_getmode,
1289 .setmode = tda9840_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001291 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /* ,TDA9840_SW, TDA9840_MONO */} }
1293 },
1294 {
1295 .name = "tda9873h",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001297 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1298 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 .registers = 3,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001300 .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001302 /* callbacks */
1303 .checkit = tda9873_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 .getmode = tda9873_getmode,
1305 .setmode = tda9873_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1308 .inputreg = TDA9873_SW,
1309 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001310 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1312
1313 },
1314 {
1315 .name = "tda9874h/a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001317 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1318 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001319 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001321 /* callbacks */
1322 .initialize = tda9874a_initialize,
1323 .checkit = tda9874a_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 .getmode = tda9874a_getmode,
1325 .setmode = tda9874a_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 },
1327 {
1328 .name = "tda9850",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001330 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1331 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 .registers = 11,
1333
1334 .getmode = tda985x_getmode,
1335 .setmode = tda985x_setmode,
1336
1337 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1338 },
1339 {
1340 .name = "tda9855",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001342 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1343 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 .registers = 11,
1345 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1346
1347 .leftreg = TDA9855_VL,
1348 .rightreg = TDA9855_VR,
1349 .bassreg = TDA9855_BA,
1350 .treblereg = TDA9855_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001351
1352 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 .volfunc = tda9855_volume,
1354 .bassfunc = tda9855_bass,
1355 .treblefunc = tda9855_treble,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 .getmode = tda985x_getmode,
1357 .setmode = tda985x_setmode,
1358
1359 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1360 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1361 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1362 0x07, 0x10, 0x10, 0x03 }}
1363 },
1364 {
1365 .name = "tea6300",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001367 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1368 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 .registers = 6,
1370 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1371
1372 .leftreg = TEA6300_VR,
1373 .rightreg = TEA6300_VL,
1374 .bassreg = TEA6300_BA,
1375 .treblereg = TEA6300_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001376
1377 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 .volfunc = tea6300_shift10,
1379 .bassfunc = tea6300_shift12,
1380 .treblefunc = tea6300_shift12,
1381
1382 .inputreg = TEA6300_S,
1383 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1384 .inputmute = TEA6300_S_GMU,
1385 },
1386 {
1387 .name = "tea6320",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001389 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1390 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .registers = 8,
1392 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1393
1394 .leftreg = TEA6320_V,
1395 .rightreg = TEA6320_V,
1396 .bassreg = TEA6320_BA,
1397 .treblereg = TEA6320_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001398
1399 /* callbacks */
1400 .initialize = tea6320_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 .volfunc = tea6320_volume,
1402 .bassfunc = tea6320_shift11,
1403 .treblefunc = tea6320_shift11,
1404
1405 .inputreg = TEA6320_S,
1406 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1407 .inputmute = TEA6300_S_GMU,
1408 },
1409 {
1410 .name = "tea6420",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001412 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1413 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 .registers = 1,
1415 .flags = CHIP_HAS_INPUTSEL,
1416
1417 .inputreg = -1,
1418 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1419 .inputmute = TEA6300_S_GMU,
1420 },
1421 {
1422 .name = "tda8425",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001424 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1425 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 .registers = 9,
1427 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1428
1429 .leftreg = TDA8425_VL,
1430 .rightreg = TDA8425_VR,
1431 .bassreg = TDA8425_BA,
1432 .treblereg = TDA8425_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001433
1434 /* callbacks */
1435 .initialize = tda8425_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 .volfunc = tda8425_shift10,
1437 .bassfunc = tda8425_shift12,
1438 .treblefunc = tda8425_shift12,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001439 .setmode = tda8425_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 .inputreg = TDA8425_S1,
1442 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1443 .inputmute = TDA8425_S1_OFF,
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 },
1446 {
1447 .name = "pic16c54 (PV951)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001449 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1450 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .registers = 2,
1452 .flags = CHIP_HAS_INPUTSEL,
1453
1454 .inputreg = PIC16C54_REG_MISC,
1455 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1456 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1457 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001458 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 .inputmute = PIC16C54_MISC_SND_MUTE,
1460 },
1461 {
1462 .name = "ta8874z",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 .checkit = ta8874z_checkit,
1464 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001465 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1466 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 .registers = 2,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001468 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001470 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 .getmode = ta8874z_getmode,
1472 .setmode = ta8874z_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001474 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 },
1476 { .name = NULL } /* EOF */
1477};
1478
1479
1480/* ---------------------------------------------------------------------- */
1481/* i2c registration */
1482
Jean Delvared2653e92008-04-29 23:11:39 +02001483static int chip_probe(struct i2c_client *client, const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 struct CHIPSTATE *chip;
1486 struct CHIPDESC *desc;
1487
Hans Verkuil08e14052007-09-14 04:50:44 -03001488 if (debug) {
1489 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1490 printk(KERN_INFO "tvaudio: known chips: ");
1491 for (desc = chiplist; desc->name != NULL; desc++)
1492 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1493 printk("\n");
1494 }
1495
Panagiotis Issaris74081872006-01-11 19:40:56 -02001496 chip = kzalloc(sizeof(*chip),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (!chip)
1498 return -ENOMEM;
Hans Verkuil08e14052007-09-14 04:50:44 -03001499 chip->c = client;
1500 i2c_set_clientdata(client, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 /* find description for the chip */
Hans Verkuil08e14052007-09-14 04:50:44 -03001503 v4l_dbg(1, debug, client, "chip found @ 0x%x\n", client->addr<<1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 for (desc = chiplist; desc->name != NULL; desc++) {
1505 if (0 == *(desc->insmodopt))
1506 continue;
Hans Verkuil08e14052007-09-14 04:50:44 -03001507 if (client->addr < desc->addr_lo ||
1508 client->addr > desc->addr_hi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 continue;
1510 if (desc->checkit && !desc->checkit(chip))
1511 continue;
1512 break;
1513 }
1514 if (desc->name == NULL) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001515 v4l_dbg(1, debug, client, "no matching chip description found\n");
Mauro Carvalho Chehab5c653352008-11-13 13:06:33 -03001516 kfree(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return -EIO;
1518 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001519 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 -08001520 if (desc->flags) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001521 v4l_dbg(1, debug, client, "matches:%s%s%s.\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001522 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
1523 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1524 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 /* fill required data structures */
Jean Delvareae429082008-05-11 20:37:06 +02001528 if (!id)
1529 strlcpy(client->name, desc->name, I2C_NAME_SIZE);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001530 chip->desc = desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 chip->shadow.count = desc->registers+1;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001532 chip->prevmode = -1;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001533 chip->audmode = V4L2_TUNER_MODE_LANG1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 /* initialization */
1536 if (desc->initialize != NULL)
1537 desc->initialize(chip);
1538 else
1539 chip_cmd(chip,"init",&desc->init);
1540
1541 if (desc->flags & CHIP_HAS_VOLUME) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001542 if (!desc->volfunc) {
1543 /* This shouldn't be happen. Warn user, but keep working
1544 without volume controls
1545 */
1546 v4l_info(chip->c, "volume callback undefined!\n");
1547 desc->flags &= ~CHIP_HAS_VOLUME;
1548 } else {
1549 chip->left = desc->leftinit ? desc->leftinit : 65535;
1550 chip->right = desc->rightinit ? desc->rightinit : 65535;
1551 chip_write(chip, desc->leftreg,
1552 desc->volfunc(chip->left));
1553 chip_write(chip, desc->rightreg,
1554 desc->volfunc(chip->right));
1555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557 if (desc->flags & CHIP_HAS_BASSTREBLE) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001558 if (!desc->bassfunc || !desc->treblefunc) {
1559 /* This shouldn't be happen. Warn user, but keep working
1560 without bass/treble controls
1561 */
1562 v4l_info(chip->c, "bass/treble callbacks undefined!\n");
1563 desc->flags &= ~CHIP_HAS_BASSTREBLE;
1564 } else {
1565 chip->treble = desc->trebleinit ?
1566 desc->trebleinit : 32768;
1567 chip->bass = desc->bassinit ?
1568 desc->bassinit : 32768;
1569 chip_write(chip, desc->bassreg,
1570 desc->bassfunc(chip->bass));
1571 chip_write(chip, desc->treblereg,
1572 desc->treblefunc(chip->treble));
1573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001576 chip->thread = NULL;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001577 if (desc->flags & CHIP_NEED_CHECKMODE) {
Mauro Carvalho Chehab099b7fc2008-11-13 14:01:15 -03001578 if (!desc->getmode || !desc->setmode) {
1579 /* This shouldn't be happen. Warn user, but keep working
1580 without kthread
1581 */
1582 v4l_info(chip->c, "set/get mode callbacks undefined!\n");
1583 return 0;
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /* start async thread */
1586 init_timer(&chip->wt);
1587 chip->wt.function = chip_thread_wake;
1588 chip->wt.data = (unsigned long)chip;
Hans Verkuil08e14052007-09-14 04:50:44 -03001589 chip->thread = kthread_run(chip_thread, chip, chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001590 if (IS_ERR(chip->thread)) {
Hans Verkuil08e14052007-09-14 04:50:44 -03001591 v4l_warn(chip->c, "%s: failed to create kthread\n",
1592 chip->c->name);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001593 chip->thread = NULL;
1594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
1596 return 0;
1597}
1598
Hans Verkuil08e14052007-09-14 04:50:44 -03001599static int chip_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
1601 struct CHIPSTATE *chip = i2c_get_clientdata(client);
1602
1603 del_timer_sync(&chip->wt);
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001604 if (chip->thread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 /* shutdown async thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -03001606 kthread_stop(chip->thread);
1607 chip->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 kfree(chip);
1611 return 0;
1612}
1613
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001614static int tvaudio_get_ctrl(struct CHIPSTATE *chip,
1615 struct v4l2_control *ctrl)
1616{
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001617 struct CHIPDESC *desc = chip->desc;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001618
1619 switch (ctrl->id) {
1620 case V4L2_CID_AUDIO_MUTE:
1621 ctrl->value=chip->muted;
1622 return 0;
1623 case V4L2_CID_AUDIO_VOLUME:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001624 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001625 break;
1626 ctrl->value = max(chip->left,chip->right);
1627 return 0;
1628 case V4L2_CID_AUDIO_BALANCE:
1629 {
1630 int volume;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001631 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001632 break;
1633 volume = max(chip->left,chip->right);
1634 if (volume)
1635 ctrl->value=(32768*min(chip->left,chip->right))/volume;
1636 else
1637 ctrl->value=32768;
1638 return 0;
1639 }
1640 case V4L2_CID_AUDIO_BASS:
1641 if (desc->flags & CHIP_HAS_BASSTREBLE)
1642 break;
1643 ctrl->value = chip->bass;
1644 return 0;
1645 case V4L2_CID_AUDIO_TREBLE:
1646 if (desc->flags & CHIP_HAS_BASSTREBLE)
1647 return -EINVAL;
1648 ctrl->value = chip->treble;
1649 return 0;
1650 }
1651 return -EINVAL;
1652}
1653
1654static int tvaudio_set_ctrl(struct CHIPSTATE *chip,
1655 struct v4l2_control *ctrl)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001656{
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001657 struct CHIPDESC *desc = chip->desc;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001658
1659 switch (ctrl->id) {
1660 case V4L2_CID_AUDIO_MUTE:
1661 if (ctrl->value < 0 || ctrl->value >= 2)
1662 return -ERANGE;
1663 chip->muted = ctrl->value;
1664 if (chip->muted)
1665 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1666 else
1667 chip_write_masked(chip,desc->inputreg,
1668 desc->inputmap[chip->input],desc->inputmask);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001669 return 0;
1670 case V4L2_CID_AUDIO_VOLUME:
1671 {
1672 int volume,balance;
1673
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001674 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001675 break;
1676
1677 volume = max(chip->left,chip->right);
1678 if (volume)
1679 balance=(32768*min(chip->left,chip->right))/volume;
1680 else
1681 balance=32768;
1682
1683 volume=ctrl->value;
1684 chip->left = (min(65536 - balance,32768) * volume) / 32768;
1685 chip->right = (min(balance,volume *(__u16)32768)) / 32768;
1686
1687 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1688 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1689
1690 return 0;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001691 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001692 case V4L2_CID_AUDIO_BALANCE:
1693 {
1694 int volume, balance;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001695 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001696 break;
1697
1698 volume = max(chip->left,chip->right);
1699 balance = ctrl->value;
1700
1701 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1702 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1703
1704 return 0;
1705 }
1706 case V4L2_CID_AUDIO_BASS:
1707 if (desc->flags & CHIP_HAS_BASSTREBLE)
1708 break;
1709 chip->bass = ctrl->value;
1710 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1711
1712 return 0;
1713 case V4L2_CID_AUDIO_TREBLE:
1714 if (desc->flags & CHIP_HAS_BASSTREBLE)
1715 return -EINVAL;
1716
1717 chip->treble = ctrl->value;
1718 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1719
1720 return 0;
1721 }
1722 return -EINVAL;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001723}
1724
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726/* ---------------------------------------------------------------------- */
1727/* video4linux interface */
1728
1729static int chip_command(struct i2c_client *client,
1730 unsigned int cmd, void *arg)
1731{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 struct CHIPSTATE *chip = i2c_get_clientdata(client);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001733 struct CHIPDESC *desc = chip->desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Hans Verkuil08e14052007-09-14 04:50:44 -03001735 v4l_dbg(1, debug, chip->c, "%s: chip_command 0x%x\n", chip->c->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 case AUDC_SET_RADIO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001739 chip->radio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 chip->watch_stereo = 0;
1741 /* del_timer(&chip->wt); */
1742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 /* --- v4l ioctls --- */
1744 /* take care: bttv does userspace copying, we'll get a
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001745 kernel pointer here... */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001746 case VIDIOC_QUERYCTRL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001748 struct v4l2_queryctrl *qc = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001750 switch (qc->id) {
1751 case V4L2_CID_AUDIO_MUTE:
1752 break;
1753 case V4L2_CID_AUDIO_VOLUME:
1754 case V4L2_CID_AUDIO_BALANCE:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001755 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001756 return -EINVAL;
1757 break;
1758 case V4L2_CID_AUDIO_BASS:
1759 case V4L2_CID_AUDIO_TREBLE:
1760 if (desc->flags & CHIP_HAS_BASSTREBLE)
1761 return -EINVAL;
1762 break;
1763 default:
1764 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001766 return v4l2_ctrl_query_fill_std(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001768 case VIDIOC_S_CTRL:
1769 return tvaudio_set_ctrl(chip, arg);
1770
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001771 case VIDIOC_G_CTRL:
1772 return tvaudio_get_ctrl(chip, arg);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001773 case VIDIOC_INT_G_AUDIO_ROUTING:
1774 {
1775 struct v4l2_routing *rt = arg;
1776
1777 rt->input = chip->input;
1778 rt->output = 0;
1779 break;
1780 }
Hans Verkuil2474ed42006-03-19 12:35:57 -03001781 case VIDIOC_INT_S_AUDIO_ROUTING:
1782 {
1783 struct v4l2_routing *rt = arg;
1784
1785 if (!(desc->flags & CHIP_HAS_INPUTSEL) || rt->input >= 4)
1786 return -EINVAL;
1787 /* There are four inputs: tuner, radio, extern and intern. */
1788 chip->input = rt->input;
1789 if (chip->muted)
1790 break;
1791 chip_write_masked(chip, desc->inputreg,
1792 desc->inputmap[chip->input], desc->inputmask);
1793 break;
1794 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001795 case VIDIOC_S_TUNER:
1796 {
1797 struct v4l2_tuner *vt = arg;
1798 int mode = 0;
1799
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001800 if (chip->radio)
1801 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001802 switch (vt->audmode) {
1803 case V4L2_TUNER_MODE_MONO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001804 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil8a854282006-01-09 15:25:43 -02001805 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil8a854282006-01-09 15:25:43 -02001806 case V4L2_TUNER_MODE_LANG2:
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001807 mode = vt->audmode;
1808 break;
1809 case V4L2_TUNER_MODE_LANG1_LANG2:
1810 mode = V4L2_TUNER_MODE_STEREO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001811 break;
1812 default:
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001813 return -EINVAL;
Hans Verkuil8a854282006-01-09 15:25:43 -02001814 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001815 chip->audmode = vt->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001816
1817 if (desc->setmode && mode) {
1818 chip->watch_stereo = 0;
1819 /* del_timer(&chip->wt); */
1820 chip->mode = mode;
1821 desc->setmode(chip, mode);
1822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 break;
1824 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001825 case VIDIOC_G_TUNER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 {
Hans Verkuil8a854282006-01-09 15:25:43 -02001827 struct v4l2_tuner *vt = arg;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001828 int mode = V4L2_TUNER_MODE_MONO;
Hans Verkuil8a854282006-01-09 15:25:43 -02001829
Hans Verkuild3900bc2006-01-09 15:25:44 -02001830 if (chip->radio)
1831 break;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001832 vt->audmode = chip->audmode;
Hans Verkuil8a854282006-01-09 15:25:43 -02001833 vt->rxsubchans = 0;
1834 vt->capability = V4L2_TUNER_CAP_STEREO |
1835 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001836
1837 if (desc->getmode)
1838 mode = desc->getmode(chip);
1839
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001840 if (mode & V4L2_TUNER_MODE_MONO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001841 vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001842 if (mode & V4L2_TUNER_MODE_STEREO)
Hans Verkuil8a854282006-01-09 15:25:43 -02001843 vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001844 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1845 When this module is converted fully to v4l2, then this
1846 should change for those chips that can detect SAP. */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001847 if (mode & V4L2_TUNER_MODE_LANG1)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001848 vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1849 V4L2_TUNER_SUB_LANG2;
Hans Verkuil8a854282006-01-09 15:25:43 -02001850 break;
1851 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001852 case VIDIOC_S_STD:
1853 chip->radio = 0;
1854 break;
Hans Verkuil8a854282006-01-09 15:25:43 -02001855 case VIDIOC_S_FREQUENCY:
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001856 chip->mode = 0; /* automatic */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001857
Mauro Carvalho Chehab41f52302008-11-13 17:25:04 -03001858 /* For chips that provide getmode and setmode, and doesn't
1859 automatically follows the stereo carrier, a kthread is
1860 created to set the audio standard. In this case, when then
1861 the video channel is changed, tvaudio starts on MONO mode.
1862 After waiting for 2 seconds, the kernel thread is called,
1863 to follow whatever audio standard is pointed by the
1864 audio carrier.
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001865 */
1866 if (chip->thread) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001867 desc->setmode(chip,V4L2_TUNER_MODE_MONO);
1868 if (chip->prevmode != V4L2_TUNER_MODE_MONO)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001869 chip->prevmode = -1; /* reset previous mode */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -03001870 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
Hans Verkuil8a854282006-01-09 15:25:43 -02001872 break;
Hans Verkuil74cab312007-04-27 12:31:26 -03001873
1874 case VIDIOC_G_CHIP_IDENT:
1875 return v4l2_chip_ident_i2c_client(client, arg, V4L2_IDENT_TVAUDIO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877 return 0;
1878}
1879
Hans Verkuil08e14052007-09-14 04:50:44 -03001880static int chip_legacy_probe(struct i2c_adapter *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Hans Verkuil08e14052007-09-14 04:50:44 -03001882 /* don't attach on saa7146 based cards,
1883 because dedicated drivers are used */
1884 if ((adap->id == I2C_HW_SAA7146))
1885 return 0;
1886 if (adap->class & I2C_CLASS_TV_ANALOG)
1887 return 1;
1888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
1890
Jean Delvareae429082008-05-11 20:37:06 +02001891/* This driver supports many devices and the idea is to let the driver
1892 detect which device is present. So rather than listing all supported
1893 devices here, we pretend to support a single, fake device type. */
1894static const struct i2c_device_id chip_id[] = {
1895 { "tvaudio", 0 },
1896 { }
1897};
1898MODULE_DEVICE_TABLE(i2c, chip_id);
1899
Hans Verkuil08e14052007-09-14 04:50:44 -03001900static struct v4l2_i2c_driver_data v4l2_i2c_data = {
1901 .name = "tvaudio",
1902 .driverid = I2C_DRIVERID_TVAUDIO,
1903 .command = chip_command,
1904 .probe = chip_probe,
1905 .remove = chip_remove,
1906 .legacy_probe = chip_legacy_probe,
Jean Delvareae429082008-05-11 20:37:06 +02001907 .id_table = chip_id,
Hans Verkuil08e14052007-09-14 04:50:44 -03001908};