blob: 3fbaaa0494c2e6299574db2f78e92b51f4ce344f [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>
Hans Verkuil7f6adea2009-02-19 17:31:17 -030029#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#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>
Hans Verkuil64f70e72008-12-18 12:11:32 -030036#include <media/v4l2-device.h>
Hans Verkuil74cab312007-04-27 12:31:26 -030037#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Mauro Carvalho Chehab7c9b5042006-03-18 08:08:14 -030039#include <media/i2c-addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* ---------------------------------------------------------------------- */
42/* insmod args */
43
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030044static int debug; /* insmod parameter */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045module_param(debug, int, 0644);
46
47MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips");
48MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr");
49MODULE_LICENSE("GPL");
50
51#define UNSET (-1U)
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* ---------------------------------------------------------------------- */
54/* our structs */
55
Vitaly Wool4c6c3902009-03-05 13:03:32 -030056#define MAXREGS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58struct CHIPSTATE;
59typedef int (*getvalue)(int);
60typedef int (*checkit)(struct CHIPSTATE*);
61typedef int (*initialize)(struct CHIPSTATE*);
62typedef int (*getmode)(struct CHIPSTATE*);
63typedef void (*setmode)(struct CHIPSTATE*, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* i2c command */
66typedef struct AUDIOCMD {
67 int count; /* # of bytes to send */
68 unsigned char bytes[MAXREGS+1]; /* addr, data, data, ... */
69} audiocmd;
70
71/* chip description */
72struct CHIPDESC {
73 char *name; /* chip name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 int addr_lo, addr_hi; /* i2c address range */
75 int registers; /* # of registers */
76
77 int *insmodopt;
78 checkit checkit;
79 initialize initialize;
80 int flags;
81#define CHIP_HAS_VOLUME 1
82#define CHIP_HAS_BASSTREBLE 2
83#define CHIP_HAS_INPUTSEL 4
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -030084#define CHIP_NEED_CHECKMODE 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 /* various i2c command sequences */
87 audiocmd init;
88
89 /* which register has which value */
90 int leftreg,rightreg,treblereg,bassreg;
91
92 /* initialize with (defaults to 65535/65535/32768/32768 */
93 int leftinit,rightinit,trebleinit,bassinit;
94
95 /* functions to convert the values (v4l -> chip) */
96 getvalue volfunc,treblefunc,bassfunc;
97
98 /* get/set mode */
99 getmode getmode;
100 setmode setmode;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* input switch register + values for v4l inputs */
103 int inputreg;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300104 int inputmap[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int inputmute;
106 int inputmask;
107};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/* current state of the chip */
110struct CHIPSTATE {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300111 struct v4l2_subdev sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300113 /* chip-specific description - should point to
114 an entry at CHIPDESC table */
115 struct CHIPDESC *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* shadow register set */
118 audiocmd shadow;
119
120 /* current settings */
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300121 __u16 left,right,treble,bass,muted,mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 int prevmode;
Hans Verkuil8a854282006-01-09 15:25:43 -0200123 int radio;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -0300124 int input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* thread */
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300127 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct timer_list wt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int watch_stereo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200130 int audmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
Hans Verkuil64f70e72008-12-18 12:11:32 -0300133static inline struct CHIPSTATE *to_state(struct v4l2_subdev *sd)
134{
135 return container_of(sd, struct CHIPSTATE, sd);
136}
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/* ---------------------------------------------------------------------- */
140/* i2c I/O functions */
141
142static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
143{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300144 struct v4l2_subdev *sd = &chip->sd;
145 struct i2c_client *c = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 unsigned char buffer[2];
147
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300148 if (subaddr < 0) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300149 v4l2_dbg(1, debug, sd, "chip_write: 0x%x\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 chip->shadow.bytes[1] = val;
151 buffer[0] = val;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300152 if (1 != i2c_master_send(c, buffer, 1)) {
153 v4l2_warn(sd, "I/O error (write 0x%x)\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return -1;
155 }
156 } else {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300157 if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300158 v4l2_info(sd,
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300159 "Tried to access a non-existent register: %d\n",
160 subaddr);
161 return -EINVAL;
162 }
163
Hans Verkuil64f70e72008-12-18 12:11:32 -0300164 v4l2_dbg(1, debug, sd, "chip_write: reg%d=0x%x\n",
165 subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 chip->shadow.bytes[subaddr+1] = val;
167 buffer[0] = subaddr;
168 buffer[1] = val;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300169 if (2 != i2c_master_send(c, buffer, 2)) {
170 v4l2_warn(sd, "I/O error (write reg%d=0x%x)\n",
171 subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -1;
173 }
174 }
175 return 0;
176}
177
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300178static int chip_write_masked(struct CHIPSTATE *chip,
179 int subaddr, int val, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300181 struct v4l2_subdev *sd = &chip->sd;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (mask != 0) {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300184 if (subaddr < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
186 } else {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300187 if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300188 v4l2_info(sd,
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300189 "Tried to access a non-existent register: %d\n",
190 subaddr);
191 return -EINVAL;
192 }
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
195 }
196 }
197 return chip_write(chip, subaddr, val);
198}
199
200static int chip_read(struct CHIPSTATE *chip)
201{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300202 struct v4l2_subdev *sd = &chip->sd;
203 struct i2c_client *c = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 unsigned char buffer;
205
Hans Verkuil64f70e72008-12-18 12:11:32 -0300206 if (1 != i2c_master_recv(c, &buffer, 1)) {
207 v4l2_warn(sd, "I/O error (read)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return -1;
209 }
Hans Verkuil64f70e72008-12-18 12:11:32 -0300210 v4l2_dbg(1, debug, sd, "chip_read: 0x%x\n", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return buffer;
212}
213
214static int chip_read2(struct CHIPSTATE *chip, int subaddr)
215{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300216 struct v4l2_subdev *sd = &chip->sd;
217 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700218 unsigned char write[1];
219 unsigned char read[1];
220 struct i2c_msg msgs[2] = {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300221 { c->addr, 0, 1, write },
222 { c->addr, I2C_M_RD, 1, read }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700223 };
Hans Verkuil64f70e72008-12-18 12:11:32 -0300224
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700225 write[0] = subaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Hans Verkuil64f70e72008-12-18 12:11:32 -0300227 if (2 != i2c_transfer(c->adapter, msgs, 2)) {
228 v4l2_warn(sd, "I/O error (read2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -1;
230 }
Hans Verkuil64f70e72008-12-18 12:11:32 -0300231 v4l2_dbg(1, debug, sd, "chip_read2: reg%d=0x%x\n",
232 subaddr, read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return read[0];
234}
235
236static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
237{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300238 struct v4l2_subdev *sd = &chip->sd;
239 struct i2c_client *c = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 int i;
241
242 if (0 == cmd->count)
243 return 0;
244
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300245 if (cmd->count + cmd->bytes[0] - 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300246 v4l2_info(sd,
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300247 "Tried to access a non-existent register range: %d to %d\n",
248 cmd->bytes[0] + 1, cmd->bytes[0] + cmd->count - 1);
249 return -EINVAL;
250 }
251
252 /* FIXME: it seems that the shadow bytes are wrong bellow !*/
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* update our shadow register set; print bytes if (debug > 0) */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300255 v4l2_dbg(1, debug, sd, "chip_cmd(%s): reg=%d, data:",
256 name, cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700258 if (debug)
Hans Verkuil64f70e72008-12-18 12:11:32 -0300259 printk(KERN_CONT " 0x%x", cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
261 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700262 if (debug)
Hans Verkuil64f70e72008-12-18 12:11:32 -0300263 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /* send data to the chip */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300266 if (cmd->count != i2c_master_send(c, cmd->bytes, cmd->count)) {
267 v4l2_warn(sd, "I/O error (%s)\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -1;
269 }
270 return 0;
271}
272
273/* ---------------------------------------------------------------------- */
274/* kernel thread for doing i2c stuff asyncronly
275 * right now it is used only to check the audio mode (mono/stereo/whatever)
276 * some time after switching to another TV channel, then turn on stereo
277 * if available, ...
278 */
279
280static void chip_thread_wake(unsigned long data)
281{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700282 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300283 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286static int chip_thread(void *data)
287{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700288 struct CHIPSTATE *chip = data;
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300289 struct CHIPDESC *desc = chip->desc;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300290 struct v4l2_subdev *sd = &chip->sd;
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300291 int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Hans Verkuil64f70e72008-12-18 12:11:32 -0300293 v4l2_dbg(1, debug, sd, "thread started\n");
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700294 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300296 set_current_state(TASK_INTERRUPTIBLE);
297 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300299 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700300 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300301 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300303 v4l2_dbg(1, debug, sd, "thread wakeup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 /* don't do anything for radio or if mode != auto */
Hans Verkuil8a854282006-01-09 15:25:43 -0200306 if (chip->radio || chip->mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 continue;
308
309 /* have a look what's going on */
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300310 mode = desc->getmode(chip);
311 if (mode == chip->prevmode)
312 continue;
313
314 /* chip detected a new audio mode - set it */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300315 v4l2_dbg(1, debug, sd, "thread checkmode\n");
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300316
317 chip->prevmode = mode;
318
319 if (mode & V4L2_TUNER_MODE_STEREO)
320 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
321 if (mode & V4L2_TUNER_MODE_LANG1_LANG2)
322 desc->setmode(chip, V4L2_TUNER_MODE_STEREO);
323 else if (mode & V4L2_TUNER_MODE_LANG1)
324 desc->setmode(chip, V4L2_TUNER_MODE_LANG1);
325 else if (mode & V4L2_TUNER_MODE_LANG2)
326 desc->setmode(chip, V4L2_TUNER_MODE_LANG2);
327 else
328 desc->setmode(chip, V4L2_TUNER_MODE_MONO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* schedule next check */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -0300331 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Hans Verkuil64f70e72008-12-18 12:11:32 -0300334 v4l2_dbg(1, debug, sd, "thread exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338/* ---------------------------------------------------------------------- */
339/* audio chip descriptions - defines+functions for tda9840 */
340
341#define TDA9840_SW 0x00
342#define TDA9840_LVADJ 0x02
343#define TDA9840_STADJ 0x03
344#define TDA9840_TEST 0x04
345
346#define TDA9840_MONO 0x10
347#define TDA9840_STEREO 0x2a
348#define TDA9840_DUALA 0x12
349#define TDA9840_DUALB 0x1e
350#define TDA9840_DUALAB 0x1a
351#define TDA9840_DUALBA 0x16
352#define TDA9840_EXTERNAL 0x7a
353
354#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
355#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
356#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
357
358#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
359#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
360
361static int tda9840_getmode(struct CHIPSTATE *chip)
362{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300363 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int val, mode;
365
366 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300367 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (val & TDA9840_DS_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300369 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (val & TDA9840_ST_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300371 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Hans Verkuil64f70e72008-12-18 12:11:32 -0300373 v4l2_dbg(1, debug, sd, "tda9840_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700374 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return mode;
376}
377
378static void tda9840_setmode(struct CHIPSTATE *chip, int mode)
379{
380 int update = 1;
381 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
382
383 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300384 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 t |= TDA9840_MONO;
386 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300387 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 t |= TDA9840_STEREO;
389 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300390 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 t |= TDA9840_DUALA;
392 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300393 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 t |= TDA9840_DUALB;
395 break;
396 default:
397 update = 0;
398 }
399
400 if (update)
401 chip_write(chip, TDA9840_SW, t);
402}
403
Hans Verkuil94f9e562006-01-23 09:47:40 -0200404static int tda9840_checkit(struct CHIPSTATE *chip)
405{
406 int rc;
407 rc = chip_read(chip);
408 /* lower 5 bits should be 0 */
409 return ((rc & 0x1f) == 0) ? 1 : 0;
410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/* ---------------------------------------------------------------------- */
413/* audio chip descriptions - defines+functions for tda985x */
414
415/* subaddresses for TDA9855 */
416#define TDA9855_VR 0x00 /* Volume, right */
417#define TDA9855_VL 0x01 /* Volume, left */
418#define TDA9855_BA 0x02 /* Bass */
419#define TDA9855_TR 0x03 /* Treble */
420#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
421
422/* subaddresses for TDA9850 */
423#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
424
425/* subaddesses for both chips */
426#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
427#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
428#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
429#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
430#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
431#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
432
433/* Masks for bits in TDA9855 subaddresses */
434/* 0x00 - VR in TDA9855 */
435/* 0x01 - VL in TDA9855 */
436/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
437 * in 1dB steps - mute is 0x27 */
438
439
440/* 0x02 - BA in TDA9855 */
441/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
442 * in .5dB steps - 0 is 0x0E */
443
444
445/* 0x03 - TR in TDA9855 */
446/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
447 * in 3dB steps - 0 is 0x7 */
448
449/* Masks for bits in both chips' subaddresses */
450/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
451/* Unique to TDA9855: */
452/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
453 * in 3dB steps - mute is 0x0 */
454
455/* Unique to TDA9850: */
456/* lower 4 bits control stereo noise threshold, over which stereo turns off
457 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
458
459
460/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
461/* Unique to TDA9855: */
462#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
463#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
464#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
465#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
466 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800467 * of line in and line out, only the
468 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
470#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
471
472/* Unique to TDA9850: */
473/* lower 4 bits contol SAP noise threshold, over which SAP turns off
474 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
475
476
477/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
478/* Common to TDA9855 and TDA9850: */
479#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
480#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
481#define TDA985x_MONO 0 /* Forces Mono output */
482#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
483
484/* Unique to TDA9855: */
485#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
486#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
487#define TDA9855_LINEAR 0 /* Linear Stereo */
488#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
489#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
490#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
491#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
492
493/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
494/* Common to both TDA9855 and TDA9850: */
495/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
496 * in .5dB steps - 0dB is 0x7 */
497
498/* 0x08, 0x09 - A1 and A2 (read/write) */
499/* Common to both TDA9855 and TDA9850: */
500/* lower 5 bites are wideband and spectral expander alignment
501 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
502#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
503#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
504#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
505
506/* 0x0a - A3 */
507/* Common to both TDA9855 and TDA9850: */
508/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
509 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
510#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
511
512static int tda9855_volume(int val) { return val/0x2e8+0x27; }
513static int tda9855_bass(int val) { return val/0xccc+0x06; }
514static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
515
516static int tda985x_getmode(struct CHIPSTATE *chip)
517{
518 int mode;
519
520 mode = ((TDA985x_STP | TDA985x_SAPP) &
521 chip_read(chip)) >> 4;
522 /* Add mono mode regardless of SAP and stereo */
523 /* Allows forced mono */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300524 return mode | V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
528{
529 int update = 1;
530 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
531
532 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300533 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 c6 |= TDA985x_MONO;
535 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300536 case V4L2_TUNER_MODE_STEREO:
Daniel Glöckner00fb1852012-06-09 21:43:52 -0300537 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 c6 |= TDA985x_STEREO;
539 break;
Daniel Glöckner00fb1852012-06-09 21:43:52 -0300540 case V4L2_TUNER_MODE_SAP:
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
Daniel Glöcknerd59a14e2012-06-09 21:43:50 -0300587#define TDA9873_TR_REVERSE ((1 << 3) | (1 << 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#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
Daniel Glöcknerd59a14e2012-06-09 21:43:50 -0300657#define TDA9873_MOUT_EXTM ((1 << 4) | (1 << 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658#define TDA9873_MOUT_EXTL 1 << 5
Daniel Glöcknerd59a14e2012-06-09 21:43:50 -0300659#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))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
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{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300670 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 int val,mode;
672
673 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300674 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (val & TDA9873_STEREO)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300676 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (val & TDA9873_DUAL)
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300678 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300679 v4l2_dbg(1, debug, sd, "tda9873_getmode(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700680 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return mode;
682}
683
684static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
685{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300686 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
688 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
689
690 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300691 v4l2_dbg(1, debug, sd, "tda9873_setmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return;
693 }
694
Hans Verkuil64f70e72008-12-18 12:11:32 -0300695 v4l2_dbg(1, debug, sd, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
696 v4l2_dbg(1, debug, sd, "tda9873_setmode(): sw_data = %d\n", sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300699 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 sw_data |= TDA9873_TR_MONO;
701 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300702 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 sw_data |= TDA9873_TR_STEREO;
704 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300705 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 sw_data |= TDA9873_TR_DUALA;
707 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300708 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 sw_data |= TDA9873_TR_DUALB;
710 break;
711 default:
712 chip->mode = 0;
713 return;
714 }
715
716 chip_write(chip, TDA9873_SW, sw_data);
Hans Verkuil64f70e72008-12-18 12:11:32 -0300717 v4l2_dbg(1, debug, sd, "tda9873_setmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 mode, sw_data);
719}
720
721static int tda9873_checkit(struct CHIPSTATE *chip)
722{
723 int rc;
724
725 if (-1 == (rc = chip_read2(chip,254)))
726 return 0;
727 return (rc & ~0x1f) == 0x80;
728}
729
730
731/* ---------------------------------------------------------------------- */
732/* audio chip description - defines+functions for tda9874h and tda9874a */
733/* Dariusz Kowalewski <darekk@automex.pl> */
734
735/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
736#define TDA9874A_AGCGR 0x00 /* AGC gain */
737#define TDA9874A_GCONR 0x01 /* general config */
738#define TDA9874A_MSR 0x02 /* monitor select */
739#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
740#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
741#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
742#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
743#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
744#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
745#define TDA9874A_DCR 0x09 /* demodulator config */
746#define TDA9874A_FMER 0x0a /* FM de-emphasis */
747#define TDA9874A_FMMR 0x0b /* FM dematrix */
748#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
749#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
750#define TDA9874A_NCONR 0x0e /* NICAM config */
751#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
752#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
753#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
754#define TDA9874A_AMCONR 0x12 /* audio mute control */
755#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
756#define TDA9874A_AOSR 0x14 /* analog output select */
757#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
758#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
759#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
760#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
761#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
762
763/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
764#define TDA9874A_DSR 0x00 /* device status */
765#define TDA9874A_NSR 0x01 /* NICAM status */
766#define TDA9874A_NECR 0x02 /* NICAM error count */
767#define TDA9874A_DR1 0x03 /* add. data LSB */
768#define TDA9874A_DR2 0x04 /* add. data MSB */
769#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
770#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
771#define TDA9874A_SIFLR 0x07 /* SIF level */
772#define TDA9874A_TR2 252 /* test reg. 2 */
773#define TDA9874A_TR1 253 /* test reg. 1 */
774#define TDA9874A_DIC 254 /* device id. code */
775#define TDA9874A_SIC 255 /* software id. code */
776
777
778static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
779static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
780static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
781static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
782static int tda9874a_dic = -1; /* device id. code */
783
784/* insmod options for tda9874a */
785static unsigned int tda9874a_SIF = UNSET;
786static unsigned int tda9874a_AMSEL = UNSET;
787static unsigned int tda9874a_STD = UNSET;
788module_param(tda9874a_SIF, int, 0444);
789module_param(tda9874a_AMSEL, int, 0444);
790module_param(tda9874a_STD, int, 0444);
791
792/*
793 * initialization table for tda9874 decoder:
794 * - carrier 1 freq. registers (3 bytes)
795 * - carrier 2 freq. registers (3 bytes)
796 * - demudulator config register
797 * - FM de-emphasis register (slow identification mode)
798 * Note: frequency registers must be written in single i2c transfer.
799 */
800static struct tda9874a_MODES {
801 char *name;
802 audiocmd cmd;
803} tda9874a_modelist[9] = {
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300804 { "A2, B/G", /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
806 { "A2, M (Korea)",
807 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
808 { "A2, D/K (1)",
809 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
810 { "A2, D/K (2)",
811 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
812 { "A2, D/K (3)",
813 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
814 { "NICAM, I",
815 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
816 { "NICAM, B/G",
817 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300818 { "NICAM, D/K",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
820 { "NICAM, L",
821 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
822};
823
824static int tda9874a_setup(struct CHIPSTATE *chip)
825{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300826 struct v4l2_subdev *sd = &chip->sd;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
829 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
830 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
831 if(tda9874a_dic == 0x11) {
832 chip_write(chip, TDA9874A_FMMR, 0x80);
833 } else { /* dic == 0x07 */
834 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
835 chip_write(chip, TDA9874A_FMMR, 0x00);
836 }
837 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
838 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
839 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
840 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
841 /* Note: If signal quality is poor you may want to change NICAM */
842 /* error limit registers (NLELR and NUELR) to some greater values. */
843 /* Then the sound would remain stereo, but won't be so clear. */
844 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
845 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
846
847 if(tda9874a_dic == 0x11) {
848 chip_write(chip, TDA9874A_AMCONR, 0xf9);
849 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
850 chip_write(chip, TDA9874A_AOSR, 0x80);
851 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
852 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
853 } else { /* dic == 0x07 */
854 chip_write(chip, TDA9874A_AMCONR, 0xfb);
855 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700856 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Hans Verkuil64f70e72008-12-18 12:11:32 -0300858 v4l2_dbg(1, debug, sd, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
860 return 1;
861}
862
863static int tda9874a_getmode(struct CHIPSTATE *chip)
864{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300865 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 int dsr,nsr,mode;
867 int necr; /* just for debugging */
868
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300869 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
872 return mode;
873 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
874 return mode;
875 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
876 return mode;
877
878 /* need to store dsr/nsr somewhere */
879 chip->shadow.bytes[MAXREGS-2] = dsr;
880 chip->shadow.bytes[MAXREGS-1] = nsr;
881
882 if(tda9874a_mode) {
883 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
884 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
885 * that sound has (temporarily) switched from NICAM to
886 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
887 * error count. So in fact there is no stereo in this case :-(
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300888 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 * external 4052 multiplexer in audio_hook().
890 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if(nsr & 0x02) /* NSR.S/MB=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300892 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if(nsr & 0x01) /* NSR.D/SB=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 } else {
896 if(dsr & 0x02) /* DSR.IDSTE=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300897 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if(dsr & 0x04) /* DSR.IDDUA=1 */
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300899 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901
Hans Verkuil64f70e72008-12-18 12:11:32 -0300902 v4l2_dbg(1, debug, sd, "tda9874a_getmode(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 dsr, nsr, necr, mode);
904 return mode;
905}
906
907static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
908{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300909 struct v4l2_subdev *sd = &chip->sd;
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
912 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300913 if (tda9874a_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
915 tda9874a_NCONR &= 0xfe; /* enable */
916 else
917 tda9874a_NCONR |= 0x01; /* disable */
918 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
919 }
920
921 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
922 * and has auto-select function for audio output (AOSR register).
923 * Old TDA9874H doesn't support these features.
924 * TDA9874A also has additional mono output pin (OUTM), which
925 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
926 */
927 if(tda9874a_dic == 0x11) {
928 int aosr = 0x80;
929 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
930
931 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300932 case V4L2_TUNER_MODE_MONO:
933 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300935 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 aosr = 0x80; /* auto-select, dual A/A */
937 mdacosr = (tda9874a_mode) ? 0x82:0x80;
938 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300939 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 aosr = 0xa0; /* auto-select, dual B/B */
941 mdacosr = (tda9874a_mode) ? 0x83:0x81;
942 break;
943 default:
944 chip->mode = 0;
945 return;
946 }
947 chip_write(chip, TDA9874A_AOSR, aosr);
948 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
949
Hans Verkuil64f70e72008-12-18 12:11:32 -0300950 v4l2_dbg(1, debug, sd, "tda9874a_setmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 mode, aosr, mdacosr);
952
953 } else { /* dic == 0x07 */
954 int fmmr,aosr;
955
956 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300957 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 fmmr = 0x00; /* mono */
959 aosr = 0x10; /* A/A */
960 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300961 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if(tda9874a_mode) {
963 fmmr = 0x00;
964 aosr = 0x00; /* handled by NICAM auto-mute */
965 } else {
966 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
967 aosr = 0x00;
968 }
969 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300970 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 fmmr = 0x02; /* dual */
972 aosr = 0x10; /* dual A/A */
973 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300974 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 fmmr = 0x02; /* dual */
976 aosr = 0x20; /* dual B/B */
977 break;
978 default:
979 chip->mode = 0;
980 return;
981 }
982 chip_write(chip, TDA9874A_FMMR, fmmr);
983 chip_write(chip, TDA9874A_AOSR, aosr);
984
Hans Verkuil64f70e72008-12-18 12:11:32 -0300985 v4l2_dbg(1, debug, sd, "tda9874a_setmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 mode, fmmr, aosr);
987 }
988}
989
990static int tda9874a_checkit(struct CHIPSTATE *chip)
991{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300992 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 int dic,sic; /* device id. and software id. codes */
994
995 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
996 return 0;
997 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
998 return 0;
999
Hans Verkuil64f70e72008-12-18 12:11:32 -03001000 v4l2_dbg(1, debug, sd, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -03001003 v4l2_info(sd, "found tda9874%s.\n", (dic == 0x11) ? "a" : "h");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 tda9874a_dic = dic; /* remember device id. */
1005 return 1;
1006 }
1007 return 0; /* not found */
1008}
1009
1010static int tda9874a_initialize(struct CHIPSTATE *chip)
1011{
1012 if (tda9874a_SIF > 2)
1013 tda9874a_SIF = 1;
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -03001014 if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 tda9874a_STD = 0;
1016 if(tda9874a_AMSEL > 1)
1017 tda9874a_AMSEL = 0;
1018
1019 if(tda9874a_SIF == 1)
1020 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
1021 else
1022 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
1023
1024 tda9874a_ESP = tda9874a_STD;
1025 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
1026
1027 if(tda9874a_AMSEL == 0)
1028 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
1029 else
1030 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
1031
1032 tda9874a_setup(chip);
1033 return 0;
1034}
1035
Hans Verkuil411674f2009-03-18 14:02:36 -03001036/* ---------------------------------------------------------------------- */
1037/* audio chip description - defines+functions for tda9875 */
1038/* The TDA9875 is made by Philips Semiconductor
1039 * http://www.semiconductors.philips.com
1040 * TDA9875: I2C-bus controlled DSP audio processor, FM demodulator
1041 *
1042 */
1043
1044/* subaddresses for TDA9875 */
1045#define TDA9875_MUT 0x12 /*General mute (value --> 0b11001100*/
1046#define TDA9875_CFG 0x01 /* Config register (value --> 0b00000000 */
1047#define TDA9875_DACOS 0x13 /*DAC i/o select (ADC) 0b0000100*/
1048#define TDA9875_LOSR 0x16 /*Line output select regirter 0b0100 0001*/
1049
1050#define TDA9875_CH1V 0x0c /*Channel 1 volume (mute)*/
1051#define TDA9875_CH2V 0x0d /*Channel 2 volume (mute)*/
1052#define TDA9875_SC1 0x14 /*SCART 1 in (mono)*/
1053#define TDA9875_SC2 0x15 /*SCART 2 in (mono)*/
1054
1055#define TDA9875_ADCIS 0x17 /*ADC input select (mono) 0b0110 000*/
1056#define TDA9875_AER 0x19 /*Audio effect (AVL+Pseudo) 0b0000 0110*/
1057#define TDA9875_MCS 0x18 /*Main channel select (DAC) 0b0000100*/
1058#define TDA9875_MVL 0x1a /* Main volume gauche */
1059#define TDA9875_MVR 0x1b /* Main volume droite */
1060#define TDA9875_MBA 0x1d /* Main Basse */
1061#define TDA9875_MTR 0x1e /* Main treble */
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001062#define TDA9875_ACS 0x1f /* Auxiliary channel select (FM) 0b0000000*/
1063#define TDA9875_AVL 0x20 /* Auxiliary volume gauche */
1064#define TDA9875_AVR 0x21 /* Auxiliary volume droite */
1065#define TDA9875_ABA 0x22 /* Auxiliary Basse */
1066#define TDA9875_ATR 0x23 /* Auxiliary treble */
Hans Verkuil411674f2009-03-18 14:02:36 -03001067
1068#define TDA9875_MSR 0x02 /* Monitor select register */
1069#define TDA9875_C1MSB 0x03 /* Carrier 1 (FM) frequency register MSB */
1070#define TDA9875_C1MIB 0x04 /* Carrier 1 (FM) frequency register (16-8]b */
1071#define TDA9875_C1LSB 0x05 /* Carrier 1 (FM) frequency register LSB */
1072#define TDA9875_C2MSB 0x06 /* Carrier 2 (nicam) frequency register MSB */
1073#define TDA9875_C2MIB 0x07 /* Carrier 2 (nicam) frequency register (16-8]b */
1074#define TDA9875_C2LSB 0x08 /* Carrier 2 (nicam) frequency register LSB */
1075#define TDA9875_DCR 0x09 /* Demodulateur configuration regirter*/
1076#define TDA9875_DEEM 0x0a /* FM de-emphasis regirter*/
1077#define TDA9875_FMAT 0x0b /* FM Matrix regirter*/
1078
1079/* values */
1080#define TDA9875_MUTE_ON 0xff /* general mute */
1081#define TDA9875_MUTE_OFF 0xcc /* general no mute */
1082
1083static int tda9875_initialize(struct CHIPSTATE *chip)
1084{
1085 chip_write(chip, TDA9875_CFG, 0xd0); /*reg de config 0 (reset)*/
1086 chip_write(chip, TDA9875_MSR, 0x03); /* Monitor 0b00000XXX*/
1087 chip_write(chip, TDA9875_C1MSB, 0x00); /*Car1(FM) MSB XMHz*/
1088 chip_write(chip, TDA9875_C1MIB, 0x00); /*Car1(FM) MIB XMHz*/
1089 chip_write(chip, TDA9875_C1LSB, 0x00); /*Car1(FM) LSB XMHz*/
1090 chip_write(chip, TDA9875_C2MSB, 0x00); /*Car2(NICAM) MSB XMHz*/
1091 chip_write(chip, TDA9875_C2MIB, 0x00); /*Car2(NICAM) MIB XMHz*/
1092 chip_write(chip, TDA9875_C2LSB, 0x00); /*Car2(NICAM) LSB XMHz*/
1093 chip_write(chip, TDA9875_DCR, 0x00); /*Demod config 0x00*/
1094 chip_write(chip, TDA9875_DEEM, 0x44); /*DE-Emph 0b0100 0100*/
1095 chip_write(chip, TDA9875_FMAT, 0x00); /*FM Matrix reg 0x00*/
1096 chip_write(chip, TDA9875_SC1, 0x00); /* SCART 1 (SC1)*/
1097 chip_write(chip, TDA9875_SC2, 0x01); /* SCART 2 (sc2)*/
1098
1099 chip_write(chip, TDA9875_CH1V, 0x10); /* Channel volume 1 mute*/
1100 chip_write(chip, TDA9875_CH2V, 0x10); /* Channel volume 2 mute */
1101 chip_write(chip, TDA9875_DACOS, 0x02); /* sig DAC i/o(in:nicam)*/
1102 chip_write(chip, TDA9875_ADCIS, 0x6f); /* sig ADC input(in:mono)*/
1103 chip_write(chip, TDA9875_LOSR, 0x00); /* line out (in:mono)*/
1104 chip_write(chip, TDA9875_AER, 0x00); /*06 Effect (AVL+PSEUDO) */
1105 chip_write(chip, TDA9875_MCS, 0x44); /* Main ch select (DAC) */
1106 chip_write(chip, TDA9875_MVL, 0x03); /* Vol Main left 10dB */
1107 chip_write(chip, TDA9875_MVR, 0x03); /* Vol Main right 10dB*/
1108 chip_write(chip, TDA9875_MBA, 0x00); /* Main Bass Main 0dB*/
1109 chip_write(chip, TDA9875_MTR, 0x00); /* Main Treble Main 0dB*/
1110 chip_write(chip, TDA9875_ACS, 0x44); /* Aux chan select (dac)*/
1111 chip_write(chip, TDA9875_AVL, 0x00); /* Vol Aux left 0dB*/
1112 chip_write(chip, TDA9875_AVR, 0x00); /* Vol Aux right 0dB*/
1113 chip_write(chip, TDA9875_ABA, 0x00); /* Aux Bass Main 0dB*/
1114 chip_write(chip, TDA9875_ATR, 0x00); /* Aux Aigus Main 0dB*/
1115
1116 chip_write(chip, TDA9875_MUT, 0xcc); /* General mute */
1117 return 0;
1118}
1119
1120static int tda9875_volume(int val) { return (unsigned char)(val / 602 - 84); }
1121static int tda9875_bass(int val) { return (unsigned char)(max(-12, val / 2115 - 15)); }
1122static int tda9875_treble(int val) { return (unsigned char)(val / 2622 - 12); }
1123
1124/* ----------------------------------------------------------------------- */
1125
1126
1127/* *********************** *
1128 * i2c interface functions *
1129 * *********************** */
1130
1131static int tda9875_checkit(struct CHIPSTATE *chip)
1132{
1133 struct v4l2_subdev *sd = &chip->sd;
1134 int dic, rev;
1135
1136 dic = chip_read2(chip, 254);
1137 rev = chip_read2(chip, 255);
1138
1139 if (dic == 0 || dic == 2) { /* tda9875 and tda9875A */
1140 v4l2_info(sd, "found tda9875%s rev. %d.\n",
1141 dic == 0 ? "" : "A", rev);
1142 return 1;
1143 }
1144 return 0;
1145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147/* ---------------------------------------------------------------------- */
1148/* audio chip descriptions - defines+functions for tea6420 */
1149
1150#define TEA6300_VL 0x00 /* volume left */
1151#define TEA6300_VR 0x01 /* volume right */
1152#define TEA6300_BA 0x02 /* bass */
1153#define TEA6300_TR 0x03 /* treble */
1154#define TEA6300_FA 0x04 /* fader control */
1155#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001156 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157#define TEA6300_S_SA 0x01 /* stereo A input */
1158#define TEA6300_S_SB 0x02 /* stereo B */
1159#define TEA6300_S_SC 0x04 /* stereo C */
1160#define TEA6300_S_GMU 0x80 /* general mute */
1161
1162#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1163#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1164#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1165#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1166#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1167#define TEA6320_BA 0x05 /* bass (0-4) */
1168#define TEA6320_TR 0x06 /* treble (0-4) */
1169#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001170 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171#define TEA6320_S_SA 0x07 /* stereo A input */
1172#define TEA6320_S_SB 0x06 /* stereo B */
1173#define TEA6320_S_SC 0x05 /* stereo C */
1174#define TEA6320_S_SD 0x04 /* stereo D */
1175#define TEA6320_S_GMU 0x80 /* general mute */
1176
1177#define TEA6420_S_SA 0x00 /* stereo A input */
1178#define TEA6420_S_SB 0x01 /* stereo B */
1179#define TEA6420_S_SC 0x02 /* stereo C */
1180#define TEA6420_S_SD 0x03 /* stereo D */
1181#define TEA6420_S_SE 0x04 /* stereo E */
1182#define TEA6420_S_GMU 0x05 /* general mute */
1183
1184static int tea6300_shift10(int val) { return val >> 10; }
1185static int tea6300_shift12(int val) { return val >> 12; }
1186
1187/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1188/* 0x0c mirror those immediately higher) */
1189static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1190static int tea6320_shift11(int val) { return val >> 11; }
1191static int tea6320_initialize(struct CHIPSTATE * chip)
1192{
1193 chip_write(chip, TEA6320_FFR, 0x3f);
1194 chip_write(chip, TEA6320_FFL, 0x3f);
1195 chip_write(chip, TEA6320_FRR, 0x3f);
1196 chip_write(chip, TEA6320_FRL, 0x3f);
1197
1198 return 0;
1199}
1200
1201
1202/* ---------------------------------------------------------------------- */
1203/* audio chip descriptions - defines+functions for tda8425 */
1204
1205#define TDA8425_VL 0x00 /* volume left */
1206#define TDA8425_VR 0x01 /* volume right */
1207#define TDA8425_BA 0x02 /* bass */
1208#define TDA8425_TR 0x03 /* treble */
1209#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001210 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1212#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1213#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1214#define TDA8425_S1_MU 0x20 /* mute bit */
1215#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1216#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1217#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1218#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1219#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1220#define TDA8425_S1_ML 0x06 /* language selector */
1221#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1222#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1223#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1224#define TDA8425_S1_IS 0x01 /* channel selector */
1225
1226
1227static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1228static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
1231{
1232 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1233
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001234 switch (mode) {
1235 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 s1 |= TDA8425_S1_ML_SOUND_A;
1237 s1 |= TDA8425_S1_STEREO_PSEUDO;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001238 break;
1239 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 s1 |= TDA8425_S1_ML_SOUND_B;
1241 s1 |= TDA8425_S1_STEREO_PSEUDO;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001242 break;
1243 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 s1 |= TDA8425_S1_ML_STEREO;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001245 s1 |= TDA8425_S1_STEREO_MONO;
1246 break;
1247 case V4L2_TUNER_MODE_STEREO:
1248 s1 |= TDA8425_S1_ML_STEREO;
1249 s1 |= TDA8425_S1_STEREO_SPATIAL;
1250 break;
1251 default:
1252 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254 chip_write(chip,TDA8425_S1,s1);
1255}
1256
1257
1258/* ---------------------------------------------------------------------- */
1259/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1260
1261/* the registers of 16C54, I2C sub address. */
1262#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1263#define PIC16C54_REG_MISC 0x02
1264
1265/* bit definition of the RESET register, I2C data. */
1266#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001267 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1269#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1270#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1271#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1272#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1273#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1274#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1275
1276/* ---------------------------------------------------------------------- */
1277/* audio chip descriptions - defines+functions for TA8874Z */
1278
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001279/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280#define TA8874Z_LED_STE 0x80
1281#define TA8874Z_LED_BIL 0x40
1282#define TA8874Z_LED_EXT 0x20
1283#define TA8874Z_MONO_SET 0x10
1284#define TA8874Z_MUTE 0x08
1285#define TA8874Z_F_MONO 0x04
1286#define TA8874Z_MODE_SUB 0x02
1287#define TA8874Z_MODE_MAIN 0x01
1288
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001289/* write 2nd byte */
1290/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291#define TA8874Z_SEPARATION 0x3f
1292#define TA8874Z_SEPARATION_DEFAULT 0x10
1293
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001294/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295#define TA8874Z_B1 0x80
1296#define TA8874Z_B0 0x40
1297#define TA8874Z_CHAG_FLAG 0x20
1298
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001299/*
1300 * B1 B0
1301 * mono L H
1302 * stereo L L
1303 * BIL H L
1304 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305static int ta8874z_getmode(struct CHIPSTATE *chip)
1306{
1307 int val, mode;
1308
1309 val = chip_read(chip);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001310 mode = V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (val & TA8874Z_B1){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001312 mode |= V4L2_TUNER_MODE_LANG1 | V4L2_TUNER_MODE_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }else if (!(val & TA8874Z_B0)){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001314 mode |= V4L2_TUNER_MODE_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
Hans Verkuil08e14052007-09-14 04:50:44 -03001316 /* 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 -07001317 return mode;
1318}
1319
1320static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1321static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1322static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1323static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
1324
1325static void ta8874z_setmode(struct CHIPSTATE *chip, int mode)
1326{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001327 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 int update = 1;
1329 audiocmd *t = NULL;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001330
1331 v4l2_dbg(1, debug, sd, "ta8874z_setmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 switch(mode){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001334 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 t = &ta8874z_mono;
1336 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001337 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 t = &ta8874z_stereo;
1339 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001340 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 t = &ta8874z_main;
1342 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001343 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 t = &ta8874z_sub;
1345 break;
1346 default:
1347 update = 0;
1348 }
1349
1350 if(update)
1351 chip_cmd(chip, "TA8874Z", t);
1352}
1353
1354static int ta8874z_checkit(struct CHIPSTATE *chip)
1355{
1356 int rc;
1357 rc = chip_read(chip);
1358 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1359}
1360
1361/* ---------------------------------------------------------------------- */
1362/* audio chip descriptions - struct CHIPDESC */
1363
1364/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001365static int tda8425 = 1;
1366static int tda9840 = 1;
1367static int tda9850 = 1;
1368static int tda9855 = 1;
1369static int tda9873 = 1;
1370static int tda9874a = 1;
Hans Verkuil411674f2009-03-18 14:02:36 -03001371static int tda9875 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001372static int tea6300; /* default 0 - address clash with msp34xx */
1373static int tea6320; /* default 0 - address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001374static int tea6420 = 1;
1375static int pic16c54 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001376static int ta8874z; /* default 0 - address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378module_param(tda8425, int, 0444);
1379module_param(tda9840, int, 0444);
1380module_param(tda9850, int, 0444);
1381module_param(tda9855, int, 0444);
1382module_param(tda9873, int, 0444);
1383module_param(tda9874a, int, 0444);
Hans Verkuil411674f2009-03-18 14:02:36 -03001384module_param(tda9875, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385module_param(tea6300, int, 0444);
1386module_param(tea6320, int, 0444);
1387module_param(tea6420, int, 0444);
1388module_param(pic16c54, int, 0444);
1389module_param(ta8874z, int, 0444);
1390
1391static struct CHIPDESC chiplist[] = {
1392 {
1393 .name = "tda9840",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001395 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1396 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 .registers = 5,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001398 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001400 /* callbacks */
Hans Verkuil94f9e562006-01-23 09:47:40 -02001401 .checkit = tda9840_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 .getmode = tda9840_getmode,
1403 .setmode = tda9840_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001405 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 /* ,TDA9840_SW, TDA9840_MONO */} }
1407 },
1408 {
1409 .name = "tda9873h",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001411 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1412 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 .registers = 3,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001414 .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001416 /* callbacks */
1417 .checkit = tda9873_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 .getmode = tda9873_getmode,
1419 .setmode = tda9873_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1422 .inputreg = TDA9873_SW,
1423 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001424 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1426
1427 },
1428 {
1429 .name = "tda9874h/a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001431 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1432 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001433 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001435 /* callbacks */
1436 .initialize = tda9874a_initialize,
1437 .checkit = tda9874a_checkit,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 .getmode = tda9874a_getmode,
1439 .setmode = tda9874a_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 },
1441 {
Hans Verkuil411674f2009-03-18 14:02:36 -03001442 .name = "tda9875",
1443 .insmodopt = &tda9875,
1444 .addr_lo = I2C_ADDR_TDA9875 >> 1,
1445 .addr_hi = I2C_ADDR_TDA9875 >> 1,
1446 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1447
1448 /* callbacks */
1449 .initialize = tda9875_initialize,
1450 .checkit = tda9875_checkit,
1451 .volfunc = tda9875_volume,
1452 .bassfunc = tda9875_bass,
1453 .treblefunc = tda9875_treble,
1454 .leftreg = TDA9875_MVL,
1455 .rightreg = TDA9875_MVR,
1456 .bassreg = TDA9875_MBA,
1457 .treblereg = TDA9875_MTR,
1458 .leftinit = 58880,
1459 .rightinit = 58880,
1460 },
1461 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 .name = "tda9850",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001464 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1465 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 .registers = 11,
1467
1468 .getmode = tda985x_getmode,
1469 .setmode = tda985x_setmode,
1470
1471 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1472 },
1473 {
1474 .name = "tda9855",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001476 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1477 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 .registers = 11,
1479 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1480
1481 .leftreg = TDA9855_VL,
1482 .rightreg = TDA9855_VR,
1483 .bassreg = TDA9855_BA,
1484 .treblereg = TDA9855_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001485
1486 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 .volfunc = tda9855_volume,
1488 .bassfunc = tda9855_bass,
1489 .treblefunc = tda9855_treble,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 .getmode = tda985x_getmode,
1491 .setmode = tda985x_setmode,
1492
1493 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1494 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1495 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1496 0x07, 0x10, 0x10, 0x03 }}
1497 },
1498 {
1499 .name = "tea6300",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001501 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1502 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .registers = 6,
1504 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1505
1506 .leftreg = TEA6300_VR,
1507 .rightreg = TEA6300_VL,
1508 .bassreg = TEA6300_BA,
1509 .treblereg = TEA6300_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001510
1511 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 .volfunc = tea6300_shift10,
1513 .bassfunc = tea6300_shift12,
1514 .treblefunc = tea6300_shift12,
1515
1516 .inputreg = TEA6300_S,
1517 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1518 .inputmute = TEA6300_S_GMU,
1519 },
1520 {
1521 .name = "tea6320",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001523 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1524 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 .registers = 8,
1526 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1527
1528 .leftreg = TEA6320_V,
1529 .rightreg = TEA6320_V,
1530 .bassreg = TEA6320_BA,
1531 .treblereg = TEA6320_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001532
1533 /* callbacks */
1534 .initialize = tea6320_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 .volfunc = tea6320_volume,
1536 .bassfunc = tea6320_shift11,
1537 .treblefunc = tea6320_shift11,
1538
1539 .inputreg = TEA6320_S,
1540 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1541 .inputmute = TEA6300_S_GMU,
1542 },
1543 {
1544 .name = "tea6420",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001546 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1547 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 .registers = 1,
1549 .flags = CHIP_HAS_INPUTSEL,
1550
1551 .inputreg = -1,
1552 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1553 .inputmute = TEA6300_S_GMU,
1554 },
1555 {
1556 .name = "tda8425",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001558 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1559 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .registers = 9,
1561 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1562
1563 .leftreg = TDA8425_VL,
1564 .rightreg = TDA8425_VR,
1565 .bassreg = TDA8425_BA,
1566 .treblereg = TDA8425_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001567
1568 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 .volfunc = tda8425_shift10,
1570 .bassfunc = tda8425_shift12,
1571 .treblefunc = tda8425_shift12,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001572 .setmode = tda8425_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 .inputreg = TDA8425_S1,
1575 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1576 .inputmute = TDA8425_S1_OFF,
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 },
1579 {
1580 .name = "pic16c54 (PV951)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001582 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1583 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 .registers = 2,
1585 .flags = CHIP_HAS_INPUTSEL,
1586
1587 .inputreg = PIC16C54_REG_MISC,
1588 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1589 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1590 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001591 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 .inputmute = PIC16C54_MISC_SND_MUTE,
1593 },
1594 {
1595 .name = "ta8874z",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 .checkit = ta8874z_checkit,
1597 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001598 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1599 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 .registers = 2,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001601 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001603 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 .getmode = ta8874z_getmode,
1605 .setmode = ta8874z_setmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001607 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 },
1609 { .name = NULL } /* EOF */
1610};
1611
1612
1613/* ---------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Hans Verkuil64f70e72008-12-18 12:11:32 -03001615static int tvaudio_g_ctrl(struct v4l2_subdev *sd,
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001616 struct v4l2_control *ctrl)
1617{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001618 struct CHIPSTATE *chip = to_state(sd);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001619 struct CHIPDESC *desc = chip->desc;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001620
1621 switch (ctrl->id) {
1622 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001623 if (!(desc->flags & CHIP_HAS_INPUTSEL))
1624 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001625 ctrl->value=chip->muted;
1626 return 0;
1627 case V4L2_CID_AUDIO_VOLUME:
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001628 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001629 break;
1630 ctrl->value = max(chip->left,chip->right);
1631 return 0;
1632 case V4L2_CID_AUDIO_BALANCE:
1633 {
1634 int volume;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001635 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001636 break;
1637 volume = max(chip->left,chip->right);
1638 if (volume)
1639 ctrl->value=(32768*min(chip->left,chip->right))/volume;
1640 else
1641 ctrl->value=32768;
1642 return 0;
1643 }
1644 case V4L2_CID_AUDIO_BASS:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001645 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001646 break;
1647 ctrl->value = chip->bass;
1648 return 0;
1649 case V4L2_CID_AUDIO_TREBLE:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001650 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
1651 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001652 ctrl->value = chip->treble;
1653 return 0;
1654 }
1655 return -EINVAL;
1656}
1657
Hans Verkuil64f70e72008-12-18 12:11:32 -03001658static int tvaudio_s_ctrl(struct v4l2_subdev *sd,
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001659 struct v4l2_control *ctrl)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001660{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001661 struct CHIPSTATE *chip = to_state(sd);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001662 struct CHIPDESC *desc = chip->desc;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001663
1664 switch (ctrl->id) {
1665 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001666 if (!(desc->flags & CHIP_HAS_INPUTSEL))
1667 break;
1668
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001669 if (ctrl->value < 0 || ctrl->value >= 2)
1670 return -ERANGE;
1671 chip->muted = ctrl->value;
1672 if (chip->muted)
1673 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1674 else
1675 chip_write_masked(chip,desc->inputreg,
1676 desc->inputmap[chip->input],desc->inputmask);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001677 return 0;
1678 case V4L2_CID_AUDIO_VOLUME:
1679 {
1680 int volume,balance;
1681
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001682 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001683 break;
1684
1685 volume = max(chip->left,chip->right);
1686 if (volume)
1687 balance=(32768*min(chip->left,chip->right))/volume;
1688 else
1689 balance=32768;
1690
1691 volume=ctrl->value;
1692 chip->left = (min(65536 - balance,32768) * volume) / 32768;
1693 chip->right = (min(balance,volume *(__u16)32768)) / 32768;
1694
1695 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1696 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1697
1698 return 0;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001699 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001700 case V4L2_CID_AUDIO_BALANCE:
1701 {
1702 int volume, balance;
Hans Verkuil88af8302011-08-25 10:24:16 -03001703
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001704 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001705 break;
1706
Hans Verkuil88af8302011-08-25 10:24:16 -03001707 volume = max(chip->left, chip->right);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001708 balance = ctrl->value;
Hans Verkuil88af8302011-08-25 10:24:16 -03001709 chip->left = (min(65536 - balance, 32768) * volume) / 32768;
1710 chip->right = (min(balance, volume * (__u16)32768)) / 32768;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001711
Hans Verkuil88af8302011-08-25 10:24:16 -03001712 chip_write(chip, desc->leftreg, desc->volfunc(chip->left));
1713 chip_write(chip, desc->rightreg, desc->volfunc(chip->right));
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001714
1715 return 0;
1716 }
1717 case V4L2_CID_AUDIO_BASS:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001718 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001719 break;
1720 chip->bass = ctrl->value;
1721 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1722
1723 return 0;
1724 case V4L2_CID_AUDIO_TREBLE:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001725 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
1726 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001727 chip->treble = ctrl->value;
1728 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1729
1730 return 0;
1731 }
1732 return -EINVAL;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001733}
1734
1735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736/* ---------------------------------------------------------------------- */
1737/* video4linux interface */
1738
Hans Verkuil64f70e72008-12-18 12:11:32 -03001739static int tvaudio_s_radio(struct v4l2_subdev *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001741 struct CHIPSTATE *chip = to_state(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Hans Verkuil64f70e72008-12-18 12:11:32 -03001743 chip->radio = 1;
1744 chip->watch_stereo = 0;
1745 /* del_timer(&chip->wt); */
1746 return 0;
1747}
1748
1749static int tvaudio_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc)
1750{
1751 struct CHIPSTATE *chip = to_state(sd);
1752 struct CHIPDESC *desc = chip->desc;
1753
1754 switch (qc->id) {
1755 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001756 if (desc->flags & CHIP_HAS_INPUTSEL)
1757 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0);
1758 break;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001759 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001760 if (desc->flags & CHIP_HAS_VOLUME)
1761 return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 58880);
1762 break;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001763 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001764 if (desc->flags & CHIP_HAS_VOLUME)
1765 return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768);
Hans Verkuil64f70e72008-12-18 12:11:32 -03001766 break;
1767 case V4L2_CID_AUDIO_BASS:
1768 case V4L2_CID_AUDIO_TREBLE:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001769 if (desc->flags & CHIP_HAS_BASSTREBLE)
1770 return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768);
Hans Verkuil64f70e72008-12-18 12:11:32 -03001771 break;
1772 default:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001773 break;
Mauro Carvalho Chehabc6241b62008-11-13 18:12:43 -03001774 }
Hans Verkuil10afbef2009-02-21 18:47:24 -03001775 return -EINVAL;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001776}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Hans Verkuil5325b422009-04-02 11:26:22 -03001778static int tvaudio_s_routing(struct v4l2_subdev *sd,
1779 u32 input, u32 output, u32 config)
Hans Verkuil64f70e72008-12-18 12:11:32 -03001780{
1781 struct CHIPSTATE *chip = to_state(sd);
1782 struct CHIPDESC *desc = chip->desc;
1783
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001784 if (!(desc->flags & CHIP_HAS_INPUTSEL))
1785 return 0;
Hans Verkuil5325b422009-04-02 11:26:22 -03001786 if (input >= 4)
Hans Verkuil64f70e72008-12-18 12:11:32 -03001787 return -EINVAL;
1788 /* There are four inputs: tuner, radio, extern and intern. */
Hans Verkuil5325b422009-04-02 11:26:22 -03001789 chip->input = input;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001790 if (chip->muted)
1791 return 0;
1792 chip_write_masked(chip, desc->inputreg,
1793 desc->inputmap[chip->input], desc->inputmask);
1794 return 0;
1795}
1796
1797static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1798{
1799 struct CHIPSTATE *chip = to_state(sd);
1800 struct CHIPDESC *desc = chip->desc;
1801 int mode = 0;
1802
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001803 if (!desc->setmode)
1804 return 0;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001805 if (chip->radio)
1806 return 0;
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001807
Hans Verkuil64f70e72008-12-18 12:11:32 -03001808 switch (vt->audmode) {
1809 case V4L2_TUNER_MODE_MONO:
1810 case V4L2_TUNER_MODE_STEREO:
1811 case V4L2_TUNER_MODE_LANG1:
1812 case V4L2_TUNER_MODE_LANG2:
1813 mode = vt->audmode;
1814 break;
1815 case V4L2_TUNER_MODE_LANG1_LANG2:
1816 mode = V4L2_TUNER_MODE_STEREO;
1817 break;
1818 default:
1819 return -EINVAL;
1820 }
1821 chip->audmode = vt->audmode;
1822
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001823 if (mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 chip->watch_stereo = 0;
1825 /* del_timer(&chip->wt); */
Hans Verkuil64f70e72008-12-18 12:11:32 -03001826 chip->mode = mode;
1827 desc->setmode(chip, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829 return 0;
1830}
1831
Hans Verkuil64f70e72008-12-18 12:11:32 -03001832static int tvaudio_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1833{
1834 struct CHIPSTATE *chip = to_state(sd);
1835 struct CHIPDESC *desc = chip->desc;
1836 int mode = V4L2_TUNER_MODE_MONO;
1837
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001838 if (!desc->getmode)
1839 return 0;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001840 if (chip->radio)
1841 return 0;
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001842
Hans Verkuil64f70e72008-12-18 12:11:32 -03001843 vt->audmode = chip->audmode;
1844 vt->rxsubchans = 0;
1845 vt->capability = V4L2_TUNER_CAP_STEREO |
1846 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
1847
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001848 mode = desc->getmode(chip);
Hans Verkuil64f70e72008-12-18 12:11:32 -03001849
1850 if (mode & V4L2_TUNER_MODE_MONO)
1851 vt->rxsubchans |= V4L2_TUNER_SUB_MONO;
1852 if (mode & V4L2_TUNER_MODE_STEREO)
1853 vt->rxsubchans |= V4L2_TUNER_SUB_STEREO;
1854 /* Note: for SAP it should be mono/lang2 or stereo/lang2.
1855 When this module is converted fully to v4l2, then this
1856 should change for those chips that can detect SAP. */
1857 if (mode & V4L2_TUNER_MODE_LANG1)
1858 vt->rxsubchans = V4L2_TUNER_SUB_LANG1 |
1859 V4L2_TUNER_SUB_LANG2;
1860 return 0;
1861}
1862
1863static int tvaudio_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
1864{
1865 struct CHIPSTATE *chip = to_state(sd);
1866
1867 chip->radio = 0;
1868 return 0;
1869}
1870
1871static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *freq)
1872{
1873 struct CHIPSTATE *chip = to_state(sd);
1874 struct CHIPDESC *desc = chip->desc;
1875
1876 chip->mode = 0; /* automatic */
1877
1878 /* For chips that provide getmode and setmode, and doesn't
1879 automatically follows the stereo carrier, a kthread is
1880 created to set the audio standard. In this case, when then
1881 the video channel is changed, tvaudio starts on MONO mode.
1882 After waiting for 2 seconds, the kernel thread is called,
1883 to follow whatever audio standard is pointed by the
1884 audio carrier.
1885 */
1886 if (chip->thread) {
1887 desc->setmode(chip, V4L2_TUNER_MODE_MONO);
1888 if (chip->prevmode != V4L2_TUNER_MODE_MONO)
1889 chip->prevmode = -1; /* reset previous mode */
1890 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
1891 }
1892 return 0;
1893}
1894
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001895static int tvaudio_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
Hans Verkuil64f70e72008-12-18 12:11:32 -03001896{
1897 struct i2c_client *client = v4l2_get_subdevdata(sd);
1898
1899 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVAUDIO, 0);
1900}
1901
Hans Verkuil64f70e72008-12-18 12:11:32 -03001902/* ----------------------------------------------------------------------- */
1903
1904static const struct v4l2_subdev_core_ops tvaudio_core_ops = {
1905 .g_chip_ident = tvaudio_g_chip_ident,
1906 .queryctrl = tvaudio_queryctrl,
1907 .g_ctrl = tvaudio_g_ctrl,
1908 .s_ctrl = tvaudio_s_ctrl,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001909 .s_std = tvaudio_s_std,
Hans Verkuil64f70e72008-12-18 12:11:32 -03001910};
1911
1912static const struct v4l2_subdev_tuner_ops tvaudio_tuner_ops = {
1913 .s_radio = tvaudio_s_radio,
1914 .s_frequency = tvaudio_s_frequency,
Hans Verkuil64f70e72008-12-18 12:11:32 -03001915 .s_tuner = tvaudio_s_tuner,
Julia Lawalle6a1a082009-09-19 16:48:17 -03001916 .g_tuner = tvaudio_g_tuner,
Hans Verkuil64f70e72008-12-18 12:11:32 -03001917};
1918
1919static const struct v4l2_subdev_audio_ops tvaudio_audio_ops = {
1920 .s_routing = tvaudio_s_routing,
1921};
1922
1923static const struct v4l2_subdev_ops tvaudio_ops = {
1924 .core = &tvaudio_core_ops,
1925 .tuner = &tvaudio_tuner_ops,
1926 .audio = &tvaudio_audio_ops,
1927};
1928
1929/* ----------------------------------------------------------------------- */
1930
1931
1932/* i2c registration */
1933
1934static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id *id)
1935{
1936 struct CHIPSTATE *chip;
1937 struct CHIPDESC *desc;
1938 struct v4l2_subdev *sd;
1939
1940 if (debug) {
1941 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1942 printk(KERN_INFO "tvaudio: known chips: ");
1943 for (desc = chiplist; desc->name != NULL; desc++)
1944 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1945 printk("\n");
1946 }
1947
1948 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1949 if (!chip)
1950 return -ENOMEM;
1951 sd = &chip->sd;
1952 v4l2_i2c_subdev_init(sd, client, &tvaudio_ops);
1953
1954 /* find description for the chip */
1955 v4l2_dbg(1, debug, sd, "chip found @ 0x%x\n", client->addr<<1);
1956 for (desc = chiplist; desc->name != NULL; desc++) {
1957 if (0 == *(desc->insmodopt))
1958 continue;
1959 if (client->addr < desc->addr_lo ||
1960 client->addr > desc->addr_hi)
1961 continue;
1962 if (desc->checkit && !desc->checkit(chip))
1963 continue;
1964 break;
1965 }
1966 if (desc->name == NULL) {
1967 v4l2_dbg(1, debug, sd, "no matching chip description found\n");
1968 kfree(chip);
1969 return -EIO;
1970 }
1971 v4l2_info(sd, "%s found @ 0x%x (%s)\n", desc->name, client->addr<<1, client->adapter->name);
1972 if (desc->flags) {
1973 v4l2_dbg(1, debug, sd, "matches:%s%s%s.\n",
1974 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
1975 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
1976 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
1977 }
1978
1979 /* fill required data structures */
1980 if (!id)
1981 strlcpy(client->name, desc->name, I2C_NAME_SIZE);
1982 chip->desc = desc;
1983 chip->shadow.count = desc->registers+1;
1984 chip->prevmode = -1;
1985 chip->audmode = V4L2_TUNER_MODE_LANG1;
1986
1987 /* initialization */
1988 if (desc->initialize != NULL)
1989 desc->initialize(chip);
1990 else
1991 chip_cmd(chip, "init", &desc->init);
1992
1993 if (desc->flags & CHIP_HAS_VOLUME) {
1994 if (!desc->volfunc) {
1995 /* This shouldn't be happen. Warn user, but keep working
1996 without volume controls
1997 */
1998 v4l2_info(sd, "volume callback undefined!\n");
1999 desc->flags &= ~CHIP_HAS_VOLUME;
2000 } else {
2001 chip->left = desc->leftinit ? desc->leftinit : 65535;
2002 chip->right = desc->rightinit ? desc->rightinit : 65535;
2003 chip_write(chip, desc->leftreg,
2004 desc->volfunc(chip->left));
2005 chip_write(chip, desc->rightreg,
2006 desc->volfunc(chip->right));
2007 }
2008 }
2009 if (desc->flags & CHIP_HAS_BASSTREBLE) {
2010 if (!desc->bassfunc || !desc->treblefunc) {
2011 /* This shouldn't be happen. Warn user, but keep working
2012 without bass/treble controls
2013 */
2014 v4l2_info(sd, "bass/treble callbacks undefined!\n");
2015 desc->flags &= ~CHIP_HAS_BASSTREBLE;
2016 } else {
2017 chip->treble = desc->trebleinit ?
2018 desc->trebleinit : 32768;
2019 chip->bass = desc->bassinit ?
2020 desc->bassinit : 32768;
2021 chip_write(chip, desc->bassreg,
2022 desc->bassfunc(chip->bass));
2023 chip_write(chip, desc->treblereg,
2024 desc->treblefunc(chip->treble));
2025 }
2026 }
2027
2028 chip->thread = NULL;
Hans Verkuile4129a92009-03-19 16:53:32 -03002029 init_timer(&chip->wt);
Hans Verkuil64f70e72008-12-18 12:11:32 -03002030 if (desc->flags & CHIP_NEED_CHECKMODE) {
2031 if (!desc->getmode || !desc->setmode) {
2032 /* This shouldn't be happen. Warn user, but keep working
2033 without kthread
2034 */
2035 v4l2_info(sd, "set/get mode callbacks undefined!\n");
2036 return 0;
2037 }
2038 /* start async thread */
Hans Verkuil64f70e72008-12-18 12:11:32 -03002039 chip->wt.function = chip_thread_wake;
2040 chip->wt.data = (unsigned long)chip;
2041 chip->thread = kthread_run(chip_thread, chip, client->name);
2042 if (IS_ERR(chip->thread)) {
2043 v4l2_warn(sd, "failed to create kthread\n");
2044 chip->thread = NULL;
2045 }
2046 }
2047 return 0;
2048}
2049
2050static int tvaudio_remove(struct i2c_client *client)
2051{
2052 struct v4l2_subdev *sd = i2c_get_clientdata(client);
2053 struct CHIPSTATE *chip = to_state(sd);
2054
2055 del_timer_sync(&chip->wt);
2056 if (chip->thread) {
2057 /* shutdown async thread */
2058 kthread_stop(chip->thread);
2059 chip->thread = NULL;
2060 }
2061
2062 v4l2_device_unregister_subdev(sd);
2063 kfree(chip);
2064 return 0;
2065}
2066
Jean Delvareae429082008-05-11 20:37:06 +02002067/* This driver supports many devices and the idea is to let the driver
2068 detect which device is present. So rather than listing all supported
2069 devices here, we pretend to support a single, fake device type. */
Hans Verkuil64f70e72008-12-18 12:11:32 -03002070static const struct i2c_device_id tvaudio_id[] = {
Jean Delvareae429082008-05-11 20:37:06 +02002071 { "tvaudio", 0 },
2072 { }
2073};
Hans Verkuil64f70e72008-12-18 12:11:32 -03002074MODULE_DEVICE_TABLE(i2c, tvaudio_id);
Jean Delvareae429082008-05-11 20:37:06 +02002075
Hans Verkuil7a004d12010-09-15 15:26:38 -03002076static struct i2c_driver tvaudio_driver = {
2077 .driver = {
2078 .owner = THIS_MODULE,
2079 .name = "tvaudio",
2080 },
2081 .probe = tvaudio_probe,
2082 .remove = tvaudio_remove,
2083 .id_table = tvaudio_id,
Hans Verkuil08e14052007-09-14 04:50:44 -03002084};
Hans Verkuil7a004d12010-09-15 15:26:38 -03002085
Axel Linc6e8d862012-02-12 06:56:32 -03002086module_i2c_driver(tvaudio_driver);