Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * programming the msp34* sound processor family |
| 3 | * |
| 4 | * (c) 1997-2001 Gerd Knorr <kraxel@bytesex.org> |
| 5 | * |
| 6 | * what works and what doesn't: |
| 7 | * |
| 8 | * AM-Mono |
| 9 | * Support for Hauppauge cards added (decoding handled by tuner) added by |
| 10 | * Frederic Crozat <fcrozat@mail.dotcom.fr> |
| 11 | * |
| 12 | * FM-Mono |
| 13 | * should work. The stereo modes are backward compatible to FM-mono, |
| 14 | * therefore FM-Mono should be allways available. |
| 15 | * |
| 16 | * FM-Stereo (B/G, used in germany) |
| 17 | * should work, with autodetect |
| 18 | * |
| 19 | * FM-Stereo (satellite) |
| 20 | * should work, no autodetect (i.e. default is mono, but you can |
| 21 | * switch to stereo -- untested) |
| 22 | * |
| 23 | * NICAM (B/G, L , used in UK, Scandinavia, Spain and France) |
| 24 | * should work, with autodetect. Support for NICAM was added by |
| 25 | * Pekka Pietikainen <pp@netppl.fi> |
| 26 | * |
| 27 | * |
| 28 | * TODO: |
| 29 | * - better SAT support |
| 30 | * |
| 31 | * |
| 32 | * 980623 Thomas Sailer (sailer@ife.ee.ethz.ch) |
| 33 | * using soundcore instead of OSS |
| 34 | * |
| 35 | */ |
| 36 | |
| 37 | #include <linux/config.h> |
| 38 | #include <linux/module.h> |
| 39 | #include <linux/moduleparam.h> |
| 40 | #include <linux/kernel.h> |
| 41 | #include <linux/sched.h> |
| 42 | #include <linux/string.h> |
| 43 | #include <linux/timer.h> |
| 44 | #include <linux/delay.h> |
| 45 | #include <linux/errno.h> |
| 46 | #include <linux/slab.h> |
| 47 | #include <linux/i2c.h> |
| 48 | #include <linux/videodev.h> |
| 49 | #include <linux/init.h> |
| 50 | #include <linux/smp_lock.h> |
| 51 | #include <linux/kthread.h> |
| 52 | #include <linux/suspend.h> |
| 53 | #include <asm/semaphore.h> |
| 54 | #include <asm/pgtable.h> |
| 55 | |
| 56 | #include <media/audiochip.h> |
| 57 | #include <media/id.h> |
| 58 | #include "msp3400.h" |
| 59 | |
| 60 | #define OPMODE_AUTO -1 |
| 61 | #define OPMODE_MANUAL 0 |
| 62 | #define OPMODE_SIMPLE 1 /* use short programming (>= msp3410 only) */ |
| 63 | #define OPMODE_SIMPLER 2 /* use shorter programming (>= msp34xxG) */ |
| 64 | |
| 65 | /* insmod parameters */ |
| 66 | static int opmode = OPMODE_AUTO; |
| 67 | static int debug = 0; /* debug output */ |
| 68 | static int once = 0; /* no continous stereo monitoring */ |
| 69 | static int amsound = 0; /* hard-wire AM sound at 6.5 Hz (france), |
| 70 | the autoscan seems work well only with FM... */ |
| 71 | static int standard = 1; /* Override auto detect of audio standard, if needed. */ |
| 72 | static int dolby = 0; |
| 73 | |
| 74 | static int stereo_threshold = 0x190; /* a2 threshold for stereo/bilingual |
| 75 | (msp34xxg only) 0x00a0-0x03c0 */ |
| 76 | |
| 77 | struct msp3400c { |
| 78 | int rev1,rev2; |
| 79 | |
| 80 | int opmode; |
| 81 | int mode; |
| 82 | int norm; |
| 83 | int nicam_on; |
| 84 | int acb; |
| 85 | int main, second; /* sound carrier */ |
| 86 | int input; |
| 87 | int source; /* see msp34xxg_set_source */ |
| 88 | |
| 89 | /* v4l2 */ |
| 90 | int audmode; |
| 91 | int rxsubchans; |
| 92 | |
| 93 | int muted; |
| 94 | int volume, balance; |
| 95 | int bass, treble; |
| 96 | |
| 97 | /* thread */ |
| 98 | struct task_struct *kthread; |
| 99 | wait_queue_head_t wq; |
| 100 | int restart:1; |
| 101 | int watch_stereo:1; |
| 102 | }; |
| 103 | |
| 104 | #define HAVE_NICAM(msp) (((msp->rev2>>8) & 0xff) != 00) |
| 105 | #define HAVE_SIMPLE(msp) ((msp->rev1 & 0xff) >= 'D'-'@') |
| 106 | #define HAVE_SIMPLER(msp) ((msp->rev1 & 0xff) >= 'G'-'@') |
| 107 | #define HAVE_RADIO(msp) ((msp->rev1 & 0xff) >= 'G'-'@') |
| 108 | |
| 109 | #define VIDEO_MODE_RADIO 16 /* norm magic for radio mode */ |
| 110 | |
| 111 | /* ---------------------------------------------------------------------- */ |
| 112 | |
| 113 | #define dprintk if (debug >= 1) printk |
| 114 | #define d2printk if (debug >= 2) printk |
| 115 | |
| 116 | /* read-only */ |
| 117 | module_param(opmode, int, 0444); |
| 118 | |
| 119 | /* read-write */ |
| 120 | module_param(once, int, 0644); |
| 121 | module_param(debug, int, 0644); |
| 122 | module_param(stereo_threshold, int, 0644); |
| 123 | module_param(standard, int, 0644); |
| 124 | module_param(amsound, int, 0644); |
| 125 | module_param(dolby, int, 0644); |
| 126 | |
| 127 | MODULE_PARM_DESC(once, "No continuous stereo monitoring"); |
| 128 | MODULE_PARM_DESC(debug, "Enable debug messages"); |
| 129 | MODULE_PARM_DESC(standard, "Specify audio standard: 32 = NTSC, 64 = radio, Default: Autodetect"); |
| 130 | MODULE_PARM_DESC(amsound, "Hardwire AM sound at 6.5Hz (France), FM can autoscan"); |
| 131 | |
| 132 | MODULE_DESCRIPTION("device driver for msp34xx TV sound processor"); |
| 133 | MODULE_AUTHOR("Gerd Knorr"); |
| 134 | MODULE_LICENSE("Dual BSD/GPL"); /* FreeBSD uses this too */ |
| 135 | |
| 136 | /* ---------------------------------------------------------------------- */ |
| 137 | |
| 138 | #define I2C_MSP3400C 0x80 |
| 139 | #define I2C_MSP3400C_ALT 0x88 |
| 140 | |
| 141 | #define I2C_MSP3400C_DEM 0x10 |
| 142 | #define I2C_MSP3400C_DFP 0x12 |
| 143 | |
| 144 | /* Addresses to scan */ |
| 145 | static unsigned short normal_i2c[] = { |
| 146 | I2C_MSP3400C >> 1, |
| 147 | I2C_MSP3400C_ALT >> 1, |
| 148 | I2C_CLIENT_END |
| 149 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | I2C_CLIENT_INSMOD; |
| 151 | |
| 152 | /* ----------------------------------------------------------------------- */ |
| 153 | /* functions for talking to the MSP3400C Sound processor */ |
| 154 | |
| 155 | static int msp3400c_reset(struct i2c_client *client) |
| 156 | { |
| 157 | /* reset and read revision code */ |
| 158 | static char reset_off[3] = { 0x00, 0x80, 0x00 }; |
| 159 | static char reset_on[3] = { 0x00, 0x00, 0x00 }; |
| 160 | static char write[3] = { I2C_MSP3400C_DFP + 1, 0x00, 0x1e }; |
| 161 | char read[2]; |
| 162 | struct i2c_msg reset[2] = { |
| 163 | { client->addr, I2C_M_IGNORE_NAK, 3, reset_off }, |
| 164 | { client->addr, I2C_M_IGNORE_NAK, 3, reset_on }, |
| 165 | }; |
| 166 | struct i2c_msg test[2] = { |
| 167 | { client->addr, 0, 3, write }, |
| 168 | { client->addr, I2C_M_RD, 2, read }, |
| 169 | }; |
| 170 | |
| 171 | if ( (1 != i2c_transfer(client->adapter,&reset[0],1)) || |
| 172 | (1 != i2c_transfer(client->adapter,&reset[1],1)) || |
| 173 | (2 != i2c_transfer(client->adapter,test,2)) ) { |
| 174 | printk(KERN_ERR "msp3400: chip reset failed\n"); |
| 175 | return -1; |
| 176 | } |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | static int |
| 181 | msp3400c_read(struct i2c_client *client, int dev, int addr) |
| 182 | { |
| 183 | int err; |
| 184 | |
| 185 | unsigned char write[3]; |
| 186 | unsigned char read[2]; |
| 187 | struct i2c_msg msgs[2] = { |
| 188 | { client->addr, 0, 3, write }, |
| 189 | { client->addr, I2C_M_RD, 2, read } |
| 190 | }; |
| 191 | write[0] = dev+1; |
| 192 | write[1] = addr >> 8; |
| 193 | write[2] = addr & 0xff; |
| 194 | |
| 195 | for (err = 0; err < 3;) { |
| 196 | if (2 == i2c_transfer(client->adapter,msgs,2)) |
| 197 | break; |
| 198 | err++; |
| 199 | printk(KERN_WARNING "msp34xx: I/O error #%d (read 0x%02x/0x%02x)\n", |
| 200 | err, dev, addr); |
| 201 | msleep(10); |
| 202 | } |
| 203 | if (3 == err) { |
| 204 | printk(KERN_WARNING "msp34xx: giving up, reseting chip. Sound will go off, sorry folks :-|\n"); |
| 205 | msp3400c_reset(client); |
| 206 | return -1; |
| 207 | } |
| 208 | return read[0] << 8 | read[1]; |
| 209 | } |
| 210 | |
| 211 | static int |
| 212 | msp3400c_write(struct i2c_client *client, int dev, int addr, int val) |
| 213 | { |
| 214 | int err; |
| 215 | unsigned char buffer[5]; |
| 216 | |
| 217 | buffer[0] = dev; |
| 218 | buffer[1] = addr >> 8; |
| 219 | buffer[2] = addr & 0xff; |
| 220 | buffer[3] = val >> 8; |
| 221 | buffer[4] = val & 0xff; |
| 222 | |
| 223 | for (err = 0; err < 3;) { |
| 224 | if (5 == i2c_master_send(client, buffer, 5)) |
| 225 | break; |
| 226 | err++; |
| 227 | printk(KERN_WARNING "msp34xx: I/O error #%d (write 0x%02x/0x%02x)\n", |
| 228 | err, dev, addr); |
| 229 | msleep(10); |
| 230 | } |
| 231 | if (3 == err) { |
| 232 | printk(KERN_WARNING "msp34xx: giving up, reseting chip. Sound will go off, sorry folks :-|\n"); |
| 233 | msp3400c_reset(client); |
| 234 | return -1; |
| 235 | } |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | /* ------------------------------------------------------------------------ */ |
| 240 | |
| 241 | /* This macro is allowed for *constants* only, gcc must calculate it |
| 242 | at compile time. Remember -- no floats in kernel mode */ |
| 243 | #define MSP_CARRIER(freq) ((int)((float)(freq/18.432)*(1<<24))) |
| 244 | |
| 245 | #define MSP_MODE_AM_DETECT 0 |
| 246 | #define MSP_MODE_FM_RADIO 2 |
| 247 | #define MSP_MODE_FM_TERRA 3 |
| 248 | #define MSP_MODE_FM_SAT 4 |
| 249 | #define MSP_MODE_FM_NICAM1 5 |
| 250 | #define MSP_MODE_FM_NICAM2 6 |
| 251 | #define MSP_MODE_AM_NICAM 7 |
| 252 | #define MSP_MODE_BTSC 8 |
| 253 | #define MSP_MODE_EXTERN 9 |
| 254 | |
| 255 | static struct MSP_INIT_DATA_DEM { |
| 256 | int fir1[6]; |
| 257 | int fir2[6]; |
| 258 | int cdo1; |
| 259 | int cdo2; |
| 260 | int ad_cv; |
| 261 | int mode_reg; |
| 262 | int dfp_src; |
| 263 | int dfp_matrix; |
| 264 | } msp_init_data[] = { |
| 265 | /* AM (for carrier detect / msp3400) */ |
| 266 | { { 75, 19, 36, 35, 39, 40 }, { 75, 19, 36, 35, 39, 40 }, |
| 267 | MSP_CARRIER(5.5), MSP_CARRIER(5.5), |
| 268 | 0x00d0, 0x0500, 0x0020, 0x3000}, |
| 269 | |
| 270 | /* AM (for carrier detect / msp3410) */ |
| 271 | { { -1, -1, -8, 2, 59, 126 }, { -1, -1, -8, 2, 59, 126 }, |
| 272 | MSP_CARRIER(5.5), MSP_CARRIER(5.5), |
| 273 | 0x00d0, 0x0100, 0x0020, 0x3000}, |
| 274 | |
| 275 | /* FM Radio */ |
| 276 | { { -8, -8, 4, 6, 78, 107 }, { -8, -8, 4, 6, 78, 107 }, |
| 277 | MSP_CARRIER(10.7), MSP_CARRIER(10.7), |
| 278 | 0x00d0, 0x0480, 0x0020, 0x3000 }, |
| 279 | |
| 280 | /* Terrestial FM-mono + FM-stereo */ |
| 281 | { { 3, 18, 27, 48, 66, 72 }, { 3, 18, 27, 48, 66, 72 }, |
| 282 | MSP_CARRIER(5.5), MSP_CARRIER(5.5), |
| 283 | 0x00d0, 0x0480, 0x0030, 0x3000}, |
| 284 | |
| 285 | /* Sat FM-mono */ |
| 286 | { { 1, 9, 14, 24, 33, 37 }, { 3, 18, 27, 48, 66, 72 }, |
| 287 | MSP_CARRIER(6.5), MSP_CARRIER(6.5), |
| 288 | 0x00c6, 0x0480, 0x0000, 0x3000}, |
| 289 | |
| 290 | /* NICAM/FM -- B/G (5.5/5.85), D/K (6.5/5.85) */ |
| 291 | { { -2, -8, -10, 10, 50, 86 }, { 3, 18, 27, 48, 66, 72 }, |
| 292 | MSP_CARRIER(5.5), MSP_CARRIER(5.5), |
| 293 | 0x00d0, 0x0040, 0x0120, 0x3000}, |
| 294 | |
| 295 | /* NICAM/FM -- I (6.0/6.552) */ |
| 296 | { { 2, 4, -6, -4, 40, 94 }, { 3, 18, 27, 48, 66, 72 }, |
| 297 | MSP_CARRIER(6.0), MSP_CARRIER(6.0), |
| 298 | 0x00d0, 0x0040, 0x0120, 0x3000}, |
| 299 | |
| 300 | /* NICAM/AM -- L (6.5/5.85) */ |
| 301 | { { -2, -8, -10, 10, 50, 86 }, { -4, -12, -9, 23, 79, 126 }, |
| 302 | MSP_CARRIER(6.5), MSP_CARRIER(6.5), |
| 303 | 0x00c6, 0x0140, 0x0120, 0x7c03}, |
| 304 | }; |
| 305 | |
| 306 | struct CARRIER_DETECT { |
| 307 | int cdo; |
| 308 | char *name; |
| 309 | }; |
| 310 | |
| 311 | static struct CARRIER_DETECT carrier_detect_main[] = { |
| 312 | /* main carrier */ |
| 313 | { MSP_CARRIER(4.5), "4.5 NTSC" }, |
| 314 | { MSP_CARRIER(5.5), "5.5 PAL B/G" }, |
| 315 | { MSP_CARRIER(6.0), "6.0 PAL I" }, |
| 316 | { MSP_CARRIER(6.5), "6.5 PAL D/K + SAT + SECAM" } |
| 317 | }; |
| 318 | |
| 319 | static struct CARRIER_DETECT carrier_detect_55[] = { |
| 320 | /* PAL B/G */ |
| 321 | { MSP_CARRIER(5.7421875), "5.742 PAL B/G FM-stereo" }, |
| 322 | { MSP_CARRIER(5.85), "5.85 PAL B/G NICAM" } |
| 323 | }; |
| 324 | |
| 325 | static struct CARRIER_DETECT carrier_detect_65[] = { |
| 326 | /* PAL SAT / SECAM */ |
| 327 | { MSP_CARRIER(5.85), "5.85 PAL D/K + SECAM NICAM" }, |
| 328 | { MSP_CARRIER(6.2578125), "6.25 PAL D/K1 FM-stereo" }, |
| 329 | { MSP_CARRIER(6.7421875), "6.74 PAL D/K2 FM-stereo" }, |
| 330 | { MSP_CARRIER(7.02), "7.02 PAL SAT FM-stereo s/b" }, |
| 331 | { MSP_CARRIER(7.20), "7.20 PAL SAT FM-stereo s" }, |
| 332 | { MSP_CARRIER(7.38), "7.38 PAL SAT FM-stereo b" }, |
| 333 | }; |
| 334 | |
| 335 | #define CARRIER_COUNT(x) (sizeof(x)/sizeof(struct CARRIER_DETECT)) |
| 336 | |
| 337 | /* ----------------------------------------------------------------------- */ |
| 338 | |
| 339 | static int scarts[3][9] = { |
| 340 | /* MASK IN1 IN2 IN1_DA IN2_DA IN3 IN4 MONO MUTE */ |
| 341 | { 0x0320, 0x0000, 0x0200, -1, -1, 0x0300, 0x0020, 0x0100, 0x0320 }, |
| 342 | { 0x0c40, 0x0440, 0x0400, 0x0c00, 0x0040, 0x0000, 0x0840, 0x0800, 0x0c40 }, |
| 343 | { 0x3080, 0x1000, 0x1080, 0x0000, 0x0080, 0x2080, 0x3080, 0x2000, 0x3000 }, |
| 344 | }; |
| 345 | |
| 346 | static char *scart_names[] = { |
| 347 | "mask", "in1", "in2", "in1 da", "in2 da", "in3", "in4", "mono", "mute" |
| 348 | }; |
| 349 | |
| 350 | static void |
| 351 | msp3400c_set_scart(struct i2c_client *client, int in, int out) |
| 352 | { |
| 353 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 354 | |
| 355 | if (-1 == scarts[out][in]) |
| 356 | return; |
| 357 | |
| 358 | dprintk(KERN_DEBUG |
| 359 | "msp34xx: scart switch: %s => %d\n",scart_names[in],out); |
| 360 | msp->acb &= ~scarts[out][SCART_MASK]; |
| 361 | msp->acb |= scarts[out][in]; |
| 362 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0013, msp->acb); |
| 363 | } |
| 364 | |
| 365 | /* ------------------------------------------------------------------------ */ |
| 366 | |
| 367 | static void msp3400c_setcarrier(struct i2c_client *client, int cdo1, int cdo2) |
| 368 | { |
| 369 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0093, cdo1 & 0xfff); |
| 370 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x009b, cdo1 >> 12); |
| 371 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x00a3, cdo2 & 0xfff); |
| 372 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x00ab, cdo2 >> 12); |
| 373 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0056, 0); /*LOAD_REG_1/2*/ |
| 374 | } |
| 375 | |
| 376 | static void msp3400c_setvolume(struct i2c_client *client, |
| 377 | int muted, int volume, int balance) |
| 378 | { |
| 379 | int val = 0, bal = 0; |
| 380 | |
| 381 | if (!muted) { |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 382 | /* 0x7f instead if 0x73 here has sound quality issues, |
| 383 | * probably due to overmodulation + clipping ... */ |
| 384 | val = (volume * 0x73 / 65535) << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | if (val) { |
| 387 | bal = (balance / 256) - 128; |
| 388 | } |
| 389 | dprintk(KERN_DEBUG |
| 390 | "msp34xx: setvolume: mute=%s %d:%d v=0x%02x b=0x%02x\n", |
| 391 | muted ? "on" : "off", volume, balance, val>>8, bal); |
| 392 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0000, val); /* loudspeaker */ |
| 393 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0006, val); /* headphones */ |
| 394 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0007, |
| 395 | muted ? 0x01 : (val | 0x01)); |
| 396 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0001, bal << 8); |
| 397 | } |
| 398 | |
| 399 | static void msp3400c_setbass(struct i2c_client *client, int bass) |
| 400 | { |
| 401 | int val = ((bass-32768) * 0x60 / 65535) << 8; |
| 402 | |
| 403 | dprintk(KERN_DEBUG "msp34xx: setbass: %d 0x%02x\n",bass, val>>8); |
| 404 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0002, val); /* loudspeaker */ |
| 405 | } |
| 406 | |
| 407 | static void msp3400c_settreble(struct i2c_client *client, int treble) |
| 408 | { |
| 409 | int val = ((treble-32768) * 0x60 / 65535) << 8; |
| 410 | |
| 411 | dprintk(KERN_DEBUG "msp34xx: settreble: %d 0x%02x\n",treble, val>>8); |
| 412 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0003, val); /* loudspeaker */ |
| 413 | } |
| 414 | |
| 415 | static void msp3400c_setmode(struct i2c_client *client, int type) |
| 416 | { |
| 417 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 418 | int i; |
| 419 | |
| 420 | dprintk(KERN_DEBUG "msp3400: setmode: %d\n",type); |
| 421 | msp->mode = type; |
| 422 | msp->audmode = V4L2_TUNER_MODE_MONO; |
| 423 | msp->rxsubchans = V4L2_TUNER_SUB_MONO; |
| 424 | |
| 425 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x00bb, /* ad_cv */ |
| 426 | msp_init_data[type].ad_cv); |
| 427 | |
| 428 | for (i = 5; i >= 0; i--) /* fir 1 */ |
| 429 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0001, |
| 430 | msp_init_data[type].fir1[i]); |
| 431 | |
| 432 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0005, 0x0004); /* fir 2 */ |
| 433 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0005, 0x0040); |
| 434 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0005, 0x0000); |
| 435 | for (i = 5; i >= 0; i--) |
| 436 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0005, |
| 437 | msp_init_data[type].fir2[i]); |
| 438 | |
| 439 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0083, /* MODE_REG */ |
| 440 | msp_init_data[type].mode_reg); |
| 441 | |
| 442 | msp3400c_setcarrier(client, msp_init_data[type].cdo1, |
| 443 | msp_init_data[type].cdo2); |
| 444 | |
| 445 | msp3400c_write(client,I2C_MSP3400C_DEM, 0x0056, 0); /*LOAD_REG_1/2*/ |
| 446 | |
| 447 | if (dolby) { |
| 448 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0008, |
| 449 | 0x0520); /* I2S1 */ |
| 450 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0009, |
| 451 | 0x0620); /* I2S2 */ |
| 452 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000b, |
| 453 | msp_init_data[type].dfp_src); |
| 454 | } else { |
| 455 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0008, |
| 456 | msp_init_data[type].dfp_src); |
| 457 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0009, |
| 458 | msp_init_data[type].dfp_src); |
| 459 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000b, |
| 460 | msp_init_data[type].dfp_src); |
| 461 | } |
| 462 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000a, |
| 463 | msp_init_data[type].dfp_src); |
| 464 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000e, |
| 465 | msp_init_data[type].dfp_matrix); |
| 466 | |
| 467 | if (HAVE_NICAM(msp)) { |
| 468 | /* nicam prescale */ |
| 469 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0010, 0x5a00); /* was: 0x3000 */ |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | static int best_audio_mode(int rxsubchans) |
| 474 | { |
| 475 | if (rxsubchans & V4L2_TUNER_SUB_STEREO) |
| 476 | return V4L2_TUNER_MODE_STEREO; |
| 477 | if (rxsubchans & V4L2_TUNER_SUB_LANG1) |
| 478 | return V4L2_TUNER_MODE_LANG1; |
| 479 | if (rxsubchans & V4L2_TUNER_SUB_LANG2) |
| 480 | return V4L2_TUNER_MODE_LANG2; |
| 481 | return V4L2_TUNER_MODE_MONO; |
| 482 | } |
| 483 | |
| 484 | /* turn on/off nicam + stereo */ |
| 485 | static void msp3400c_set_audmode(struct i2c_client *client, int audmode) |
| 486 | { |
| 487 | static char *strmode[16] = { |
| 488 | #if __GNUC__ >= 3 |
| 489 | [ 0 ... 15 ] = "invalid", |
| 490 | #endif |
| 491 | [ V4L2_TUNER_MODE_MONO ] = "mono", |
| 492 | [ V4L2_TUNER_MODE_STEREO ] = "stereo", |
| 493 | [ V4L2_TUNER_MODE_LANG1 ] = "lang1", |
| 494 | [ V4L2_TUNER_MODE_LANG2 ] = "lang2", |
| 495 | }; |
| 496 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 497 | int nicam=0; /* channel source: FM/AM or nicam */ |
| 498 | int src=0; |
| 499 | |
| 500 | BUG_ON(msp->opmode == OPMODE_SIMPLER); |
| 501 | msp->audmode = audmode; |
| 502 | |
| 503 | /* switch demodulator */ |
| 504 | switch (msp->mode) { |
| 505 | case MSP_MODE_FM_TERRA: |
| 506 | dprintk(KERN_DEBUG "msp3400: FM setstereo: %s\n", |
| 507 | strmode[audmode]); |
| 508 | msp3400c_setcarrier(client,msp->second,msp->main); |
| 509 | switch (audmode) { |
| 510 | case V4L2_TUNER_MODE_STEREO: |
| 511 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000e, 0x3001); |
| 512 | break; |
| 513 | case V4L2_TUNER_MODE_MONO: |
| 514 | case V4L2_TUNER_MODE_LANG1: |
| 515 | case V4L2_TUNER_MODE_LANG2: |
| 516 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000e, 0x3000); |
| 517 | break; |
| 518 | } |
| 519 | break; |
| 520 | case MSP_MODE_FM_SAT: |
| 521 | dprintk(KERN_DEBUG "msp3400: SAT setstereo: %s\n", |
| 522 | strmode[audmode]); |
| 523 | switch (audmode) { |
| 524 | case V4L2_TUNER_MODE_MONO: |
| 525 | msp3400c_setcarrier(client, MSP_CARRIER(6.5), MSP_CARRIER(6.5)); |
| 526 | break; |
| 527 | case V4L2_TUNER_MODE_STEREO: |
| 528 | msp3400c_setcarrier(client, MSP_CARRIER(7.2), MSP_CARRIER(7.02)); |
| 529 | break; |
| 530 | case V4L2_TUNER_MODE_LANG1: |
| 531 | msp3400c_setcarrier(client, MSP_CARRIER(7.38), MSP_CARRIER(7.02)); |
| 532 | break; |
| 533 | case V4L2_TUNER_MODE_LANG2: |
| 534 | msp3400c_setcarrier(client, MSP_CARRIER(7.38), MSP_CARRIER(7.02)); |
| 535 | break; |
| 536 | } |
| 537 | break; |
| 538 | case MSP_MODE_FM_NICAM1: |
| 539 | case MSP_MODE_FM_NICAM2: |
| 540 | case MSP_MODE_AM_NICAM: |
| 541 | dprintk(KERN_DEBUG "msp3400: NICAM setstereo: %s\n", |
| 542 | strmode[audmode]); |
| 543 | msp3400c_setcarrier(client,msp->second,msp->main); |
| 544 | if (msp->nicam_on) |
| 545 | nicam=0x0100; |
| 546 | break; |
| 547 | case MSP_MODE_BTSC: |
| 548 | dprintk(KERN_DEBUG "msp3400: BTSC setstereo: %s\n", |
| 549 | strmode[audmode]); |
| 550 | nicam=0x0300; |
| 551 | break; |
| 552 | case MSP_MODE_EXTERN: |
| 553 | dprintk(KERN_DEBUG "msp3400: extern setstereo: %s\n", |
| 554 | strmode[audmode]); |
| 555 | nicam = 0x0200; |
| 556 | break; |
| 557 | case MSP_MODE_FM_RADIO: |
| 558 | dprintk(KERN_DEBUG "msp3400: FM-Radio setstereo: %s\n", |
| 559 | strmode[audmode]); |
| 560 | break; |
| 561 | default: |
| 562 | dprintk(KERN_DEBUG "msp3400: mono setstereo\n"); |
| 563 | return; |
| 564 | } |
| 565 | |
| 566 | /* switch audio */ |
| 567 | switch (audmode) { |
| 568 | case V4L2_TUNER_MODE_STEREO: |
| 569 | src = 0x0020 | nicam; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | break; |
| 571 | case V4L2_TUNER_MODE_MONO: |
| 572 | if (msp->mode == MSP_MODE_AM_NICAM) { |
| 573 | dprintk("msp3400: switching to AM mono\n"); |
| 574 | /* AM mono decoding is handled by tuner, not MSP chip */ |
| 575 | /* SCART switching control register */ |
| 576 | msp3400c_set_scart(client,SCART_MONO,0); |
| 577 | src = 0x0200; |
| 578 | break; |
| 579 | } |
| 580 | case V4L2_TUNER_MODE_LANG1: |
| 581 | src = 0x0000 | nicam; |
| 582 | break; |
| 583 | case V4L2_TUNER_MODE_LANG2: |
| 584 | src = 0x0010 | nicam; |
| 585 | break; |
| 586 | } |
| 587 | dprintk(KERN_DEBUG |
| 588 | "msp3400: setstereo final source/matrix = 0x%x\n", src); |
| 589 | |
| 590 | if (dolby) { |
| 591 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0008,0x0520); |
| 592 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0009,0x0620); |
| 593 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000a,src); |
| 594 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000b,src); |
| 595 | } else { |
| 596 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0008,src); |
| 597 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0009,src); |
| 598 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000a,src); |
| 599 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000b,src); |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | static void |
| 604 | msp3400c_print_mode(struct msp3400c *msp) |
| 605 | { |
| 606 | if (msp->main == msp->second) { |
| 607 | printk(KERN_DEBUG "msp3400: mono sound carrier: %d.%03d MHz\n", |
| 608 | msp->main/910000,(msp->main/910)%1000); |
| 609 | } else { |
| 610 | printk(KERN_DEBUG "msp3400: main sound carrier: %d.%03d MHz\n", |
| 611 | msp->main/910000,(msp->main/910)%1000); |
| 612 | } |
| 613 | if (msp->mode == MSP_MODE_FM_NICAM1 || |
| 614 | msp->mode == MSP_MODE_FM_NICAM2) |
| 615 | printk(KERN_DEBUG "msp3400: NICAM/FM carrier : %d.%03d MHz\n", |
| 616 | msp->second/910000,(msp->second/910)%1000); |
| 617 | if (msp->mode == MSP_MODE_AM_NICAM) |
| 618 | printk(KERN_DEBUG "msp3400: NICAM/AM carrier : %d.%03d MHz\n", |
| 619 | msp->second/910000,(msp->second/910)%1000); |
| 620 | if (msp->mode == MSP_MODE_FM_TERRA && |
| 621 | msp->main != msp->second) { |
| 622 | printk(KERN_DEBUG "msp3400: FM-stereo carrier : %d.%03d MHz\n", |
| 623 | msp->second/910000,(msp->second/910)%1000); |
| 624 | } |
| 625 | } |
| 626 | |
| 627 | /* ----------------------------------------------------------------------- */ |
| 628 | |
| 629 | struct REGISTER_DUMP { |
| 630 | int addr; |
| 631 | char *name; |
| 632 | }; |
| 633 | |
| 634 | static int |
| 635 | autodetect_stereo(struct i2c_client *client) |
| 636 | { |
| 637 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 638 | int val; |
| 639 | int rxsubchans = msp->rxsubchans; |
| 640 | int newnicam = msp->nicam_on; |
| 641 | int update = 0; |
| 642 | |
| 643 | switch (msp->mode) { |
| 644 | case MSP_MODE_FM_TERRA: |
| 645 | val = msp3400c_read(client, I2C_MSP3400C_DFP, 0x18); |
| 646 | if (val > 32767) |
| 647 | val -= 65536; |
| 648 | dprintk(KERN_DEBUG |
| 649 | "msp34xx: stereo detect register: %d\n",val); |
| 650 | if (val > 4096) { |
| 651 | rxsubchans = V4L2_TUNER_SUB_STEREO | V4L2_TUNER_SUB_MONO; |
| 652 | } else if (val < -4096) { |
| 653 | rxsubchans = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; |
| 654 | } else { |
| 655 | rxsubchans = V4L2_TUNER_SUB_MONO; |
| 656 | } |
| 657 | newnicam = 0; |
| 658 | break; |
| 659 | case MSP_MODE_FM_NICAM1: |
| 660 | case MSP_MODE_FM_NICAM2: |
| 661 | case MSP_MODE_AM_NICAM: |
| 662 | val = msp3400c_read(client, I2C_MSP3400C_DEM, 0x23); |
| 663 | dprintk(KERN_DEBUG |
| 664 | "msp34xx: nicam sync=%d, mode=%d\n", |
| 665 | val & 1, (val & 0x1e) >> 1); |
| 666 | |
| 667 | if (val & 1) { |
| 668 | /* nicam synced */ |
| 669 | switch ((val & 0x1e) >> 1) { |
| 670 | case 0: |
| 671 | case 8: |
| 672 | rxsubchans = V4L2_TUNER_SUB_STEREO; |
| 673 | break; |
| 674 | case 1: |
| 675 | case 9: |
| 676 | rxsubchans = V4L2_TUNER_SUB_MONO |
| 677 | | V4L2_TUNER_SUB_LANG1; |
| 678 | break; |
| 679 | case 2: |
| 680 | case 10: |
| 681 | rxsubchans = V4L2_TUNER_SUB_MONO |
| 682 | | V4L2_TUNER_SUB_LANG1 |
| 683 | | V4L2_TUNER_SUB_LANG2; |
| 684 | break; |
| 685 | default: |
| 686 | rxsubchans = V4L2_TUNER_SUB_MONO; |
| 687 | break; |
| 688 | } |
| 689 | newnicam=1; |
| 690 | } else { |
| 691 | newnicam = 0; |
| 692 | rxsubchans = V4L2_TUNER_SUB_MONO; |
| 693 | } |
| 694 | break; |
| 695 | case MSP_MODE_BTSC: |
| 696 | val = msp3400c_read(client, I2C_MSP3400C_DEM, 0x200); |
| 697 | dprintk(KERN_DEBUG |
| 698 | "msp3410: status=0x%x (pri=%s, sec=%s, %s%s%s)\n", |
| 699 | val, |
| 700 | (val & 0x0002) ? "no" : "yes", |
| 701 | (val & 0x0004) ? "no" : "yes", |
| 702 | (val & 0x0040) ? "stereo" : "mono", |
| 703 | (val & 0x0080) ? ", nicam 2nd mono" : "", |
| 704 | (val & 0x0100) ? ", bilingual/SAP" : ""); |
| 705 | rxsubchans = V4L2_TUNER_SUB_MONO; |
| 706 | if (val & 0x0040) rxsubchans |= V4L2_TUNER_SUB_STEREO; |
| 707 | if (val & 0x0100) rxsubchans |= V4L2_TUNER_SUB_LANG1; |
| 708 | break; |
| 709 | } |
| 710 | if (rxsubchans != msp->rxsubchans) { |
| 711 | update = 1; |
| 712 | dprintk(KERN_DEBUG "msp34xx: watch: rxsubchans %d => %d\n", |
| 713 | msp->rxsubchans,rxsubchans); |
| 714 | msp->rxsubchans = rxsubchans; |
| 715 | } |
| 716 | if (newnicam != msp->nicam_on) { |
| 717 | update = 1; |
| 718 | dprintk(KERN_DEBUG "msp34xx: watch: nicam %d => %d\n", |
| 719 | msp->nicam_on,newnicam); |
| 720 | msp->nicam_on = newnicam; |
| 721 | } |
| 722 | return update; |
| 723 | } |
| 724 | |
| 725 | /* |
| 726 | * A kernel thread for msp3400 control -- we don't want to block the |
| 727 | * in the ioctl while doing the sound carrier & stereo detect |
| 728 | */ |
| 729 | |
| 730 | static int msp34xx_sleep(struct msp3400c *msp, int timeout) |
| 731 | { |
| 732 | DECLARE_WAITQUEUE(wait, current); |
| 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | add_wait_queue(&msp->wq, &wait); |
| 735 | if (!kthread_should_stop()) { |
| 736 | if (timeout < 0) { |
| 737 | set_current_state(TASK_INTERRUPTIBLE); |
| 738 | schedule(); |
| 739 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | set_current_state(TASK_INTERRUPTIBLE); |
| 741 | schedule_timeout(msecs_to_jiffies(timeout)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } |
| 743 | } |
Mauro Carvalho Chehab | ebe4c6f | 2005-07-12 13:58:53 -0700 | [diff] [blame] | 744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | remove_wait_queue(&msp->wq, &wait); |
Mauro Carvalho Chehab | fd3113e | 2005-07-31 22:34:43 -0700 | [diff] [blame] | 746 | try_to_freeze(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | return msp->restart; |
| 748 | } |
| 749 | |
| 750 | /* stereo/multilang monitoring */ |
| 751 | static void watch_stereo(struct i2c_client *client) |
| 752 | { |
| 753 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 754 | |
| 755 | if (autodetect_stereo(client)) |
| 756 | msp3400c_set_audmode(client,best_audio_mode(msp->rxsubchans)); |
| 757 | if (once) |
| 758 | msp->watch_stereo = 0; |
| 759 | } |
| 760 | |
| 761 | static int msp3400c_thread(void *data) |
| 762 | { |
| 763 | struct i2c_client *client = data; |
| 764 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 765 | struct CARRIER_DETECT *cd; |
| 766 | int count, max1,max2,val1,val2, val,this; |
| 767 | |
| 768 | printk("msp3400: kthread started\n"); |
| 769 | for (;;) { |
| 770 | d2printk("msp3400: thread: sleep\n"); |
| 771 | msp34xx_sleep(msp,-1); |
| 772 | d2printk("msp3400: thread: wakeup\n"); |
| 773 | |
| 774 | restart: |
| 775 | dprintk("msp3410: thread: restart scan\n"); |
| 776 | msp->restart = 0; |
| 777 | if (kthread_should_stop()) |
| 778 | break; |
| 779 | |
| 780 | if (VIDEO_MODE_RADIO == msp->norm || |
| 781 | MSP_MODE_EXTERN == msp->mode) { |
| 782 | /* no carrier scan, just unmute */ |
| 783 | printk("msp3400: thread: no carrier scan\n"); |
| 784 | msp3400c_setvolume(client, msp->muted, |
| 785 | msp->volume, msp->balance); |
| 786 | continue; |
| 787 | } |
| 788 | |
| 789 | /* mute */ |
| 790 | msp3400c_setvolume(client, msp->muted, 0, 0); |
| 791 | msp3400c_setmode(client, MSP_MODE_AM_DETECT /* +1 */ ); |
| 792 | val1 = val2 = 0; |
| 793 | max1 = max2 = -1; |
| 794 | msp->watch_stereo = 0; |
| 795 | |
| 796 | /* some time for the tuner to sync */ |
| 797 | if (msp34xx_sleep(msp,200)) |
| 798 | goto restart; |
| 799 | |
| 800 | /* carrier detect pass #1 -- main carrier */ |
| 801 | cd = carrier_detect_main; count = CARRIER_COUNT(carrier_detect_main); |
| 802 | |
| 803 | if (amsound && (msp->norm == VIDEO_MODE_SECAM)) { |
| 804 | /* autodetect doesn't work well with AM ... */ |
| 805 | max1 = 3; |
| 806 | count = 0; |
| 807 | dprintk("msp3400: AM sound override\n"); |
| 808 | } |
| 809 | |
| 810 | for (this = 0; this < count; this++) { |
| 811 | msp3400c_setcarrier(client, cd[this].cdo,cd[this].cdo); |
| 812 | if (msp34xx_sleep(msp,100)) |
| 813 | goto restart; |
| 814 | val = msp3400c_read(client, I2C_MSP3400C_DFP, 0x1b); |
| 815 | if (val > 32767) |
| 816 | val -= 65536; |
| 817 | if (val1 < val) |
| 818 | val1 = val, max1 = this; |
| 819 | dprintk("msp3400: carrier1 val: %5d / %s\n", val,cd[this].name); |
| 820 | } |
| 821 | |
| 822 | /* carrier detect pass #2 -- second (stereo) carrier */ |
| 823 | switch (max1) { |
| 824 | case 1: /* 5.5 */ |
| 825 | cd = carrier_detect_55; |
| 826 | count = CARRIER_COUNT(carrier_detect_55); |
| 827 | break; |
| 828 | case 3: /* 6.5 */ |
| 829 | cd = carrier_detect_65; |
| 830 | count = CARRIER_COUNT(carrier_detect_65); |
| 831 | break; |
| 832 | case 0: /* 4.5 */ |
| 833 | case 2: /* 6.0 */ |
| 834 | default: |
| 835 | cd = NULL; count = 0; |
| 836 | break; |
| 837 | } |
| 838 | |
| 839 | if (amsound && (msp->norm == VIDEO_MODE_SECAM)) { |
| 840 | /* autodetect doesn't work well with AM ... */ |
| 841 | cd = NULL; count = 0; max2 = 0; |
| 842 | } |
| 843 | for (this = 0; this < count; this++) { |
| 844 | msp3400c_setcarrier(client, cd[this].cdo,cd[this].cdo); |
| 845 | if (msp34xx_sleep(msp,100)) |
| 846 | goto restart; |
| 847 | val = msp3400c_read(client, I2C_MSP3400C_DFP, 0x1b); |
| 848 | if (val > 32767) |
| 849 | val -= 65536; |
| 850 | if (val2 < val) |
| 851 | val2 = val, max2 = this; |
| 852 | dprintk("msp3400: carrier2 val: %5d / %s\n", val,cd[this].name); |
| 853 | } |
| 854 | |
| 855 | /* programm the msp3400 according to the results */ |
| 856 | msp->main = carrier_detect_main[max1].cdo; |
| 857 | switch (max1) { |
| 858 | case 1: /* 5.5 */ |
| 859 | if (max2 == 0) { |
| 860 | /* B/G FM-stereo */ |
| 861 | msp->second = carrier_detect_55[max2].cdo; |
| 862 | msp3400c_setmode(client, MSP_MODE_FM_TERRA); |
| 863 | msp->nicam_on = 0; |
| 864 | msp3400c_set_audmode(client, V4L2_TUNER_MODE_MONO); |
| 865 | msp->watch_stereo = 1; |
| 866 | } else if (max2 == 1 && HAVE_NICAM(msp)) { |
| 867 | /* B/G NICAM */ |
| 868 | msp->second = carrier_detect_55[max2].cdo; |
| 869 | msp3400c_setmode(client, MSP_MODE_FM_NICAM1); |
| 870 | msp->nicam_on = 1; |
| 871 | msp3400c_setcarrier(client, msp->second, msp->main); |
| 872 | msp->watch_stereo = 1; |
| 873 | } else { |
| 874 | goto no_second; |
| 875 | } |
| 876 | break; |
| 877 | case 2: /* 6.0 */ |
| 878 | /* PAL I NICAM */ |
| 879 | msp->second = MSP_CARRIER(6.552); |
| 880 | msp3400c_setmode(client, MSP_MODE_FM_NICAM2); |
| 881 | msp->nicam_on = 1; |
| 882 | msp3400c_setcarrier(client, msp->second, msp->main); |
| 883 | msp->watch_stereo = 1; |
| 884 | break; |
| 885 | case 3: /* 6.5 */ |
| 886 | if (max2 == 1 || max2 == 2) { |
| 887 | /* D/K FM-stereo */ |
| 888 | msp->second = carrier_detect_65[max2].cdo; |
| 889 | msp3400c_setmode(client, MSP_MODE_FM_TERRA); |
| 890 | msp->nicam_on = 0; |
| 891 | msp3400c_set_audmode(client, V4L2_TUNER_MODE_MONO); |
| 892 | msp->watch_stereo = 1; |
| 893 | } else if (max2 == 0 && |
| 894 | msp->norm == VIDEO_MODE_SECAM) { |
| 895 | /* L NICAM or AM-mono */ |
| 896 | msp->second = carrier_detect_65[max2].cdo; |
| 897 | msp3400c_setmode(client, MSP_MODE_AM_NICAM); |
| 898 | msp->nicam_on = 0; |
| 899 | msp3400c_set_audmode(client, V4L2_TUNER_MODE_MONO); |
| 900 | msp3400c_setcarrier(client, msp->second, msp->main); |
| 901 | /* volume prescale for SCART (AM mono input) */ |
| 902 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x000d, 0x1900); |
| 903 | msp->watch_stereo = 1; |
| 904 | } else if (max2 == 0 && HAVE_NICAM(msp)) { |
| 905 | /* D/K NICAM */ |
| 906 | msp->second = carrier_detect_65[max2].cdo; |
| 907 | msp3400c_setmode(client, MSP_MODE_FM_NICAM1); |
| 908 | msp->nicam_on = 1; |
| 909 | msp3400c_setcarrier(client, msp->second, msp->main); |
| 910 | msp->watch_stereo = 1; |
| 911 | } else { |
| 912 | goto no_second; |
| 913 | } |
| 914 | break; |
| 915 | case 0: /* 4.5 */ |
| 916 | default: |
| 917 | no_second: |
| 918 | msp->second = carrier_detect_main[max1].cdo; |
| 919 | msp3400c_setmode(client, MSP_MODE_FM_TERRA); |
| 920 | msp->nicam_on = 0; |
| 921 | msp3400c_setcarrier(client, msp->second, msp->main); |
| 922 | msp->rxsubchans = V4L2_TUNER_SUB_MONO; |
| 923 | msp3400c_set_audmode(client, V4L2_TUNER_MODE_MONO); |
| 924 | break; |
| 925 | } |
| 926 | |
| 927 | /* unmute */ |
| 928 | msp3400c_setvolume(client, msp->muted, |
| 929 | msp->volume, msp->balance); |
| 930 | if (debug) |
| 931 | msp3400c_print_mode(msp); |
| 932 | |
| 933 | /* monitor tv audio mode */ |
| 934 | while (msp->watch_stereo) { |
| 935 | if (msp34xx_sleep(msp,5000)) |
| 936 | goto restart; |
| 937 | watch_stereo(client); |
| 938 | } |
| 939 | } |
| 940 | dprintk(KERN_DEBUG "msp3400: thread: exit\n"); |
| 941 | return 0; |
| 942 | } |
| 943 | |
| 944 | /* ----------------------------------------------------------------------- */ |
| 945 | /* this one uses the automatic sound standard detection of newer */ |
| 946 | /* msp34xx chip versions */ |
| 947 | |
| 948 | static struct MODES { |
| 949 | int retval; |
| 950 | int main, second; |
| 951 | char *name; |
| 952 | } modelist[] = { |
| 953 | { 0x0000, 0, 0, "ERROR" }, |
| 954 | { 0x0001, 0, 0, "autodetect start" }, |
| 955 | { 0x0002, MSP_CARRIER(4.5), MSP_CARRIER(4.72), "4.5/4.72 M Dual FM-Stereo" }, |
| 956 | { 0x0003, MSP_CARRIER(5.5), MSP_CARRIER(5.7421875), "5.5/5.74 B/G Dual FM-Stereo" }, |
| 957 | { 0x0004, MSP_CARRIER(6.5), MSP_CARRIER(6.2578125), "6.5/6.25 D/K1 Dual FM-Stereo" }, |
| 958 | { 0x0005, MSP_CARRIER(6.5), MSP_CARRIER(6.7421875), "6.5/6.74 D/K2 Dual FM-Stereo" }, |
| 959 | { 0x0006, MSP_CARRIER(6.5), MSP_CARRIER(6.5), "6.5 D/K FM-Mono (HDEV3)" }, |
| 960 | { 0x0008, MSP_CARRIER(5.5), MSP_CARRIER(5.85), "5.5/5.85 B/G NICAM FM" }, |
| 961 | { 0x0009, MSP_CARRIER(6.5), MSP_CARRIER(5.85), "6.5/5.85 L NICAM AM" }, |
| 962 | { 0x000a, MSP_CARRIER(6.0), MSP_CARRIER(6.55), "6.0/6.55 I NICAM FM" }, |
| 963 | { 0x000b, MSP_CARRIER(6.5), MSP_CARRIER(5.85), "6.5/5.85 D/K NICAM FM" }, |
| 964 | { 0x000c, MSP_CARRIER(6.5), MSP_CARRIER(5.85), "6.5/5.85 D/K NICAM FM (HDEV2)" }, |
| 965 | { 0x0020, MSP_CARRIER(4.5), MSP_CARRIER(4.5), "4.5 M BTSC-Stereo" }, |
| 966 | { 0x0021, MSP_CARRIER(4.5), MSP_CARRIER(4.5), "4.5 M BTSC-Mono + SAP" }, |
| 967 | { 0x0030, MSP_CARRIER(4.5), MSP_CARRIER(4.5), "4.5 M EIA-J Japan Stereo" }, |
| 968 | { 0x0040, MSP_CARRIER(10.7), MSP_CARRIER(10.7), "10.7 FM-Stereo Radio" }, |
| 969 | { 0x0050, MSP_CARRIER(6.5), MSP_CARRIER(6.5), "6.5 SAT-Mono" }, |
| 970 | { 0x0051, MSP_CARRIER(7.02), MSP_CARRIER(7.20), "7.02/7.20 SAT-Stereo" }, |
| 971 | { 0x0060, MSP_CARRIER(7.2), MSP_CARRIER(7.2), "7.2 SAT ADR" }, |
| 972 | { -1, 0, 0, NULL }, /* EOF */ |
| 973 | }; |
| 974 | |
| 975 | static inline const char *msp34xx_standard_mode_name(int mode) |
| 976 | { |
| 977 | int i; |
| 978 | for (i = 0; modelist[i].name != NULL; i++) |
| 979 | if (modelist[i].retval == mode) |
| 980 | return modelist[i].name; |
| 981 | return "unknown"; |
| 982 | } |
| 983 | |
| 984 | static int msp34xx_modus(int norm) |
| 985 | { |
| 986 | switch (norm) { |
| 987 | case VIDEO_MODE_PAL: |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 988 | #if 1 |
| 989 | /* experimental: not sure this works with all chip versions */ |
| 990 | return 0x7003; |
| 991 | #else |
| 992 | /* previous value, try this if it breaks ... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | return 0x1003; |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 994 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | case VIDEO_MODE_NTSC: /* BTSC */ |
| 996 | return 0x2003; |
| 997 | case VIDEO_MODE_SECAM: |
| 998 | return 0x0003; |
| 999 | case VIDEO_MODE_RADIO: |
| 1000 | return 0x0003; |
| 1001 | case VIDEO_MODE_AUTO: |
| 1002 | return 0x2003; |
| 1003 | default: |
| 1004 | return 0x0003; |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | static int msp34xx_standard(int norm) |
| 1009 | { |
| 1010 | switch (norm) { |
| 1011 | case VIDEO_MODE_PAL: |
| 1012 | return 1; |
| 1013 | case VIDEO_MODE_NTSC: /* BTSC */ |
| 1014 | return 0x0020; |
| 1015 | case VIDEO_MODE_SECAM: |
| 1016 | return 1; |
| 1017 | case VIDEO_MODE_RADIO: |
| 1018 | return 0x0040; |
| 1019 | default: |
| 1020 | return 1; |
| 1021 | } |
| 1022 | } |
| 1023 | |
| 1024 | static int msp3410d_thread(void *data) |
| 1025 | { |
| 1026 | struct i2c_client *client = data; |
| 1027 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1028 | int mode,val,i,std; |
| 1029 | |
| 1030 | printk("msp3410: daemon started\n"); |
| 1031 | for (;;) { |
| 1032 | d2printk(KERN_DEBUG "msp3410: thread: sleep\n"); |
| 1033 | msp34xx_sleep(msp,-1); |
| 1034 | d2printk(KERN_DEBUG "msp3410: thread: wakeup\n"); |
| 1035 | |
| 1036 | restart: |
| 1037 | dprintk("msp3410: thread: restart scan\n"); |
| 1038 | msp->restart = 0; |
| 1039 | if (kthread_should_stop()) |
| 1040 | break; |
| 1041 | |
| 1042 | if (msp->mode == MSP_MODE_EXTERN) { |
| 1043 | /* no carrier scan needed, just unmute */ |
| 1044 | dprintk(KERN_DEBUG "msp3410: thread: no carrier scan\n"); |
| 1045 | msp3400c_setvolume(client, msp->muted, |
| 1046 | msp->volume, msp->balance); |
| 1047 | continue; |
| 1048 | } |
| 1049 | |
| 1050 | /* put into sane state (and mute) */ |
| 1051 | msp3400c_reset(client); |
| 1052 | |
| 1053 | /* some time for the tuner to sync */ |
| 1054 | if (msp34xx_sleep(msp,200)) |
| 1055 | goto restart; |
| 1056 | |
| 1057 | /* start autodetect */ |
| 1058 | mode = msp34xx_modus(msp->norm); |
| 1059 | std = msp34xx_standard(msp->norm); |
| 1060 | msp3400c_write(client, I2C_MSP3400C_DEM, 0x30, mode); |
| 1061 | msp3400c_write(client, I2C_MSP3400C_DEM, 0x20, std); |
| 1062 | msp->watch_stereo = 0; |
| 1063 | |
| 1064 | if (debug) |
| 1065 | printk(KERN_DEBUG "msp3410: setting mode: %s (0x%04x)\n", |
| 1066 | msp34xx_standard_mode_name(std) ,std); |
| 1067 | |
| 1068 | if (std != 1) { |
| 1069 | /* programmed some specific mode */ |
| 1070 | val = std; |
| 1071 | } else { |
| 1072 | /* triggered autodetect */ |
| 1073 | for (;;) { |
| 1074 | if (msp34xx_sleep(msp,100)) |
| 1075 | goto restart; |
| 1076 | |
| 1077 | /* check results */ |
| 1078 | val = msp3400c_read(client, I2C_MSP3400C_DEM, 0x7e); |
| 1079 | if (val < 0x07ff) |
| 1080 | break; |
| 1081 | dprintk(KERN_DEBUG "msp3410: detection still in progress\n"); |
| 1082 | } |
| 1083 | } |
| 1084 | for (i = 0; modelist[i].name != NULL; i++) |
| 1085 | if (modelist[i].retval == val) |
| 1086 | break; |
| 1087 | dprintk(KERN_DEBUG "msp3410: current mode: %s (0x%04x)\n", |
| 1088 | modelist[i].name ? modelist[i].name : "unknown", |
| 1089 | val); |
| 1090 | msp->main = modelist[i].main; |
| 1091 | msp->second = modelist[i].second; |
| 1092 | |
| 1093 | if (amsound && (msp->norm == VIDEO_MODE_SECAM) && (val != 0x0009)) { |
| 1094 | /* autodetection has failed, let backup */ |
| 1095 | dprintk(KERN_DEBUG "msp3410: autodetection failed," |
| 1096 | " switching to backup mode: %s (0x%04x)\n", |
| 1097 | modelist[8].name ? modelist[8].name : "unknown",val); |
| 1098 | val = 0x0009; |
| 1099 | msp3400c_write(client, I2C_MSP3400C_DEM, 0x20, val); |
| 1100 | } |
| 1101 | |
| 1102 | /* set various prescales */ |
| 1103 | msp3400c_write(client, I2C_MSP3400C_DFP, 0x0d, 0x1900); /* scart */ |
| 1104 | msp3400c_write(client, I2C_MSP3400C_DFP, 0x0e, 0x2403); /* FM */ |
| 1105 | msp3400c_write(client, I2C_MSP3400C_DFP, 0x10, 0x5a00); /* nicam */ |
| 1106 | |
| 1107 | /* set stereo */ |
| 1108 | switch (val) { |
| 1109 | case 0x0008: /* B/G NICAM */ |
| 1110 | case 0x000a: /* I NICAM */ |
| 1111 | if (val == 0x0008) |
| 1112 | msp->mode = MSP_MODE_FM_NICAM1; |
| 1113 | else |
| 1114 | msp->mode = MSP_MODE_FM_NICAM2; |
| 1115 | /* just turn on stereo */ |
| 1116 | msp->rxsubchans = V4L2_TUNER_SUB_STEREO; |
| 1117 | msp->nicam_on = 1; |
| 1118 | msp->watch_stereo = 1; |
| 1119 | msp3400c_set_audmode(client,V4L2_TUNER_MODE_STEREO); |
| 1120 | break; |
| 1121 | case 0x0009: |
| 1122 | msp->mode = MSP_MODE_AM_NICAM; |
| 1123 | msp->rxsubchans = V4L2_TUNER_SUB_MONO; |
| 1124 | msp->nicam_on = 1; |
| 1125 | msp3400c_set_audmode(client,V4L2_TUNER_MODE_MONO); |
| 1126 | msp->watch_stereo = 1; |
| 1127 | break; |
| 1128 | case 0x0020: /* BTSC */ |
| 1129 | /* just turn on stereo */ |
| 1130 | msp->mode = MSP_MODE_BTSC; |
| 1131 | msp->rxsubchans = V4L2_TUNER_SUB_STEREO; |
| 1132 | msp->nicam_on = 0; |
| 1133 | msp->watch_stereo = 1; |
| 1134 | msp3400c_set_audmode(client,V4L2_TUNER_MODE_STEREO); |
| 1135 | break; |
| 1136 | case 0x0040: /* FM radio */ |
| 1137 | msp->mode = MSP_MODE_FM_RADIO; |
| 1138 | msp->rxsubchans = V4L2_TUNER_SUB_STEREO; |
| 1139 | msp->audmode = V4L2_TUNER_MODE_STEREO; |
| 1140 | msp->nicam_on = 0; |
| 1141 | msp->watch_stereo = 0; |
| 1142 | /* not needed in theory if HAVE_RADIO(), but |
| 1143 | short programming enables carrier mute */ |
| 1144 | msp3400c_setmode(client,MSP_MODE_FM_RADIO); |
| 1145 | msp3400c_setcarrier(client, MSP_CARRIER(10.7), |
| 1146 | MSP_CARRIER(10.7)); |
| 1147 | /* scart routing */ |
| 1148 | msp3400c_set_scart(client,SCART_IN2,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | /* msp34xx does radio decoding */ |
| 1150 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x08, 0x0020); |
| 1151 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x09, 0x0020); |
| 1152 | msp3400c_write(client,I2C_MSP3400C_DFP, 0x0b, 0x0020); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | break; |
| 1154 | case 0x0003: |
| 1155 | case 0x0004: |
| 1156 | case 0x0005: |
| 1157 | msp->mode = MSP_MODE_FM_TERRA; |
| 1158 | msp->rxsubchans = V4L2_TUNER_SUB_MONO; |
| 1159 | msp->audmode = V4L2_TUNER_MODE_MONO; |
| 1160 | msp->nicam_on = 0; |
| 1161 | msp->watch_stereo = 1; |
| 1162 | break; |
| 1163 | } |
| 1164 | |
| 1165 | /* unmute, restore misc registers */ |
| 1166 | msp3400c_setbass(client, msp->bass); |
| 1167 | msp3400c_settreble(client, msp->treble); |
| 1168 | msp3400c_setvolume(client, msp->muted, |
| 1169 | msp->volume, msp->balance); |
| 1170 | msp3400c_write(client, I2C_MSP3400C_DFP, 0x0013, msp->acb); |
| 1171 | |
| 1172 | /* monitor tv audio mode */ |
| 1173 | while (msp->watch_stereo) { |
| 1174 | if (msp34xx_sleep(msp,5000)) |
| 1175 | goto restart; |
| 1176 | watch_stereo(client); |
| 1177 | } |
| 1178 | } |
| 1179 | dprintk(KERN_DEBUG "msp3410: thread: exit\n"); |
| 1180 | return 0; |
| 1181 | } |
| 1182 | |
| 1183 | /* ----------------------------------------------------------------------- */ |
| 1184 | /* msp34xxG + (simpler no-thread) */ |
| 1185 | /* this one uses both automatic standard detection and automatic sound */ |
| 1186 | /* select which are available in the newer G versions */ |
| 1187 | /* struct msp: only norm, acb and source are really used in this mode */ |
| 1188 | |
| 1189 | static void msp34xxg_set_source(struct i2c_client *client, int source); |
| 1190 | |
| 1191 | /* (re-)initialize the msp34xxg, according to the current norm in msp->norm |
| 1192 | * return 0 if it worked, -1 if it failed |
| 1193 | */ |
| 1194 | static int msp34xxg_init(struct i2c_client *client) |
| 1195 | { |
| 1196 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1197 | int modus,std; |
| 1198 | |
| 1199 | if (msp3400c_reset(client)) |
| 1200 | return -1; |
| 1201 | |
| 1202 | /* make sure that input/output is muted (paranoid mode) */ |
| 1203 | if (msp3400c_write(client, |
| 1204 | I2C_MSP3400C_DFP, |
| 1205 | 0x13, /* ACB */ |
| 1206 | 0x0f20 /* mute DSP input, mute SCART 1 */)) |
| 1207 | return -1; |
| 1208 | |
| 1209 | /* step-by-step initialisation, as described in the manual */ |
| 1210 | modus = msp34xx_modus(msp->norm); |
| 1211 | std = msp34xx_standard(msp->norm); |
| 1212 | modus &= ~0x03; /* STATUS_CHANGE=0 */ |
| 1213 | modus |= 0x01; /* AUTOMATIC_SOUND_DETECTION=1 */ |
| 1214 | if (msp3400c_write(client, |
| 1215 | I2C_MSP3400C_DEM, |
| 1216 | 0x30/*MODUS*/, |
| 1217 | modus)) |
| 1218 | return -1; |
| 1219 | if (msp3400c_write(client, |
| 1220 | I2C_MSP3400C_DEM, |
| 1221 | 0x20/*stanard*/, |
| 1222 | std)) |
| 1223 | return -1; |
| 1224 | |
| 1225 | /* write the dfps that may have an influence on |
| 1226 | standard/audio autodetection right now */ |
| 1227 | msp34xxg_set_source(client, msp->source); |
| 1228 | |
| 1229 | if (msp3400c_write(client, I2C_MSP3400C_DFP, |
| 1230 | 0x0e, /* AM/FM Prescale */ |
| 1231 | 0x3000 /* default: [15:8] 75khz deviation */)) |
| 1232 | return -1; |
| 1233 | |
| 1234 | if (msp3400c_write(client, I2C_MSP3400C_DFP, |
| 1235 | 0x10, /* NICAM Prescale */ |
| 1236 | 0x5a00 /* default: 9db gain (as recommended) */)) |
| 1237 | return -1; |
| 1238 | |
| 1239 | if (msp3400c_write(client, |
| 1240 | I2C_MSP3400C_DEM, |
| 1241 | 0x20, /* STANDARD SELECT */ |
| 1242 | standard /* default: 0x01 for automatic standard select*/)) |
| 1243 | return -1; |
| 1244 | return 0; |
| 1245 | } |
| 1246 | |
| 1247 | static int msp34xxg_thread(void *data) |
| 1248 | { |
| 1249 | struct i2c_client *client = data; |
| 1250 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1251 | int val, std, i; |
| 1252 | |
| 1253 | printk("msp34xxg: daemon started\n"); |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1254 | msp->source = 1; /* default */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | for (;;) { |
| 1256 | d2printk(KERN_DEBUG "msp34xxg: thread: sleep\n"); |
| 1257 | msp34xx_sleep(msp,-1); |
| 1258 | d2printk(KERN_DEBUG "msp34xxg: thread: wakeup\n"); |
| 1259 | |
| 1260 | restart: |
| 1261 | dprintk("msp34xxg: thread: restart scan\n"); |
| 1262 | msp->restart = 0; |
| 1263 | if (kthread_should_stop()) |
| 1264 | break; |
| 1265 | |
| 1266 | /* setup the chip*/ |
| 1267 | msp34xxg_init(client); |
| 1268 | std = standard; |
| 1269 | if (std != 0x01) |
| 1270 | goto unmute; |
| 1271 | |
| 1272 | /* watch autodetect */ |
| 1273 | dprintk("msp34xxg: triggered autodetect, waiting for result\n"); |
| 1274 | for (i = 0; i < 10; i++) { |
| 1275 | if (msp34xx_sleep(msp,100)) |
| 1276 | goto restart; |
| 1277 | |
| 1278 | /* check results */ |
| 1279 | val = msp3400c_read(client, I2C_MSP3400C_DEM, 0x7e); |
| 1280 | if (val < 0x07ff) { |
| 1281 | std = val; |
| 1282 | break; |
| 1283 | } |
| 1284 | dprintk("msp34xxg: detection still in progress\n"); |
| 1285 | } |
| 1286 | if (0x01 == std) { |
| 1287 | dprintk("msp34xxg: detection still in progress after 10 tries. giving up.\n"); |
| 1288 | continue; |
| 1289 | } |
| 1290 | |
| 1291 | unmute: |
| 1292 | dprintk("msp34xxg: current mode: %s (0x%04x)\n", |
| 1293 | msp34xx_standard_mode_name(std), std); |
| 1294 | |
| 1295 | /* unmute: dispatch sound to scart output, set scart volume */ |
| 1296 | dprintk("msp34xxg: unmute\n"); |
| 1297 | |
| 1298 | msp3400c_setbass(client, msp->bass); |
| 1299 | msp3400c_settreble(client, msp->treble); |
| 1300 | msp3400c_setvolume(client, msp->muted, msp->volume, msp->balance); |
| 1301 | |
| 1302 | /* restore ACB */ |
| 1303 | if (msp3400c_write(client, |
| 1304 | I2C_MSP3400C_DFP, |
| 1305 | 0x13, /* ACB */ |
| 1306 | msp->acb)) |
| 1307 | return -1; |
| 1308 | } |
| 1309 | dprintk(KERN_DEBUG "msp34xxg: thread: exit\n"); |
| 1310 | return 0; |
| 1311 | } |
| 1312 | |
| 1313 | /* set the same 'source' for the loudspeaker, scart and quasi-peak detector |
| 1314 | * the value for source is the same as bit 15:8 of DFP registers 0x08, |
| 1315 | * 0x0a and 0x0c: 0=mono, 1=stereo or A|B, 2=SCART, 3=stereo or A, 4=stereo or B |
| 1316 | * |
| 1317 | * this function replaces msp3400c_setstereo |
| 1318 | */ |
| 1319 | static void msp34xxg_set_source(struct i2c_client *client, int source) |
| 1320 | { |
| 1321 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1322 | |
| 1323 | /* fix matrix mode to stereo and let the msp choose what |
| 1324 | * to output according to 'source', as recommended |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1325 | * for MONO (source==0) downmixing set bit[7:0] to 0x30 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | */ |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1327 | int value = (source&0x07)<<8|(source==0 ? 0x30:0x20); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | dprintk("msp34xxg: set source to %d (0x%x)\n", source, value); |
| 1329 | msp3400c_write(client, |
| 1330 | I2C_MSP3400C_DFP, |
| 1331 | 0x08, /* Loudspeaker Output */ |
| 1332 | value); |
| 1333 | msp3400c_write(client, |
| 1334 | I2C_MSP3400C_DFP, |
| 1335 | 0x0a, /* SCART1 DA Output */ |
| 1336 | value); |
| 1337 | msp3400c_write(client, |
| 1338 | I2C_MSP3400C_DFP, |
| 1339 | 0x0c, /* Quasi-peak detector */ |
| 1340 | value); |
| 1341 | /* |
| 1342 | * set identification threshold. Personally, I |
| 1343 | * I set it to a higher value that the default |
| 1344 | * of 0x190 to ignore noisy stereo signals. |
| 1345 | * this needs tuning. (recommended range 0x00a0-0x03c0) |
| 1346 | * 0x7f0 = forced mono mode |
| 1347 | */ |
| 1348 | msp3400c_write(client, |
| 1349 | I2C_MSP3400C_DEM, |
| 1350 | 0x22, /* a2 threshold for stereo/bilingual */ |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1351 | stereo_threshold); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | msp->source=source; |
| 1353 | } |
| 1354 | |
| 1355 | static void msp34xxg_detect_stereo(struct i2c_client *client) |
| 1356 | { |
| 1357 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1358 | |
| 1359 | int status = msp3400c_read(client, |
| 1360 | I2C_MSP3400C_DEM, |
| 1361 | 0x0200 /* STATUS */); |
| 1362 | int is_bilingual = status&0x100; |
| 1363 | int is_stereo = status&0x40; |
| 1364 | |
| 1365 | msp->rxsubchans = 0; |
| 1366 | if (is_stereo) |
| 1367 | msp->rxsubchans |= V4L2_TUNER_SUB_STEREO; |
| 1368 | else |
| 1369 | msp->rxsubchans |= V4L2_TUNER_SUB_MONO; |
| 1370 | if (is_bilingual) { |
| 1371 | msp->rxsubchans |= V4L2_TUNER_SUB_LANG1|V4L2_TUNER_SUB_LANG2; |
| 1372 | /* I'm supposed to check whether it's SAP or not |
| 1373 | * and set only LANG2/SAP in this case. Yet, the MSP |
| 1374 | * does a lot of work to hide this and handle everything |
| 1375 | * the same way. I don't want to work around it so unless |
| 1376 | * this is a problem, I'll handle SAP just like lang1/lang2. |
| 1377 | */ |
| 1378 | } |
| 1379 | dprintk("msp34xxg: status=0x%x, stereo=%d, bilingual=%d -> rxsubchans=%d\n", |
| 1380 | status, is_stereo, is_bilingual, msp->rxsubchans); |
| 1381 | } |
| 1382 | |
| 1383 | static void msp34xxg_set_audmode(struct i2c_client *client, int audmode) |
| 1384 | { |
| 1385 | struct msp3400c *msp = i2c_get_clientdata(client); |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1386 | int source; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
| 1388 | switch (audmode) { |
| 1389 | case V4L2_TUNER_MODE_MONO: |
| 1390 | source=0; /* mono only */ |
| 1391 | break; |
| 1392 | case V4L2_TUNER_MODE_STEREO: |
| 1393 | source=1; /* stereo or A|B, see comment in msp34xxg_get_v4l2_stereo() */ |
| 1394 | /* problem: that could also mean 2 (scart input) */ |
| 1395 | break; |
| 1396 | case V4L2_TUNER_MODE_LANG1: |
| 1397 | source=3; /* stereo or A */ |
| 1398 | break; |
| 1399 | case V4L2_TUNER_MODE_LANG2: |
| 1400 | source=4; /* stereo or B */ |
| 1401 | break; |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1402 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | audmode = 0; |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1404 | source = 1; |
| 1405 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | } |
| 1407 | msp->audmode = audmode; |
| 1408 | msp34xxg_set_source(client, source); |
| 1409 | } |
| 1410 | |
| 1411 | |
| 1412 | /* ----------------------------------------------------------------------- */ |
| 1413 | |
| 1414 | static int msp_attach(struct i2c_adapter *adap, int addr, int kind); |
| 1415 | static int msp_detach(struct i2c_client *client); |
| 1416 | static int msp_probe(struct i2c_adapter *adap); |
| 1417 | static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg); |
| 1418 | |
Pavel Machek | 829ca9a | 2005-09-03 15:56:56 -0700 | [diff] [blame] | 1419 | static int msp_suspend(struct device * dev, pm_message_t state, u32 level); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | static int msp_resume(struct device * dev, u32 level); |
| 1421 | |
| 1422 | static void msp_wake_thread(struct i2c_client *client); |
| 1423 | |
| 1424 | static struct i2c_driver driver = { |
| 1425 | .owner = THIS_MODULE, |
| 1426 | .name = "i2c msp3400 driver", |
| 1427 | .id = I2C_DRIVERID_MSP3400, |
| 1428 | .flags = I2C_DF_NOTIFY, |
| 1429 | .attach_adapter = msp_probe, |
| 1430 | .detach_client = msp_detach, |
| 1431 | .command = msp_command, |
| 1432 | .driver = { |
| 1433 | .suspend = msp_suspend, |
| 1434 | .resume = msp_resume, |
| 1435 | }, |
| 1436 | }; |
| 1437 | |
| 1438 | static struct i2c_client client_template = |
| 1439 | { |
Jean Delvare | fae91e7 | 2005-08-15 19:57:04 +0200 | [diff] [blame^] | 1440 | .name = "(unset)", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | .flags = I2C_CLIENT_ALLOW_USE, |
| 1442 | .driver = &driver, |
| 1443 | }; |
| 1444 | |
| 1445 | static int msp_attach(struct i2c_adapter *adap, int addr, int kind) |
| 1446 | { |
| 1447 | struct msp3400c *msp; |
| 1448 | struct i2c_client *c; |
| 1449 | int (*thread_func)(void *data) = NULL; |
| 1450 | |
| 1451 | client_template.adapter = adap; |
| 1452 | client_template.addr = addr; |
| 1453 | |
| 1454 | if (-1 == msp3400c_reset(&client_template)) { |
| 1455 | dprintk("msp3400: no chip found\n"); |
| 1456 | return -1; |
| 1457 | } |
| 1458 | |
| 1459 | if (NULL == (c = kmalloc(sizeof(struct i2c_client),GFP_KERNEL))) |
| 1460 | return -ENOMEM; |
| 1461 | memcpy(c,&client_template,sizeof(struct i2c_client)); |
| 1462 | if (NULL == (msp = kmalloc(sizeof(struct msp3400c),GFP_KERNEL))) { |
| 1463 | kfree(c); |
| 1464 | return -ENOMEM; |
| 1465 | } |
| 1466 | |
| 1467 | memset(msp,0,sizeof(struct msp3400c)); |
| 1468 | msp->volume = 58880; /* 0db gain */ |
| 1469 | msp->balance = 32768; |
| 1470 | msp->bass = 32768; |
| 1471 | msp->treble = 32768; |
| 1472 | msp->input = -1; |
| 1473 | msp->muted = 1; |
| 1474 | |
| 1475 | i2c_set_clientdata(c, msp); |
| 1476 | init_waitqueue_head(&msp->wq); |
| 1477 | |
| 1478 | if (-1 == msp3400c_reset(c)) { |
| 1479 | kfree(msp); |
| 1480 | kfree(c); |
| 1481 | dprintk("msp3400: no chip found\n"); |
| 1482 | return -1; |
| 1483 | } |
| 1484 | |
| 1485 | msp->rev1 = msp3400c_read(c, I2C_MSP3400C_DFP, 0x1e); |
| 1486 | if (-1 != msp->rev1) |
| 1487 | msp->rev2 = msp3400c_read(c, I2C_MSP3400C_DFP, 0x1f); |
| 1488 | if ((-1 == msp->rev1) || (0 == msp->rev1 && 0 == msp->rev2)) { |
| 1489 | kfree(msp); |
| 1490 | kfree(c); |
| 1491 | printk("msp3400: error while reading chip version\n"); |
| 1492 | return -1; |
| 1493 | } |
| 1494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | msp3400c_setvolume(c, msp->muted, msp->volume, msp->balance); |
| 1496 | |
| 1497 | snprintf(c->name, sizeof(c->name), "MSP34%02d%c-%c%d", |
| 1498 | (msp->rev2>>8)&0xff, (msp->rev1&0xff)+'@', |
| 1499 | ((msp->rev1>>8)&0xff)+'@', msp->rev2&0x1f); |
| 1500 | |
| 1501 | msp->opmode = opmode; |
| 1502 | if (OPMODE_AUTO == msp->opmode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | if (HAVE_SIMPLER(msp)) |
| 1504 | msp->opmode = OPMODE_SIMPLER; |
Gerd Knorr | faf8b24 | 2005-05-01 08:59:20 -0700 | [diff] [blame] | 1505 | else if (HAVE_SIMPLE(msp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | msp->opmode = OPMODE_SIMPLE; |
| 1507 | else |
| 1508 | msp->opmode = OPMODE_MANUAL; |
| 1509 | } |
| 1510 | |
| 1511 | /* hello world :-) */ |
Jean Delvare | fae91e7 | 2005-08-15 19:57:04 +0200 | [diff] [blame^] | 1512 | printk(KERN_INFO "msp34xx: init: chip=%s", c->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | if (HAVE_NICAM(msp)) |
| 1514 | printk(" +nicam"); |
| 1515 | if (HAVE_SIMPLE(msp)) |
| 1516 | printk(" +simple"); |
| 1517 | if (HAVE_SIMPLER(msp)) |
| 1518 | printk(" +simpler"); |
| 1519 | if (HAVE_RADIO(msp)) |
| 1520 | printk(" +radio"); |
| 1521 | |
| 1522 | /* version-specific initialization */ |
| 1523 | switch (msp->opmode) { |
| 1524 | case OPMODE_MANUAL: |
| 1525 | printk(" mode=manual"); |
| 1526 | thread_func = msp3400c_thread; |
| 1527 | break; |
| 1528 | case OPMODE_SIMPLE: |
| 1529 | printk(" mode=simple"); |
| 1530 | thread_func = msp3410d_thread; |
| 1531 | break; |
| 1532 | case OPMODE_SIMPLER: |
| 1533 | printk(" mode=simpler"); |
| 1534 | thread_func = msp34xxg_thread; |
| 1535 | break; |
| 1536 | } |
| 1537 | printk("\n"); |
| 1538 | |
| 1539 | /* startup control thread if needed */ |
| 1540 | if (thread_func) { |
| 1541 | msp->kthread = kthread_run(thread_func, c, "msp34xx"); |
| 1542 | if (NULL == msp->kthread) |
| 1543 | printk(KERN_WARNING "msp34xx: kernel_thread() failed\n"); |
| 1544 | msp_wake_thread(c); |
| 1545 | } |
| 1546 | |
| 1547 | /* done */ |
| 1548 | i2c_attach_client(c); |
| 1549 | return 0; |
| 1550 | } |
| 1551 | |
| 1552 | static int msp_detach(struct i2c_client *client) |
| 1553 | { |
| 1554 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1555 | |
| 1556 | /* shutdown control thread */ |
| 1557 | if (msp->kthread >= 0) { |
| 1558 | msp->restart = 1; |
| 1559 | kthread_stop(msp->kthread); |
| 1560 | } |
| 1561 | msp3400c_reset(client); |
| 1562 | |
| 1563 | i2c_detach_client(client); |
| 1564 | kfree(msp); |
| 1565 | kfree(client); |
| 1566 | return 0; |
| 1567 | } |
| 1568 | |
| 1569 | static int msp_probe(struct i2c_adapter *adap) |
| 1570 | { |
| 1571 | if (adap->class & I2C_CLASS_TV_ANALOG) |
| 1572 | return i2c_probe(adap, &addr_data, msp_attach); |
| 1573 | return 0; |
| 1574 | } |
| 1575 | |
| 1576 | static void msp_wake_thread(struct i2c_client *client) |
| 1577 | { |
| 1578 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1579 | |
| 1580 | if (NULL == msp->kthread) |
| 1581 | return; |
| 1582 | msp3400c_setvolume(client,msp->muted,0,0); |
| 1583 | msp->watch_stereo = 0; |
| 1584 | msp->restart = 1; |
| 1585 | wake_up_interruptible(&msp->wq); |
| 1586 | } |
| 1587 | |
| 1588 | /* ----------------------------------------------------------------------- */ |
| 1589 | |
| 1590 | static int mode_v4l2_to_v4l1(int rxsubchans) |
| 1591 | { |
| 1592 | int mode = 0; |
| 1593 | |
| 1594 | if (rxsubchans & V4L2_TUNER_SUB_STEREO) |
| 1595 | mode |= VIDEO_SOUND_STEREO; |
| 1596 | if (rxsubchans & V4L2_TUNER_SUB_LANG2) |
| 1597 | mode |= VIDEO_SOUND_LANG2; |
| 1598 | if (rxsubchans & V4L2_TUNER_SUB_LANG1) |
| 1599 | mode |= VIDEO_SOUND_LANG1; |
| 1600 | if (0 == mode) |
| 1601 | mode |= VIDEO_SOUND_MONO; |
| 1602 | return mode; |
| 1603 | } |
| 1604 | |
| 1605 | static int mode_v4l1_to_v4l2(int mode) |
| 1606 | { |
| 1607 | if (mode & VIDEO_SOUND_STEREO) |
| 1608 | return V4L2_TUNER_MODE_STEREO; |
| 1609 | if (mode & VIDEO_SOUND_LANG2) |
| 1610 | return V4L2_TUNER_MODE_LANG2; |
| 1611 | if (mode & VIDEO_SOUND_LANG1) |
| 1612 | return V4L2_TUNER_MODE_LANG1; |
| 1613 | return V4L2_TUNER_MODE_MONO; |
| 1614 | } |
| 1615 | |
| 1616 | static void msp_any_detect_stereo(struct i2c_client *client) |
| 1617 | { |
| 1618 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1619 | |
| 1620 | switch (msp->opmode) { |
| 1621 | case OPMODE_MANUAL: |
| 1622 | case OPMODE_SIMPLE: |
| 1623 | autodetect_stereo(client); |
| 1624 | break; |
| 1625 | case OPMODE_SIMPLER: |
| 1626 | msp34xxg_detect_stereo(client); |
| 1627 | break; |
| 1628 | } |
| 1629 | } |
| 1630 | |
| 1631 | static void msp_any_set_audmode(struct i2c_client *client, int audmode) |
| 1632 | { |
| 1633 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1634 | |
| 1635 | switch (msp->opmode) { |
| 1636 | case OPMODE_MANUAL: |
| 1637 | case OPMODE_SIMPLE: |
| 1638 | msp->watch_stereo = 0; |
| 1639 | msp3400c_set_audmode(client, audmode); |
| 1640 | break; |
| 1641 | case OPMODE_SIMPLER: |
| 1642 | msp34xxg_set_audmode(client, audmode); |
| 1643 | break; |
| 1644 | } |
| 1645 | } |
| 1646 | |
| 1647 | static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg) |
| 1648 | { |
| 1649 | struct msp3400c *msp = i2c_get_clientdata(client); |
| 1650 | __u16 *sarg = arg; |
| 1651 | int scart = 0; |
| 1652 | |
| 1653 | switch (cmd) { |
| 1654 | |
| 1655 | case AUDC_SET_INPUT: |
| 1656 | dprintk(KERN_DEBUG "msp34xx: AUDC_SET_INPUT(%d)\n",*sarg); |
| 1657 | if (*sarg == msp->input) |
| 1658 | break; |
| 1659 | msp->input = *sarg; |
| 1660 | switch (*sarg) { |
| 1661 | case AUDIO_RADIO: |
| 1662 | /* Hauppauge uses IN2 for the radio */ |
| 1663 | msp->mode = MSP_MODE_FM_RADIO; |
| 1664 | scart = SCART_IN2; |
| 1665 | break; |
| 1666 | case AUDIO_EXTERN_1: |
| 1667 | /* IN1 is often used for external input ... */ |
| 1668 | msp->mode = MSP_MODE_EXTERN; |
| 1669 | scart = SCART_IN1; |
| 1670 | break; |
| 1671 | case AUDIO_EXTERN_2: |
| 1672 | /* ... sometimes it is IN2 through ;) */ |
| 1673 | msp->mode = MSP_MODE_EXTERN; |
| 1674 | scart = SCART_IN2; |
| 1675 | break; |
| 1676 | case AUDIO_TUNER: |
| 1677 | msp->mode = -1; |
| 1678 | break; |
| 1679 | default: |
| 1680 | if (*sarg & AUDIO_MUTE) |
| 1681 | msp3400c_set_scart(client,SCART_MUTE,0); |
| 1682 | break; |
| 1683 | } |
| 1684 | if (scart) { |
| 1685 | msp->rxsubchans = V4L2_TUNER_SUB_STEREO; |
| 1686 | msp->audmode = V4L2_TUNER_MODE_STEREO; |
| 1687 | msp3400c_set_scart(client,scart,0); |
| 1688 | msp3400c_write(client,I2C_MSP3400C_DFP,0x000d,0x1900); |
| 1689 | if (msp->opmode != OPMODE_SIMPLER) |
| 1690 | msp3400c_set_audmode(client, msp->audmode); |
| 1691 | } |
| 1692 | msp_wake_thread(client); |
| 1693 | break; |
| 1694 | |
| 1695 | case AUDC_SET_RADIO: |
| 1696 | dprintk(KERN_DEBUG "msp34xx: AUDC_SET_RADIO\n"); |
| 1697 | msp->norm = VIDEO_MODE_RADIO; |
| 1698 | dprintk(KERN_DEBUG "msp34xx: switching to radio mode\n"); |
| 1699 | msp->watch_stereo = 0; |
| 1700 | switch (msp->opmode) { |
| 1701 | case OPMODE_MANUAL: |
| 1702 | /* set msp3400 to FM radio mode */ |
| 1703 | msp3400c_setmode(client,MSP_MODE_FM_RADIO); |
| 1704 | msp3400c_setcarrier(client, MSP_CARRIER(10.7), |
| 1705 | MSP_CARRIER(10.7)); |
| 1706 | msp3400c_setvolume(client, msp->muted, |
| 1707 | msp->volume, msp->balance); |
| 1708 | break; |
| 1709 | case OPMODE_SIMPLE: |
| 1710 | case OPMODE_SIMPLER: |
| 1711 | /* the thread will do for us */ |
| 1712 | msp_wake_thread(client); |
| 1713 | break; |
| 1714 | } |
| 1715 | break; |
| 1716 | |
| 1717 | /* --- v4l ioctls --- */ |
| 1718 | /* take care: bttv does userspace copying, we'll get a |
| 1719 | kernel pointer here... */ |
| 1720 | case VIDIOCGAUDIO: |
| 1721 | { |
| 1722 | struct video_audio *va = arg; |
| 1723 | |
| 1724 | dprintk(KERN_DEBUG "msp34xx: VIDIOCGAUDIO\n"); |
| 1725 | va->flags |= VIDEO_AUDIO_VOLUME | |
| 1726 | VIDEO_AUDIO_BASS | |
| 1727 | VIDEO_AUDIO_TREBLE | |
| 1728 | VIDEO_AUDIO_MUTABLE; |
| 1729 | if (msp->muted) |
| 1730 | va->flags |= VIDEO_AUDIO_MUTE; |
| 1731 | |
| 1732 | va->volume = msp->volume; |
| 1733 | va->balance = (va->volume) ? msp->balance : 32768; |
| 1734 | va->bass = msp->bass; |
| 1735 | va->treble = msp->treble; |
| 1736 | |
| 1737 | msp_any_detect_stereo(client); |
| 1738 | va->mode = mode_v4l2_to_v4l1(msp->rxsubchans); |
| 1739 | break; |
| 1740 | } |
| 1741 | case VIDIOCSAUDIO: |
| 1742 | { |
| 1743 | struct video_audio *va = arg; |
| 1744 | |
| 1745 | dprintk(KERN_DEBUG "msp34xx: VIDIOCSAUDIO\n"); |
| 1746 | msp->muted = (va->flags & VIDEO_AUDIO_MUTE); |
| 1747 | msp->volume = va->volume; |
| 1748 | msp->balance = va->balance; |
| 1749 | msp->bass = va->bass; |
| 1750 | msp->treble = va->treble; |
| 1751 | |
| 1752 | msp3400c_setvolume(client, msp->muted, |
| 1753 | msp->volume, msp->balance); |
| 1754 | msp3400c_setbass(client,msp->bass); |
| 1755 | msp3400c_settreble(client,msp->treble); |
| 1756 | |
| 1757 | if (va->mode != 0 && msp->norm != VIDEO_MODE_RADIO) |
| 1758 | msp_any_set_audmode(client,mode_v4l1_to_v4l2(va->mode)); |
| 1759 | break; |
| 1760 | } |
| 1761 | case VIDIOCSCHAN: |
| 1762 | { |
| 1763 | struct video_channel *vc = arg; |
| 1764 | |
| 1765 | dprintk(KERN_DEBUG "msp34xx: VIDIOCSCHAN (norm=%d)\n",vc->norm); |
| 1766 | msp->norm = vc->norm; |
| 1767 | msp_wake_thread(client); |
| 1768 | break; |
| 1769 | } |
| 1770 | |
| 1771 | case VIDIOCSFREQ: |
| 1772 | case VIDIOC_S_FREQUENCY: |
| 1773 | { |
| 1774 | /* new channel -- kick audio carrier scan */ |
| 1775 | dprintk(KERN_DEBUG "msp34xx: VIDIOCSFREQ\n"); |
| 1776 | msp_wake_thread(client); |
| 1777 | break; |
| 1778 | } |
| 1779 | |
| 1780 | /* --- v4l2 ioctls --- */ |
| 1781 | case VIDIOC_G_TUNER: |
| 1782 | { |
| 1783 | struct v4l2_tuner *vt = arg; |
| 1784 | |
| 1785 | msp_any_detect_stereo(client); |
| 1786 | vt->audmode = msp->audmode; |
| 1787 | vt->rxsubchans = msp->rxsubchans; |
| 1788 | vt->capability = V4L2_TUNER_CAP_STEREO | |
| 1789 | V4L2_TUNER_CAP_LANG1| |
| 1790 | V4L2_TUNER_CAP_LANG2; |
| 1791 | break; |
| 1792 | } |
| 1793 | case VIDIOC_S_TUNER: |
| 1794 | { |
| 1795 | struct v4l2_tuner *vt=(struct v4l2_tuner *)arg; |
| 1796 | |
| 1797 | /* only set audmode */ |
| 1798 | if (vt->audmode != -1 && vt->audmode != 0) |
| 1799 | msp_any_set_audmode(client, vt->audmode); |
| 1800 | break; |
| 1801 | } |
| 1802 | |
| 1803 | /* msp34xx specific */ |
| 1804 | case MSP_SET_MATRIX: |
| 1805 | { |
| 1806 | struct msp_matrix *mspm = arg; |
| 1807 | |
| 1808 | dprintk(KERN_DEBUG "msp34xx: MSP_SET_MATRIX\n"); |
| 1809 | msp3400c_set_scart(client, mspm->input, mspm->output); |
| 1810 | break; |
| 1811 | } |
| 1812 | |
| 1813 | default: |
| 1814 | /* nothing */ |
| 1815 | break; |
| 1816 | } |
| 1817 | return 0; |
| 1818 | } |
| 1819 | |
Pavel Machek | 829ca9a | 2005-09-03 15:56:56 -0700 | [diff] [blame] | 1820 | static int msp_suspend(struct device * dev, pm_message_t state, u32 level) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | { |
| 1822 | struct i2c_client *c = container_of(dev, struct i2c_client, dev); |
| 1823 | |
| 1824 | dprintk("msp34xx: suspend\n"); |
| 1825 | msp3400c_reset(c); |
| 1826 | return 0; |
| 1827 | } |
| 1828 | |
| 1829 | static int msp_resume(struct device * dev, u32 level) |
| 1830 | { |
| 1831 | struct i2c_client *c = container_of(dev, struct i2c_client, dev); |
| 1832 | |
| 1833 | dprintk("msp34xx: resume\n"); |
| 1834 | msp_wake_thread(c); |
| 1835 | return 0; |
| 1836 | } |
| 1837 | |
| 1838 | /* ----------------------------------------------------------------------- */ |
| 1839 | |
| 1840 | static int __init msp3400_init_module(void) |
| 1841 | { |
| 1842 | return i2c_add_driver(&driver); |
| 1843 | } |
| 1844 | |
| 1845 | static void __exit msp3400_cleanup_module(void) |
| 1846 | { |
| 1847 | i2c_del_driver(&driver); |
| 1848 | } |
| 1849 | |
| 1850 | module_init(msp3400_init_module); |
| 1851 | module_exit(msp3400_cleanup_module); |
| 1852 | |
| 1853 | /* |
| 1854 | * Overrides for Emacs so that we follow Linus's tabbing style. |
| 1855 | * --------------------------------------------------------------------------- |
| 1856 | * Local variables: |
| 1857 | * c-basic-offset: 8 |
| 1858 | * End: |
| 1859 | */ |