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