blob: 321b3153df87abe1537bab907121d98012d25838 [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*);
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -030062typedef int (*getrxsubchans)(struct CHIPSTATE *);
63typedef void (*setaudmode)(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 */
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -030099 getrxsubchans getrxsubchans;
100 setaudmode setaudmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
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 */
Daniel Glöcknere21adca2012-06-09 21:43:56 -0300121 __u16 left, right, treble, bass, muted;
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;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200129 int audmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Hans Verkuil64f70e72008-12-18 12:11:32 -0300132static inline struct CHIPSTATE *to_state(struct v4l2_subdev *sd)
133{
134 return container_of(sd, struct CHIPSTATE, sd);
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* ---------------------------------------------------------------------- */
139/* i2c I/O functions */
140
141static int chip_write(struct CHIPSTATE *chip, int subaddr, int val)
142{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300143 struct v4l2_subdev *sd = &chip->sd;
144 struct i2c_client *c = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 unsigned char buffer[2];
146
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300147 if (subaddr < 0) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300148 v4l2_dbg(1, debug, sd, "chip_write: 0x%x\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 chip->shadow.bytes[1] = val;
150 buffer[0] = val;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300151 if (1 != i2c_master_send(c, buffer, 1)) {
152 v4l2_warn(sd, "I/O error (write 0x%x)\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -1;
154 }
155 } else {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300156 if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300157 v4l2_info(sd,
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300158 "Tried to access a non-existent register: %d\n",
159 subaddr);
160 return -EINVAL;
161 }
162
Hans Verkuil64f70e72008-12-18 12:11:32 -0300163 v4l2_dbg(1, debug, sd, "chip_write: reg%d=0x%x\n",
164 subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 chip->shadow.bytes[subaddr+1] = val;
166 buffer[0] = subaddr;
167 buffer[1] = val;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300168 if (2 != i2c_master_send(c, buffer, 2)) {
169 v4l2_warn(sd, "I/O error (write reg%d=0x%x)\n",
170 subaddr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -1;
172 }
173 }
174 return 0;
175}
176
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300177static int chip_write_masked(struct CHIPSTATE *chip,
178 int subaddr, int val, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300180 struct v4l2_subdev *sd = &chip->sd;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (mask != 0) {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300183 if (subaddr < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 val = (chip->shadow.bytes[1] & ~mask) | (val & mask);
185 } else {
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300186 if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300187 v4l2_info(sd,
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300188 "Tried to access a non-existent register: %d\n",
189 subaddr);
190 return -EINVAL;
191 }
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask);
194 }
195 }
196 return chip_write(chip, subaddr, val);
197}
198
199static int chip_read(struct CHIPSTATE *chip)
200{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300201 struct v4l2_subdev *sd = &chip->sd;
202 struct i2c_client *c = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 unsigned char buffer;
204
Hans Verkuil64f70e72008-12-18 12:11:32 -0300205 if (1 != i2c_master_recv(c, &buffer, 1)) {
206 v4l2_warn(sd, "I/O error (read)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return -1;
208 }
Hans Verkuil64f70e72008-12-18 12:11:32 -0300209 v4l2_dbg(1, debug, sd, "chip_read: 0x%x\n", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return buffer;
211}
212
213static int chip_read2(struct CHIPSTATE *chip, int subaddr)
214{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300215 struct v4l2_subdev *sd = &chip->sd;
216 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700217 unsigned char write[1];
218 unsigned char read[1];
219 struct i2c_msg msgs[2] = {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300220 { c->addr, 0, 1, write },
221 { c->addr, I2C_M_RD, 1, read }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700222 };
Hans Verkuil64f70e72008-12-18 12:11:32 -0300223
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700224 write[0] = subaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Hans Verkuil64f70e72008-12-18 12:11:32 -0300226 if (2 != i2c_transfer(c->adapter, msgs, 2)) {
227 v4l2_warn(sd, "I/O error (read2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -1;
229 }
Hans Verkuil64f70e72008-12-18 12:11:32 -0300230 v4l2_dbg(1, debug, sd, "chip_read2: reg%d=0x%x\n",
231 subaddr, read[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return read[0];
233}
234
235static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd)
236{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300237 struct v4l2_subdev *sd = &chip->sd;
238 struct i2c_client *c = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 int i;
240
241 if (0 == cmd->count)
242 return 0;
243
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300244 if (cmd->count + cmd->bytes[0] - 1 >= ARRAY_SIZE(chip->shadow.bytes)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -0300245 v4l2_info(sd,
Mauro Carvalho Chehab49426432008-11-13 17:03:28 -0300246 "Tried to access a non-existent register range: %d to %d\n",
247 cmd->bytes[0] + 1, cmd->bytes[0] + cmd->count - 1);
248 return -EINVAL;
249 }
250
251 /* FIXME: it seems that the shadow bytes are wrong bellow !*/
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* update our shadow register set; print bytes if (debug > 0) */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300254 v4l2_dbg(1, debug, sd, "chip_cmd(%s): reg=%d, data:",
255 name, cmd->bytes[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 for (i = 1; i < cmd->count; i++) {
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700257 if (debug)
Hans Verkuil64f70e72008-12-18 12:11:32 -0300258 printk(KERN_CONT " 0x%x", cmd->bytes[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i];
260 }
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700261 if (debug)
Hans Verkuil64f70e72008-12-18 12:11:32 -0300262 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /* send data to the chip */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300265 if (cmd->count != i2c_master_send(c, cmd->bytes, cmd->count)) {
266 v4l2_warn(sd, "I/O error (%s)\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -1;
268 }
269 return 0;
270}
271
272/* ---------------------------------------------------------------------- */
273/* kernel thread for doing i2c stuff asyncronly
274 * right now it is used only to check the audio mode (mono/stereo/whatever)
275 * some time after switching to another TV channel, then turn on stereo
276 * if available, ...
277 */
278
279static void chip_thread_wake(unsigned long data)
280{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700281 struct CHIPSTATE *chip = (struct CHIPSTATE*)data;
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300282 wake_up_process(chip->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285static int chip_thread(void *data)
286{
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700287 struct CHIPSTATE *chip = data;
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -0300288 struct CHIPDESC *desc = chip->desc;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300289 struct v4l2_subdev *sd = &chip->sd;
Daniel Glöcknere21adca2012-06-09 21:43:56 -0300290 int mode, selected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Hans Verkuil64f70e72008-12-18 12:11:32 -0300292 v4l2_dbg(1, debug, sd, "thread started\n");
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700293 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 for (;;) {
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300295 set_current_state(TASK_INTERRUPTIBLE);
296 if (!kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 schedule();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300298 set_current_state(TASK_RUNNING);
Nigel Cunningham5e50e7a2005-07-27 11:43:35 -0700299 try_to_freeze();
Cedric Le Goaterbc282872006-09-11 16:31:45 -0300300 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 break;
Hans Verkuil64f70e72008-12-18 12:11:32 -0300302 v4l2_dbg(1, debug, sd, "thread wakeup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Daniel Glöcknere21adca2012-06-09 21:43:56 -0300304 /* don't do anything for radio */
305 if (chip->radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 continue;
307
308 /* have a look what's going on */
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300309 mode = desc->getrxsubchans(chip);
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300310 if (mode == chip->prevmode)
311 continue;
312
313 /* chip detected a new audio mode - set it */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300314 v4l2_dbg(1, debug, sd, "thread checkmode\n");
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -0300315
316 chip->prevmode = mode;
317
Daniel Glöcknere21adca2012-06-09 21:43:56 -0300318 selected = V4L2_TUNER_MODE_MONO;
319 switch (chip->audmode) {
320 case V4L2_TUNER_MODE_MONO:
321 if (mode & V4L2_TUNER_SUB_LANG1)
322 selected = V4L2_TUNER_MODE_LANG1;
323 break;
324 case V4L2_TUNER_MODE_STEREO:
325 case V4L2_TUNER_MODE_LANG1:
326 if (mode & V4L2_TUNER_SUB_LANG1)
327 selected = V4L2_TUNER_MODE_LANG1;
328 else if (mode & V4L2_TUNER_SUB_STEREO)
329 selected = V4L2_TUNER_MODE_STEREO;
330 break;
331 case V4L2_TUNER_MODE_LANG2:
332 if (mode & V4L2_TUNER_SUB_LANG2)
333 selected = V4L2_TUNER_MODE_LANG2;
334 else if (mode & V4L2_TUNER_SUB_STEREO)
335 selected = V4L2_TUNER_MODE_STEREO;
336 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300337 case V4L2_TUNER_MODE_LANG1_LANG2:
338 if (mode & V4L2_TUNER_SUB_LANG2)
339 selected = V4L2_TUNER_MODE_LANG1_LANG2;
340 else if (mode & V4L2_TUNER_SUB_STEREO)
341 selected = V4L2_TUNER_MODE_STEREO;
Daniel Glöcknere21adca2012-06-09 21:43:56 -0300342 }
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300343 desc->setaudmode(chip, selected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* schedule next check */
Mauro Carvalho Chehab09df5cb2007-07-17 16:25:38 -0300346 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348
Hans Verkuil64f70e72008-12-18 12:11:32 -0300349 v4l2_dbg(1, debug, sd, "thread exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return 0;
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/* ---------------------------------------------------------------------- */
354/* audio chip descriptions - defines+functions for tda9840 */
355
356#define TDA9840_SW 0x00
357#define TDA9840_LVADJ 0x02
358#define TDA9840_STADJ 0x03
359#define TDA9840_TEST 0x04
360
361#define TDA9840_MONO 0x10
362#define TDA9840_STEREO 0x2a
363#define TDA9840_DUALA 0x12
364#define TDA9840_DUALB 0x1e
365#define TDA9840_DUALAB 0x1a
366#define TDA9840_DUALBA 0x16
367#define TDA9840_EXTERNAL 0x7a
368
369#define TDA9840_DS_DUAL 0x20 /* Dual sound identified */
370#define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */
371#define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */
372
373#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
374#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
375
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300376static int tda9840_getrxsubchans(struct CHIPSTATE *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300378 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int val, mode;
380
381 val = chip_read(chip);
Daniel Glöckner3322a592012-06-09 21:43:55 -0300382 mode = V4L2_TUNER_SUB_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (val & TDA9840_DS_DUAL)
Daniel Glöckner3322a592012-06-09 21:43:55 -0300384 mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (val & TDA9840_ST_STEREO)
Daniel Glöckner1884e292012-06-09 21:43:58 -0300386 mode = V4L2_TUNER_SUB_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300388 v4l2_dbg(1, debug, sd,
389 "tda9840_getrxsubchans(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700390 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return mode;
392}
393
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300394static void tda9840_setaudmode(struct CHIPSTATE *chip, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 int update = 1;
397 int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
398
399 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300400 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 t |= TDA9840_MONO;
402 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300403 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 t |= TDA9840_STEREO;
405 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300406 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 t |= TDA9840_DUALA;
408 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300409 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 t |= TDA9840_DUALB;
411 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300412 case V4L2_TUNER_MODE_LANG1_LANG2:
413 t |= TDA9840_DUALAB;
414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 default:
416 update = 0;
417 }
418
419 if (update)
420 chip_write(chip, TDA9840_SW, t);
421}
422
Hans Verkuil94f9e562006-01-23 09:47:40 -0200423static int tda9840_checkit(struct CHIPSTATE *chip)
424{
425 int rc;
426 rc = chip_read(chip);
427 /* lower 5 bits should be 0 */
428 return ((rc & 0x1f) == 0) ? 1 : 0;
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/* ---------------------------------------------------------------------- */
432/* audio chip descriptions - defines+functions for tda985x */
433
434/* subaddresses for TDA9855 */
435#define TDA9855_VR 0x00 /* Volume, right */
436#define TDA9855_VL 0x01 /* Volume, left */
437#define TDA9855_BA 0x02 /* Bass */
438#define TDA9855_TR 0x03 /* Treble */
439#define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */
440
441/* subaddresses for TDA9850 */
442#define TDA9850_C4 0x04 /* Control 1 for TDA9850 */
443
444/* subaddesses for both chips */
445#define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */
446#define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */
447#define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */
448#define TDA985x_A1 0x08 /* Alignment 1 for both chips */
449#define TDA985x_A2 0x09 /* Alignment 2 for both chips */
450#define TDA985x_A3 0x0a /* Alignment 3 for both chips */
451
452/* Masks for bits in TDA9855 subaddresses */
453/* 0x00 - VR in TDA9855 */
454/* 0x01 - VL in TDA9855 */
455/* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f)
456 * in 1dB steps - mute is 0x27 */
457
458
459/* 0x02 - BA in TDA9855 */
460/* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19)
461 * in .5dB steps - 0 is 0x0E */
462
463
464/* 0x03 - TR in TDA9855 */
465/* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb)
466 * in 3dB steps - 0 is 0x7 */
467
468/* Masks for bits in both chips' subaddresses */
469/* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */
470/* Unique to TDA9855: */
471/* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf)
472 * in 3dB steps - mute is 0x0 */
473
474/* Unique to TDA9850: */
475/* lower 4 bits control stereo noise threshold, over which stereo turns off
476 * set to values of 0x00 through 0x0f for Ster1 through Ster16 */
477
478
479/* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/
480/* Unique to TDA9855: */
481#define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */
482#define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */
483#define TDA9855_LOUD 1<<5 /* Loudness, 1==off */
484#define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */
485 /* Bits 0 to 3 select various combinations
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800486 * of line in and line out, only the
487 * interesting ones are defined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */
489#define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */
490
491/* Unique to TDA9850: */
492/* lower 4 bits contol SAP noise threshold, over which SAP turns off
493 * set to values of 0x00 through 0x0f for SAP1 through SAP16 */
494
495
496/* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */
497/* Common to TDA9855 and TDA9850: */
498#define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300499#define TDA985x_MONOSAP 2<<6 /* Selects Mono on left, SAP on right */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500#define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */
501#define TDA985x_MONO 0 /* Forces Mono output */
502#define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */
503
504/* Unique to TDA9855: */
505#define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */
506#define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/
507#define TDA9855_LINEAR 0 /* Linear Stereo */
508#define TDA9855_PSEUDO 1 /* Pseudo Stereo */
509#define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */
510#define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */
511#define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/
512
513/* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */
514/* Common to both TDA9855 and TDA9850: */
515/* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF)
516 * in .5dB steps - 0dB is 0x7 */
517
518/* 0x08, 0x09 - A1 and A2 (read/write) */
519/* Common to both TDA9855 and TDA9850: */
520/* lower 5 bites are wideband and spectral expander alignment
521 * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */
522#define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */
523#define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */
524#define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/
525
526/* 0x0a - A3 */
527/* Common to both TDA9855 and TDA9850: */
528/* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1),
529 * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */
530#define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */
531
532static int tda9855_volume(int val) { return val/0x2e8+0x27; }
533static int tda9855_bass(int val) { return val/0xccc+0x06; }
534static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
535
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300536static int tda985x_getrxsubchans(struct CHIPSTATE *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Daniel Glöckner3322a592012-06-09 21:43:55 -0300538 int mode, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /* Add mono mode regardless of SAP and stereo */
541 /* Allows forced mono */
Daniel Glöckner3322a592012-06-09 21:43:55 -0300542 mode = V4L2_TUNER_SUB_MONO;
543 val = chip_read(chip);
544 if (val & TDA985x_STP)
Daniel Glöckner1884e292012-06-09 21:43:58 -0300545 mode = V4L2_TUNER_SUB_STEREO;
Daniel Glöckner3322a592012-06-09 21:43:55 -0300546 if (val & TDA985x_SAPP)
547 mode |= V4L2_TUNER_SUB_SAP;
548 return mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300551static void tda985x_setaudmode(struct CHIPSTATE *chip, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 int update = 1;
554 int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
555
556 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300557 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 c6 |= TDA985x_MONO;
559 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300560 case V4L2_TUNER_MODE_STEREO:
Daniel Glöckner00fb1852012-06-09 21:43:52 -0300561 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 c6 |= TDA985x_STEREO;
563 break;
Daniel Glöckner00fb1852012-06-09 21:43:52 -0300564 case V4L2_TUNER_MODE_SAP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 c6 |= TDA985x_SAP;
566 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300567 case V4L2_TUNER_MODE_LANG1_LANG2:
568 c6 |= TDA985x_MONOSAP;
569 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 default:
571 update = 0;
572 }
573 if (update)
574 chip_write(chip,TDA985x_C6,c6);
575}
576
577
578/* ---------------------------------------------------------------------- */
579/* audio chip descriptions - defines+functions for tda9873h */
580
581/* Subaddresses for TDA9873H */
582
583#define TDA9873_SW 0x00 /* Switching */
584#define TDA9873_AD 0x01 /* Adjust */
585#define TDA9873_PT 0x02 /* Port */
586
587/* Subaddress 0x00: Switching Data
588 * B7..B0:
589 *
590 * B1, B0: Input source selection
591 * 0, 0 internal
592 * 1, 0 external stereo
593 * 0, 1 external mono
594 */
595#define TDA9873_INP_MASK 3
596#define TDA9873_INTERNAL 0
597#define TDA9873_EXT_STEREO 2
598#define TDA9873_EXT_MONO 1
599
600/* B3, B2: output signal select
601 * B4 : transmission mode
602 * 0, 0, 1 Mono
603 * 1, 0, 0 Stereo
604 * 1, 1, 1 Stereo (reversed channel)
605 * 0, 0, 0 Dual AB
606 * 0, 0, 1 Dual AA
607 * 0, 1, 0 Dual BB
608 * 0, 1, 1 Dual BA
609 */
610
611#define TDA9873_TR_MASK (7 << 2)
612#define TDA9873_TR_MONO 4
613#define TDA9873_TR_STEREO 1 << 4
Daniel Glöcknerd59a14e2012-06-09 21:43:50 -0300614#define TDA9873_TR_REVERSE ((1 << 3) | (1 << 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#define TDA9873_TR_DUALA 1 << 2
616#define TDA9873_TR_DUALB 1 << 3
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300617#define TDA9873_TR_DUALAB 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619/* output level controls
620 * B5: output level switch (0 = reduced gain, 1 = normal gain)
621 * B6: mute (1 = muted)
622 * B7: auto-mute (1 = auto-mute enabled)
623 */
624
625#define TDA9873_GAIN_NORMAL 1 << 5
626#define TDA9873_MUTE 1 << 6
627#define TDA9873_AUTOMUTE 1 << 7
628
629/* Subaddress 0x01: Adjust/standard */
630
631/* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB)
632 * Recommended value is +0 dB
633 */
634
635#define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */
636
637/* Bits C6..C4 control FM stantard
638 * C6, C5, C4
639 * 0, 0, 0 B/G (PAL FM)
640 * 0, 0, 1 M
641 * 0, 1, 0 D/K(1)
642 * 0, 1, 1 D/K(2)
643 * 1, 0, 0 D/K(3)
644 * 1, 0, 1 I
645 */
646#define TDA9873_BG 0
647#define TDA9873_M 1
648#define TDA9873_DK1 2
649#define TDA9873_DK2 3
650#define TDA9873_DK3 4
651#define TDA9873_I 5
652
653/* C7 controls identification response time (1=fast/0=normal)
654 */
655#define TDA9873_IDR_NORM 0
656#define TDA9873_IDR_FAST 1 << 7
657
658
659/* Subaddress 0x02: Port data */
660
661/* E1, E0 free programmable ports P1/P2
662 0, 0 both ports low
663 0, 1 P1 high
664 1, 0 P2 high
665 1, 1 both ports high
666*/
667
668#define TDA9873_PORTS 3
669
670/* E2: test port */
671#define TDA9873_TST_PORT 1 << 2
672
673/* E5..E3 control mono output channel (together with transmission mode bit B4)
674 *
675 * E5 E4 E3 B4 OUTM
676 * 0 0 0 0 mono
677 * 0 0 1 0 DUAL B
678 * 0 1 0 1 mono (from stereo decoder)
679 */
680#define TDA9873_MOUT_MONO 0
681#define TDA9873_MOUT_FMONO 0
682#define TDA9873_MOUT_DUALA 0
683#define TDA9873_MOUT_DUALB 1 << 3
684#define TDA9873_MOUT_ST 1 << 4
Daniel Glöcknerd59a14e2012-06-09 21:43:50 -0300685#define TDA9873_MOUT_EXTM ((1 << 4) | (1 << 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#define TDA9873_MOUT_EXTL 1 << 5
Daniel Glöcknerd59a14e2012-06-09 21:43:50 -0300687#define TDA9873_MOUT_EXTR ((1 << 5) | (1 << 3))
688#define TDA9873_MOUT_EXTLR ((1 << 5) | (1 << 4))
689#define TDA9873_MOUT_MUTE ((1 << 5) | (1 << 4) | (1 << 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691/* Status bits: (chip read) */
692#define TDA9873_PONR 0 /* Power-on reset detected if = 1 */
693#define TDA9873_STEREO 2 /* Stereo sound is identified */
694#define TDA9873_DUAL 4 /* Dual sound is identified */
695
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300696static int tda9873_getrxsubchans(struct CHIPSTATE *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300698 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int val,mode;
700
701 val = chip_read(chip);
Daniel Glöckner3322a592012-06-09 21:43:55 -0300702 mode = V4L2_TUNER_SUB_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (val & TDA9873_STEREO)
Daniel Glöckner1884e292012-06-09 21:43:58 -0300704 mode = V4L2_TUNER_SUB_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (val & TDA9873_DUAL)
Daniel Glöckner3322a592012-06-09 21:43:55 -0300706 mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300707 v4l2_dbg(1, debug, sd,
708 "tda9873_getrxsubchans(): raw chip read: %d, return: %d\n",
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700709 val, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return mode;
711}
712
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300713static void tda9873_setaudmode(struct CHIPSTATE *chip, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300715 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
717 /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
718
719 if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300720 v4l2_dbg(1, debug, sd,
721 "tda9873_setaudmode(): external input\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return;
723 }
724
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300725 v4l2_dbg(1, debug, sd,
726 "tda9873_setaudmode(): chip->shadow.bytes[%d] = %d\n",
727 TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
728 v4l2_dbg(1, debug, sd, "tda9873_setaudmode(): sw_data = %d\n",
729 sw_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 switch (mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300732 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 sw_data |= TDA9873_TR_MONO;
734 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300735 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 sw_data |= TDA9873_TR_STEREO;
737 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300738 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 sw_data |= TDA9873_TR_DUALA;
740 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300741 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 sw_data |= TDA9873_TR_DUALB;
743 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300744 case V4L2_TUNER_MODE_LANG1_LANG2:
745 sw_data |= TDA9873_TR_DUALAB;
746 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return;
749 }
750
751 chip_write(chip, TDA9873_SW, sw_data);
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300752 v4l2_dbg(1, debug, sd,
753 "tda9873_setaudmode(): req. mode %d; chip_write: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 mode, sw_data);
755}
756
757static int tda9873_checkit(struct CHIPSTATE *chip)
758{
759 int rc;
760
761 if (-1 == (rc = chip_read2(chip,254)))
762 return 0;
763 return (rc & ~0x1f) == 0x80;
764}
765
766
767/* ---------------------------------------------------------------------- */
768/* audio chip description - defines+functions for tda9874h and tda9874a */
769/* Dariusz Kowalewski <darekk@automex.pl> */
770
771/* Subaddresses for TDA9874H and TDA9874A (slave rx) */
772#define TDA9874A_AGCGR 0x00 /* AGC gain */
773#define TDA9874A_GCONR 0x01 /* general config */
774#define TDA9874A_MSR 0x02 /* monitor select */
775#define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */
776#define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */
777#define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */
778#define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */
779#define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */
780#define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */
781#define TDA9874A_DCR 0x09 /* demodulator config */
782#define TDA9874A_FMER 0x0a /* FM de-emphasis */
783#define TDA9874A_FMMR 0x0b /* FM dematrix */
784#define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */
785#define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */
786#define TDA9874A_NCONR 0x0e /* NICAM config */
787#define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */
788#define TDA9874A_NLELR 0x10 /* NICAM lower error limit */
789#define TDA9874A_NUELR 0x11 /* NICAM upper error limit */
790#define TDA9874A_AMCONR 0x12 /* audio mute control */
791#define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */
792#define TDA9874A_AOSR 0x14 /* analog output select */
793#define TDA9874A_DAICONR 0x15 /* digital audio interface config */
794#define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */
795#define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */
796#define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */
797#define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */
798
799/* Subaddresses for TDA9874H and TDA9874A (slave tx) */
800#define TDA9874A_DSR 0x00 /* device status */
801#define TDA9874A_NSR 0x01 /* NICAM status */
802#define TDA9874A_NECR 0x02 /* NICAM error count */
803#define TDA9874A_DR1 0x03 /* add. data LSB */
804#define TDA9874A_DR2 0x04 /* add. data MSB */
805#define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */
806#define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */
807#define TDA9874A_SIFLR 0x07 /* SIF level */
808#define TDA9874A_TR2 252 /* test reg. 2 */
809#define TDA9874A_TR1 253 /* test reg. 1 */
810#define TDA9874A_DIC 254 /* device id. code */
811#define TDA9874A_SIC 255 /* software id. code */
812
813
814static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */
815static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */
816static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */
817static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */
818static int tda9874a_dic = -1; /* device id. code */
819
820/* insmod options for tda9874a */
821static unsigned int tda9874a_SIF = UNSET;
822static unsigned int tda9874a_AMSEL = UNSET;
823static unsigned int tda9874a_STD = UNSET;
824module_param(tda9874a_SIF, int, 0444);
825module_param(tda9874a_AMSEL, int, 0444);
826module_param(tda9874a_STD, int, 0444);
827
828/*
829 * initialization table for tda9874 decoder:
830 * - carrier 1 freq. registers (3 bytes)
831 * - carrier 2 freq. registers (3 bytes)
832 * - demudulator config register
833 * - FM de-emphasis register (slow identification mode)
834 * Note: frequency registers must be written in single i2c transfer.
835 */
836static struct tda9874a_MODES {
837 char *name;
838 audiocmd cmd;
839} tda9874a_modelist[9] = {
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300840 { "A2, B/G", /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} },
842 { "A2, M (Korea)",
843 { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} },
844 { "A2, D/K (1)",
845 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} },
846 { "A2, D/K (2)",
847 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} },
848 { "A2, D/K (3)",
849 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} },
850 { "NICAM, I",
851 { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} },
852 { "NICAM, B/G",
853 { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} },
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -0300854 { "NICAM, D/K",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} },
856 { "NICAM, L",
857 { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} }
858};
859
860static int tda9874a_setup(struct CHIPSTATE *chip)
861{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300862 struct v4l2_subdev *sd = &chip->sd;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */
865 chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR);
866 chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02);
867 if(tda9874a_dic == 0x11) {
868 chip_write(chip, TDA9874A_FMMR, 0x80);
869 } else { /* dic == 0x07 */
870 chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd);
871 chip_write(chip, TDA9874A_FMMR, 0x00);
872 }
873 chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */
874 chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */
875 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
876 chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */
877 /* Note: If signal quality is poor you may want to change NICAM */
878 /* error limit registers (NLELR and NUELR) to some greater values. */
879 /* Then the sound would remain stereo, but won't be so clear. */
880 chip_write(chip, TDA9874A_NLELR, 0x14); /* default */
881 chip_write(chip, TDA9874A_NUELR, 0x50); /* default */
882
883 if(tda9874a_dic == 0x11) {
884 chip_write(chip, TDA9874A_AMCONR, 0xf9);
885 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
886 chip_write(chip, TDA9874A_AOSR, 0x80);
887 chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80);
888 chip_write(chip, TDA9874A_ESP, tda9874a_ESP);
889 } else { /* dic == 0x07 */
890 chip_write(chip, TDA9874A_AMCONR, 0xfb);
891 chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80);
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -0700892 chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Hans Verkuil64f70e72008-12-18 12:11:32 -0300894 v4l2_dbg(1, debug, sd, "tda9874a_setup(): %s [0x%02X].\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 tda9874a_modelist[tda9874a_STD].name,tda9874a_STD);
896 return 1;
897}
898
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300899static int tda9874a_getrxsubchans(struct CHIPSTATE *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300901 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 int dsr,nsr,mode;
903 int necr; /* just for debugging */
904
Daniel Glöckner3322a592012-06-09 21:43:55 -0300905 mode = V4L2_TUNER_SUB_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR)))
908 return mode;
909 if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR)))
910 return mode;
911 if(-1 == (necr = chip_read2(chip,TDA9874A_NECR)))
912 return mode;
913
914 /* need to store dsr/nsr somewhere */
915 chip->shadow.bytes[MAXREGS-2] = dsr;
916 chip->shadow.bytes[MAXREGS-1] = nsr;
917
918 if(tda9874a_mode) {
919 /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked.
920 * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates
921 * that sound has (temporarily) switched from NICAM to
922 * mono FM (or AM) on 1st sound carrier due to high NICAM bit
923 * error count. So in fact there is no stereo in this case :-(
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300924 * But changing the mode to V4L2_TUNER_MODE_MONO would switch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 * external 4052 multiplexer in audio_hook().
926 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if(nsr & 0x02) /* NSR.S/MB=1 */
Daniel Glöckner1884e292012-06-09 21:43:58 -0300928 mode = V4L2_TUNER_SUB_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if(nsr & 0x01) /* NSR.D/SB=1 */
Daniel Glöckner3322a592012-06-09 21:43:55 -0300930 mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 } else {
932 if(dsr & 0x02) /* DSR.IDSTE=1 */
Daniel Glöckner1884e292012-06-09 21:43:58 -0300933 mode = V4L2_TUNER_SUB_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if(dsr & 0x04) /* DSR.IDDUA=1 */
Daniel Glöckner3322a592012-06-09 21:43:55 -0300935 mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300938 v4l2_dbg(1, debug, sd,
939 "tda9874a_getrxsubchans(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dsr, nsr, necr, mode);
941 return mode;
942}
943
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300944static void tda9874a_setaudmode(struct CHIPSTATE *chip, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Hans Verkuil64f70e72008-12-18 12:11:32 -0300946 struct v4l2_subdev *sd = &chip->sd;
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */
949 /* If auto-muting is disabled, we can hear a signal of degrading quality. */
Hans Verkuil64f70e72008-12-18 12:11:32 -0300950 if (tda9874a_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */
952 tda9874a_NCONR &= 0xfe; /* enable */
953 else
954 tda9874a_NCONR |= 0x01; /* disable */
955 chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR);
956 }
957
958 /* Note: TDA9874A supports automatic FM dematrixing (FMMR register)
959 * and has auto-select function for audio output (AOSR register).
960 * Old TDA9874H doesn't support these features.
961 * TDA9874A also has additional mono output pin (OUTM), which
962 * on same (all?) tv-cards is not used, anyway (as well as MONOIN).
963 */
964 if(tda9874a_dic == 0x11) {
965 int aosr = 0x80;
966 int mdacosr = (tda9874a_mode) ? 0x82:0x80;
967
968 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300969 case V4L2_TUNER_MODE_MONO:
970 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300972 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 aosr = 0x80; /* auto-select, dual A/A */
974 mdacosr = (tda9874a_mode) ? 0x82:0x80;
975 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300976 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 aosr = 0xa0; /* auto-select, dual B/B */
978 mdacosr = (tda9874a_mode) ? 0x83:0x81;
979 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -0300980 case V4L2_TUNER_MODE_LANG1_LANG2:
981 aosr = 0x00; /* always route L to L and R to R */
982 mdacosr = (tda9874a_mode) ? 0x82:0x80;
983 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return;
986 }
987 chip_write(chip, TDA9874A_AOSR, aosr);
988 chip_write(chip, TDA9874A_MDACOSR, mdacosr);
989
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -0300990 v4l2_dbg(1, debug, sd,
991 "tda9874a_setaudmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 mode, aosr, mdacosr);
993
994 } else { /* dic == 0x07 */
995 int fmmr,aosr;
996
997 switch(mode) {
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -0300998 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 fmmr = 0x00; /* mono */
1000 aosr = 0x10; /* A/A */
1001 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001002 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if(tda9874a_mode) {
1004 fmmr = 0x00;
1005 aosr = 0x00; /* handled by NICAM auto-mute */
1006 } else {
1007 fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */
1008 aosr = 0x00;
1009 }
1010 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001011 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 fmmr = 0x02; /* dual */
1013 aosr = 0x10; /* dual A/A */
1014 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001015 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 fmmr = 0x02; /* dual */
1017 aosr = 0x20; /* dual B/B */
1018 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -03001019 case V4L2_TUNER_MODE_LANG1_LANG2:
1020 fmmr = 0x02; /* dual */
1021 aosr = 0x00; /* dual A/B */
1022 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return;
1025 }
1026 chip_write(chip, TDA9874A_FMMR, fmmr);
1027 chip_write(chip, TDA9874A_AOSR, aosr);
1028
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001029 v4l2_dbg(1, debug, sd,
1030 "tda9874a_setaudmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 mode, fmmr, aosr);
1032 }
1033}
1034
1035static int tda9874a_checkit(struct CHIPSTATE *chip)
1036{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001037 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int dic,sic; /* device id. and software id. codes */
1039
1040 if(-1 == (dic = chip_read2(chip,TDA9874A_DIC)))
1041 return 0;
1042 if(-1 == (sic = chip_read2(chip,TDA9874A_SIC)))
1043 return 0;
1044
Hans Verkuil64f70e72008-12-18 12:11:32 -03001045 v4l2_dbg(1, debug, sd, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if((dic == 0x11)||(dic == 0x07)) {
Hans Verkuil64f70e72008-12-18 12:11:32 -03001048 v4l2_info(sd, "found tda9874%s.\n", (dic == 0x11) ? "a" : "h");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 tda9874a_dic = dic; /* remember device id. */
1050 return 1;
1051 }
1052 return 0; /* not found */
1053}
1054
1055static int tda9874a_initialize(struct CHIPSTATE *chip)
1056{
1057 if (tda9874a_SIF > 2)
1058 tda9874a_SIF = 1;
Mauro Carvalho Chehab04e6f992008-11-13 13:10:11 -03001059 if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 tda9874a_STD = 0;
1061 if(tda9874a_AMSEL > 1)
1062 tda9874a_AMSEL = 0;
1063
1064 if(tda9874a_SIF == 1)
1065 tda9874a_GCONR = 0xc0; /* sound IF input 1 */
1066 else
1067 tda9874a_GCONR = 0xc1; /* sound IF input 2 */
1068
1069 tda9874a_ESP = tda9874a_STD;
1070 tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1;
1071
1072 if(tda9874a_AMSEL == 0)
1073 tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */
1074 else
1075 tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */
1076
1077 tda9874a_setup(chip);
1078 return 0;
1079}
1080
Hans Verkuil411674f2009-03-18 14:02:36 -03001081/* ---------------------------------------------------------------------- */
1082/* audio chip description - defines+functions for tda9875 */
1083/* The TDA9875 is made by Philips Semiconductor
1084 * http://www.semiconductors.philips.com
1085 * TDA9875: I2C-bus controlled DSP audio processor, FM demodulator
1086 *
1087 */
1088
1089/* subaddresses for TDA9875 */
1090#define TDA9875_MUT 0x12 /*General mute (value --> 0b11001100*/
1091#define TDA9875_CFG 0x01 /* Config register (value --> 0b00000000 */
1092#define TDA9875_DACOS 0x13 /*DAC i/o select (ADC) 0b0000100*/
1093#define TDA9875_LOSR 0x16 /*Line output select regirter 0b0100 0001*/
1094
1095#define TDA9875_CH1V 0x0c /*Channel 1 volume (mute)*/
1096#define TDA9875_CH2V 0x0d /*Channel 2 volume (mute)*/
1097#define TDA9875_SC1 0x14 /*SCART 1 in (mono)*/
1098#define TDA9875_SC2 0x15 /*SCART 2 in (mono)*/
1099
1100#define TDA9875_ADCIS 0x17 /*ADC input select (mono) 0b0110 000*/
1101#define TDA9875_AER 0x19 /*Audio effect (AVL+Pseudo) 0b0000 0110*/
1102#define TDA9875_MCS 0x18 /*Main channel select (DAC) 0b0000100*/
1103#define TDA9875_MVL 0x1a /* Main volume gauche */
1104#define TDA9875_MVR 0x1b /* Main volume droite */
1105#define TDA9875_MBA 0x1d /* Main Basse */
1106#define TDA9875_MTR 0x1e /* Main treble */
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001107#define TDA9875_ACS 0x1f /* Auxiliary channel select (FM) 0b0000000*/
1108#define TDA9875_AVL 0x20 /* Auxiliary volume gauche */
1109#define TDA9875_AVR 0x21 /* Auxiliary volume droite */
1110#define TDA9875_ABA 0x22 /* Auxiliary Basse */
1111#define TDA9875_ATR 0x23 /* Auxiliary treble */
Hans Verkuil411674f2009-03-18 14:02:36 -03001112
1113#define TDA9875_MSR 0x02 /* Monitor select register */
1114#define TDA9875_C1MSB 0x03 /* Carrier 1 (FM) frequency register MSB */
1115#define TDA9875_C1MIB 0x04 /* Carrier 1 (FM) frequency register (16-8]b */
1116#define TDA9875_C1LSB 0x05 /* Carrier 1 (FM) frequency register LSB */
1117#define TDA9875_C2MSB 0x06 /* Carrier 2 (nicam) frequency register MSB */
1118#define TDA9875_C2MIB 0x07 /* Carrier 2 (nicam) frequency register (16-8]b */
1119#define TDA9875_C2LSB 0x08 /* Carrier 2 (nicam) frequency register LSB */
1120#define TDA9875_DCR 0x09 /* Demodulateur configuration regirter*/
1121#define TDA9875_DEEM 0x0a /* FM de-emphasis regirter*/
1122#define TDA9875_FMAT 0x0b /* FM Matrix regirter*/
1123
1124/* values */
1125#define TDA9875_MUTE_ON 0xff /* general mute */
1126#define TDA9875_MUTE_OFF 0xcc /* general no mute */
1127
1128static int tda9875_initialize(struct CHIPSTATE *chip)
1129{
1130 chip_write(chip, TDA9875_CFG, 0xd0); /*reg de config 0 (reset)*/
1131 chip_write(chip, TDA9875_MSR, 0x03); /* Monitor 0b00000XXX*/
1132 chip_write(chip, TDA9875_C1MSB, 0x00); /*Car1(FM) MSB XMHz*/
1133 chip_write(chip, TDA9875_C1MIB, 0x00); /*Car1(FM) MIB XMHz*/
1134 chip_write(chip, TDA9875_C1LSB, 0x00); /*Car1(FM) LSB XMHz*/
1135 chip_write(chip, TDA9875_C2MSB, 0x00); /*Car2(NICAM) MSB XMHz*/
1136 chip_write(chip, TDA9875_C2MIB, 0x00); /*Car2(NICAM) MIB XMHz*/
1137 chip_write(chip, TDA9875_C2LSB, 0x00); /*Car2(NICAM) LSB XMHz*/
1138 chip_write(chip, TDA9875_DCR, 0x00); /*Demod config 0x00*/
1139 chip_write(chip, TDA9875_DEEM, 0x44); /*DE-Emph 0b0100 0100*/
1140 chip_write(chip, TDA9875_FMAT, 0x00); /*FM Matrix reg 0x00*/
1141 chip_write(chip, TDA9875_SC1, 0x00); /* SCART 1 (SC1)*/
1142 chip_write(chip, TDA9875_SC2, 0x01); /* SCART 2 (sc2)*/
1143
1144 chip_write(chip, TDA9875_CH1V, 0x10); /* Channel volume 1 mute*/
1145 chip_write(chip, TDA9875_CH2V, 0x10); /* Channel volume 2 mute */
1146 chip_write(chip, TDA9875_DACOS, 0x02); /* sig DAC i/o(in:nicam)*/
1147 chip_write(chip, TDA9875_ADCIS, 0x6f); /* sig ADC input(in:mono)*/
1148 chip_write(chip, TDA9875_LOSR, 0x00); /* line out (in:mono)*/
1149 chip_write(chip, TDA9875_AER, 0x00); /*06 Effect (AVL+PSEUDO) */
1150 chip_write(chip, TDA9875_MCS, 0x44); /* Main ch select (DAC) */
1151 chip_write(chip, TDA9875_MVL, 0x03); /* Vol Main left 10dB */
1152 chip_write(chip, TDA9875_MVR, 0x03); /* Vol Main right 10dB*/
1153 chip_write(chip, TDA9875_MBA, 0x00); /* Main Bass Main 0dB*/
1154 chip_write(chip, TDA9875_MTR, 0x00); /* Main Treble Main 0dB*/
1155 chip_write(chip, TDA9875_ACS, 0x44); /* Aux chan select (dac)*/
1156 chip_write(chip, TDA9875_AVL, 0x00); /* Vol Aux left 0dB*/
1157 chip_write(chip, TDA9875_AVR, 0x00); /* Vol Aux right 0dB*/
1158 chip_write(chip, TDA9875_ABA, 0x00); /* Aux Bass Main 0dB*/
1159 chip_write(chip, TDA9875_ATR, 0x00); /* Aux Aigus Main 0dB*/
1160
1161 chip_write(chip, TDA9875_MUT, 0xcc); /* General mute */
1162 return 0;
1163}
1164
1165static int tda9875_volume(int val) { return (unsigned char)(val / 602 - 84); }
1166static int tda9875_bass(int val) { return (unsigned char)(max(-12, val / 2115 - 15)); }
1167static int tda9875_treble(int val) { return (unsigned char)(val / 2622 - 12); }
1168
1169/* ----------------------------------------------------------------------- */
1170
1171
1172/* *********************** *
1173 * i2c interface functions *
1174 * *********************** */
1175
1176static int tda9875_checkit(struct CHIPSTATE *chip)
1177{
1178 struct v4l2_subdev *sd = &chip->sd;
1179 int dic, rev;
1180
1181 dic = chip_read2(chip, 254);
1182 rev = chip_read2(chip, 255);
1183
1184 if (dic == 0 || dic == 2) { /* tda9875 and tda9875A */
1185 v4l2_info(sd, "found tda9875%s rev. %d.\n",
1186 dic == 0 ? "" : "A", rev);
1187 return 1;
1188 }
1189 return 0;
1190}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192/* ---------------------------------------------------------------------- */
1193/* audio chip descriptions - defines+functions for tea6420 */
1194
1195#define TEA6300_VL 0x00 /* volume left */
1196#define TEA6300_VR 0x01 /* volume right */
1197#define TEA6300_BA 0x02 /* bass */
1198#define TEA6300_TR 0x03 /* treble */
1199#define TEA6300_FA 0x04 /* fader control */
1200#define TEA6300_S 0x05 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001201 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202#define TEA6300_S_SA 0x01 /* stereo A input */
1203#define TEA6300_S_SB 0x02 /* stereo B */
1204#define TEA6300_S_SC 0x04 /* stereo C */
1205#define TEA6300_S_GMU 0x80 /* general mute */
1206
1207#define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */
1208#define TEA6320_FFR 0x01 /* fader front right (0-5) */
1209#define TEA6320_FFL 0x02 /* fader front left (0-5) */
1210#define TEA6320_FRR 0x03 /* fader rear right (0-5) */
1211#define TEA6320_FRL 0x04 /* fader rear left (0-5) */
1212#define TEA6320_BA 0x05 /* bass (0-4) */
1213#define TEA6320_TR 0x06 /* treble (0-4) */
1214#define TEA6320_S 0x07 /* switch register */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001215 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216#define TEA6320_S_SA 0x07 /* stereo A input */
1217#define TEA6320_S_SB 0x06 /* stereo B */
1218#define TEA6320_S_SC 0x05 /* stereo C */
1219#define TEA6320_S_SD 0x04 /* stereo D */
1220#define TEA6320_S_GMU 0x80 /* general mute */
1221
1222#define TEA6420_S_SA 0x00 /* stereo A input */
1223#define TEA6420_S_SB 0x01 /* stereo B */
1224#define TEA6420_S_SC 0x02 /* stereo C */
1225#define TEA6420_S_SD 0x03 /* stereo D */
1226#define TEA6420_S_SE 0x04 /* stereo E */
1227#define TEA6420_S_GMU 0x05 /* general mute */
1228
1229static int tea6300_shift10(int val) { return val >> 10; }
1230static int tea6300_shift12(int val) { return val >> 12; }
1231
1232/* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */
1233/* 0x0c mirror those immediately higher) */
1234static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; }
1235static int tea6320_shift11(int val) { return val >> 11; }
1236static int tea6320_initialize(struct CHIPSTATE * chip)
1237{
1238 chip_write(chip, TEA6320_FFR, 0x3f);
1239 chip_write(chip, TEA6320_FFL, 0x3f);
1240 chip_write(chip, TEA6320_FRR, 0x3f);
1241 chip_write(chip, TEA6320_FRL, 0x3f);
1242
1243 return 0;
1244}
1245
1246
1247/* ---------------------------------------------------------------------- */
1248/* audio chip descriptions - defines+functions for tda8425 */
1249
1250#define TDA8425_VL 0x00 /* volume left */
1251#define TDA8425_VR 0x01 /* volume right */
1252#define TDA8425_BA 0x02 /* bass */
1253#define TDA8425_TR 0x03 /* treble */
1254#define TDA8425_S1 0x08 /* switch functions */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001255 /* values for those registers: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256#define TDA8425_S1_OFF 0xEE /* audio off (mute on) */
1257#define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */
1258#define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */
1259#define TDA8425_S1_MU 0x20 /* mute bit */
1260#define TDA8425_S1_STEREO 0x18 /* stereo bits */
1261#define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */
1262#define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */
1263#define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */
1264#define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */
1265#define TDA8425_S1_ML 0x06 /* language selector */
1266#define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */
1267#define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */
1268#define TDA8425_S1_ML_STEREO 0x06 /* stereo */
1269#define TDA8425_S1_IS 0x01 /* channel selector */
1270
1271
1272static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
1273static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
1274
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001275static void tda8425_setaudmode(struct CHIPSTATE *chip, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
1277 int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
1278
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001279 switch (mode) {
1280 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 s1 |= TDA8425_S1_ML_SOUND_A;
1282 s1 |= TDA8425_S1_STEREO_PSEUDO;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001283 break;
1284 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 s1 |= TDA8425_S1_ML_SOUND_B;
1286 s1 |= TDA8425_S1_STEREO_PSEUDO;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001287 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -03001288 case V4L2_TUNER_MODE_LANG1_LANG2:
1289 s1 |= TDA8425_S1_ML_STEREO;
1290 s1 |= TDA8425_S1_STEREO_LINEAR;
1291 break;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001292 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 s1 |= TDA8425_S1_ML_STEREO;
Daniel Glöcknerf9528482012-06-09 21:43:51 -03001294 s1 |= TDA8425_S1_STEREO_MONO;
1295 break;
1296 case V4L2_TUNER_MODE_STEREO:
1297 s1 |= TDA8425_S1_ML_STEREO;
1298 s1 |= TDA8425_S1_STEREO_SPATIAL;
1299 break;
1300 default:
1301 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303 chip_write(chip,TDA8425_S1,s1);
1304}
1305
1306
1307/* ---------------------------------------------------------------------- */
1308/* audio chip descriptions - defines+functions for pic16c54 (PV951) */
1309
1310/* the registers of 16C54, I2C sub address. */
1311#define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */
1312#define PIC16C54_REG_MISC 0x02
1313
1314/* bit definition of the RESET register, I2C data. */
1315#define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001316 /* code of remote controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317#define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */
1318#define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */
1319#define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */
1320#define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */
1321#define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */
1322#define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */
1323#define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */
1324
1325/* ---------------------------------------------------------------------- */
1326/* audio chip descriptions - defines+functions for TA8874Z */
1327
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001328/* write 1st byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329#define TA8874Z_LED_STE 0x80
1330#define TA8874Z_LED_BIL 0x40
1331#define TA8874Z_LED_EXT 0x20
1332#define TA8874Z_MONO_SET 0x10
1333#define TA8874Z_MUTE 0x08
1334#define TA8874Z_F_MONO 0x04
1335#define TA8874Z_MODE_SUB 0x02
1336#define TA8874Z_MODE_MAIN 0x01
1337
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001338/* write 2nd byte */
1339/*#define TA8874Z_TI 0x80 */ /* test mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340#define TA8874Z_SEPARATION 0x3f
1341#define TA8874Z_SEPARATION_DEFAULT 0x10
1342
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001343/* read */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344#define TA8874Z_B1 0x80
1345#define TA8874Z_B0 0x40
1346#define TA8874Z_CHAG_FLAG 0x20
1347
Mauro Carvalho Chehab18fc59e2005-09-09 13:04:05 -07001348/*
1349 * B1 B0
1350 * mono L H
1351 * stereo L L
1352 * BIL H L
1353 */
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001354static int ta8874z_getrxsubchans(struct CHIPSTATE *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 int val, mode;
1357
1358 val = chip_read(chip);
Daniel Glöckner3322a592012-06-09 21:43:55 -03001359 mode = V4L2_TUNER_SUB_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (val & TA8874Z_B1){
Daniel Glöckner3322a592012-06-09 21:43:55 -03001361 mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }else if (!(val & TA8874Z_B0)){
Daniel Glöckner1884e292012-06-09 21:43:58 -03001363 mode = V4L2_TUNER_SUB_STEREO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001365 /* v4l2_dbg(1, debug, &chip->sd,
1366 "ta8874z_getrxsubchans(): raw chip read: 0x%02x, return: 0x%02x\n",
1367 val, mode); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return mode;
1369}
1370
1371static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}};
1372static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}};
1373static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
1374static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
Daniel Glöckner9e019e02012-06-09 21:43:57 -03001375static audiocmd ta8874z_both = {2, { TA8874Z_MODE_MAIN | TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001377static void ta8874z_setaudmode(struct CHIPSTATE *chip, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001379 struct v4l2_subdev *sd = &chip->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 int update = 1;
1381 audiocmd *t = NULL;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001382
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001383 v4l2_dbg(1, debug, sd, "ta8874z_setaudmode(): mode: 0x%02x\n", mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 switch(mode){
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001386 case V4L2_TUNER_MODE_MONO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 t = &ta8874z_mono;
1388 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001389 case V4L2_TUNER_MODE_STEREO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 t = &ta8874z_stereo;
1391 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001392 case V4L2_TUNER_MODE_LANG1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 t = &ta8874z_main;
1394 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001395 case V4L2_TUNER_MODE_LANG2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 t = &ta8874z_sub;
1397 break;
Daniel Glöckner9e019e02012-06-09 21:43:57 -03001398 case V4L2_TUNER_MODE_LANG1_LANG2:
1399 t = &ta8874z_both;
1400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 default:
1402 update = 0;
1403 }
1404
1405 if(update)
1406 chip_cmd(chip, "TA8874Z", t);
1407}
1408
1409static int ta8874z_checkit(struct CHIPSTATE *chip)
1410{
1411 int rc;
1412 rc = chip_read(chip);
1413 return ((rc & 0x1f) == 0x1f) ? 1 : 0;
1414}
1415
1416/* ---------------------------------------------------------------------- */
1417/* audio chip descriptions - struct CHIPDESC */
1418
1419/* insmod options to enable/disable individual audio chips */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001420static int tda8425 = 1;
1421static int tda9840 = 1;
1422static int tda9850 = 1;
1423static int tda9855 = 1;
1424static int tda9873 = 1;
1425static int tda9874a = 1;
Hans Verkuil411674f2009-03-18 14:02:36 -03001426static int tda9875 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001427static int tea6300; /* default 0 - address clash with msp34xx */
1428static int tea6320; /* default 0 - address clash with msp34xx */
Adrian Bunk52c1da32005-06-23 22:05:33 -07001429static int tea6420 = 1;
1430static int pic16c54 = 1;
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -03001431static int ta8874z; /* default 0 - address clash with tda9840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433module_param(tda8425, int, 0444);
1434module_param(tda9840, int, 0444);
1435module_param(tda9850, int, 0444);
1436module_param(tda9855, int, 0444);
1437module_param(tda9873, int, 0444);
1438module_param(tda9874a, int, 0444);
Hans Verkuil411674f2009-03-18 14:02:36 -03001439module_param(tda9875, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440module_param(tea6300, int, 0444);
1441module_param(tea6320, int, 0444);
1442module_param(tea6420, int, 0444);
1443module_param(pic16c54, int, 0444);
1444module_param(ta8874z, int, 0444);
1445
1446static struct CHIPDESC chiplist[] = {
1447 {
1448 .name = "tda9840",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 .insmodopt = &tda9840,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001450 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1451 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 .registers = 5,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001453 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001455 /* callbacks */
Hans Verkuil94f9e562006-01-23 09:47:40 -02001456 .checkit = tda9840_checkit,
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001457 .getrxsubchans = tda9840_getrxsubchans,
1458 .setaudmode = tda9840_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001460 .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* ,TDA9840_SW, TDA9840_MONO */} }
1462 },
1463 {
1464 .name = "tda9873h",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 .insmodopt = &tda9873,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001466 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1467 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 .registers = 3,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001469 .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001471 /* callbacks */
1472 .checkit = tda9873_checkit,
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001473 .getrxsubchans = tda9873_getrxsubchans,
1474 .setaudmode = tda9873_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
1477 .inputreg = TDA9873_SW,
1478 .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001479 .inputmap = {0xa0, 0xa2, 0xa0, 0xa0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE,
1481
1482 },
1483 {
1484 .name = "tda9874h/a",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 .insmodopt = &tda9874a,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001486 .addr_lo = I2C_ADDR_TDA9874 >> 1,
1487 .addr_hi = I2C_ADDR_TDA9874 >> 1,
Mauro Carvalho Chehabdd03e972008-11-13 13:55:39 -03001488 .flags = CHIP_NEED_CHECKMODE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001490 /* callbacks */
1491 .initialize = tda9874a_initialize,
1492 .checkit = tda9874a_checkit,
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001493 .getrxsubchans = tda9874a_getrxsubchans,
1494 .setaudmode = tda9874a_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 },
1496 {
Hans Verkuil411674f2009-03-18 14:02:36 -03001497 .name = "tda9875",
1498 .insmodopt = &tda9875,
1499 .addr_lo = I2C_ADDR_TDA9875 >> 1,
1500 .addr_hi = I2C_ADDR_TDA9875 >> 1,
1501 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1502
1503 /* callbacks */
1504 .initialize = tda9875_initialize,
1505 .checkit = tda9875_checkit,
1506 .volfunc = tda9875_volume,
1507 .bassfunc = tda9875_bass,
1508 .treblefunc = tda9875_treble,
1509 .leftreg = TDA9875_MVL,
1510 .rightreg = TDA9875_MVR,
1511 .bassreg = TDA9875_MBA,
1512 .treblereg = TDA9875_MTR,
1513 .leftinit = 58880,
1514 .rightinit = 58880,
1515 },
1516 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 .name = "tda9850",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .insmodopt = &tda9850,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001519 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1520 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 .registers = 11,
1522
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001523 .getrxsubchans = tda985x_getrxsubchans,
1524 .setaudmode = tda985x_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
1527 },
1528 {
1529 .name = "tda9855",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 .insmodopt = &tda9855,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001531 .addr_lo = I2C_ADDR_TDA985x_L >> 1,
1532 .addr_hi = I2C_ADDR_TDA985x_H >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 .registers = 11,
1534 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE,
1535
1536 .leftreg = TDA9855_VL,
1537 .rightreg = TDA9855_VR,
1538 .bassreg = TDA9855_BA,
1539 .treblereg = TDA9855_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001540
1541 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 .volfunc = tda9855_volume,
1543 .bassfunc = tda9855_bass,
1544 .treblefunc = tda9855_treble,
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001545 .getrxsubchans = tda985x_getrxsubchans,
1546 .setaudmode = tda985x_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
1549 TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
1550 TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM,
1551 0x07, 0x10, 0x10, 0x03 }}
1552 },
1553 {
1554 .name = "tea6300",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 .insmodopt = &tea6300,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001556 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1557 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .registers = 6,
1559 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1560
1561 .leftreg = TEA6300_VR,
1562 .rightreg = TEA6300_VL,
1563 .bassreg = TEA6300_BA,
1564 .treblereg = TEA6300_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001565
1566 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 .volfunc = tea6300_shift10,
1568 .bassfunc = tea6300_shift12,
1569 .treblefunc = tea6300_shift12,
1570
1571 .inputreg = TEA6300_S,
1572 .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC },
1573 .inputmute = TEA6300_S_GMU,
1574 },
1575 {
1576 .name = "tea6320",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 .insmodopt = &tea6320,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001578 .addr_lo = I2C_ADDR_TEA6300 >> 1,
1579 .addr_hi = I2C_ADDR_TEA6300 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 .registers = 8,
1581 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1582
1583 .leftreg = TEA6320_V,
1584 .rightreg = TEA6320_V,
1585 .bassreg = TEA6320_BA,
1586 .treblereg = TEA6320_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001587
1588 /* callbacks */
1589 .initialize = tea6320_initialize,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 .volfunc = tea6320_volume,
1591 .bassfunc = tea6320_shift11,
1592 .treblefunc = tea6320_shift11,
1593
1594 .inputreg = TEA6320_S,
1595 .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD },
1596 .inputmute = TEA6300_S_GMU,
1597 },
1598 {
1599 .name = "tea6420",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 .insmodopt = &tea6420,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001601 .addr_lo = I2C_ADDR_TEA6420 >> 1,
1602 .addr_hi = I2C_ADDR_TEA6420 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 .registers = 1,
1604 .flags = CHIP_HAS_INPUTSEL,
1605
1606 .inputreg = -1,
1607 .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC },
1608 .inputmute = TEA6300_S_GMU,
1609 },
1610 {
1611 .name = "tda8425",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 .insmodopt = &tda8425,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001613 .addr_lo = I2C_ADDR_TDA8425 >> 1,
1614 .addr_hi = I2C_ADDR_TDA8425 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 .registers = 9,
1616 .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL,
1617
1618 .leftreg = TDA8425_VL,
1619 .rightreg = TDA8425_VR,
1620 .bassreg = TDA8425_BA,
1621 .treblereg = TDA8425_TR,
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001622
1623 /* callbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 .volfunc = tda8425_shift10,
1625 .bassfunc = tda8425_shift12,
1626 .treblefunc = tda8425_shift12,
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001627 .setaudmode = tda8425_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 .inputreg = TDA8425_S1,
1630 .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
1631 .inputmute = TDA8425_S1_OFF,
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 },
1634 {
1635 .name = "pic16c54 (PV951)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 .insmodopt = &pic16c54,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001637 .addr_lo = I2C_ADDR_PIC16C54 >> 1,
1638 .addr_hi = I2C_ADDR_PIC16C54>> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 .registers = 2,
1640 .flags = CHIP_HAS_INPUTSEL,
1641
1642 .inputreg = PIC16C54_REG_MISC,
1643 .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER,
1644 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
1645 PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE,
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001646 PIC16C54_MISC_SND_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 .inputmute = PIC16C54_MISC_SND_MUTE,
1648 },
1649 {
1650 .name = "ta8874z",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 .checkit = ta8874z_checkit,
1652 .insmodopt = &ta8874z,
Mauro Carvalho Chehab09df1c12006-03-18 08:31:34 -03001653 .addr_lo = I2C_ADDR_TDA9840 >> 1,
1654 .addr_hi = I2C_ADDR_TDA9840 >> 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 .registers = 2,
1656
Mauro Carvalho Chehabaf1a9952008-11-13 13:14:15 -03001657 /* callbacks */
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001658 .getrxsubchans = ta8874z_getrxsubchans,
1659 .setaudmode = ta8874z_setaudmode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001661 .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 },
1663 { .name = NULL } /* EOF */
1664};
1665
1666
1667/* ---------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Hans Verkuil64f70e72008-12-18 12:11:32 -03001669static int tvaudio_g_ctrl(struct v4l2_subdev *sd,
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001670 struct v4l2_control *ctrl)
1671{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001672 struct CHIPSTATE *chip = to_state(sd);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001673 struct CHIPDESC *desc = chip->desc;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001674
1675 switch (ctrl->id) {
1676 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001677 if (!(desc->flags & CHIP_HAS_INPUTSEL))
1678 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001679 ctrl->value=chip->muted;
1680 return 0;
1681 case V4L2_CID_AUDIO_VOLUME:
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 ctrl->value = max(chip->left,chip->right);
1685 return 0;
1686 case V4L2_CID_AUDIO_BALANCE:
1687 {
1688 int volume;
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001689 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001690 break;
1691 volume = max(chip->left,chip->right);
1692 if (volume)
1693 ctrl->value=(32768*min(chip->left,chip->right))/volume;
1694 else
1695 ctrl->value=32768;
1696 return 0;
1697 }
1698 case V4L2_CID_AUDIO_BASS:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001699 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001700 break;
1701 ctrl->value = chip->bass;
1702 return 0;
1703 case V4L2_CID_AUDIO_TREBLE:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001704 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
1705 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001706 ctrl->value = chip->treble;
1707 return 0;
1708 }
1709 return -EINVAL;
1710}
1711
Hans Verkuil64f70e72008-12-18 12:11:32 -03001712static int tvaudio_s_ctrl(struct v4l2_subdev *sd,
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001713 struct v4l2_control *ctrl)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001714{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001715 struct CHIPSTATE *chip = to_state(sd);
Mauro Carvalho Chehab81cb5c42008-11-13 16:22:53 -03001716 struct CHIPDESC *desc = chip->desc;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001717
1718 switch (ctrl->id) {
1719 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001720 if (!(desc->flags & CHIP_HAS_INPUTSEL))
1721 break;
1722
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001723 if (ctrl->value < 0 || ctrl->value >= 2)
1724 return -ERANGE;
1725 chip->muted = ctrl->value;
1726 if (chip->muted)
1727 chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask);
1728 else
1729 chip_write_masked(chip,desc->inputreg,
1730 desc->inputmap[chip->input],desc->inputmask);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001731 return 0;
1732 case V4L2_CID_AUDIO_VOLUME:
1733 {
1734 int volume,balance;
1735
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001736 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001737 break;
1738
1739 volume = max(chip->left,chip->right);
1740 if (volume)
1741 balance=(32768*min(chip->left,chip->right))/volume;
1742 else
1743 balance=32768;
1744
1745 volume=ctrl->value;
1746 chip->left = (min(65536 - balance,32768) * volume) / 32768;
1747 chip->right = (min(balance,volume *(__u16)32768)) / 32768;
1748
1749 chip_write(chip,desc->leftreg,desc->volfunc(chip->left));
1750 chip_write(chip,desc->rightreg,desc->volfunc(chip->right));
1751
1752 return 0;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001753 }
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001754 case V4L2_CID_AUDIO_BALANCE:
1755 {
1756 int volume, balance;
Hans Verkuil88af8302011-08-25 10:24:16 -03001757
Roel Kluin18c0ecf2008-02-02 20:20:58 -03001758 if (!(desc->flags & CHIP_HAS_VOLUME))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001759 break;
1760
Hans Verkuil88af8302011-08-25 10:24:16 -03001761 volume = max(chip->left, chip->right);
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001762 balance = ctrl->value;
Hans Verkuil88af8302011-08-25 10:24:16 -03001763 chip->left = (min(65536 - balance, 32768) * volume) / 32768;
1764 chip->right = (min(balance, volume * (__u16)32768)) / 32768;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001765
Hans Verkuil88af8302011-08-25 10:24:16 -03001766 chip_write(chip, desc->leftreg, desc->volfunc(chip->left));
1767 chip_write(chip, desc->rightreg, desc->volfunc(chip->right));
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001768
1769 return 0;
1770 }
1771 case V4L2_CID_AUDIO_BASS:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001772 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001773 break;
1774 chip->bass = ctrl->value;
1775 chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass));
1776
1777 return 0;
1778 case V4L2_CID_AUDIO_TREBLE:
Mauro Carvalho Chehab01a1a3c2008-11-14 10:46:59 -03001779 if (!(desc->flags & CHIP_HAS_BASSTREBLE))
1780 break;
Mauro Carvalho Chehabdc3d75d2006-08-25 16:53:08 -03001781 chip->treble = ctrl->value;
1782 chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble));
1783
1784 return 0;
1785 }
1786 return -EINVAL;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001787}
1788
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790/* ---------------------------------------------------------------------- */
1791/* video4linux interface */
1792
Hans Verkuil64f70e72008-12-18 12:11:32 -03001793static int tvaudio_s_radio(struct v4l2_subdev *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Hans Verkuil64f70e72008-12-18 12:11:32 -03001795 struct CHIPSTATE *chip = to_state(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Hans Verkuil64f70e72008-12-18 12:11:32 -03001797 chip->radio = 1;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001798 /* del_timer(&chip->wt); */
1799 return 0;
1800}
1801
1802static int tvaudio_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc)
1803{
1804 struct CHIPSTATE *chip = to_state(sd);
1805 struct CHIPDESC *desc = chip->desc;
1806
1807 switch (qc->id) {
1808 case V4L2_CID_AUDIO_MUTE:
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001809 if (desc->flags & CHIP_HAS_INPUTSEL)
1810 return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0);
1811 break;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001812 case V4L2_CID_AUDIO_VOLUME:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001813 if (desc->flags & CHIP_HAS_VOLUME)
1814 return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 58880);
1815 break;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001816 case V4L2_CID_AUDIO_BALANCE:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001817 if (desc->flags & CHIP_HAS_VOLUME)
1818 return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768);
Hans Verkuil64f70e72008-12-18 12:11:32 -03001819 break;
1820 case V4L2_CID_AUDIO_BASS:
1821 case V4L2_CID_AUDIO_TREBLE:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001822 if (desc->flags & CHIP_HAS_BASSTREBLE)
1823 return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768);
Hans Verkuil64f70e72008-12-18 12:11:32 -03001824 break;
1825 default:
Hans Verkuil10afbef2009-02-21 18:47:24 -03001826 break;
Mauro Carvalho Chehabc6241b62008-11-13 18:12:43 -03001827 }
Hans Verkuil10afbef2009-02-21 18:47:24 -03001828 return -EINVAL;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001829}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Hans Verkuil5325b422009-04-02 11:26:22 -03001831static int tvaudio_s_routing(struct v4l2_subdev *sd,
1832 u32 input, u32 output, u32 config)
Hans Verkuil64f70e72008-12-18 12:11:32 -03001833{
1834 struct CHIPSTATE *chip = to_state(sd);
1835 struct CHIPDESC *desc = chip->desc;
1836
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001837 if (!(desc->flags & CHIP_HAS_INPUTSEL))
1838 return 0;
Hans Verkuil5325b422009-04-02 11:26:22 -03001839 if (input >= 4)
Hans Verkuil64f70e72008-12-18 12:11:32 -03001840 return -EINVAL;
1841 /* There are four inputs: tuner, radio, extern and intern. */
Hans Verkuil5325b422009-04-02 11:26:22 -03001842 chip->input = input;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001843 if (chip->muted)
1844 return 0;
1845 chip_write_masked(chip, desc->inputreg,
1846 desc->inputmap[chip->input], desc->inputmask);
1847 return 0;
1848}
1849
1850static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1851{
1852 struct CHIPSTATE *chip = to_state(sd);
1853 struct CHIPDESC *desc = chip->desc;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001854
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001855 if (!desc->setaudmode)
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001856 return 0;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001857 if (chip->radio)
1858 return 0;
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001859
Hans Verkuil64f70e72008-12-18 12:11:32 -03001860 switch (vt->audmode) {
1861 case V4L2_TUNER_MODE_MONO:
1862 case V4L2_TUNER_MODE_STEREO:
1863 case V4L2_TUNER_MODE_LANG1:
1864 case V4L2_TUNER_MODE_LANG2:
Hans Verkuil64f70e72008-12-18 12:11:32 -03001865 case V4L2_TUNER_MODE_LANG1_LANG2:
Hans Verkuil64f70e72008-12-18 12:11:32 -03001866 break;
1867 default:
1868 return -EINVAL;
1869 }
1870 chip->audmode = vt->audmode;
1871
Daniel Glöcknere21adca2012-06-09 21:43:56 -03001872 if (chip->thread)
1873 wake_up_process(chip->thread);
1874 else
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001875 desc->setaudmode(chip, vt->audmode);
Daniel Glöcknere21adca2012-06-09 21:43:56 -03001876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return 0;
1878}
1879
Hans Verkuil64f70e72008-12-18 12:11:32 -03001880static int tvaudio_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1881{
1882 struct CHIPSTATE *chip = to_state(sd);
1883 struct CHIPDESC *desc = chip->desc;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001884
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001885 if (!desc->getrxsubchans)
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001886 return 0;
Hans Verkuil64f70e72008-12-18 12:11:32 -03001887 if (chip->radio)
1888 return 0;
Hans Verkuil5fa7b9f2009-03-18 13:59:34 -03001889
Hans Verkuil64f70e72008-12-18 12:11:32 -03001890 vt->audmode = chip->audmode;
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001891 vt->rxsubchans = desc->getrxsubchans(chip);
Hans Verkuil64f70e72008-12-18 12:11:32 -03001892 vt->capability = V4L2_TUNER_CAP_STEREO |
1893 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
1894
Hans Verkuil64f70e72008-12-18 12:11:32 -03001895 return 0;
1896}
1897
1898static int tvaudio_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
1899{
1900 struct CHIPSTATE *chip = to_state(sd);
1901
1902 chip->radio = 0;
1903 return 0;
1904}
1905
1906static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *freq)
1907{
1908 struct CHIPSTATE *chip = to_state(sd);
1909 struct CHIPDESC *desc = chip->desc;
1910
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001911 /* For chips that provide getrxsubchans and setaudmode, and doesn't
Hans Verkuil64f70e72008-12-18 12:11:32 -03001912 automatically follows the stereo carrier, a kthread is
1913 created to set the audio standard. In this case, when then
1914 the video channel is changed, tvaudio starts on MONO mode.
1915 After waiting for 2 seconds, the kernel thread is called,
1916 to follow whatever audio standard is pointed by the
1917 audio carrier.
1918 */
1919 if (chip->thread) {
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03001920 desc->setaudmode(chip, V4L2_TUNER_MODE_MONO);
Daniel Glöcknere21adca2012-06-09 21:43:56 -03001921 chip->prevmode = -1; /* reset previous mode */
Hans Verkuil64f70e72008-12-18 12:11:32 -03001922 mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
1923 }
1924 return 0;
1925}
1926
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001927static int tvaudio_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
Hans Verkuil64f70e72008-12-18 12:11:32 -03001928{
1929 struct i2c_client *client = v4l2_get_subdevdata(sd);
1930
1931 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVAUDIO, 0);
1932}
1933
Hans Verkuil64f70e72008-12-18 12:11:32 -03001934/* ----------------------------------------------------------------------- */
1935
1936static const struct v4l2_subdev_core_ops tvaudio_core_ops = {
1937 .g_chip_ident = tvaudio_g_chip_ident,
1938 .queryctrl = tvaudio_queryctrl,
1939 .g_ctrl = tvaudio_g_ctrl,
1940 .s_ctrl = tvaudio_s_ctrl,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001941 .s_std = tvaudio_s_std,
Hans Verkuil64f70e72008-12-18 12:11:32 -03001942};
1943
1944static const struct v4l2_subdev_tuner_ops tvaudio_tuner_ops = {
1945 .s_radio = tvaudio_s_radio,
1946 .s_frequency = tvaudio_s_frequency,
Hans Verkuil64f70e72008-12-18 12:11:32 -03001947 .s_tuner = tvaudio_s_tuner,
Julia Lawalle6a1a082009-09-19 16:48:17 -03001948 .g_tuner = tvaudio_g_tuner,
Hans Verkuil64f70e72008-12-18 12:11:32 -03001949};
1950
1951static const struct v4l2_subdev_audio_ops tvaudio_audio_ops = {
1952 .s_routing = tvaudio_s_routing,
1953};
1954
1955static const struct v4l2_subdev_ops tvaudio_ops = {
1956 .core = &tvaudio_core_ops,
1957 .tuner = &tvaudio_tuner_ops,
1958 .audio = &tvaudio_audio_ops,
1959};
1960
1961/* ----------------------------------------------------------------------- */
1962
1963
1964/* i2c registration */
1965
1966static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id *id)
1967{
1968 struct CHIPSTATE *chip;
1969 struct CHIPDESC *desc;
1970 struct v4l2_subdev *sd;
1971
1972 if (debug) {
1973 printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
1974 printk(KERN_INFO "tvaudio: known chips: ");
1975 for (desc = chiplist; desc->name != NULL; desc++)
1976 printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
1977 printk("\n");
1978 }
1979
1980 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1981 if (!chip)
1982 return -ENOMEM;
1983 sd = &chip->sd;
1984 v4l2_i2c_subdev_init(sd, client, &tvaudio_ops);
1985
1986 /* find description for the chip */
1987 v4l2_dbg(1, debug, sd, "chip found @ 0x%x\n", client->addr<<1);
1988 for (desc = chiplist; desc->name != NULL; desc++) {
1989 if (0 == *(desc->insmodopt))
1990 continue;
1991 if (client->addr < desc->addr_lo ||
1992 client->addr > desc->addr_hi)
1993 continue;
1994 if (desc->checkit && !desc->checkit(chip))
1995 continue;
1996 break;
1997 }
1998 if (desc->name == NULL) {
1999 v4l2_dbg(1, debug, sd, "no matching chip description found\n");
2000 kfree(chip);
2001 return -EIO;
2002 }
2003 v4l2_info(sd, "%s found @ 0x%x (%s)\n", desc->name, client->addr<<1, client->adapter->name);
2004 if (desc->flags) {
2005 v4l2_dbg(1, debug, sd, "matches:%s%s%s.\n",
2006 (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "",
2007 (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "",
2008 (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : "");
2009 }
2010
2011 /* fill required data structures */
2012 if (!id)
2013 strlcpy(client->name, desc->name, I2C_NAME_SIZE);
2014 chip->desc = desc;
2015 chip->shadow.count = desc->registers+1;
2016 chip->prevmode = -1;
2017 chip->audmode = V4L2_TUNER_MODE_LANG1;
2018
2019 /* initialization */
2020 if (desc->initialize != NULL)
2021 desc->initialize(chip);
2022 else
2023 chip_cmd(chip, "init", &desc->init);
2024
2025 if (desc->flags & CHIP_HAS_VOLUME) {
2026 if (!desc->volfunc) {
2027 /* This shouldn't be happen. Warn user, but keep working
2028 without volume controls
2029 */
2030 v4l2_info(sd, "volume callback undefined!\n");
2031 desc->flags &= ~CHIP_HAS_VOLUME;
2032 } else {
2033 chip->left = desc->leftinit ? desc->leftinit : 65535;
2034 chip->right = desc->rightinit ? desc->rightinit : 65535;
2035 chip_write(chip, desc->leftreg,
2036 desc->volfunc(chip->left));
2037 chip_write(chip, desc->rightreg,
2038 desc->volfunc(chip->right));
2039 }
2040 }
2041 if (desc->flags & CHIP_HAS_BASSTREBLE) {
2042 if (!desc->bassfunc || !desc->treblefunc) {
2043 /* This shouldn't be happen. Warn user, but keep working
2044 without bass/treble controls
2045 */
2046 v4l2_info(sd, "bass/treble callbacks undefined!\n");
2047 desc->flags &= ~CHIP_HAS_BASSTREBLE;
2048 } else {
2049 chip->treble = desc->trebleinit ?
2050 desc->trebleinit : 32768;
2051 chip->bass = desc->bassinit ?
2052 desc->bassinit : 32768;
2053 chip_write(chip, desc->bassreg,
2054 desc->bassfunc(chip->bass));
2055 chip_write(chip, desc->treblereg,
2056 desc->treblefunc(chip->treble));
2057 }
2058 }
2059
2060 chip->thread = NULL;
Hans Verkuile4129a92009-03-19 16:53:32 -03002061 init_timer(&chip->wt);
Hans Verkuil64f70e72008-12-18 12:11:32 -03002062 if (desc->flags & CHIP_NEED_CHECKMODE) {
Daniel Glöckner7bcfdf02012-06-17 07:53:42 -03002063 if (!desc->getrxsubchans || !desc->setaudmode) {
Hans Verkuil64f70e72008-12-18 12:11:32 -03002064 /* This shouldn't be happen. Warn user, but keep working
2065 without kthread
2066 */
2067 v4l2_info(sd, "set/get mode callbacks undefined!\n");
2068 return 0;
2069 }
2070 /* start async thread */
Hans Verkuil64f70e72008-12-18 12:11:32 -03002071 chip->wt.function = chip_thread_wake;
2072 chip->wt.data = (unsigned long)chip;
2073 chip->thread = kthread_run(chip_thread, chip, client->name);
2074 if (IS_ERR(chip->thread)) {
2075 v4l2_warn(sd, "failed to create kthread\n");
2076 chip->thread = NULL;
2077 }
2078 }
2079 return 0;
2080}
2081
2082static int tvaudio_remove(struct i2c_client *client)
2083{
2084 struct v4l2_subdev *sd = i2c_get_clientdata(client);
2085 struct CHIPSTATE *chip = to_state(sd);
2086
2087 del_timer_sync(&chip->wt);
2088 if (chip->thread) {
2089 /* shutdown async thread */
2090 kthread_stop(chip->thread);
2091 chip->thread = NULL;
2092 }
2093
2094 v4l2_device_unregister_subdev(sd);
2095 kfree(chip);
2096 return 0;
2097}
2098
Jean Delvareae429082008-05-11 20:37:06 +02002099/* This driver supports many devices and the idea is to let the driver
2100 detect which device is present. So rather than listing all supported
2101 devices here, we pretend to support a single, fake device type. */
Hans Verkuil64f70e72008-12-18 12:11:32 -03002102static const struct i2c_device_id tvaudio_id[] = {
Jean Delvareae429082008-05-11 20:37:06 +02002103 { "tvaudio", 0 },
2104 { }
2105};
Hans Verkuil64f70e72008-12-18 12:11:32 -03002106MODULE_DEVICE_TABLE(i2c, tvaudio_id);
Jean Delvareae429082008-05-11 20:37:06 +02002107
Hans Verkuil7a004d12010-09-15 15:26:38 -03002108static struct i2c_driver tvaudio_driver = {
2109 .driver = {
2110 .owner = THIS_MODULE,
2111 .name = "tvaudio",
2112 },
2113 .probe = tvaudio_probe,
2114 .remove = tvaudio_remove,
2115 .id_table = tvaudio_id,
Hans Verkuil08e14052007-09-14 04:50:44 -03002116};
Hans Verkuil7a004d12010-09-15 15:26:38 -03002117
Axel Linc6e8d862012-02-12 06:56:32 -03002118module_i2c_driver(tvaudio_driver);