Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Mauro Carvalho Chehab | b4ab114 | 2008-11-13 14:07:54 -0300 | [diff] [blame] | 2 | * Driver for simple i2c audio chips. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 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 | * |
Hans Verkuil | 6a3ca5f | 2012-09-25 04:44:46 -0300 | [diff] [blame^] | 10 | * For the TDA9875 part: |
| 11 | * Copyright (c) 2000 Guillaume Delvit based on Gerd Knorr source |
| 12 | * and Eric Sandeen |
| 13 | * |
Mauro Carvalho Chehab | b4ab114 | 2008-11-13 14:07:54 -0300 | [diff] [blame] | 14 | * Copyright(c) 2005-2008 Mauro Carvalho Chehab |
| 15 | * - Some cleanups, code fixes, etc |
| 16 | * - Convert it to V4L2 API |
| 17 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | * This code is placed under the terms of the GNU General Public License |
| 19 | * |
| 20 | * OPTIONS: |
| 21 | * debug - set to 1 if you'd like to see debug messages |
| 22 | * |
| 23 | */ |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/kernel.h> |
| 27 | #include <linux/sched.h> |
| 28 | #include <linux/string.h> |
| 29 | #include <linux/timer.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/errno.h> |
| 32 | #include <linux/slab.h> |
Hans Verkuil | 7f6adea | 2009-02-19 17:31:17 -0300 | [diff] [blame] | 33 | #include <linux/videodev2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/i2c.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/init.h> |
Cedric Le Goater | bc28287 | 2006-09-11 16:31:45 -0300 | [diff] [blame] | 36 | #include <linux/kthread.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 37 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 39 | #include <media/tvaudio.h> |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 40 | #include <media/v4l2-device.h> |
Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 41 | #include <media/v4l2-chip-ident.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Mauro Carvalho Chehab | 7c9b504 | 2006-03-18 08:08:14 -0300 | [diff] [blame] | 43 | #include <media/i2c-addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | /* ---------------------------------------------------------------------- */ |
| 46 | /* insmod args */ |
| 47 | |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 48 | static int debug; /* insmod parameter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | module_param(debug, int, 0644); |
| 50 | |
| 51 | MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips"); |
| 52 | MODULE_AUTHOR("Eric Sandeen, Steve VanDeBogart, Greg Alexander, Gerd Knorr"); |
| 53 | MODULE_LICENSE("GPL"); |
| 54 | |
| 55 | #define UNSET (-1U) |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | /* ---------------------------------------------------------------------- */ |
| 58 | /* our structs */ |
| 59 | |
Vitaly Wool | 4c6c390 | 2009-03-05 13:03:32 -0300 | [diff] [blame] | 60 | #define MAXREGS 256 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | struct CHIPSTATE; |
| 63 | typedef int (*getvalue)(int); |
| 64 | typedef int (*checkit)(struct CHIPSTATE*); |
| 65 | typedef int (*initialize)(struct CHIPSTATE*); |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 66 | typedef int (*getrxsubchans)(struct CHIPSTATE *); |
| 67 | typedef void (*setaudmode)(struct CHIPSTATE*, int mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | /* i2c command */ |
| 70 | typedef struct AUDIOCMD { |
| 71 | int count; /* # of bytes to send */ |
| 72 | unsigned char bytes[MAXREGS+1]; /* addr, data, data, ... */ |
| 73 | } audiocmd; |
| 74 | |
| 75 | /* chip description */ |
| 76 | struct CHIPDESC { |
| 77 | char *name; /* chip name */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | int addr_lo, addr_hi; /* i2c address range */ |
| 79 | int registers; /* # of registers */ |
| 80 | |
| 81 | int *insmodopt; |
| 82 | checkit checkit; |
| 83 | initialize initialize; |
| 84 | int flags; |
| 85 | #define CHIP_HAS_VOLUME 1 |
| 86 | #define CHIP_HAS_BASSTREBLE 2 |
| 87 | #define CHIP_HAS_INPUTSEL 4 |
Mauro Carvalho Chehab | dd03e97 | 2008-11-13 13:55:39 -0300 | [diff] [blame] | 88 | #define CHIP_NEED_CHECKMODE 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | /* various i2c command sequences */ |
| 91 | audiocmd init; |
| 92 | |
| 93 | /* which register has which value */ |
| 94 | int leftreg,rightreg,treblereg,bassreg; |
| 95 | |
| 96 | /* initialize with (defaults to 65535/65535/32768/32768 */ |
| 97 | int leftinit,rightinit,trebleinit,bassinit; |
| 98 | |
| 99 | /* functions to convert the values (v4l -> chip) */ |
| 100 | getvalue volfunc,treblefunc,bassfunc; |
| 101 | |
| 102 | /* get/set mode */ |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 103 | getrxsubchans getrxsubchans; |
| 104 | setaudmode setaudmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* input switch register + values for v4l inputs */ |
| 107 | int inputreg; |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 108 | int inputmap[4]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | int inputmute; |
| 110 | int inputmask; |
| 111 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | /* current state of the chip */ |
| 114 | struct CHIPSTATE { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 115 | struct v4l2_subdev sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Mauro Carvalho Chehab | 81cb5c4 | 2008-11-13 16:22:53 -0300 | [diff] [blame] | 117 | /* chip-specific description - should point to |
| 118 | an entry at CHIPDESC table */ |
| 119 | struct CHIPDESC *desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | /* shadow register set */ |
| 122 | audiocmd shadow; |
| 123 | |
| 124 | /* current settings */ |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 125 | __u16 left, right, treble, bass, muted; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | int prevmode; |
Hans Verkuil | 8a85428 | 2006-01-09 15:25:43 -0200 | [diff] [blame] | 127 | int radio; |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 128 | int input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | /* thread */ |
Cedric Le Goater | bc28287 | 2006-09-11 16:31:45 -0300 | [diff] [blame] | 131 | struct task_struct *thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | struct timer_list wt; |
Hans Verkuil | 8a4b275 | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 133 | int audmode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 136 | static inline struct CHIPSTATE *to_state(struct v4l2_subdev *sd) |
| 137 | { |
| 138 | return container_of(sd, struct CHIPSTATE, sd); |
| 139 | } |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | /* ---------------------------------------------------------------------- */ |
| 143 | /* i2c I/O functions */ |
| 144 | |
| 145 | static int chip_write(struct CHIPSTATE *chip, int subaddr, int val) |
| 146 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 147 | struct v4l2_subdev *sd = &chip->sd; |
| 148 | struct i2c_client *c = v4l2_get_subdevdata(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | unsigned char buffer[2]; |
| 150 | |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 151 | if (subaddr < 0) { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 152 | v4l2_dbg(1, debug, sd, "chip_write: 0x%x\n", val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | chip->shadow.bytes[1] = val; |
| 154 | buffer[0] = val; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 155 | if (1 != i2c_master_send(c, buffer, 1)) { |
| 156 | v4l2_warn(sd, "I/O error (write 0x%x)\n", val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | return -1; |
| 158 | } |
| 159 | } else { |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 160 | if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 161 | v4l2_info(sd, |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 162 | "Tried to access a non-existent register: %d\n", |
| 163 | subaddr); |
| 164 | return -EINVAL; |
| 165 | } |
| 166 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 167 | v4l2_dbg(1, debug, sd, "chip_write: reg%d=0x%x\n", |
| 168 | subaddr, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | chip->shadow.bytes[subaddr+1] = val; |
| 170 | buffer[0] = subaddr; |
| 171 | buffer[1] = val; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 172 | if (2 != i2c_master_send(c, buffer, 2)) { |
| 173 | v4l2_warn(sd, "I/O error (write reg%d=0x%x)\n", |
| 174 | subaddr, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | return -1; |
| 176 | } |
| 177 | } |
| 178 | return 0; |
| 179 | } |
| 180 | |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 181 | static int chip_write_masked(struct CHIPSTATE *chip, |
| 182 | int subaddr, int val, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 184 | struct v4l2_subdev *sd = &chip->sd; |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | if (mask != 0) { |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 187 | if (subaddr < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | val = (chip->shadow.bytes[1] & ~mask) | (val & mask); |
| 189 | } else { |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 190 | if (subaddr + 1 >= ARRAY_SIZE(chip->shadow.bytes)) { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 191 | v4l2_info(sd, |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 192 | "Tried to access a non-existent register: %d\n", |
| 193 | subaddr); |
| 194 | return -EINVAL; |
| 195 | } |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | val = (chip->shadow.bytes[subaddr+1] & ~mask) | (val & mask); |
| 198 | } |
| 199 | } |
| 200 | return chip_write(chip, subaddr, val); |
| 201 | } |
| 202 | |
| 203 | static int chip_read(struct CHIPSTATE *chip) |
| 204 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 205 | struct v4l2_subdev *sd = &chip->sd; |
| 206 | struct i2c_client *c = v4l2_get_subdevdata(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | unsigned char buffer; |
| 208 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 209 | if (1 != i2c_master_recv(c, &buffer, 1)) { |
| 210 | v4l2_warn(sd, "I/O error (read)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | return -1; |
| 212 | } |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 213 | v4l2_dbg(1, debug, sd, "chip_read: 0x%x\n", buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return buffer; |
| 215 | } |
| 216 | |
| 217 | static int chip_read2(struct CHIPSTATE *chip, int subaddr) |
| 218 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 219 | struct v4l2_subdev *sd = &chip->sd; |
| 220 | struct i2c_client *c = v4l2_get_subdevdata(sd); |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 221 | unsigned char write[1]; |
| 222 | unsigned char read[1]; |
| 223 | struct i2c_msg msgs[2] = { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 224 | { c->addr, 0, 1, write }, |
| 225 | { c->addr, I2C_M_RD, 1, read } |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 226 | }; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 227 | |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 228 | write[0] = subaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 230 | if (2 != i2c_transfer(c->adapter, msgs, 2)) { |
| 231 | v4l2_warn(sd, "I/O error (read2)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | return -1; |
| 233 | } |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 234 | v4l2_dbg(1, debug, sd, "chip_read2: reg%d=0x%x\n", |
| 235 | subaddr, read[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | return read[0]; |
| 237 | } |
| 238 | |
| 239 | static int chip_cmd(struct CHIPSTATE *chip, char *name, audiocmd *cmd) |
| 240 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 241 | struct v4l2_subdev *sd = &chip->sd; |
| 242 | struct i2c_client *c = v4l2_get_subdevdata(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | int i; |
| 244 | |
| 245 | if (0 == cmd->count) |
| 246 | return 0; |
| 247 | |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 248 | if (cmd->count + cmd->bytes[0] - 1 >= ARRAY_SIZE(chip->shadow.bytes)) { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 249 | v4l2_info(sd, |
Mauro Carvalho Chehab | 4942643 | 2008-11-13 17:03:28 -0300 | [diff] [blame] | 250 | "Tried to access a non-existent register range: %d to %d\n", |
| 251 | cmd->bytes[0] + 1, cmd->bytes[0] + cmd->count - 1); |
| 252 | return -EINVAL; |
| 253 | } |
| 254 | |
| 255 | /* FIXME: it seems that the shadow bytes are wrong bellow !*/ |
| 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | /* update our shadow register set; print bytes if (debug > 0) */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 258 | v4l2_dbg(1, debug, sd, "chip_cmd(%s): reg=%d, data:", |
| 259 | name, cmd->bytes[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | for (i = 1; i < cmd->count; i++) { |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 261 | if (debug) |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 262 | printk(KERN_CONT " 0x%x", cmd->bytes[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | chip->shadow.bytes[i+cmd->bytes[0]] = cmd->bytes[i]; |
| 264 | } |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 265 | if (debug) |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 266 | printk(KERN_CONT "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | /* send data to the chip */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 269 | if (cmd->count != i2c_master_send(c, cmd->bytes, cmd->count)) { |
| 270 | v4l2_warn(sd, "I/O error (%s)\n", name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | return -1; |
| 272 | } |
| 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | /* ---------------------------------------------------------------------- */ |
| 277 | /* kernel thread for doing i2c stuff asyncronly |
| 278 | * right now it is used only to check the audio mode (mono/stereo/whatever) |
| 279 | * some time after switching to another TV channel, then turn on stereo |
| 280 | * if available, ... |
| 281 | */ |
| 282 | |
| 283 | static void chip_thread_wake(unsigned long data) |
| 284 | { |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 285 | struct CHIPSTATE *chip = (struct CHIPSTATE*)data; |
Cedric Le Goater | bc28287 | 2006-09-11 16:31:45 -0300 | [diff] [blame] | 286 | wake_up_process(chip->thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static int chip_thread(void *data) |
| 290 | { |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 291 | struct CHIPSTATE *chip = data; |
Mauro Carvalho Chehab | 81cb5c4 | 2008-11-13 16:22:53 -0300 | [diff] [blame] | 292 | struct CHIPDESC *desc = chip->desc; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 293 | struct v4l2_subdev *sd = &chip->sd; |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 294 | int mode, selected; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 296 | v4l2_dbg(1, debug, sd, "thread started\n"); |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 297 | set_freezable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | for (;;) { |
Cedric Le Goater | bc28287 | 2006-09-11 16:31:45 -0300 | [diff] [blame] | 299 | set_current_state(TASK_INTERRUPTIBLE); |
| 300 | if (!kthread_should_stop()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | schedule(); |
Cedric Le Goater | bc28287 | 2006-09-11 16:31:45 -0300 | [diff] [blame] | 302 | set_current_state(TASK_RUNNING); |
Nigel Cunningham | 5e50e7a | 2005-07-27 11:43:35 -0700 | [diff] [blame] | 303 | try_to_freeze(); |
Cedric Le Goater | bc28287 | 2006-09-11 16:31:45 -0300 | [diff] [blame] | 304 | if (kthread_should_stop()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | break; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 306 | v4l2_dbg(1, debug, sd, "thread wakeup\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 308 | /* don't do anything for radio */ |
| 309 | if (chip->radio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | continue; |
| 311 | |
| 312 | /* have a look what's going on */ |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 313 | mode = desc->getrxsubchans(chip); |
Mauro Carvalho Chehab | dd03e97 | 2008-11-13 13:55:39 -0300 | [diff] [blame] | 314 | if (mode == chip->prevmode) |
| 315 | continue; |
| 316 | |
| 317 | /* chip detected a new audio mode - set it */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 318 | v4l2_dbg(1, debug, sd, "thread checkmode\n"); |
Mauro Carvalho Chehab | dd03e97 | 2008-11-13 13:55:39 -0300 | [diff] [blame] | 319 | |
| 320 | chip->prevmode = mode; |
| 321 | |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 322 | selected = V4L2_TUNER_MODE_MONO; |
| 323 | switch (chip->audmode) { |
| 324 | case V4L2_TUNER_MODE_MONO: |
| 325 | if (mode & V4L2_TUNER_SUB_LANG1) |
| 326 | selected = V4L2_TUNER_MODE_LANG1; |
| 327 | break; |
| 328 | case V4L2_TUNER_MODE_STEREO: |
| 329 | case V4L2_TUNER_MODE_LANG1: |
| 330 | if (mode & V4L2_TUNER_SUB_LANG1) |
| 331 | selected = V4L2_TUNER_MODE_LANG1; |
| 332 | else if (mode & V4L2_TUNER_SUB_STEREO) |
| 333 | selected = V4L2_TUNER_MODE_STEREO; |
| 334 | break; |
| 335 | case V4L2_TUNER_MODE_LANG2: |
| 336 | if (mode & V4L2_TUNER_SUB_LANG2) |
| 337 | selected = V4L2_TUNER_MODE_LANG2; |
| 338 | else if (mode & V4L2_TUNER_SUB_STEREO) |
| 339 | selected = V4L2_TUNER_MODE_STEREO; |
| 340 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 341 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 342 | if (mode & V4L2_TUNER_SUB_LANG2) |
| 343 | selected = V4L2_TUNER_MODE_LANG1_LANG2; |
| 344 | else if (mode & V4L2_TUNER_SUB_STEREO) |
| 345 | selected = V4L2_TUNER_MODE_STEREO; |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 346 | } |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 347 | desc->setaudmode(chip, selected); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | /* schedule next check */ |
Mauro Carvalho Chehab | 09df5cbe | 2007-07-17 16:25:38 -0300 | [diff] [blame] | 350 | mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 353 | v4l2_dbg(1, debug, sd, "thread exiting\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | /* ---------------------------------------------------------------------- */ |
| 358 | /* audio chip descriptions - defines+functions for tda9840 */ |
| 359 | |
| 360 | #define TDA9840_SW 0x00 |
| 361 | #define TDA9840_LVADJ 0x02 |
| 362 | #define TDA9840_STADJ 0x03 |
| 363 | #define TDA9840_TEST 0x04 |
| 364 | |
| 365 | #define TDA9840_MONO 0x10 |
| 366 | #define TDA9840_STEREO 0x2a |
| 367 | #define TDA9840_DUALA 0x12 |
| 368 | #define TDA9840_DUALB 0x1e |
| 369 | #define TDA9840_DUALAB 0x1a |
| 370 | #define TDA9840_DUALBA 0x16 |
| 371 | #define TDA9840_EXTERNAL 0x7a |
| 372 | |
| 373 | #define TDA9840_DS_DUAL 0x20 /* Dual sound identified */ |
| 374 | #define TDA9840_ST_STEREO 0x40 /* Stereo sound identified */ |
| 375 | #define TDA9840_PONRES 0x80 /* Power-on reset detected if = 1 */ |
| 376 | |
| 377 | #define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */ |
| 378 | #define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */ |
| 379 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 380 | static int tda9840_getrxsubchans(struct CHIPSTATE *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 382 | struct v4l2_subdev *sd = &chip->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | int val, mode; |
| 384 | |
| 385 | val = chip_read(chip); |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 386 | mode = V4L2_TUNER_SUB_MONO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | if (val & TDA9840_DS_DUAL) |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 388 | mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | if (val & TDA9840_ST_STEREO) |
Daniel Glöckner | 1884e29 | 2012-06-09 21:43:58 -0300 | [diff] [blame] | 390 | mode = V4L2_TUNER_SUB_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 392 | v4l2_dbg(1, debug, sd, |
| 393 | "tda9840_getrxsubchans(): raw chip read: %d, return: %d\n", |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 394 | val, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | return mode; |
| 396 | } |
| 397 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 398 | static void tda9840_setaudmode(struct CHIPSTATE *chip, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
| 400 | int update = 1; |
| 401 | int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e; |
| 402 | |
| 403 | switch (mode) { |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 404 | case V4L2_TUNER_MODE_MONO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | t |= TDA9840_MONO; |
| 406 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 407 | case V4L2_TUNER_MODE_STEREO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | t |= TDA9840_STEREO; |
| 409 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 410 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | t |= TDA9840_DUALA; |
| 412 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 413 | case V4L2_TUNER_MODE_LANG2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | t |= TDA9840_DUALB; |
| 415 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 416 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 417 | t |= TDA9840_DUALAB; |
| 418 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | default: |
| 420 | update = 0; |
| 421 | } |
| 422 | |
| 423 | if (update) |
| 424 | chip_write(chip, TDA9840_SW, t); |
| 425 | } |
| 426 | |
Hans Verkuil | 94f9e56 | 2006-01-23 09:47:40 -0200 | [diff] [blame] | 427 | static int tda9840_checkit(struct CHIPSTATE *chip) |
| 428 | { |
| 429 | int rc; |
| 430 | rc = chip_read(chip); |
| 431 | /* lower 5 bits should be 0 */ |
| 432 | return ((rc & 0x1f) == 0) ? 1 : 0; |
| 433 | } |
| 434 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | /* ---------------------------------------------------------------------- */ |
| 436 | /* audio chip descriptions - defines+functions for tda985x */ |
| 437 | |
| 438 | /* subaddresses for TDA9855 */ |
| 439 | #define TDA9855_VR 0x00 /* Volume, right */ |
| 440 | #define TDA9855_VL 0x01 /* Volume, left */ |
| 441 | #define TDA9855_BA 0x02 /* Bass */ |
| 442 | #define TDA9855_TR 0x03 /* Treble */ |
| 443 | #define TDA9855_SW 0x04 /* Subwoofer - not connected on DTV2000 */ |
| 444 | |
| 445 | /* subaddresses for TDA9850 */ |
| 446 | #define TDA9850_C4 0x04 /* Control 1 for TDA9850 */ |
| 447 | |
| 448 | /* subaddesses for both chips */ |
| 449 | #define TDA985x_C5 0x05 /* Control 2 for TDA9850, Control 1 for TDA9855 */ |
| 450 | #define TDA985x_C6 0x06 /* Control 3 for TDA9850, Control 2 for TDA9855 */ |
| 451 | #define TDA985x_C7 0x07 /* Control 4 for TDA9850, Control 3 for TDA9855 */ |
| 452 | #define TDA985x_A1 0x08 /* Alignment 1 for both chips */ |
| 453 | #define TDA985x_A2 0x09 /* Alignment 2 for both chips */ |
| 454 | #define TDA985x_A3 0x0a /* Alignment 3 for both chips */ |
| 455 | |
| 456 | /* Masks for bits in TDA9855 subaddresses */ |
| 457 | /* 0x00 - VR in TDA9855 */ |
| 458 | /* 0x01 - VL in TDA9855 */ |
| 459 | /* lower 7 bits control gain from -71dB (0x28) to 16dB (0x7f) |
| 460 | * in 1dB steps - mute is 0x27 */ |
| 461 | |
| 462 | |
| 463 | /* 0x02 - BA in TDA9855 */ |
| 464 | /* lower 5 bits control bass gain from -12dB (0x06) to 16.5dB (0x19) |
| 465 | * in .5dB steps - 0 is 0x0E */ |
| 466 | |
| 467 | |
| 468 | /* 0x03 - TR in TDA9855 */ |
| 469 | /* 4 bits << 1 control treble gain from -12dB (0x3) to 12dB (0xb) |
| 470 | * in 3dB steps - 0 is 0x7 */ |
| 471 | |
| 472 | /* Masks for bits in both chips' subaddresses */ |
| 473 | /* 0x04 - SW in TDA9855, C4/Control 1 in TDA9850 */ |
| 474 | /* Unique to TDA9855: */ |
| 475 | /* 4 bits << 2 control subwoofer/surround gain from -14db (0x1) to 14db (0xf) |
| 476 | * in 3dB steps - mute is 0x0 */ |
| 477 | |
| 478 | /* Unique to TDA9850: */ |
| 479 | /* lower 4 bits control stereo noise threshold, over which stereo turns off |
| 480 | * set to values of 0x00 through 0x0f for Ster1 through Ster16 */ |
| 481 | |
| 482 | |
| 483 | /* 0x05 - C5 - Control 1 in TDA9855 , Control 2 in TDA9850*/ |
| 484 | /* Unique to TDA9855: */ |
| 485 | #define TDA9855_MUTE 1<<7 /* GMU, Mute at outputs */ |
| 486 | #define TDA9855_AVL 1<<6 /* AVL, Automatic Volume Level */ |
| 487 | #define TDA9855_LOUD 1<<5 /* Loudness, 1==off */ |
| 488 | #define TDA9855_SUR 1<<3 /* Surround / Subwoofer 1==.5(L-R) 0==.5(L+R) */ |
| 489 | /* Bits 0 to 3 select various combinations |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 490 | * of line in and line out, only the |
| 491 | * interesting ones are defined */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | #define TDA9855_EXT 1<<2 /* Selects inputs LIR and LIL. Pins 41 & 12 */ |
| 493 | #define TDA9855_INT 0 /* Selects inputs LOR and LOL. (internal) */ |
| 494 | |
| 495 | /* Unique to TDA9850: */ |
| 496 | /* lower 4 bits contol SAP noise threshold, over which SAP turns off |
| 497 | * set to values of 0x00 through 0x0f for SAP1 through SAP16 */ |
| 498 | |
| 499 | |
| 500 | /* 0x06 - C6 - Control 2 in TDA9855, Control 3 in TDA9850 */ |
| 501 | /* Common to TDA9855 and TDA9850: */ |
| 502 | #define TDA985x_SAP 3<<6 /* Selects SAP output, mute if not received */ |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 503 | #define TDA985x_MONOSAP 2<<6 /* Selects Mono on left, SAP on right */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | #define TDA985x_STEREO 1<<6 /* Selects Stereo ouput, mono if not received */ |
| 505 | #define TDA985x_MONO 0 /* Forces Mono output */ |
| 506 | #define TDA985x_LMU 1<<3 /* Mute (LOR/LOL for 9855, OUTL/OUTR for 9850) */ |
| 507 | |
| 508 | /* Unique to TDA9855: */ |
| 509 | #define TDA9855_TZCM 1<<5 /* If set, don't mute till zero crossing */ |
| 510 | #define TDA9855_VZCM 1<<4 /* If set, don't change volume till zero crossing*/ |
| 511 | #define TDA9855_LINEAR 0 /* Linear Stereo */ |
| 512 | #define TDA9855_PSEUDO 1 /* Pseudo Stereo */ |
| 513 | #define TDA9855_SPAT_30 2 /* Spatial Stereo, 30% anti-phase crosstalk */ |
| 514 | #define TDA9855_SPAT_50 3 /* Spatial Stereo, 52% anti-phase crosstalk */ |
| 515 | #define TDA9855_E_MONO 7 /* Forced mono - mono select elseware, so useless*/ |
| 516 | |
| 517 | /* 0x07 - C7 - Control 3 in TDA9855, Control 4 in TDA9850 */ |
| 518 | /* Common to both TDA9855 and TDA9850: */ |
| 519 | /* lower 4 bits control input gain from -3.5dB (0x0) to 4dB (0xF) |
| 520 | * in .5dB steps - 0dB is 0x7 */ |
| 521 | |
| 522 | /* 0x08, 0x09 - A1 and A2 (read/write) */ |
| 523 | /* Common to both TDA9855 and TDA9850: */ |
| 524 | /* lower 5 bites are wideband and spectral expander alignment |
| 525 | * from 0x00 to 0x1f - nominal at 0x0f and 0x10 (read/write) */ |
| 526 | #define TDA985x_STP 1<<5 /* Stereo Pilot/detect (read-only) */ |
| 527 | #define TDA985x_SAPP 1<<6 /* SAP Pilot/detect (read-only) */ |
| 528 | #define TDA985x_STS 1<<7 /* Stereo trigger 1= <35mV 0= <30mV (write-only)*/ |
| 529 | |
| 530 | /* 0x0a - A3 */ |
| 531 | /* Common to both TDA9855 and TDA9850: */ |
| 532 | /* lower 3 bits control timing current for alignment: -30% (0x0), -20% (0x1), |
| 533 | * -10% (0x2), nominal (0x3), +10% (0x6), +20% (0x5), +30% (0x4) */ |
| 534 | #define TDA985x_ADJ 1<<7 /* Stereo adjust on/off (wideband and spectral */ |
| 535 | |
| 536 | static int tda9855_volume(int val) { return val/0x2e8+0x27; } |
| 537 | static int tda9855_bass(int val) { return val/0xccc+0x06; } |
| 538 | static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; } |
| 539 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 540 | static int tda985x_getrxsubchans(struct CHIPSTATE *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | { |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 542 | int mode, val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | /* Add mono mode regardless of SAP and stereo */ |
| 545 | /* Allows forced mono */ |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 546 | mode = V4L2_TUNER_SUB_MONO; |
| 547 | val = chip_read(chip); |
| 548 | if (val & TDA985x_STP) |
Daniel Glöckner | 1884e29 | 2012-06-09 21:43:58 -0300 | [diff] [blame] | 549 | mode = V4L2_TUNER_SUB_STEREO; |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 550 | if (val & TDA985x_SAPP) |
| 551 | mode |= V4L2_TUNER_SUB_SAP; |
| 552 | return mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 555 | static void tda985x_setaudmode(struct CHIPSTATE *chip, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
| 557 | int update = 1; |
| 558 | int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f; |
| 559 | |
| 560 | switch (mode) { |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 561 | case V4L2_TUNER_MODE_MONO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | c6 |= TDA985x_MONO; |
| 563 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 564 | case V4L2_TUNER_MODE_STEREO: |
Daniel Glöckner | 00fb185 | 2012-06-09 21:43:52 -0300 | [diff] [blame] | 565 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | c6 |= TDA985x_STEREO; |
| 567 | break; |
Daniel Glöckner | 00fb185 | 2012-06-09 21:43:52 -0300 | [diff] [blame] | 568 | case V4L2_TUNER_MODE_SAP: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | c6 |= TDA985x_SAP; |
| 570 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 571 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 572 | c6 |= TDA985x_MONOSAP; |
| 573 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | default: |
| 575 | update = 0; |
| 576 | } |
| 577 | if (update) |
| 578 | chip_write(chip,TDA985x_C6,c6); |
| 579 | } |
| 580 | |
| 581 | |
| 582 | /* ---------------------------------------------------------------------- */ |
| 583 | /* audio chip descriptions - defines+functions for tda9873h */ |
| 584 | |
| 585 | /* Subaddresses for TDA9873H */ |
| 586 | |
| 587 | #define TDA9873_SW 0x00 /* Switching */ |
| 588 | #define TDA9873_AD 0x01 /* Adjust */ |
| 589 | #define TDA9873_PT 0x02 /* Port */ |
| 590 | |
| 591 | /* Subaddress 0x00: Switching Data |
| 592 | * B7..B0: |
| 593 | * |
| 594 | * B1, B0: Input source selection |
| 595 | * 0, 0 internal |
| 596 | * 1, 0 external stereo |
| 597 | * 0, 1 external mono |
| 598 | */ |
| 599 | #define TDA9873_INP_MASK 3 |
| 600 | #define TDA9873_INTERNAL 0 |
| 601 | #define TDA9873_EXT_STEREO 2 |
| 602 | #define TDA9873_EXT_MONO 1 |
| 603 | |
| 604 | /* B3, B2: output signal select |
| 605 | * B4 : transmission mode |
| 606 | * 0, 0, 1 Mono |
| 607 | * 1, 0, 0 Stereo |
| 608 | * 1, 1, 1 Stereo (reversed channel) |
| 609 | * 0, 0, 0 Dual AB |
| 610 | * 0, 0, 1 Dual AA |
| 611 | * 0, 1, 0 Dual BB |
| 612 | * 0, 1, 1 Dual BA |
| 613 | */ |
| 614 | |
| 615 | #define TDA9873_TR_MASK (7 << 2) |
| 616 | #define TDA9873_TR_MONO 4 |
| 617 | #define TDA9873_TR_STEREO 1 << 4 |
Daniel Glöckner | d59a14e | 2012-06-09 21:43:50 -0300 | [diff] [blame] | 618 | #define TDA9873_TR_REVERSE ((1 << 3) | (1 << 2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | #define TDA9873_TR_DUALA 1 << 2 |
| 620 | #define TDA9873_TR_DUALB 1 << 3 |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 621 | #define TDA9873_TR_DUALAB 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | /* output level controls |
| 624 | * B5: output level switch (0 = reduced gain, 1 = normal gain) |
| 625 | * B6: mute (1 = muted) |
| 626 | * B7: auto-mute (1 = auto-mute enabled) |
| 627 | */ |
| 628 | |
| 629 | #define TDA9873_GAIN_NORMAL 1 << 5 |
| 630 | #define TDA9873_MUTE 1 << 6 |
| 631 | #define TDA9873_AUTOMUTE 1 << 7 |
| 632 | |
| 633 | /* Subaddress 0x01: Adjust/standard */ |
| 634 | |
| 635 | /* Lower 4 bits (C3..C0) control stereo adjustment on R channel (-0.6 - +0.7 dB) |
| 636 | * Recommended value is +0 dB |
| 637 | */ |
| 638 | |
| 639 | #define TDA9873_STEREO_ADJ 0x06 /* 0dB gain */ |
| 640 | |
| 641 | /* Bits C6..C4 control FM stantard |
| 642 | * C6, C5, C4 |
| 643 | * 0, 0, 0 B/G (PAL FM) |
| 644 | * 0, 0, 1 M |
| 645 | * 0, 1, 0 D/K(1) |
| 646 | * 0, 1, 1 D/K(2) |
| 647 | * 1, 0, 0 D/K(3) |
| 648 | * 1, 0, 1 I |
| 649 | */ |
| 650 | #define TDA9873_BG 0 |
| 651 | #define TDA9873_M 1 |
| 652 | #define TDA9873_DK1 2 |
| 653 | #define TDA9873_DK2 3 |
| 654 | #define TDA9873_DK3 4 |
| 655 | #define TDA9873_I 5 |
| 656 | |
| 657 | /* C7 controls identification response time (1=fast/0=normal) |
| 658 | */ |
| 659 | #define TDA9873_IDR_NORM 0 |
| 660 | #define TDA9873_IDR_FAST 1 << 7 |
| 661 | |
| 662 | |
| 663 | /* Subaddress 0x02: Port data */ |
| 664 | |
| 665 | /* E1, E0 free programmable ports P1/P2 |
| 666 | 0, 0 both ports low |
| 667 | 0, 1 P1 high |
| 668 | 1, 0 P2 high |
| 669 | 1, 1 both ports high |
| 670 | */ |
| 671 | |
| 672 | #define TDA9873_PORTS 3 |
| 673 | |
| 674 | /* E2: test port */ |
| 675 | #define TDA9873_TST_PORT 1 << 2 |
| 676 | |
| 677 | /* E5..E3 control mono output channel (together with transmission mode bit B4) |
| 678 | * |
| 679 | * E5 E4 E3 B4 OUTM |
| 680 | * 0 0 0 0 mono |
| 681 | * 0 0 1 0 DUAL B |
| 682 | * 0 1 0 1 mono (from stereo decoder) |
| 683 | */ |
| 684 | #define TDA9873_MOUT_MONO 0 |
| 685 | #define TDA9873_MOUT_FMONO 0 |
| 686 | #define TDA9873_MOUT_DUALA 0 |
| 687 | #define TDA9873_MOUT_DUALB 1 << 3 |
| 688 | #define TDA9873_MOUT_ST 1 << 4 |
Daniel Glöckner | d59a14e | 2012-06-09 21:43:50 -0300 | [diff] [blame] | 689 | #define TDA9873_MOUT_EXTM ((1 << 4) | (1 << 3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | #define TDA9873_MOUT_EXTL 1 << 5 |
Daniel Glöckner | d59a14e | 2012-06-09 21:43:50 -0300 | [diff] [blame] | 691 | #define TDA9873_MOUT_EXTR ((1 << 5) | (1 << 3)) |
| 692 | #define TDA9873_MOUT_EXTLR ((1 << 5) | (1 << 4)) |
| 693 | #define TDA9873_MOUT_MUTE ((1 << 5) | (1 << 4) | (1 << 3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
| 695 | /* Status bits: (chip read) */ |
| 696 | #define TDA9873_PONR 0 /* Power-on reset detected if = 1 */ |
| 697 | #define TDA9873_STEREO 2 /* Stereo sound is identified */ |
| 698 | #define TDA9873_DUAL 4 /* Dual sound is identified */ |
| 699 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 700 | static int tda9873_getrxsubchans(struct CHIPSTATE *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 702 | struct v4l2_subdev *sd = &chip->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | int val,mode; |
| 704 | |
| 705 | val = chip_read(chip); |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 706 | mode = V4L2_TUNER_SUB_MONO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | if (val & TDA9873_STEREO) |
Daniel Glöckner | 1884e29 | 2012-06-09 21:43:58 -0300 | [diff] [blame] | 708 | mode = V4L2_TUNER_SUB_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | if (val & TDA9873_DUAL) |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 710 | mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 711 | v4l2_dbg(1, debug, sd, |
| 712 | "tda9873_getrxsubchans(): raw chip read: %d, return: %d\n", |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 713 | val, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | return mode; |
| 715 | } |
| 716 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 717 | static void tda9873_setaudmode(struct CHIPSTATE *chip, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 719 | struct v4l2_subdev *sd = &chip->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK; |
| 721 | /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */ |
| 722 | |
| 723 | if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) { |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 724 | v4l2_dbg(1, debug, sd, |
| 725 | "tda9873_setaudmode(): external input\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | return; |
| 727 | } |
| 728 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 729 | v4l2_dbg(1, debug, sd, |
| 730 | "tda9873_setaudmode(): chip->shadow.bytes[%d] = %d\n", |
| 731 | TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]); |
| 732 | v4l2_dbg(1, debug, sd, "tda9873_setaudmode(): sw_data = %d\n", |
| 733 | sw_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | |
| 735 | switch (mode) { |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 736 | case V4L2_TUNER_MODE_MONO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | sw_data |= TDA9873_TR_MONO; |
| 738 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 739 | case V4L2_TUNER_MODE_STEREO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | sw_data |= TDA9873_TR_STEREO; |
| 741 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 742 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | sw_data |= TDA9873_TR_DUALA; |
| 744 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 745 | case V4L2_TUNER_MODE_LANG2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | sw_data |= TDA9873_TR_DUALB; |
| 747 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 748 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 749 | sw_data |= TDA9873_TR_DUALAB; |
| 750 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | return; |
| 753 | } |
| 754 | |
| 755 | chip_write(chip, TDA9873_SW, sw_data); |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 756 | v4l2_dbg(1, debug, sd, |
| 757 | "tda9873_setaudmode(): req. mode %d; chip_write: %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | mode, sw_data); |
| 759 | } |
| 760 | |
| 761 | static int tda9873_checkit(struct CHIPSTATE *chip) |
| 762 | { |
| 763 | int rc; |
| 764 | |
| 765 | if (-1 == (rc = chip_read2(chip,254))) |
| 766 | return 0; |
| 767 | return (rc & ~0x1f) == 0x80; |
| 768 | } |
| 769 | |
| 770 | |
| 771 | /* ---------------------------------------------------------------------- */ |
| 772 | /* audio chip description - defines+functions for tda9874h and tda9874a */ |
| 773 | /* Dariusz Kowalewski <darekk@automex.pl> */ |
| 774 | |
| 775 | /* Subaddresses for TDA9874H and TDA9874A (slave rx) */ |
| 776 | #define TDA9874A_AGCGR 0x00 /* AGC gain */ |
| 777 | #define TDA9874A_GCONR 0x01 /* general config */ |
| 778 | #define TDA9874A_MSR 0x02 /* monitor select */ |
| 779 | #define TDA9874A_C1FRA 0x03 /* carrier 1 freq. */ |
| 780 | #define TDA9874A_C1FRB 0x04 /* carrier 1 freq. */ |
| 781 | #define TDA9874A_C1FRC 0x05 /* carrier 1 freq. */ |
| 782 | #define TDA9874A_C2FRA 0x06 /* carrier 2 freq. */ |
| 783 | #define TDA9874A_C2FRB 0x07 /* carrier 2 freq. */ |
| 784 | #define TDA9874A_C2FRC 0x08 /* carrier 2 freq. */ |
| 785 | #define TDA9874A_DCR 0x09 /* demodulator config */ |
| 786 | #define TDA9874A_FMER 0x0a /* FM de-emphasis */ |
| 787 | #define TDA9874A_FMMR 0x0b /* FM dematrix */ |
| 788 | #define TDA9874A_C1OLAR 0x0c /* ch.1 output level adj. */ |
| 789 | #define TDA9874A_C2OLAR 0x0d /* ch.2 output level adj. */ |
| 790 | #define TDA9874A_NCONR 0x0e /* NICAM config */ |
| 791 | #define TDA9874A_NOLAR 0x0f /* NICAM output level adj. */ |
| 792 | #define TDA9874A_NLELR 0x10 /* NICAM lower error limit */ |
| 793 | #define TDA9874A_NUELR 0x11 /* NICAM upper error limit */ |
| 794 | #define TDA9874A_AMCONR 0x12 /* audio mute control */ |
| 795 | #define TDA9874A_SDACOSR 0x13 /* stereo DAC output select */ |
| 796 | #define TDA9874A_AOSR 0x14 /* analog output select */ |
| 797 | #define TDA9874A_DAICONR 0x15 /* digital audio interface config */ |
| 798 | #define TDA9874A_I2SOSR 0x16 /* I2S-bus output select */ |
| 799 | #define TDA9874A_I2SOLAR 0x17 /* I2S-bus output level adj. */ |
| 800 | #define TDA9874A_MDACOSR 0x18 /* mono DAC output select (tda9874a) */ |
| 801 | #define TDA9874A_ESP 0xFF /* easy standard progr. (tda9874a) */ |
| 802 | |
| 803 | /* Subaddresses for TDA9874H and TDA9874A (slave tx) */ |
| 804 | #define TDA9874A_DSR 0x00 /* device status */ |
| 805 | #define TDA9874A_NSR 0x01 /* NICAM status */ |
| 806 | #define TDA9874A_NECR 0x02 /* NICAM error count */ |
| 807 | #define TDA9874A_DR1 0x03 /* add. data LSB */ |
| 808 | #define TDA9874A_DR2 0x04 /* add. data MSB */ |
| 809 | #define TDA9874A_LLRA 0x05 /* monitor level read-out LSB */ |
| 810 | #define TDA9874A_LLRB 0x06 /* monitor level read-out MSB */ |
| 811 | #define TDA9874A_SIFLR 0x07 /* SIF level */ |
| 812 | #define TDA9874A_TR2 252 /* test reg. 2 */ |
| 813 | #define TDA9874A_TR1 253 /* test reg. 1 */ |
| 814 | #define TDA9874A_DIC 254 /* device id. code */ |
| 815 | #define TDA9874A_SIC 255 /* software id. code */ |
| 816 | |
| 817 | |
| 818 | static int tda9874a_mode = 1; /* 0: A2, 1: NICAM */ |
| 819 | static int tda9874a_GCONR = 0xc0; /* default config. input pin: SIFSEL=0 */ |
| 820 | static int tda9874a_NCONR = 0x01; /* default NICAM config.: AMSEL=0,AMUTE=1 */ |
| 821 | static int tda9874a_ESP = 0x07; /* default standard: NICAM D/K */ |
| 822 | static int tda9874a_dic = -1; /* device id. code */ |
| 823 | |
| 824 | /* insmod options for tda9874a */ |
| 825 | static unsigned int tda9874a_SIF = UNSET; |
| 826 | static unsigned int tda9874a_AMSEL = UNSET; |
| 827 | static unsigned int tda9874a_STD = UNSET; |
| 828 | module_param(tda9874a_SIF, int, 0444); |
| 829 | module_param(tda9874a_AMSEL, int, 0444); |
| 830 | module_param(tda9874a_STD, int, 0444); |
| 831 | |
| 832 | /* |
| 833 | * initialization table for tda9874 decoder: |
| 834 | * - carrier 1 freq. registers (3 bytes) |
| 835 | * - carrier 2 freq. registers (3 bytes) |
| 836 | * - demudulator config register |
| 837 | * - FM de-emphasis register (slow identification mode) |
| 838 | * Note: frequency registers must be written in single i2c transfer. |
| 839 | */ |
| 840 | static struct tda9874a_MODES { |
| 841 | char *name; |
| 842 | audiocmd cmd; |
| 843 | } tda9874a_modelist[9] = { |
Mauro Carvalho Chehab | 04e6f99 | 2008-11-13 13:10:11 -0300 | [diff] [blame] | 844 | { "A2, B/G", /* default */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x77,0xA0,0x00, 0x00,0x00 }} }, |
| 846 | { "A2, M (Korea)", |
| 847 | { 9, { TDA9874A_C1FRA, 0x5D,0xC0,0x00, 0x62,0x6A,0xAA, 0x20,0x22 }} }, |
| 848 | { "A2, D/K (1)", |
| 849 | { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x82,0x60,0x00, 0x00,0x00 }} }, |
| 850 | { "A2, D/K (2)", |
| 851 | { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x8C,0x75,0x55, 0x00,0x00 }} }, |
| 852 | { "A2, D/K (3)", |
| 853 | { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x77,0xA0,0x00, 0x00,0x00 }} }, |
| 854 | { "NICAM, I", |
| 855 | { 9, { TDA9874A_C1FRA, 0x7D,0x00,0x00, 0x88,0x8A,0xAA, 0x08,0x33 }} }, |
| 856 | { "NICAM, B/G", |
| 857 | { 9, { TDA9874A_C1FRA, 0x72,0x95,0x55, 0x79,0xEA,0xAA, 0x08,0x33 }} }, |
Mauro Carvalho Chehab | 04e6f99 | 2008-11-13 13:10:11 -0300 | [diff] [blame] | 858 | { "NICAM, D/K", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x08,0x33 }} }, |
| 860 | { "NICAM, L", |
| 861 | { 9, { TDA9874A_C1FRA, 0x87,0x6A,0xAA, 0x79,0xEA,0xAA, 0x09,0x33 }} } |
| 862 | }; |
| 863 | |
| 864 | static int tda9874a_setup(struct CHIPSTATE *chip) |
| 865 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 866 | struct v4l2_subdev *sd = &chip->sd; |
| 867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | chip_write(chip, TDA9874A_AGCGR, 0x00); /* 0 dB */ |
| 869 | chip_write(chip, TDA9874A_GCONR, tda9874a_GCONR); |
| 870 | chip_write(chip, TDA9874A_MSR, (tda9874a_mode) ? 0x03:0x02); |
| 871 | if(tda9874a_dic == 0x11) { |
| 872 | chip_write(chip, TDA9874A_FMMR, 0x80); |
| 873 | } else { /* dic == 0x07 */ |
| 874 | chip_cmd(chip,"tda9874_modelist",&tda9874a_modelist[tda9874a_STD].cmd); |
| 875 | chip_write(chip, TDA9874A_FMMR, 0x00); |
| 876 | } |
| 877 | chip_write(chip, TDA9874A_C1OLAR, 0x00); /* 0 dB */ |
| 878 | chip_write(chip, TDA9874A_C2OLAR, 0x00); /* 0 dB */ |
| 879 | chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR); |
| 880 | chip_write(chip, TDA9874A_NOLAR, 0x00); /* 0 dB */ |
| 881 | /* Note: If signal quality is poor you may want to change NICAM */ |
| 882 | /* error limit registers (NLELR and NUELR) to some greater values. */ |
| 883 | /* Then the sound would remain stereo, but won't be so clear. */ |
| 884 | chip_write(chip, TDA9874A_NLELR, 0x14); /* default */ |
| 885 | chip_write(chip, TDA9874A_NUELR, 0x50); /* default */ |
| 886 | |
| 887 | if(tda9874a_dic == 0x11) { |
| 888 | chip_write(chip, TDA9874A_AMCONR, 0xf9); |
| 889 | chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80); |
| 890 | chip_write(chip, TDA9874A_AOSR, 0x80); |
| 891 | chip_write(chip, TDA9874A_MDACOSR, (tda9874a_mode) ? 0x82:0x80); |
| 892 | chip_write(chip, TDA9874A_ESP, tda9874a_ESP); |
| 893 | } else { /* dic == 0x07 */ |
| 894 | chip_write(chip, TDA9874A_AMCONR, 0xfb); |
| 895 | chip_write(chip, TDA9874A_SDACOSR, (tda9874a_mode) ? 0x81:0x80); |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 896 | chip_write(chip, TDA9874A_AOSR, 0x00); /* or 0x10 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | } |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 898 | v4l2_dbg(1, debug, sd, "tda9874a_setup(): %s [0x%02X].\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | tda9874a_modelist[tda9874a_STD].name,tda9874a_STD); |
| 900 | return 1; |
| 901 | } |
| 902 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 903 | static int tda9874a_getrxsubchans(struct CHIPSTATE *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 905 | struct v4l2_subdev *sd = &chip->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | int dsr,nsr,mode; |
| 907 | int necr; /* just for debugging */ |
| 908 | |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 909 | mode = V4L2_TUNER_SUB_MONO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | |
| 911 | if(-1 == (dsr = chip_read2(chip,TDA9874A_DSR))) |
| 912 | return mode; |
| 913 | if(-1 == (nsr = chip_read2(chip,TDA9874A_NSR))) |
| 914 | return mode; |
| 915 | if(-1 == (necr = chip_read2(chip,TDA9874A_NECR))) |
| 916 | return mode; |
| 917 | |
| 918 | /* need to store dsr/nsr somewhere */ |
| 919 | chip->shadow.bytes[MAXREGS-2] = dsr; |
| 920 | chip->shadow.bytes[MAXREGS-1] = nsr; |
| 921 | |
| 922 | if(tda9874a_mode) { |
| 923 | /* Note: DSR.RSSF and DSR.AMSTAT bits are also checked. |
| 924 | * If NICAM auto-muting is enabled, DSR.AMSTAT=1 indicates |
| 925 | * that sound has (temporarily) switched from NICAM to |
| 926 | * mono FM (or AM) on 1st sound carrier due to high NICAM bit |
| 927 | * error count. So in fact there is no stereo in this case :-( |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 928 | * But changing the mode to V4L2_TUNER_MODE_MONO would switch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | * external 4052 multiplexer in audio_hook(). |
| 930 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | if(nsr & 0x02) /* NSR.S/MB=1 */ |
Daniel Glöckner | 1884e29 | 2012-06-09 21:43:58 -0300 | [diff] [blame] | 932 | mode = V4L2_TUNER_SUB_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | if(nsr & 0x01) /* NSR.D/SB=1 */ |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 934 | mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | } else { |
| 936 | if(dsr & 0x02) /* DSR.IDSTE=1 */ |
Daniel Glöckner | 1884e29 | 2012-06-09 21:43:58 -0300 | [diff] [blame] | 937 | mode = V4L2_TUNER_SUB_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | if(dsr & 0x04) /* DSR.IDDUA=1 */ |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 939 | mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } |
| 941 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 942 | v4l2_dbg(1, debug, sd, |
| 943 | "tda9874a_getrxsubchans(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | dsr, nsr, necr, mode); |
| 945 | return mode; |
| 946 | } |
| 947 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 948 | static void tda9874a_setaudmode(struct CHIPSTATE *chip, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 950 | struct v4l2_subdev *sd = &chip->sd; |
| 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | /* Disable/enable NICAM auto-muting (based on DSR.RSSF status bit). */ |
| 953 | /* If auto-muting is disabled, we can hear a signal of degrading quality. */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 954 | if (tda9874a_mode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | if(chip->shadow.bytes[MAXREGS-2] & 0x20) /* DSR.RSSF=1 */ |
| 956 | tda9874a_NCONR &= 0xfe; /* enable */ |
| 957 | else |
| 958 | tda9874a_NCONR |= 0x01; /* disable */ |
| 959 | chip_write(chip, TDA9874A_NCONR, tda9874a_NCONR); |
| 960 | } |
| 961 | |
| 962 | /* Note: TDA9874A supports automatic FM dematrixing (FMMR register) |
| 963 | * and has auto-select function for audio output (AOSR register). |
| 964 | * Old TDA9874H doesn't support these features. |
| 965 | * TDA9874A also has additional mono output pin (OUTM), which |
| 966 | * on same (all?) tv-cards is not used, anyway (as well as MONOIN). |
| 967 | */ |
| 968 | if(tda9874a_dic == 0x11) { |
| 969 | int aosr = 0x80; |
| 970 | int mdacosr = (tda9874a_mode) ? 0x82:0x80; |
| 971 | |
| 972 | switch(mode) { |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 973 | case V4L2_TUNER_MODE_MONO: |
| 974 | case V4L2_TUNER_MODE_STEREO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 976 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | aosr = 0x80; /* auto-select, dual A/A */ |
| 978 | mdacosr = (tda9874a_mode) ? 0x82:0x80; |
| 979 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 980 | case V4L2_TUNER_MODE_LANG2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | aosr = 0xa0; /* auto-select, dual B/B */ |
| 982 | mdacosr = (tda9874a_mode) ? 0x83:0x81; |
| 983 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 984 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 985 | aosr = 0x00; /* always route L to L and R to R */ |
| 986 | mdacosr = (tda9874a_mode) ? 0x82:0x80; |
| 987 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | return; |
| 990 | } |
| 991 | chip_write(chip, TDA9874A_AOSR, aosr); |
| 992 | chip_write(chip, TDA9874A_MDACOSR, mdacosr); |
| 993 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 994 | v4l2_dbg(1, debug, sd, |
| 995 | "tda9874a_setaudmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | mode, aosr, mdacosr); |
| 997 | |
| 998 | } else { /* dic == 0x07 */ |
| 999 | int fmmr,aosr; |
| 1000 | |
| 1001 | switch(mode) { |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1002 | case V4L2_TUNER_MODE_MONO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | fmmr = 0x00; /* mono */ |
| 1004 | aosr = 0x10; /* A/A */ |
| 1005 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1006 | case V4L2_TUNER_MODE_STEREO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | if(tda9874a_mode) { |
| 1008 | fmmr = 0x00; |
| 1009 | aosr = 0x00; /* handled by NICAM auto-mute */ |
| 1010 | } else { |
| 1011 | fmmr = (tda9874a_ESP == 1) ? 0x05 : 0x04; /* stereo */ |
| 1012 | aosr = 0x00; |
| 1013 | } |
| 1014 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1015 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | fmmr = 0x02; /* dual */ |
| 1017 | aosr = 0x10; /* dual A/A */ |
| 1018 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1019 | case V4L2_TUNER_MODE_LANG2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | fmmr = 0x02; /* dual */ |
| 1021 | aosr = 0x20; /* dual B/B */ |
| 1022 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 1023 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 1024 | fmmr = 0x02; /* dual */ |
| 1025 | aosr = 0x00; /* dual A/B */ |
| 1026 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | return; |
| 1029 | } |
| 1030 | chip_write(chip, TDA9874A_FMMR, fmmr); |
| 1031 | chip_write(chip, TDA9874A_AOSR, aosr); |
| 1032 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1033 | v4l2_dbg(1, debug, sd, |
| 1034 | "tda9874a_setaudmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | mode, fmmr, aosr); |
| 1036 | } |
| 1037 | } |
| 1038 | |
| 1039 | static int tda9874a_checkit(struct CHIPSTATE *chip) |
| 1040 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1041 | struct v4l2_subdev *sd = &chip->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | int dic,sic; /* device id. and software id. codes */ |
| 1043 | |
| 1044 | if(-1 == (dic = chip_read2(chip,TDA9874A_DIC))) |
| 1045 | return 0; |
| 1046 | if(-1 == (sic = chip_read2(chip,TDA9874A_SIC))) |
| 1047 | return 0; |
| 1048 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1049 | v4l2_dbg(1, debug, sd, "tda9874a_checkit(): DIC=0x%X, SIC=0x%X.\n", dic, sic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | |
| 1051 | if((dic == 0x11)||(dic == 0x07)) { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1052 | v4l2_info(sd, "found tda9874%s.\n", (dic == 0x11) ? "a" : "h"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | tda9874a_dic = dic; /* remember device id. */ |
| 1054 | return 1; |
| 1055 | } |
| 1056 | return 0; /* not found */ |
| 1057 | } |
| 1058 | |
| 1059 | static int tda9874a_initialize(struct CHIPSTATE *chip) |
| 1060 | { |
| 1061 | if (tda9874a_SIF > 2) |
| 1062 | tda9874a_SIF = 1; |
Mauro Carvalho Chehab | 04e6f99 | 2008-11-13 13:10:11 -0300 | [diff] [blame] | 1063 | if (tda9874a_STD >= ARRAY_SIZE(tda9874a_modelist)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | tda9874a_STD = 0; |
| 1065 | if(tda9874a_AMSEL > 1) |
| 1066 | tda9874a_AMSEL = 0; |
| 1067 | |
| 1068 | if(tda9874a_SIF == 1) |
| 1069 | tda9874a_GCONR = 0xc0; /* sound IF input 1 */ |
| 1070 | else |
| 1071 | tda9874a_GCONR = 0xc1; /* sound IF input 2 */ |
| 1072 | |
| 1073 | tda9874a_ESP = tda9874a_STD; |
| 1074 | tda9874a_mode = (tda9874a_STD < 5) ? 0 : 1; |
| 1075 | |
| 1076 | if(tda9874a_AMSEL == 0) |
| 1077 | tda9874a_NCONR = 0x01; /* auto-mute: analog mono input */ |
| 1078 | else |
| 1079 | tda9874a_NCONR = 0x05; /* auto-mute: 1st carrier FM or AM */ |
| 1080 | |
| 1081 | tda9874a_setup(chip); |
| 1082 | return 0; |
| 1083 | } |
| 1084 | |
Hans Verkuil | 411674f | 2009-03-18 14:02:36 -0300 | [diff] [blame] | 1085 | /* ---------------------------------------------------------------------- */ |
| 1086 | /* audio chip description - defines+functions for tda9875 */ |
| 1087 | /* The TDA9875 is made by Philips Semiconductor |
| 1088 | * http://www.semiconductors.philips.com |
| 1089 | * TDA9875: I2C-bus controlled DSP audio processor, FM demodulator |
| 1090 | * |
| 1091 | */ |
| 1092 | |
| 1093 | /* subaddresses for TDA9875 */ |
| 1094 | #define TDA9875_MUT 0x12 /*General mute (value --> 0b11001100*/ |
| 1095 | #define TDA9875_CFG 0x01 /* Config register (value --> 0b00000000 */ |
| 1096 | #define TDA9875_DACOS 0x13 /*DAC i/o select (ADC) 0b0000100*/ |
| 1097 | #define TDA9875_LOSR 0x16 /*Line output select regirter 0b0100 0001*/ |
| 1098 | |
| 1099 | #define TDA9875_CH1V 0x0c /*Channel 1 volume (mute)*/ |
| 1100 | #define TDA9875_CH2V 0x0d /*Channel 2 volume (mute)*/ |
| 1101 | #define TDA9875_SC1 0x14 /*SCART 1 in (mono)*/ |
| 1102 | #define TDA9875_SC2 0x15 /*SCART 2 in (mono)*/ |
| 1103 | |
| 1104 | #define TDA9875_ADCIS 0x17 /*ADC input select (mono) 0b0110 000*/ |
| 1105 | #define TDA9875_AER 0x19 /*Audio effect (AVL+Pseudo) 0b0000 0110*/ |
| 1106 | #define TDA9875_MCS 0x18 /*Main channel select (DAC) 0b0000100*/ |
| 1107 | #define TDA9875_MVL 0x1a /* Main volume gauche */ |
| 1108 | #define TDA9875_MVR 0x1b /* Main volume droite */ |
| 1109 | #define TDA9875_MBA 0x1d /* Main Basse */ |
| 1110 | #define TDA9875_MTR 0x1e /* Main treble */ |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1111 | #define TDA9875_ACS 0x1f /* Auxiliary channel select (FM) 0b0000000*/ |
| 1112 | #define TDA9875_AVL 0x20 /* Auxiliary volume gauche */ |
| 1113 | #define TDA9875_AVR 0x21 /* Auxiliary volume droite */ |
| 1114 | #define TDA9875_ABA 0x22 /* Auxiliary Basse */ |
| 1115 | #define TDA9875_ATR 0x23 /* Auxiliary treble */ |
Hans Verkuil | 411674f | 2009-03-18 14:02:36 -0300 | [diff] [blame] | 1116 | |
| 1117 | #define TDA9875_MSR 0x02 /* Monitor select register */ |
| 1118 | #define TDA9875_C1MSB 0x03 /* Carrier 1 (FM) frequency register MSB */ |
| 1119 | #define TDA9875_C1MIB 0x04 /* Carrier 1 (FM) frequency register (16-8]b */ |
| 1120 | #define TDA9875_C1LSB 0x05 /* Carrier 1 (FM) frequency register LSB */ |
| 1121 | #define TDA9875_C2MSB 0x06 /* Carrier 2 (nicam) frequency register MSB */ |
| 1122 | #define TDA9875_C2MIB 0x07 /* Carrier 2 (nicam) frequency register (16-8]b */ |
| 1123 | #define TDA9875_C2LSB 0x08 /* Carrier 2 (nicam) frequency register LSB */ |
| 1124 | #define TDA9875_DCR 0x09 /* Demodulateur configuration regirter*/ |
| 1125 | #define TDA9875_DEEM 0x0a /* FM de-emphasis regirter*/ |
| 1126 | #define TDA9875_FMAT 0x0b /* FM Matrix regirter*/ |
| 1127 | |
| 1128 | /* values */ |
| 1129 | #define TDA9875_MUTE_ON 0xff /* general mute */ |
| 1130 | #define TDA9875_MUTE_OFF 0xcc /* general no mute */ |
| 1131 | |
| 1132 | static int tda9875_initialize(struct CHIPSTATE *chip) |
| 1133 | { |
| 1134 | chip_write(chip, TDA9875_CFG, 0xd0); /*reg de config 0 (reset)*/ |
| 1135 | chip_write(chip, TDA9875_MSR, 0x03); /* Monitor 0b00000XXX*/ |
| 1136 | chip_write(chip, TDA9875_C1MSB, 0x00); /*Car1(FM) MSB XMHz*/ |
| 1137 | chip_write(chip, TDA9875_C1MIB, 0x00); /*Car1(FM) MIB XMHz*/ |
| 1138 | chip_write(chip, TDA9875_C1LSB, 0x00); /*Car1(FM) LSB XMHz*/ |
| 1139 | chip_write(chip, TDA9875_C2MSB, 0x00); /*Car2(NICAM) MSB XMHz*/ |
| 1140 | chip_write(chip, TDA9875_C2MIB, 0x00); /*Car2(NICAM) MIB XMHz*/ |
| 1141 | chip_write(chip, TDA9875_C2LSB, 0x00); /*Car2(NICAM) LSB XMHz*/ |
| 1142 | chip_write(chip, TDA9875_DCR, 0x00); /*Demod config 0x00*/ |
| 1143 | chip_write(chip, TDA9875_DEEM, 0x44); /*DE-Emph 0b0100 0100*/ |
| 1144 | chip_write(chip, TDA9875_FMAT, 0x00); /*FM Matrix reg 0x00*/ |
| 1145 | chip_write(chip, TDA9875_SC1, 0x00); /* SCART 1 (SC1)*/ |
| 1146 | chip_write(chip, TDA9875_SC2, 0x01); /* SCART 2 (sc2)*/ |
| 1147 | |
| 1148 | chip_write(chip, TDA9875_CH1V, 0x10); /* Channel volume 1 mute*/ |
| 1149 | chip_write(chip, TDA9875_CH2V, 0x10); /* Channel volume 2 mute */ |
| 1150 | chip_write(chip, TDA9875_DACOS, 0x02); /* sig DAC i/o(in:nicam)*/ |
| 1151 | chip_write(chip, TDA9875_ADCIS, 0x6f); /* sig ADC input(in:mono)*/ |
| 1152 | chip_write(chip, TDA9875_LOSR, 0x00); /* line out (in:mono)*/ |
| 1153 | chip_write(chip, TDA9875_AER, 0x00); /*06 Effect (AVL+PSEUDO) */ |
| 1154 | chip_write(chip, TDA9875_MCS, 0x44); /* Main ch select (DAC) */ |
| 1155 | chip_write(chip, TDA9875_MVL, 0x03); /* Vol Main left 10dB */ |
| 1156 | chip_write(chip, TDA9875_MVR, 0x03); /* Vol Main right 10dB*/ |
| 1157 | chip_write(chip, TDA9875_MBA, 0x00); /* Main Bass Main 0dB*/ |
| 1158 | chip_write(chip, TDA9875_MTR, 0x00); /* Main Treble Main 0dB*/ |
| 1159 | chip_write(chip, TDA9875_ACS, 0x44); /* Aux chan select (dac)*/ |
| 1160 | chip_write(chip, TDA9875_AVL, 0x00); /* Vol Aux left 0dB*/ |
| 1161 | chip_write(chip, TDA9875_AVR, 0x00); /* Vol Aux right 0dB*/ |
| 1162 | chip_write(chip, TDA9875_ABA, 0x00); /* Aux Bass Main 0dB*/ |
| 1163 | chip_write(chip, TDA9875_ATR, 0x00); /* Aux Aigus Main 0dB*/ |
| 1164 | |
| 1165 | chip_write(chip, TDA9875_MUT, 0xcc); /* General mute */ |
| 1166 | return 0; |
| 1167 | } |
| 1168 | |
| 1169 | static int tda9875_volume(int val) { return (unsigned char)(val / 602 - 84); } |
| 1170 | static int tda9875_bass(int val) { return (unsigned char)(max(-12, val / 2115 - 15)); } |
| 1171 | static int tda9875_treble(int val) { return (unsigned char)(val / 2622 - 12); } |
| 1172 | |
| 1173 | /* ----------------------------------------------------------------------- */ |
| 1174 | |
| 1175 | |
| 1176 | /* *********************** * |
| 1177 | * i2c interface functions * |
| 1178 | * *********************** */ |
| 1179 | |
| 1180 | static int tda9875_checkit(struct CHIPSTATE *chip) |
| 1181 | { |
| 1182 | struct v4l2_subdev *sd = &chip->sd; |
| 1183 | int dic, rev; |
| 1184 | |
| 1185 | dic = chip_read2(chip, 254); |
| 1186 | rev = chip_read2(chip, 255); |
| 1187 | |
| 1188 | if (dic == 0 || dic == 2) { /* tda9875 and tda9875A */ |
| 1189 | v4l2_info(sd, "found tda9875%s rev. %d.\n", |
| 1190 | dic == 0 ? "" : "A", rev); |
| 1191 | return 1; |
| 1192 | } |
| 1193 | return 0; |
| 1194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | |
| 1196 | /* ---------------------------------------------------------------------- */ |
| 1197 | /* audio chip descriptions - defines+functions for tea6420 */ |
| 1198 | |
| 1199 | #define TEA6300_VL 0x00 /* volume left */ |
| 1200 | #define TEA6300_VR 0x01 /* volume right */ |
| 1201 | #define TEA6300_BA 0x02 /* bass */ |
| 1202 | #define TEA6300_TR 0x03 /* treble */ |
| 1203 | #define TEA6300_FA 0x04 /* fader control */ |
| 1204 | #define TEA6300_S 0x05 /* switch register */ |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 1205 | /* values for those registers: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | #define TEA6300_S_SA 0x01 /* stereo A input */ |
| 1207 | #define TEA6300_S_SB 0x02 /* stereo B */ |
| 1208 | #define TEA6300_S_SC 0x04 /* stereo C */ |
| 1209 | #define TEA6300_S_GMU 0x80 /* general mute */ |
| 1210 | |
| 1211 | #define TEA6320_V 0x00 /* volume (0-5)/loudness off (6)/zero crossing mute(7) */ |
| 1212 | #define TEA6320_FFR 0x01 /* fader front right (0-5) */ |
| 1213 | #define TEA6320_FFL 0x02 /* fader front left (0-5) */ |
| 1214 | #define TEA6320_FRR 0x03 /* fader rear right (0-5) */ |
| 1215 | #define TEA6320_FRL 0x04 /* fader rear left (0-5) */ |
| 1216 | #define TEA6320_BA 0x05 /* bass (0-4) */ |
| 1217 | #define TEA6320_TR 0x06 /* treble (0-4) */ |
| 1218 | #define TEA6320_S 0x07 /* switch register */ |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 1219 | /* values for those registers: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | #define TEA6320_S_SA 0x07 /* stereo A input */ |
| 1221 | #define TEA6320_S_SB 0x06 /* stereo B */ |
| 1222 | #define TEA6320_S_SC 0x05 /* stereo C */ |
| 1223 | #define TEA6320_S_SD 0x04 /* stereo D */ |
| 1224 | #define TEA6320_S_GMU 0x80 /* general mute */ |
| 1225 | |
| 1226 | #define TEA6420_S_SA 0x00 /* stereo A input */ |
| 1227 | #define TEA6420_S_SB 0x01 /* stereo B */ |
| 1228 | #define TEA6420_S_SC 0x02 /* stereo C */ |
| 1229 | #define TEA6420_S_SD 0x03 /* stereo D */ |
| 1230 | #define TEA6420_S_SE 0x04 /* stereo E */ |
| 1231 | #define TEA6420_S_GMU 0x05 /* general mute */ |
| 1232 | |
| 1233 | static int tea6300_shift10(int val) { return val >> 10; } |
| 1234 | static int tea6300_shift12(int val) { return val >> 12; } |
| 1235 | |
| 1236 | /* Assumes 16bit input (values 0x3f to 0x0c are unique, values less than */ |
| 1237 | /* 0x0c mirror those immediately higher) */ |
| 1238 | static int tea6320_volume(int val) { return (val / (65535/(63-12)) + 12) & 0x3f; } |
| 1239 | static int tea6320_shift11(int val) { return val >> 11; } |
| 1240 | static int tea6320_initialize(struct CHIPSTATE * chip) |
| 1241 | { |
| 1242 | chip_write(chip, TEA6320_FFR, 0x3f); |
| 1243 | chip_write(chip, TEA6320_FFL, 0x3f); |
| 1244 | chip_write(chip, TEA6320_FRR, 0x3f); |
| 1245 | chip_write(chip, TEA6320_FRL, 0x3f); |
| 1246 | |
| 1247 | return 0; |
| 1248 | } |
| 1249 | |
| 1250 | |
| 1251 | /* ---------------------------------------------------------------------- */ |
| 1252 | /* audio chip descriptions - defines+functions for tda8425 */ |
| 1253 | |
| 1254 | #define TDA8425_VL 0x00 /* volume left */ |
| 1255 | #define TDA8425_VR 0x01 /* volume right */ |
| 1256 | #define TDA8425_BA 0x02 /* bass */ |
| 1257 | #define TDA8425_TR 0x03 /* treble */ |
| 1258 | #define TDA8425_S1 0x08 /* switch functions */ |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 1259 | /* values for those registers: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | #define TDA8425_S1_OFF 0xEE /* audio off (mute on) */ |
| 1261 | #define TDA8425_S1_CH1 0xCE /* audio channel 1 (mute off) - "linear stereo" mode */ |
| 1262 | #define TDA8425_S1_CH2 0xCF /* audio channel 2 (mute off) - "linear stereo" mode */ |
| 1263 | #define TDA8425_S1_MU 0x20 /* mute bit */ |
| 1264 | #define TDA8425_S1_STEREO 0x18 /* stereo bits */ |
| 1265 | #define TDA8425_S1_STEREO_SPATIAL 0x18 /* spatial stereo */ |
| 1266 | #define TDA8425_S1_STEREO_LINEAR 0x08 /* linear stereo */ |
| 1267 | #define TDA8425_S1_STEREO_PSEUDO 0x10 /* pseudo stereo */ |
| 1268 | #define TDA8425_S1_STEREO_MONO 0x00 /* forced mono */ |
| 1269 | #define TDA8425_S1_ML 0x06 /* language selector */ |
| 1270 | #define TDA8425_S1_ML_SOUND_A 0x02 /* sound a */ |
| 1271 | #define TDA8425_S1_ML_SOUND_B 0x04 /* sound b */ |
| 1272 | #define TDA8425_S1_ML_STEREO 0x06 /* stereo */ |
| 1273 | #define TDA8425_S1_IS 0x01 /* channel selector */ |
| 1274 | |
| 1275 | |
| 1276 | static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; } |
| 1277 | static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; } |
| 1278 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1279 | static void tda8425_setaudmode(struct CHIPSTATE *chip, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | { |
| 1281 | int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1; |
| 1282 | |
Daniel Glöckner | f952848 | 2012-06-09 21:43:51 -0300 | [diff] [blame] | 1283 | switch (mode) { |
| 1284 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | s1 |= TDA8425_S1_ML_SOUND_A; |
| 1286 | s1 |= TDA8425_S1_STEREO_PSEUDO; |
Daniel Glöckner | f952848 | 2012-06-09 21:43:51 -0300 | [diff] [blame] | 1287 | break; |
| 1288 | case V4L2_TUNER_MODE_LANG2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | s1 |= TDA8425_S1_ML_SOUND_B; |
| 1290 | s1 |= TDA8425_S1_STEREO_PSEUDO; |
Daniel Glöckner | f952848 | 2012-06-09 21:43:51 -0300 | [diff] [blame] | 1291 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 1292 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 1293 | s1 |= TDA8425_S1_ML_STEREO; |
| 1294 | s1 |= TDA8425_S1_STEREO_LINEAR; |
| 1295 | break; |
Daniel Glöckner | f952848 | 2012-06-09 21:43:51 -0300 | [diff] [blame] | 1296 | case V4L2_TUNER_MODE_MONO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | s1 |= TDA8425_S1_ML_STEREO; |
Daniel Glöckner | f952848 | 2012-06-09 21:43:51 -0300 | [diff] [blame] | 1298 | s1 |= TDA8425_S1_STEREO_MONO; |
| 1299 | break; |
| 1300 | case V4L2_TUNER_MODE_STEREO: |
| 1301 | s1 |= TDA8425_S1_ML_STEREO; |
| 1302 | s1 |= TDA8425_S1_STEREO_SPATIAL; |
| 1303 | break; |
| 1304 | default: |
| 1305 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | } |
| 1307 | chip_write(chip,TDA8425_S1,s1); |
| 1308 | } |
| 1309 | |
| 1310 | |
| 1311 | /* ---------------------------------------------------------------------- */ |
| 1312 | /* audio chip descriptions - defines+functions for pic16c54 (PV951) */ |
| 1313 | |
| 1314 | /* the registers of 16C54, I2C sub address. */ |
| 1315 | #define PIC16C54_REG_KEY_CODE 0x01 /* Not use. */ |
| 1316 | #define PIC16C54_REG_MISC 0x02 |
| 1317 | |
| 1318 | /* bit definition of the RESET register, I2C data. */ |
| 1319 | #define PIC16C54_MISC_RESET_REMOTE_CTL 0x01 /* bit 0, Reset to receive the key */ |
Mauro Carvalho Chehab | f2421ca | 2005-11-08 21:37:45 -0800 | [diff] [blame] | 1320 | /* code of remote controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | #define PIC16C54_MISC_MTS_MAIN 0x02 /* bit 1 */ |
| 1322 | #define PIC16C54_MISC_MTS_SAP 0x04 /* bit 2 */ |
| 1323 | #define PIC16C54_MISC_MTS_BOTH 0x08 /* bit 3 */ |
| 1324 | #define PIC16C54_MISC_SND_MUTE 0x10 /* bit 4, Mute Audio(Line-in and Tuner) */ |
| 1325 | #define PIC16C54_MISC_SND_NOTMUTE 0x20 /* bit 5 */ |
| 1326 | #define PIC16C54_MISC_SWITCH_TUNER 0x40 /* bit 6 , Switch to Line-in */ |
| 1327 | #define PIC16C54_MISC_SWITCH_LINE 0x80 /* bit 7 , Switch to Tuner */ |
| 1328 | |
| 1329 | /* ---------------------------------------------------------------------- */ |
| 1330 | /* audio chip descriptions - defines+functions for TA8874Z */ |
| 1331 | |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 1332 | /* write 1st byte */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | #define TA8874Z_LED_STE 0x80 |
| 1334 | #define TA8874Z_LED_BIL 0x40 |
| 1335 | #define TA8874Z_LED_EXT 0x20 |
| 1336 | #define TA8874Z_MONO_SET 0x10 |
| 1337 | #define TA8874Z_MUTE 0x08 |
| 1338 | #define TA8874Z_F_MONO 0x04 |
| 1339 | #define TA8874Z_MODE_SUB 0x02 |
| 1340 | #define TA8874Z_MODE_MAIN 0x01 |
| 1341 | |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 1342 | /* write 2nd byte */ |
| 1343 | /*#define TA8874Z_TI 0x80 */ /* test mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | #define TA8874Z_SEPARATION 0x3f |
| 1345 | #define TA8874Z_SEPARATION_DEFAULT 0x10 |
| 1346 | |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 1347 | /* read */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | #define TA8874Z_B1 0x80 |
| 1349 | #define TA8874Z_B0 0x40 |
| 1350 | #define TA8874Z_CHAG_FLAG 0x20 |
| 1351 | |
Mauro Carvalho Chehab | 18fc59e | 2005-09-09 13:04:05 -0700 | [diff] [blame] | 1352 | /* |
| 1353 | * B1 B0 |
| 1354 | * mono L H |
| 1355 | * stereo L L |
| 1356 | * BIL H L |
| 1357 | */ |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1358 | static int ta8874z_getrxsubchans(struct CHIPSTATE *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | { |
| 1360 | int val, mode; |
| 1361 | |
| 1362 | val = chip_read(chip); |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 1363 | mode = V4L2_TUNER_SUB_MONO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | if (val & TA8874Z_B1){ |
Daniel Glöckner | 3322a59 | 2012-06-09 21:43:55 -0300 | [diff] [blame] | 1365 | mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | }else if (!(val & TA8874Z_B0)){ |
Daniel Glöckner | 1884e29 | 2012-06-09 21:43:58 -0300 | [diff] [blame] | 1367 | mode = V4L2_TUNER_SUB_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | } |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1369 | /* v4l2_dbg(1, debug, &chip->sd, |
| 1370 | "ta8874z_getrxsubchans(): raw chip read: 0x%02x, return: 0x%02x\n", |
| 1371 | val, mode); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | return mode; |
| 1373 | } |
| 1374 | |
| 1375 | static audiocmd ta8874z_stereo = { 2, {0, TA8874Z_SEPARATION_DEFAULT}}; |
| 1376 | static audiocmd ta8874z_mono = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}}; |
| 1377 | static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}}; |
| 1378 | static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}}; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 1379 | static audiocmd ta8874z_both = {2, { TA8874Z_MODE_MAIN | TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1381 | static void ta8874z_setaudmode(struct CHIPSTATE *chip, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1383 | struct v4l2_subdev *sd = &chip->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | int update = 1; |
| 1385 | audiocmd *t = NULL; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1386 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1387 | v4l2_dbg(1, debug, sd, "ta8874z_setaudmode(): mode: 0x%02x\n", mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | |
| 1389 | switch(mode){ |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1390 | case V4L2_TUNER_MODE_MONO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | t = &ta8874z_mono; |
| 1392 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1393 | case V4L2_TUNER_MODE_STEREO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | t = &ta8874z_stereo; |
| 1395 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1396 | case V4L2_TUNER_MODE_LANG1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | t = &ta8874z_main; |
| 1398 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1399 | case V4L2_TUNER_MODE_LANG2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | t = &ta8874z_sub; |
| 1401 | break; |
Daniel Glöckner | 9e019e0 | 2012-06-09 21:43:57 -0300 | [diff] [blame] | 1402 | case V4L2_TUNER_MODE_LANG1_LANG2: |
| 1403 | t = &ta8874z_both; |
| 1404 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | default: |
| 1406 | update = 0; |
| 1407 | } |
| 1408 | |
| 1409 | if(update) |
| 1410 | chip_cmd(chip, "TA8874Z", t); |
| 1411 | } |
| 1412 | |
| 1413 | static int ta8874z_checkit(struct CHIPSTATE *chip) |
| 1414 | { |
| 1415 | int rc; |
| 1416 | rc = chip_read(chip); |
| 1417 | return ((rc & 0x1f) == 0x1f) ? 1 : 0; |
| 1418 | } |
| 1419 | |
| 1420 | /* ---------------------------------------------------------------------- */ |
| 1421 | /* audio chip descriptions - struct CHIPDESC */ |
| 1422 | |
| 1423 | /* insmod options to enable/disable individual audio chips */ |
Adrian Bunk | 52c1da3 | 2005-06-23 22:05:33 -0700 | [diff] [blame] | 1424 | static int tda8425 = 1; |
| 1425 | static int tda9840 = 1; |
| 1426 | static int tda9850 = 1; |
| 1427 | static int tda9855 = 1; |
| 1428 | static int tda9873 = 1; |
| 1429 | static int tda9874a = 1; |
Hans Verkuil | 411674f | 2009-03-18 14:02:36 -0300 | [diff] [blame] | 1430 | static int tda9875 = 1; |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 1431 | static int tea6300; /* default 0 - address clash with msp34xx */ |
| 1432 | static int tea6320; /* default 0 - address clash with msp34xx */ |
Adrian Bunk | 52c1da3 | 2005-06-23 22:05:33 -0700 | [diff] [blame] | 1433 | static int tea6420 = 1; |
| 1434 | static int pic16c54 = 1; |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 1435 | static int ta8874z; /* default 0 - address clash with tda9840 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | |
| 1437 | module_param(tda8425, int, 0444); |
| 1438 | module_param(tda9840, int, 0444); |
| 1439 | module_param(tda9850, int, 0444); |
| 1440 | module_param(tda9855, int, 0444); |
| 1441 | module_param(tda9873, int, 0444); |
| 1442 | module_param(tda9874a, int, 0444); |
Hans Verkuil | 411674f | 2009-03-18 14:02:36 -0300 | [diff] [blame] | 1443 | module_param(tda9875, int, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | module_param(tea6300, int, 0444); |
| 1445 | module_param(tea6320, int, 0444); |
| 1446 | module_param(tea6420, int, 0444); |
| 1447 | module_param(pic16c54, int, 0444); |
| 1448 | module_param(ta8874z, int, 0444); |
| 1449 | |
| 1450 | static struct CHIPDESC chiplist[] = { |
| 1451 | { |
| 1452 | .name = "tda9840", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | .insmodopt = &tda9840, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1454 | .addr_lo = I2C_ADDR_TDA9840 >> 1, |
| 1455 | .addr_hi = I2C_ADDR_TDA9840 >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | .registers = 5, |
Mauro Carvalho Chehab | dd03e97 | 2008-11-13 13:55:39 -0300 | [diff] [blame] | 1457 | .flags = CHIP_NEED_CHECKMODE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1459 | /* callbacks */ |
Hans Verkuil | 94f9e56 | 2006-01-23 09:47:40 -0200 | [diff] [blame] | 1460 | .checkit = tda9840_checkit, |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1461 | .getrxsubchans = tda9840_getrxsubchans, |
| 1462 | .setaudmode = tda9840_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1464 | .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | /* ,TDA9840_SW, TDA9840_MONO */} } |
| 1466 | }, |
| 1467 | { |
| 1468 | .name = "tda9873h", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | .insmodopt = &tda9873, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1470 | .addr_lo = I2C_ADDR_TDA985x_L >> 1, |
| 1471 | .addr_hi = I2C_ADDR_TDA985x_H >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | .registers = 3, |
Mauro Carvalho Chehab | dd03e97 | 2008-11-13 13:55:39 -0300 | [diff] [blame] | 1473 | .flags = CHIP_HAS_INPUTSEL | CHIP_NEED_CHECKMODE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1475 | /* callbacks */ |
| 1476 | .checkit = tda9873_checkit, |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1477 | .getrxsubchans = tda9873_getrxsubchans, |
| 1478 | .setaudmode = tda9873_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | |
| 1480 | .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } }, |
| 1481 | .inputreg = TDA9873_SW, |
| 1482 | .inputmute = TDA9873_MUTE | TDA9873_AUTOMUTE, |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1483 | .inputmap = {0xa0, 0xa2, 0xa0, 0xa0}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | .inputmask = TDA9873_INP_MASK|TDA9873_MUTE|TDA9873_AUTOMUTE, |
| 1485 | |
| 1486 | }, |
| 1487 | { |
| 1488 | .name = "tda9874h/a", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | .insmodopt = &tda9874a, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1490 | .addr_lo = I2C_ADDR_TDA9874 >> 1, |
| 1491 | .addr_hi = I2C_ADDR_TDA9874 >> 1, |
Mauro Carvalho Chehab | dd03e97 | 2008-11-13 13:55:39 -0300 | [diff] [blame] | 1492 | .flags = CHIP_NEED_CHECKMODE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1494 | /* callbacks */ |
| 1495 | .initialize = tda9874a_initialize, |
| 1496 | .checkit = tda9874a_checkit, |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1497 | .getrxsubchans = tda9874a_getrxsubchans, |
| 1498 | .setaudmode = tda9874a_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | }, |
| 1500 | { |
Hans Verkuil | 411674f | 2009-03-18 14:02:36 -0300 | [diff] [blame] | 1501 | .name = "tda9875", |
| 1502 | .insmodopt = &tda9875, |
| 1503 | .addr_lo = I2C_ADDR_TDA9875 >> 1, |
| 1504 | .addr_hi = I2C_ADDR_TDA9875 >> 1, |
| 1505 | .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE, |
| 1506 | |
| 1507 | /* callbacks */ |
| 1508 | .initialize = tda9875_initialize, |
| 1509 | .checkit = tda9875_checkit, |
| 1510 | .volfunc = tda9875_volume, |
| 1511 | .bassfunc = tda9875_bass, |
| 1512 | .treblefunc = tda9875_treble, |
| 1513 | .leftreg = TDA9875_MVL, |
| 1514 | .rightreg = TDA9875_MVR, |
| 1515 | .bassreg = TDA9875_MBA, |
| 1516 | .treblereg = TDA9875_MTR, |
| 1517 | .leftinit = 58880, |
| 1518 | .rightinit = 58880, |
| 1519 | }, |
| 1520 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | .name = "tda9850", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | .insmodopt = &tda9850, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1523 | .addr_lo = I2C_ADDR_TDA985x_L >> 1, |
| 1524 | .addr_hi = I2C_ADDR_TDA985x_H >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | .registers = 11, |
| 1526 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1527 | .getrxsubchans = tda985x_getrxsubchans, |
| 1528 | .setaudmode = tda985x_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | |
| 1530 | .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } } |
| 1531 | }, |
| 1532 | { |
| 1533 | .name = "tda9855", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | .insmodopt = &tda9855, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1535 | .addr_lo = I2C_ADDR_TDA985x_L >> 1, |
| 1536 | .addr_hi = I2C_ADDR_TDA985x_H >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | .registers = 11, |
| 1538 | .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE, |
| 1539 | |
| 1540 | .leftreg = TDA9855_VL, |
| 1541 | .rightreg = TDA9855_VR, |
| 1542 | .bassreg = TDA9855_BA, |
| 1543 | .treblereg = TDA9855_TR, |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1544 | |
| 1545 | /* callbacks */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | .volfunc = tda9855_volume, |
| 1547 | .bassfunc = tda9855_bass, |
| 1548 | .treblefunc = tda9855_treble, |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1549 | .getrxsubchans = tda985x_getrxsubchans, |
| 1550 | .setaudmode = tda985x_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | |
| 1552 | .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2, |
| 1553 | TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT, |
| 1554 | TDA985x_STEREO | TDA9855_LINEAR | TDA9855_TZCM | TDA9855_VZCM, |
| 1555 | 0x07, 0x10, 0x10, 0x03 }} |
| 1556 | }, |
| 1557 | { |
| 1558 | .name = "tea6300", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | .insmodopt = &tea6300, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1560 | .addr_lo = I2C_ADDR_TEA6300 >> 1, |
| 1561 | .addr_hi = I2C_ADDR_TEA6300 >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | .registers = 6, |
| 1563 | .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL, |
| 1564 | |
| 1565 | .leftreg = TEA6300_VR, |
| 1566 | .rightreg = TEA6300_VL, |
| 1567 | .bassreg = TEA6300_BA, |
| 1568 | .treblereg = TEA6300_TR, |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1569 | |
| 1570 | /* callbacks */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | .volfunc = tea6300_shift10, |
| 1572 | .bassfunc = tea6300_shift12, |
| 1573 | .treblefunc = tea6300_shift12, |
| 1574 | |
| 1575 | .inputreg = TEA6300_S, |
| 1576 | .inputmap = { TEA6300_S_SA, TEA6300_S_SB, TEA6300_S_SC }, |
| 1577 | .inputmute = TEA6300_S_GMU, |
| 1578 | }, |
| 1579 | { |
| 1580 | .name = "tea6320", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | .insmodopt = &tea6320, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1582 | .addr_lo = I2C_ADDR_TEA6300 >> 1, |
| 1583 | .addr_hi = I2C_ADDR_TEA6300 >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | .registers = 8, |
| 1585 | .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL, |
| 1586 | |
| 1587 | .leftreg = TEA6320_V, |
| 1588 | .rightreg = TEA6320_V, |
| 1589 | .bassreg = TEA6320_BA, |
| 1590 | .treblereg = TEA6320_TR, |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1591 | |
| 1592 | /* callbacks */ |
| 1593 | .initialize = tea6320_initialize, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | .volfunc = tea6320_volume, |
| 1595 | .bassfunc = tea6320_shift11, |
| 1596 | .treblefunc = tea6320_shift11, |
| 1597 | |
| 1598 | .inputreg = TEA6320_S, |
| 1599 | .inputmap = { TEA6320_S_SA, TEA6420_S_SB, TEA6300_S_SC, TEA6320_S_SD }, |
| 1600 | .inputmute = TEA6300_S_GMU, |
| 1601 | }, |
| 1602 | { |
| 1603 | .name = "tea6420", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | .insmodopt = &tea6420, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1605 | .addr_lo = I2C_ADDR_TEA6420 >> 1, |
| 1606 | .addr_hi = I2C_ADDR_TEA6420 >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | .registers = 1, |
| 1608 | .flags = CHIP_HAS_INPUTSEL, |
| 1609 | |
| 1610 | .inputreg = -1, |
| 1611 | .inputmap = { TEA6420_S_SA, TEA6420_S_SB, TEA6420_S_SC }, |
| 1612 | .inputmute = TEA6300_S_GMU, |
| 1613 | }, |
| 1614 | { |
| 1615 | .name = "tda8425", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | .insmodopt = &tda8425, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1617 | .addr_lo = I2C_ADDR_TDA8425 >> 1, |
| 1618 | .addr_hi = I2C_ADDR_TDA8425 >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | .registers = 9, |
| 1620 | .flags = CHIP_HAS_VOLUME | CHIP_HAS_BASSTREBLE | CHIP_HAS_INPUTSEL, |
| 1621 | |
| 1622 | .leftreg = TDA8425_VL, |
| 1623 | .rightreg = TDA8425_VR, |
| 1624 | .bassreg = TDA8425_BA, |
| 1625 | .treblereg = TDA8425_TR, |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1626 | |
| 1627 | /* callbacks */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | .volfunc = tda8425_shift10, |
| 1629 | .bassfunc = tda8425_shift12, |
| 1630 | .treblefunc = tda8425_shift12, |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1631 | .setaudmode = tda8425_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
| 1633 | .inputreg = TDA8425_S1, |
| 1634 | .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 }, |
| 1635 | .inputmute = TDA8425_S1_OFF, |
| 1636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | }, |
| 1638 | { |
| 1639 | .name = "pic16c54 (PV951)", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | .insmodopt = &pic16c54, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1641 | .addr_lo = I2C_ADDR_PIC16C54 >> 1, |
| 1642 | .addr_hi = I2C_ADDR_PIC16C54>> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | .registers = 2, |
| 1644 | .flags = CHIP_HAS_INPUTSEL, |
| 1645 | |
| 1646 | .inputreg = PIC16C54_REG_MISC, |
| 1647 | .inputmap = {PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_TUNER, |
| 1648 | PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE, |
| 1649 | PIC16C54_MISC_SND_NOTMUTE|PIC16C54_MISC_SWITCH_LINE, |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1650 | PIC16C54_MISC_SND_MUTE}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | .inputmute = PIC16C54_MISC_SND_MUTE, |
| 1652 | }, |
| 1653 | { |
| 1654 | .name = "ta8874z", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | .checkit = ta8874z_checkit, |
| 1656 | .insmodopt = &ta8874z, |
Mauro Carvalho Chehab | 09df1c1 | 2006-03-18 08:31:34 -0300 | [diff] [blame] | 1657 | .addr_lo = I2C_ADDR_TDA9840 >> 1, |
| 1658 | .addr_hi = I2C_ADDR_TDA9840 >> 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | .registers = 2, |
| 1660 | |
Mauro Carvalho Chehab | af1a995 | 2008-11-13 13:14:15 -0300 | [diff] [blame] | 1661 | /* callbacks */ |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1662 | .getrxsubchans = ta8874z_getrxsubchans, |
| 1663 | .setaudmode = ta8874z_setaudmode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | |
Mauro Carvalho Chehab | 4ac9791 | 2005-11-08 21:37:43 -0800 | [diff] [blame] | 1665 | .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | }, |
| 1667 | { .name = NULL } /* EOF */ |
| 1668 | }; |
| 1669 | |
| 1670 | |
| 1671 | /* ---------------------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1673 | static int tvaudio_g_ctrl(struct v4l2_subdev *sd, |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1674 | struct v4l2_control *ctrl) |
| 1675 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1676 | struct CHIPSTATE *chip = to_state(sd); |
Mauro Carvalho Chehab | 81cb5c4 | 2008-11-13 16:22:53 -0300 | [diff] [blame] | 1677 | struct CHIPDESC *desc = chip->desc; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1678 | |
| 1679 | switch (ctrl->id) { |
| 1680 | case V4L2_CID_AUDIO_MUTE: |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1681 | if (!(desc->flags & CHIP_HAS_INPUTSEL)) |
| 1682 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1683 | ctrl->value=chip->muted; |
| 1684 | return 0; |
| 1685 | case V4L2_CID_AUDIO_VOLUME: |
Roel Kluin | 18c0ecf | 2008-02-02 20:20:58 -0300 | [diff] [blame] | 1686 | if (!(desc->flags & CHIP_HAS_VOLUME)) |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1687 | break; |
| 1688 | ctrl->value = max(chip->left,chip->right); |
| 1689 | return 0; |
| 1690 | case V4L2_CID_AUDIO_BALANCE: |
| 1691 | { |
| 1692 | int volume; |
Roel Kluin | 18c0ecf | 2008-02-02 20:20:58 -0300 | [diff] [blame] | 1693 | if (!(desc->flags & CHIP_HAS_VOLUME)) |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1694 | break; |
| 1695 | volume = max(chip->left,chip->right); |
| 1696 | if (volume) |
| 1697 | ctrl->value=(32768*min(chip->left,chip->right))/volume; |
| 1698 | else |
| 1699 | ctrl->value=32768; |
| 1700 | return 0; |
| 1701 | } |
| 1702 | case V4L2_CID_AUDIO_BASS: |
Mauro Carvalho Chehab | 01a1a3c | 2008-11-14 10:46:59 -0300 | [diff] [blame] | 1703 | if (!(desc->flags & CHIP_HAS_BASSTREBLE)) |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1704 | break; |
| 1705 | ctrl->value = chip->bass; |
| 1706 | return 0; |
| 1707 | case V4L2_CID_AUDIO_TREBLE: |
Mauro Carvalho Chehab | 01a1a3c | 2008-11-14 10:46:59 -0300 | [diff] [blame] | 1708 | if (!(desc->flags & CHIP_HAS_BASSTREBLE)) |
| 1709 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1710 | ctrl->value = chip->treble; |
| 1711 | return 0; |
| 1712 | } |
| 1713 | return -EINVAL; |
| 1714 | } |
| 1715 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1716 | static int tvaudio_s_ctrl(struct v4l2_subdev *sd, |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1717 | struct v4l2_control *ctrl) |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1718 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1719 | struct CHIPSTATE *chip = to_state(sd); |
Mauro Carvalho Chehab | 81cb5c4 | 2008-11-13 16:22:53 -0300 | [diff] [blame] | 1720 | struct CHIPDESC *desc = chip->desc; |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1721 | |
| 1722 | switch (ctrl->id) { |
| 1723 | case V4L2_CID_AUDIO_MUTE: |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1724 | if (!(desc->flags & CHIP_HAS_INPUTSEL)) |
| 1725 | break; |
| 1726 | |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1727 | if (ctrl->value < 0 || ctrl->value >= 2) |
| 1728 | return -ERANGE; |
| 1729 | chip->muted = ctrl->value; |
| 1730 | if (chip->muted) |
| 1731 | chip_write_masked(chip,desc->inputreg,desc->inputmute,desc->inputmask); |
| 1732 | else |
| 1733 | chip_write_masked(chip,desc->inputreg, |
| 1734 | desc->inputmap[chip->input],desc->inputmask); |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1735 | return 0; |
| 1736 | case V4L2_CID_AUDIO_VOLUME: |
| 1737 | { |
| 1738 | int volume,balance; |
| 1739 | |
Roel Kluin | 18c0ecf | 2008-02-02 20:20:58 -0300 | [diff] [blame] | 1740 | if (!(desc->flags & CHIP_HAS_VOLUME)) |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1741 | break; |
| 1742 | |
| 1743 | volume = max(chip->left,chip->right); |
| 1744 | if (volume) |
| 1745 | balance=(32768*min(chip->left,chip->right))/volume; |
| 1746 | else |
| 1747 | balance=32768; |
| 1748 | |
| 1749 | volume=ctrl->value; |
| 1750 | chip->left = (min(65536 - balance,32768) * volume) / 32768; |
| 1751 | chip->right = (min(balance,volume *(__u16)32768)) / 32768; |
| 1752 | |
| 1753 | chip_write(chip,desc->leftreg,desc->volfunc(chip->left)); |
| 1754 | chip_write(chip,desc->rightreg,desc->volfunc(chip->right)); |
| 1755 | |
| 1756 | return 0; |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1757 | } |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1758 | case V4L2_CID_AUDIO_BALANCE: |
| 1759 | { |
| 1760 | int volume, balance; |
Hans Verkuil | 88af830 | 2011-08-25 10:24:16 -0300 | [diff] [blame] | 1761 | |
Roel Kluin | 18c0ecf | 2008-02-02 20:20:58 -0300 | [diff] [blame] | 1762 | if (!(desc->flags & CHIP_HAS_VOLUME)) |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1763 | break; |
| 1764 | |
Hans Verkuil | 88af830 | 2011-08-25 10:24:16 -0300 | [diff] [blame] | 1765 | volume = max(chip->left, chip->right); |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1766 | balance = ctrl->value; |
Hans Verkuil | 88af830 | 2011-08-25 10:24:16 -0300 | [diff] [blame] | 1767 | chip->left = (min(65536 - balance, 32768) * volume) / 32768; |
| 1768 | chip->right = (min(balance, volume * (__u16)32768)) / 32768; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1769 | |
Hans Verkuil | 88af830 | 2011-08-25 10:24:16 -0300 | [diff] [blame] | 1770 | chip_write(chip, desc->leftreg, desc->volfunc(chip->left)); |
| 1771 | chip_write(chip, desc->rightreg, desc->volfunc(chip->right)); |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1772 | |
| 1773 | return 0; |
| 1774 | } |
| 1775 | case V4L2_CID_AUDIO_BASS: |
Mauro Carvalho Chehab | 01a1a3c | 2008-11-14 10:46:59 -0300 | [diff] [blame] | 1776 | if (!(desc->flags & CHIP_HAS_BASSTREBLE)) |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1777 | break; |
| 1778 | chip->bass = ctrl->value; |
| 1779 | chip_write(chip,desc->bassreg,desc->bassfunc(chip->bass)); |
| 1780 | |
| 1781 | return 0; |
| 1782 | case V4L2_CID_AUDIO_TREBLE: |
Mauro Carvalho Chehab | 01a1a3c | 2008-11-14 10:46:59 -0300 | [diff] [blame] | 1783 | if (!(desc->flags & CHIP_HAS_BASSTREBLE)) |
| 1784 | break; |
Mauro Carvalho Chehab | dc3d75d | 2006-08-25 16:53:08 -0300 | [diff] [blame] | 1785 | chip->treble = ctrl->value; |
| 1786 | chip_write(chip,desc->treblereg,desc->treblefunc(chip->treble)); |
| 1787 | |
| 1788 | return 0; |
| 1789 | } |
| 1790 | return -EINVAL; |
Hans Verkuil | 8bf2f8e | 2006-03-18 21:31:00 -0300 | [diff] [blame] | 1791 | } |
| 1792 | |
| 1793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | /* ---------------------------------------------------------------------- */ |
| 1795 | /* video4linux interface */ |
| 1796 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1797 | static int tvaudio_s_radio(struct v4l2_subdev *sd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1799 | struct CHIPSTATE *chip = to_state(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1801 | chip->radio = 1; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1802 | /* del_timer(&chip->wt); */ |
| 1803 | return 0; |
| 1804 | } |
| 1805 | |
| 1806 | static int tvaudio_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc) |
| 1807 | { |
| 1808 | struct CHIPSTATE *chip = to_state(sd); |
| 1809 | struct CHIPDESC *desc = chip->desc; |
| 1810 | |
| 1811 | switch (qc->id) { |
| 1812 | case V4L2_CID_AUDIO_MUTE: |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1813 | if (desc->flags & CHIP_HAS_INPUTSEL) |
| 1814 | return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0); |
| 1815 | break; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1816 | case V4L2_CID_AUDIO_VOLUME: |
Hans Verkuil | 10afbef | 2009-02-21 18:47:24 -0300 | [diff] [blame] | 1817 | if (desc->flags & CHIP_HAS_VOLUME) |
| 1818 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 58880); |
| 1819 | break; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1820 | case V4L2_CID_AUDIO_BALANCE: |
Hans Verkuil | 10afbef | 2009-02-21 18:47:24 -0300 | [diff] [blame] | 1821 | if (desc->flags & CHIP_HAS_VOLUME) |
| 1822 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768); |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1823 | break; |
| 1824 | case V4L2_CID_AUDIO_BASS: |
| 1825 | case V4L2_CID_AUDIO_TREBLE: |
Hans Verkuil | 10afbef | 2009-02-21 18:47:24 -0300 | [diff] [blame] | 1826 | if (desc->flags & CHIP_HAS_BASSTREBLE) |
| 1827 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768); |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1828 | break; |
| 1829 | default: |
Hans Verkuil | 10afbef | 2009-02-21 18:47:24 -0300 | [diff] [blame] | 1830 | break; |
Mauro Carvalho Chehab | c6241b6 | 2008-11-13 18:12:43 -0300 | [diff] [blame] | 1831 | } |
Hans Verkuil | 10afbef | 2009-02-21 18:47:24 -0300 | [diff] [blame] | 1832 | return -EINVAL; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1833 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 1835 | static int tvaudio_s_routing(struct v4l2_subdev *sd, |
| 1836 | u32 input, u32 output, u32 config) |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1837 | { |
| 1838 | struct CHIPSTATE *chip = to_state(sd); |
| 1839 | struct CHIPDESC *desc = chip->desc; |
| 1840 | |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1841 | if (!(desc->flags & CHIP_HAS_INPUTSEL)) |
| 1842 | return 0; |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 1843 | if (input >= 4) |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1844 | return -EINVAL; |
| 1845 | /* There are four inputs: tuner, radio, extern and intern. */ |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 1846 | chip->input = input; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1847 | if (chip->muted) |
| 1848 | return 0; |
| 1849 | chip_write_masked(chip, desc->inputreg, |
| 1850 | desc->inputmap[chip->input], desc->inputmask); |
| 1851 | return 0; |
| 1852 | } |
| 1853 | |
| 1854 | static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt) |
| 1855 | { |
| 1856 | struct CHIPSTATE *chip = to_state(sd); |
| 1857 | struct CHIPDESC *desc = chip->desc; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1858 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1859 | if (!desc->setaudmode) |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1860 | return 0; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1861 | if (chip->radio) |
| 1862 | return 0; |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1863 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1864 | switch (vt->audmode) { |
| 1865 | case V4L2_TUNER_MODE_MONO: |
| 1866 | case V4L2_TUNER_MODE_STEREO: |
| 1867 | case V4L2_TUNER_MODE_LANG1: |
| 1868 | case V4L2_TUNER_MODE_LANG2: |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1869 | case V4L2_TUNER_MODE_LANG1_LANG2: |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1870 | break; |
| 1871 | default: |
| 1872 | return -EINVAL; |
| 1873 | } |
| 1874 | chip->audmode = vt->audmode; |
| 1875 | |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 1876 | if (chip->thread) |
| 1877 | wake_up_process(chip->thread); |
| 1878 | else |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1879 | desc->setaudmode(chip, vt->audmode); |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 1880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | return 0; |
| 1882 | } |
| 1883 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1884 | static int tvaudio_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt) |
| 1885 | { |
| 1886 | struct CHIPSTATE *chip = to_state(sd); |
| 1887 | struct CHIPDESC *desc = chip->desc; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1888 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1889 | if (!desc->getrxsubchans) |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1890 | return 0; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1891 | if (chip->radio) |
| 1892 | return 0; |
Hans Verkuil | 5fa7b9f | 2009-03-18 13:59:34 -0300 | [diff] [blame] | 1893 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1894 | vt->audmode = chip->audmode; |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1895 | vt->rxsubchans = desc->getrxsubchans(chip); |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1896 | vt->capability = V4L2_TUNER_CAP_STEREO | |
| 1897 | V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2; |
| 1898 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1899 | return 0; |
| 1900 | } |
| 1901 | |
| 1902 | static int tvaudio_s_std(struct v4l2_subdev *sd, v4l2_std_id std) |
| 1903 | { |
| 1904 | struct CHIPSTATE *chip = to_state(sd); |
| 1905 | |
| 1906 | chip->radio = 0; |
| 1907 | return 0; |
| 1908 | } |
| 1909 | |
| 1910 | static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *freq) |
| 1911 | { |
| 1912 | struct CHIPSTATE *chip = to_state(sd); |
| 1913 | struct CHIPDESC *desc = chip->desc; |
| 1914 | |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1915 | /* For chips that provide getrxsubchans and setaudmode, and doesn't |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1916 | automatically follows the stereo carrier, a kthread is |
| 1917 | created to set the audio standard. In this case, when then |
| 1918 | the video channel is changed, tvaudio starts on MONO mode. |
| 1919 | After waiting for 2 seconds, the kernel thread is called, |
| 1920 | to follow whatever audio standard is pointed by the |
| 1921 | audio carrier. |
| 1922 | */ |
| 1923 | if (chip->thread) { |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 1924 | desc->setaudmode(chip, V4L2_TUNER_MODE_MONO); |
Daniel Glöckner | e21adca | 2012-06-09 21:43:56 -0300 | [diff] [blame] | 1925 | chip->prevmode = -1; /* reset previous mode */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1926 | mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000)); |
| 1927 | } |
| 1928 | return 0; |
| 1929 | } |
| 1930 | |
Hans Verkuil | aecde8b5 | 2008-12-30 07:14:19 -0300 | [diff] [blame] | 1931 | static int tvaudio_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip) |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1932 | { |
| 1933 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 1934 | |
| 1935 | return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVAUDIO, 0); |
| 1936 | } |
| 1937 | |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1938 | /* ----------------------------------------------------------------------- */ |
| 1939 | |
| 1940 | static const struct v4l2_subdev_core_ops tvaudio_core_ops = { |
| 1941 | .g_chip_ident = tvaudio_g_chip_ident, |
| 1942 | .queryctrl = tvaudio_queryctrl, |
| 1943 | .g_ctrl = tvaudio_g_ctrl, |
| 1944 | .s_ctrl = tvaudio_s_ctrl, |
Hans Verkuil | f41737e | 2009-04-01 03:52:39 -0300 | [diff] [blame] | 1945 | .s_std = tvaudio_s_std, |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1946 | }; |
| 1947 | |
| 1948 | static const struct v4l2_subdev_tuner_ops tvaudio_tuner_ops = { |
| 1949 | .s_radio = tvaudio_s_radio, |
| 1950 | .s_frequency = tvaudio_s_frequency, |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1951 | .s_tuner = tvaudio_s_tuner, |
Julia Lawall | e6a1a08 | 2009-09-19 16:48:17 -0300 | [diff] [blame] | 1952 | .g_tuner = tvaudio_g_tuner, |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 1953 | }; |
| 1954 | |
| 1955 | static const struct v4l2_subdev_audio_ops tvaudio_audio_ops = { |
| 1956 | .s_routing = tvaudio_s_routing, |
| 1957 | }; |
| 1958 | |
| 1959 | static const struct v4l2_subdev_ops tvaudio_ops = { |
| 1960 | .core = &tvaudio_core_ops, |
| 1961 | .tuner = &tvaudio_tuner_ops, |
| 1962 | .audio = &tvaudio_audio_ops, |
| 1963 | }; |
| 1964 | |
| 1965 | /* ----------------------------------------------------------------------- */ |
| 1966 | |
| 1967 | |
| 1968 | /* i2c registration */ |
| 1969 | |
| 1970 | static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id *id) |
| 1971 | { |
| 1972 | struct CHIPSTATE *chip; |
| 1973 | struct CHIPDESC *desc; |
| 1974 | struct v4l2_subdev *sd; |
| 1975 | |
| 1976 | if (debug) { |
| 1977 | printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n"); |
| 1978 | printk(KERN_INFO "tvaudio: known chips: "); |
| 1979 | for (desc = chiplist; desc->name != NULL; desc++) |
| 1980 | printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name); |
| 1981 | printk("\n"); |
| 1982 | } |
| 1983 | |
| 1984 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
| 1985 | if (!chip) |
| 1986 | return -ENOMEM; |
| 1987 | sd = &chip->sd; |
| 1988 | v4l2_i2c_subdev_init(sd, client, &tvaudio_ops); |
| 1989 | |
| 1990 | /* find description for the chip */ |
| 1991 | v4l2_dbg(1, debug, sd, "chip found @ 0x%x\n", client->addr<<1); |
| 1992 | for (desc = chiplist; desc->name != NULL; desc++) { |
| 1993 | if (0 == *(desc->insmodopt)) |
| 1994 | continue; |
| 1995 | if (client->addr < desc->addr_lo || |
| 1996 | client->addr > desc->addr_hi) |
| 1997 | continue; |
| 1998 | if (desc->checkit && !desc->checkit(chip)) |
| 1999 | continue; |
| 2000 | break; |
| 2001 | } |
| 2002 | if (desc->name == NULL) { |
| 2003 | v4l2_dbg(1, debug, sd, "no matching chip description found\n"); |
| 2004 | kfree(chip); |
| 2005 | return -EIO; |
| 2006 | } |
| 2007 | v4l2_info(sd, "%s found @ 0x%x (%s)\n", desc->name, client->addr<<1, client->adapter->name); |
| 2008 | if (desc->flags) { |
| 2009 | v4l2_dbg(1, debug, sd, "matches:%s%s%s.\n", |
| 2010 | (desc->flags & CHIP_HAS_VOLUME) ? " volume" : "", |
| 2011 | (desc->flags & CHIP_HAS_BASSTREBLE) ? " bass/treble" : "", |
| 2012 | (desc->flags & CHIP_HAS_INPUTSEL) ? " audiomux" : ""); |
| 2013 | } |
| 2014 | |
| 2015 | /* fill required data structures */ |
| 2016 | if (!id) |
| 2017 | strlcpy(client->name, desc->name, I2C_NAME_SIZE); |
| 2018 | chip->desc = desc; |
| 2019 | chip->shadow.count = desc->registers+1; |
| 2020 | chip->prevmode = -1; |
| 2021 | chip->audmode = V4L2_TUNER_MODE_LANG1; |
| 2022 | |
| 2023 | /* initialization */ |
| 2024 | if (desc->initialize != NULL) |
| 2025 | desc->initialize(chip); |
| 2026 | else |
| 2027 | chip_cmd(chip, "init", &desc->init); |
| 2028 | |
| 2029 | if (desc->flags & CHIP_HAS_VOLUME) { |
| 2030 | if (!desc->volfunc) { |
| 2031 | /* This shouldn't be happen. Warn user, but keep working |
| 2032 | without volume controls |
| 2033 | */ |
| 2034 | v4l2_info(sd, "volume callback undefined!\n"); |
| 2035 | desc->flags &= ~CHIP_HAS_VOLUME; |
| 2036 | } else { |
| 2037 | chip->left = desc->leftinit ? desc->leftinit : 65535; |
| 2038 | chip->right = desc->rightinit ? desc->rightinit : 65535; |
| 2039 | chip_write(chip, desc->leftreg, |
| 2040 | desc->volfunc(chip->left)); |
| 2041 | chip_write(chip, desc->rightreg, |
| 2042 | desc->volfunc(chip->right)); |
| 2043 | } |
| 2044 | } |
| 2045 | if (desc->flags & CHIP_HAS_BASSTREBLE) { |
| 2046 | if (!desc->bassfunc || !desc->treblefunc) { |
| 2047 | /* This shouldn't be happen. Warn user, but keep working |
| 2048 | without bass/treble controls |
| 2049 | */ |
| 2050 | v4l2_info(sd, "bass/treble callbacks undefined!\n"); |
| 2051 | desc->flags &= ~CHIP_HAS_BASSTREBLE; |
| 2052 | } else { |
| 2053 | chip->treble = desc->trebleinit ? |
| 2054 | desc->trebleinit : 32768; |
| 2055 | chip->bass = desc->bassinit ? |
| 2056 | desc->bassinit : 32768; |
| 2057 | chip_write(chip, desc->bassreg, |
| 2058 | desc->bassfunc(chip->bass)); |
| 2059 | chip_write(chip, desc->treblereg, |
| 2060 | desc->treblefunc(chip->treble)); |
| 2061 | } |
| 2062 | } |
| 2063 | |
| 2064 | chip->thread = NULL; |
Hans Verkuil | e4129a9 | 2009-03-19 16:53:32 -0300 | [diff] [blame] | 2065 | init_timer(&chip->wt); |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 2066 | if (desc->flags & CHIP_NEED_CHECKMODE) { |
Daniel Glöckner | 7bcfdf0 | 2012-06-17 07:53:42 -0300 | [diff] [blame] | 2067 | if (!desc->getrxsubchans || !desc->setaudmode) { |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 2068 | /* This shouldn't be happen. Warn user, but keep working |
| 2069 | without kthread |
| 2070 | */ |
| 2071 | v4l2_info(sd, "set/get mode callbacks undefined!\n"); |
| 2072 | return 0; |
| 2073 | } |
| 2074 | /* start async thread */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 2075 | chip->wt.function = chip_thread_wake; |
| 2076 | chip->wt.data = (unsigned long)chip; |
| 2077 | chip->thread = kthread_run(chip_thread, chip, client->name); |
| 2078 | if (IS_ERR(chip->thread)) { |
| 2079 | v4l2_warn(sd, "failed to create kthread\n"); |
| 2080 | chip->thread = NULL; |
| 2081 | } |
| 2082 | } |
| 2083 | return 0; |
| 2084 | } |
| 2085 | |
| 2086 | static int tvaudio_remove(struct i2c_client *client) |
| 2087 | { |
| 2088 | struct v4l2_subdev *sd = i2c_get_clientdata(client); |
| 2089 | struct CHIPSTATE *chip = to_state(sd); |
| 2090 | |
| 2091 | del_timer_sync(&chip->wt); |
| 2092 | if (chip->thread) { |
| 2093 | /* shutdown async thread */ |
| 2094 | kthread_stop(chip->thread); |
| 2095 | chip->thread = NULL; |
| 2096 | } |
| 2097 | |
| 2098 | v4l2_device_unregister_subdev(sd); |
| 2099 | kfree(chip); |
| 2100 | return 0; |
| 2101 | } |
| 2102 | |
Jean Delvare | ae42908 | 2008-05-11 20:37:06 +0200 | [diff] [blame] | 2103 | /* This driver supports many devices and the idea is to let the driver |
| 2104 | detect which device is present. So rather than listing all supported |
| 2105 | devices here, we pretend to support a single, fake device type. */ |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 2106 | static const struct i2c_device_id tvaudio_id[] = { |
Jean Delvare | ae42908 | 2008-05-11 20:37:06 +0200 | [diff] [blame] | 2107 | { "tvaudio", 0 }, |
| 2108 | { } |
| 2109 | }; |
Hans Verkuil | 64f70e7 | 2008-12-18 12:11:32 -0300 | [diff] [blame] | 2110 | MODULE_DEVICE_TABLE(i2c, tvaudio_id); |
Jean Delvare | ae42908 | 2008-05-11 20:37:06 +0200 | [diff] [blame] | 2111 | |
Hans Verkuil | 7a004d1 | 2010-09-15 15:26:38 -0300 | [diff] [blame] | 2112 | static struct i2c_driver tvaudio_driver = { |
| 2113 | .driver = { |
| 2114 | .owner = THIS_MODULE, |
| 2115 | .name = "tvaudio", |
| 2116 | }, |
| 2117 | .probe = tvaudio_probe, |
| 2118 | .remove = tvaudio_remove, |
| 2119 | .id_table = tvaudio_id, |
Hans Verkuil | 08e1405 | 2007-09-14 04:50:44 -0300 | [diff] [blame] | 2120 | }; |
Hans Verkuil | 7a004d1 | 2010-09-15 15:26:38 -0300 | [diff] [blame] | 2121 | |
Axel Lin | c6e8d86 | 2012-02-12 06:56:32 -0300 | [diff] [blame] | 2122 | module_i2c_driver(tvaudio_driver); |