blob: 0c2ab7e9d1cc698b7bb806fdb67a59629c3d891f [file] [log] [blame]
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001/*
2 * Programming the mspx4xx 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 * TODO:
28 * - better SAT support
29 *
30 * 980623 Thomas Sailer (sailer@ife.ee.ethz.ch)
31 * using soundcore instead of OSS
32 *
33 * This program is free software; you can redistribute it and/or
34 * modify it under the terms of the GNU General Public License
35 * as published by the Free Software Foundation; either version 2
36 * of the License, or (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
46 */
47
48
49#include <linux/kernel.h>
50#include <linux/module.h>
51#include <linux/slab.h>
52#include <linux/i2c.h>
53#include <linux/videodev.h>
54#include <linux/videodev2.h>
55#include <media/v4l2-common.h>
56#include <media/audiochip.h>
57#include <linux/kthread.h>
58#include <linux/suspend.h>
59#include "msp3400.h"
60
61/* ---------------------------------------------------------------------- */
62
63MODULE_DESCRIPTION("device driver for msp34xx TV sound processor");
64MODULE_AUTHOR("Gerd Knorr");
65MODULE_LICENSE("GPL");
66
67/* module parameters */
68static int opmode = OPMODE_AUTO;
69int debug = 0; /* debug output */
70int once = 0; /* no continous stereo monitoring */
71int amsound = 0; /* hard-wire AM sound at 6.5 Hz (france),
72 the autoscan seems work well only with FM... */
73int standard = 1; /* Override auto detect of audio standard, if needed. */
74int dolby = 0;
75
76int stereo_threshold = 0x190; /* a2 threshold for stereo/bilingual
77 (msp34xxg only) 0x00a0-0x03c0 */
78
79/* read-only */
80module_param(opmode, int, 0444);
81
82/* read-write */
Hans Verkuilfac9e892006-01-09 15:32:40 -020083module_param(once, bool, 0644);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020084module_param(debug, int, 0644);
85module_param(stereo_threshold, int, 0644);
86module_param(standard, int, 0644);
Hans Verkuilfac9e892006-01-09 15:32:40 -020087module_param(amsound, bool, 0644);
88module_param(dolby, bool, 0644);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -020089
90MODULE_PARM_DESC(opmode, "Forces a MSP3400 opmode. 0=Manual, 1=Autodetect, 2=Autodetect and autoselect");
91MODULE_PARM_DESC(once, "No continuous stereo monitoring");
92MODULE_PARM_DESC(debug, "Enable debug messages [0-3]");
93MODULE_PARM_DESC(stereo_threshold, "Sets signal threshold to activate stereo");
94MODULE_PARM_DESC(standard, "Specify audio standard: 32 = NTSC, 64 = radio, Default: Autodetect");
95MODULE_PARM_DESC(amsound, "Hardwire AM sound at 6.5Hz (France), FM can autoscan");
96MODULE_PARM_DESC(dolby, "Activates Dolby processsing");
97
98/* ---------------------------------------------------------------------- */
99
100/* control subaddress */
101#define I2C_MSP_CONTROL 0x00
102/* demodulator unit subaddress */
103#define I2C_MSP_DEM 0x10
104/* DSP unit subaddress */
105#define I2C_MSP_DSP 0x12
106
107/* Addresses to scan */
108static unsigned short normal_i2c[] = { 0x80 >> 1, 0x88 >> 1, I2C_CLIENT_END };
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200109I2C_CLIENT_INSMOD;
110
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200111/* ----------------------------------------------------------------------- */
112/* functions for talking to the MSP3400C Sound processor */
113
114int msp_reset(struct i2c_client *client)
115{
116 /* reset and read revision code */
117 static u8 reset_off[3] = { I2C_MSP_CONTROL, 0x80, 0x00 };
118 static u8 reset_on[3] = { I2C_MSP_CONTROL, 0x00, 0x00 };
119 static u8 write[3] = { I2C_MSP_DSP + 1, 0x00, 0x1e };
120 u8 read[2];
121 struct i2c_msg reset[2] = {
122 { client->addr, I2C_M_IGNORE_NAK, 3, reset_off },
123 { client->addr, I2C_M_IGNORE_NAK, 3, reset_on },
124 };
125 struct i2c_msg test[2] = {
126 { client->addr, 0, 3, write },
127 { client->addr, I2C_M_RD, 2, read },
128 };
129
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200130 v4l_dbg(3, client, "msp_reset\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200131 if (i2c_transfer(client->adapter, &reset[0], 1) != 1 ||
132 i2c_transfer(client->adapter, &reset[1], 1) != 1 ||
133 i2c_transfer(client->adapter, test, 2) != 2) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200134 v4l_err(client, "chip reset failed\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200135 return -1;
136 }
137 return 0;
138}
139
140static int msp_read(struct i2c_client *client, int dev, int addr)
141{
142 int err, retval;
143 u8 write[3];
144 u8 read[2];
145 struct i2c_msg msgs[2] = {
146 { client->addr, 0, 3, write },
147 { client->addr, I2C_M_RD, 2, read }
148 };
149
150 write[0] = dev + 1;
151 write[1] = addr >> 8;
152 write[2] = addr & 0xff;
153
154 for (err = 0; err < 3; err++) {
155 if (i2c_transfer(client->adapter, msgs, 2) == 2)
156 break;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200157 v4l_warn(client, "I/O error #%d (read 0x%02x/0x%02x)\n", err,
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200158 dev, addr);
159 current->state = TASK_INTERRUPTIBLE;
160 schedule_timeout(msecs_to_jiffies(10));
161 }
162 if (err == 3) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200163 v4l_warn(client, "giving up, resetting chip. Sound will go off, sorry folks :-|\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200164 msp_reset(client);
165 return -1;
166 }
167 retval = read[0] << 8 | read[1];
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200168 v4l_dbg(3, client, "msp_read(0x%x, 0x%x): 0x%x\n", dev, addr, retval);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200169 return retval;
170}
171
172int msp_read_dem(struct i2c_client *client, int addr)
173{
174 return msp_read(client, I2C_MSP_DEM, addr);
175}
176
177int msp_read_dsp(struct i2c_client *client, int addr)
178{
179 return msp_read(client, I2C_MSP_DSP, addr);
180}
181
182static int msp_write(struct i2c_client *client, int dev, int addr, int val)
183{
184 int err;
185 u8 buffer[5];
186
187 buffer[0] = dev;
188 buffer[1] = addr >> 8;
189 buffer[2] = addr & 0xff;
190 buffer[3] = val >> 8;
191 buffer[4] = val & 0xff;
192
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200193 v4l_dbg(3, client, "msp_write(0x%x, 0x%x, 0x%x)\n", dev, addr, val);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200194 for (err = 0; err < 3; err++) {
195 if (i2c_master_send(client, buffer, 5) == 5)
196 break;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200197 v4l_warn(client, "I/O error #%d (write 0x%02x/0x%02x)\n", err,
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200198 dev, addr);
199 current->state = TASK_INTERRUPTIBLE;
200 schedule_timeout(msecs_to_jiffies(10));
201 }
202 if (err == 3) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200203 v4l_warn(client, "giving up, resetting chip. Sound will go off, sorry folks :-|\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200204 msp_reset(client);
205 return -1;
206 }
207 return 0;
208}
209
210int msp_write_dem(struct i2c_client *client, int addr, int val)
211{
212 return msp_write(client, I2C_MSP_DEM, addr, val);
213}
214
215int msp_write_dsp(struct i2c_client *client, int addr, int val)
216{
217 return msp_write(client, I2C_MSP_DSP, addr, val);
218}
219
220/* ----------------------------------------------------------------------- *
221 * bits 9 8 5 - SCART DSP input Select:
222 * 0 0 0 - SCART 1 to DSP input (reset position)
223 * 0 1 0 - MONO to DSP input
224 * 1 0 0 - SCART 2 to DSP input
225 * 1 1 1 - Mute DSP input
226 *
227 * bits 11 10 6 - SCART 1 Output Select:
228 * 0 0 0 - undefined (reset position)
229 * 0 1 0 - SCART 2 Input to SCART 1 Output (for devices with 2 SCARTS)
230 * 1 0 0 - MONO input to SCART 1 Output
231 * 1 1 0 - SCART 1 DA to SCART 1 Output
232 * 0 0 1 - SCART 2 DA to SCART 1 Output
233 * 0 1 1 - SCART 1 Input to SCART 1 Output
234 * 1 1 1 - Mute SCART 1 Output
235 *
236 * bits 13 12 7 - SCART 2 Output Select (for devices with 2 Output SCART):
237 * 0 0 0 - SCART 1 DA to SCART 2 Output (reset position)
238 * 0 1 0 - SCART 1 Input to SCART 2 Output
239 * 1 0 0 - MONO input to SCART 2 Output
240 * 0 0 1 - SCART 2 DA to SCART 2 Output
241 * 0 1 1 - SCART 2 Input to SCART 2 Output
242 * 1 1 0 - Mute SCART 2 Output
243 *
244 * Bits 4 to 0 should be zero.
245 * ----------------------------------------------------------------------- */
246
247static int scarts[3][9] = {
248 /* MASK IN1 IN2 IN1_DA IN2_DA IN3 IN4 MONO MUTE */
249 /* SCART DSP Input select */
250 { 0x0320, 0x0000, 0x0200, -1, -1, 0x0300, 0x0020, 0x0100, 0x0320 },
251 /* SCART1 Output select */
252 { 0x0c40, 0x0440, 0x0400, 0x0c00, 0x0040, 0x0000, 0x0840, 0x0800, 0x0c40 },
253 /* SCART2 Output select */
254 { 0x3080, 0x1000, 0x1080, 0x0000, 0x0080, 0x2080, 0x3080, 0x2000, 0x3000 },
255};
256
257static char *scart_names[] = {
258 "mask", "in1", "in2", "in1 da", "in2 da", "in3", "in4", "mono", "mute"
259};
260
261void msp_set_scart(struct i2c_client *client, int in, int out)
262{
263 struct msp_state *state = i2c_get_clientdata(client);
264
265 state->in_scart=in;
266
267 if (in >= 1 && in <= 8 && out >= 0 && out <= 2) {
268 if (-1 == scarts[out][in])
269 return;
270
271 state->acb &= ~scarts[out][SCART_MASK];
272 state->acb |= scarts[out][in];
273 } else
274 state->acb = 0xf60; /* Mute Input and SCART 1 Output */
275
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200276 v4l_dbg(1, client, "scart switch: %s => %d (ACB=0x%04x)\n",
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200277 scart_names[in], out, state->acb);
278 msp_write_dsp(client, 0x13, state->acb);
279
280 /* Sets I2S speed 0 = 1.024 Mbps, 1 = 2.048 Mbps */
281 msp_write_dem(client, 0x40, state->i2s_mode);
282}
283
284void msp_set_mute(struct i2c_client *client)
285{
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200286 v4l_dbg(1, client, "mute audio\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200287 msp_write_dsp(client, 0x0000, 0); /* loudspeaker */
288 msp_write_dsp(client, 0x0006, 0); /* headphones */
289}
290
291void msp_set_audio(struct i2c_client *client)
292{
293 struct msp_state *state = i2c_get_clientdata(client);
294 int val = 0, bal = 0, bass, treble;
295
296 if (!state->muted)
297 val = (state->volume * 0x7f / 65535) << 8;
298 if (val)
299 bal = (state->balance / 256) - 128;
300 bass = ((state->bass - 32768) * 0x60 / 65535) << 8;
301 treble = ((state->treble - 32768) * 0x60 / 65535) << 8;
302
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200303 v4l_dbg(1, client, "mute=%s volume=%d balance=%d bass=%d treble=%d\n",
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200304 state->muted ? "on" : "off", state->volume, state->balance,
305 state->bass, state->treble);
306
307 msp_write_dsp(client, 0x0000, val); /* loudspeaker */
308 msp_write_dsp(client, 0x0006, val); /* headphones */
309 msp_write_dsp(client, 0x0007, state->muted ? 0x1 : (val | 0x1));
310 msp_write_dsp(client, 0x0001, bal << 8);
311 msp_write_dsp(client, 0x0002, bass); /* loudspeaker */
312 msp_write_dsp(client, 0x0003, treble); /* loudspeaker */
313}
314
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200315int msp_modus(struct i2c_client *client)
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200316{
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200317 struct msp_state *state = i2c_get_clientdata(client);
318
319 if (state->radio) {
320 v4l_dbg(1, client, "video mode selected to Radio\n");
321 return 0x0003;
322 }
323
324 if (state->std & V4L2_STD_PAL) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200325 v4l_dbg(1, client, "video mode selected to PAL\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200326
327#if 1
328 /* experimental: not sure this works with all chip versions */
329 return 0x7003;
330#else
331 /* previous value, try this if it breaks ... */
332 return 0x1003;
333#endif
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200334 }
335 if (state->std & V4L2_STD_NTSC) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200336 v4l_dbg(1, client, "video mode selected to NTSC\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200337 return 0x2003;
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200338 }
339 if (state->std & V4L2_STD_SECAM) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200340 v4l_dbg(1, client, "video mode selected to SECAM\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200341 return 0x0003;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200342 }
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200343 return 0x0003;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200344}
345
346/* ------------------------------------------------------------------------ */
347
348
349static void msp_wake_thread(struct i2c_client *client)
350{
351 struct msp_state *state = i2c_get_clientdata(client);
352
353 if (NULL == state->kthread)
354 return;
355 msp_set_mute(client);
356 state->watch_stereo = 0;
357 state->restart = 1;
358 wake_up_interruptible(&state->wq);
359}
360
361int msp_sleep(struct msp_state *state, int timeout)
362{
363 DECLARE_WAITQUEUE(wait, current);
364
365 add_wait_queue(&state->wq, &wait);
366 if (!kthread_should_stop()) {
367 if (timeout < 0) {
368 set_current_state(TASK_INTERRUPTIBLE);
369 schedule();
370 } else {
371 schedule_timeout_interruptible
372 (msecs_to_jiffies(timeout));
373 }
374 }
375
376 remove_wait_queue(&state->wq, &wait);
377 try_to_freeze();
378 return state->restart;
379}
380
381/* ------------------------------------------------------------------------ */
382
383static int msp_mode_v4l2_to_v4l1(int rxsubchans)
384{
385 int mode = 0;
386
387 if (rxsubchans & V4L2_TUNER_SUB_STEREO)
388 mode |= VIDEO_SOUND_STEREO;
389 if (rxsubchans & V4L2_TUNER_SUB_LANG2)
390 mode |= VIDEO_SOUND_LANG2;
391 if (rxsubchans & V4L2_TUNER_SUB_LANG1)
392 mode |= VIDEO_SOUND_LANG1;
393 if (mode == 0)
394 mode |= VIDEO_SOUND_MONO;
395 return mode;
396}
397
398static int msp_mode_v4l1_to_v4l2(int mode)
399{
400 if (mode & VIDEO_SOUND_STEREO)
401 return V4L2_TUNER_MODE_STEREO;
402 if (mode & VIDEO_SOUND_LANG2)
403 return V4L2_TUNER_MODE_LANG2;
404 if (mode & VIDEO_SOUND_LANG1)
405 return V4L2_TUNER_MODE_LANG1;
406 return V4L2_TUNER_MODE_MONO;
407}
408
409static void msp_any_detect_stereo(struct i2c_client *client)
410{
411 struct msp_state *state = i2c_get_clientdata(client);
412
413 switch (state->opmode) {
414 case OPMODE_MANUAL:
415 case OPMODE_AUTODETECT:
416 autodetect_stereo(client);
417 break;
418 case OPMODE_AUTOSELECT:
419 msp34xxg_detect_stereo(client);
420 break;
421 }
422}
423
424static struct v4l2_queryctrl msp_qctrl[] = {
425 {
426 .id = V4L2_CID_AUDIO_VOLUME,
427 .name = "Volume",
428 .minimum = 0,
429 .maximum = 65535,
430 .step = 65535/100,
431 .default_value = 58880,
432 .flags = 0,
433 .type = V4L2_CTRL_TYPE_INTEGER,
434 },{
435 .id = V4L2_CID_AUDIO_BALANCE,
436 .name = "Balance",
437 .minimum = 0,
438 .maximum = 65535,
439 .step = 65535/100,
440 .default_value = 32768,
441 .flags = 0,
442 .type = V4L2_CTRL_TYPE_INTEGER,
443 },{
444 .id = V4L2_CID_AUDIO_MUTE,
445 .name = "Mute",
446 .minimum = 0,
447 .maximum = 1,
448 .step = 1,
449 .default_value = 1,
450 .flags = 0,
451 .type = V4L2_CTRL_TYPE_BOOLEAN,
452 },{
453 .id = V4L2_CID_AUDIO_BASS,
454 .name = "Bass",
455 .minimum = 0,
456 .maximum = 65535,
457 .step = 65535/100,
458 .default_value = 32768,
459 .type = V4L2_CTRL_TYPE_INTEGER,
460 },{
461 .id = V4L2_CID_AUDIO_TREBLE,
462 .name = "Treble",
463 .minimum = 0,
464 .maximum = 65535,
465 .step = 65535/100,
466 .default_value = 32768,
467 .type = V4L2_CTRL_TYPE_INTEGER,
468 },
469};
470
471
472static void msp_any_set_audmode(struct i2c_client *client, int audmode)
473{
474 struct msp_state *state = i2c_get_clientdata(client);
475
476 switch (state->opmode) {
477 case OPMODE_MANUAL:
478 case OPMODE_AUTODETECT:
479 state->watch_stereo = 0;
480 msp3400c_setstereo(client, audmode);
481 break;
482 case OPMODE_AUTOSELECT:
483 msp34xxg_set_audmode(client, audmode);
484 break;
485 }
486}
487
488static int msp_get_ctrl(struct i2c_client *client, struct v4l2_control *ctrl)
489{
490 struct msp_state *state = i2c_get_clientdata(client);
491
492 switch (ctrl->id) {
493 case V4L2_CID_AUDIO_MUTE:
494 ctrl->value = state->muted;
495 break;
496
497 case V4L2_CID_AUDIO_BALANCE:
498 ctrl->value = state->balance;
499 break;
500
501 case V4L2_CID_AUDIO_BASS:
502 ctrl->value = state->bass;
503 break;
504
505 case V4L2_CID_AUDIO_TREBLE:
506 ctrl->value = state->treble;
507 break;
508
509 case V4L2_CID_AUDIO_VOLUME:
510 ctrl->value = state->volume;
511 break;
512
513 default:
514 return -EINVAL;
515 }
516 return 0;
517}
518
519static int msp_set_ctrl(struct i2c_client *client, struct v4l2_control *ctrl)
520{
521 struct msp_state *state = i2c_get_clientdata(client);
522
523 switch (ctrl->id) {
524 case V4L2_CID_AUDIO_MUTE:
525 if (ctrl->value < 0 || ctrl->value >= 2)
526 return -ERANGE;
527 state->muted = ctrl->value;
528 break;
529
530 case V4L2_CID_AUDIO_BASS:
531 state->bass = ctrl->value;
532 break;
533
534 case V4L2_CID_AUDIO_TREBLE:
535 state->treble = ctrl->value;
536 break;
537
538 case V4L2_CID_AUDIO_BALANCE:
539 state->balance = ctrl->value;
540 break;
541
542 case V4L2_CID_AUDIO_VOLUME:
543 state->volume = ctrl->value;
544 if (state->volume == 0)
545 state->balance = 32768;
546 break;
547
548 default:
549 return -EINVAL;
550 }
551 msp_set_audio(client);
552 return 0;
553}
554
555static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg)
556{
557 struct msp_state *state = i2c_get_clientdata(client);
558 u16 *sarg = arg;
559 int scart = 0;
560
561 if (debug >= 2)
562 v4l_i2c_print_ioctl(client, cmd);
563
564 switch (cmd) {
565 case AUDC_SET_INPUT:
566 if (*sarg == state->input)
567 break;
568 state->input = *sarg;
569 switch (*sarg) {
570 case AUDIO_RADIO:
571 /* Hauppauge uses IN2 for the radio */
572 state->mode = MSP_MODE_FM_RADIO;
573 scart = SCART_IN2;
574 break;
575 case AUDIO_EXTERN_1:
576 /* IN1 is often used for external input ... */
577 state->mode = MSP_MODE_EXTERN;
578 scart = SCART_IN1;
579 break;
580 case AUDIO_EXTERN_2:
581 /* ... sometimes it is IN2 through ;) */
582 state->mode = MSP_MODE_EXTERN;
583 scart = SCART_IN2;
584 break;
585 case AUDIO_TUNER:
586 state->mode = -1;
587 break;
588 default:
589 if (*sarg & AUDIO_MUTE)
590 msp_set_scart(client, SCART_MUTE, 0);
591 break;
592 }
593 if (scart) {
594 state->rxsubchans = V4L2_TUNER_SUB_STEREO;
595 state->audmode = V4L2_TUNER_MODE_STEREO;
596 msp_set_scart(client, scart, 0);
597 msp_write_dsp(client, 0x000d, 0x1900);
598 if (state->opmode != OPMODE_AUTOSELECT)
599 msp3400c_setstereo(client, state->audmode);
600 }
601 msp_wake_thread(client);
602 break;
603
604 case AUDC_SET_RADIO:
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200605 state->radio = 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200606 v4l_dbg(1, client, "switching to radio mode\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200607 state->watch_stereo = 0;
608 switch (state->opmode) {
609 case OPMODE_MANUAL:
610 /* set msp3400 to FM radio mode */
611 msp3400c_setmode(client, MSP_MODE_FM_RADIO);
612 msp3400c_setcarrier(client, MSP_CARRIER(10.7),
613 MSP_CARRIER(10.7));
614 msp_set_audio(client);
615 break;
616 case OPMODE_AUTODETECT:
617 case OPMODE_AUTOSELECT:
618 /* the thread will do for us */
619 msp_wake_thread(client);
620 break;
621 }
622 break;
623
624 /* --- v4l ioctls --- */
625 /* take care: bttv does userspace copying, we'll get a
626 kernel pointer here... */
627 case VIDIOCGAUDIO:
628 {
629 struct video_audio *va = arg;
630
631 va->flags |= VIDEO_AUDIO_VOLUME |
632 VIDEO_AUDIO_BASS |
633 VIDEO_AUDIO_TREBLE |
634 VIDEO_AUDIO_MUTABLE;
635 if (state->muted)
636 va->flags |= VIDEO_AUDIO_MUTE;
637
638 if (state->muted)
639 va->flags |= VIDEO_AUDIO_MUTE;
640 va->volume = state->volume;
641 va->balance = state->volume ? state->balance : 32768;
642 va->bass = state->bass;
643 va->treble = state->treble;
644
645 msp_any_detect_stereo(client);
646 va->mode = msp_mode_v4l2_to_v4l1(state->rxsubchans);
647 break;
648 }
649
650 case VIDIOCSAUDIO:
651 {
652 struct video_audio *va = arg;
653
654 state->muted = (va->flags & VIDEO_AUDIO_MUTE);
655 state->volume = va->volume;
656 state->balance = va->balance;
657 state->bass = va->bass;
658 state->treble = va->treble;
659 msp_set_audio(client);
660
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200661 if (va->mode != 0 && state->radio == 0)
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200662 msp_any_set_audmode(client, msp_mode_v4l1_to_v4l2(va->mode));
663 break;
664 }
665
666 case VIDIOCSCHAN:
667 {
668 struct video_channel *vc = arg;
669
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200670 state->radio = 0;
671 if (vc->norm == VIDEO_MODE_PAL)
672 state->std = V4L2_STD_PAL;
673 else if (vc->norm == VIDEO_MODE_SECAM)
674 state->std = V4L2_STD_SECAM;
675 else
676 state->std = V4L2_STD_NTSC;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200677 msp_wake_thread(client);
678 break;
679 }
680
681 case VIDIOCSFREQ:
682 case VIDIOC_S_FREQUENCY:
683 {
684 /* new channel -- kick audio carrier scan */
685 msp_wake_thread(client);
686 break;
687 }
688
689 /* msp34xx specific */
690 case MSP_SET_MATRIX:
691 {
692 struct msp_matrix *mspm = arg;
693
694 msp_set_scart(client, mspm->input, mspm->output);
695 break;
696 }
697
698 /* --- v4l2 ioctls --- */
699 case VIDIOC_S_STD:
700 {
701 v4l2_std_id *id = arg;
702
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200703 state->std = *id;
704 state->radio = 0;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200705 msp_wake_thread(client);
706 return 0;
707 }
708
709 case VIDIOC_ENUMINPUT:
710 {
711 struct v4l2_input *i = arg;
712
713 if (i->index != 0)
714 return -EINVAL;
715
716 i->type = V4L2_INPUT_TYPE_TUNER;
717 switch (i->index) {
718 case AUDIO_RADIO:
719 strcpy(i->name, "Radio");
720 break;
721 case AUDIO_EXTERN_1:
722 strcpy(i->name, "Extern 1");
723 break;
724 case AUDIO_EXTERN_2:
725 strcpy(i->name, "Extern 2");
726 break;
727 case AUDIO_TUNER:
728 strcpy(i->name, "Television");
729 break;
730 default:
731 return -EINVAL;
732 }
733 return 0;
734 }
735
736 case VIDIOC_G_AUDIO:
737 {
738 struct v4l2_audio *a = arg;
739
740 memset(a, 0, sizeof(*a));
741
742 switch (a->index) {
743 case AUDIO_RADIO:
744 strcpy(a->name, "Radio");
745 break;
746 case AUDIO_EXTERN_1:
747 strcpy(a->name, "Extern 1");
748 break;
749 case AUDIO_EXTERN_2:
750 strcpy(a->name, "Extern 2");
751 break;
752 case AUDIO_TUNER:
753 strcpy(a->name, "Television");
754 break;
755 default:
756 return -EINVAL;
757 }
758
759 msp_any_detect_stereo(client);
760 if (state->audmode == V4L2_TUNER_MODE_STEREO) {
761 a->capability = V4L2_AUDCAP_STEREO;
762 }
763
764 break;
765 }
766
767 case VIDIOC_S_AUDIO:
768 {
769 struct v4l2_audio *sarg = arg;
770
771 switch (sarg->index) {
772 case AUDIO_RADIO:
773 /* Hauppauge uses IN2 for the radio */
774 state->mode = MSP_MODE_FM_RADIO;
775 scart = SCART_IN2;
776 break;
777 case AUDIO_EXTERN_1:
778 /* IN1 is often used for external input ... */
779 state->mode = MSP_MODE_EXTERN;
780 scart = SCART_IN1;
781 break;
782 case AUDIO_EXTERN_2:
783 /* ... sometimes it is IN2 through ;) */
784 state->mode = MSP_MODE_EXTERN;
785 scart = SCART_IN2;
786 break;
787 case AUDIO_TUNER:
788 state->mode = -1;
789 break;
790 }
791 if (scart) {
792 state->rxsubchans = V4L2_TUNER_SUB_STEREO;
793 state->audmode = V4L2_TUNER_MODE_STEREO;
794 msp_set_scart(client, scart, 0);
795 msp_write_dsp(client, 0x000d, 0x1900);
796 }
797 if (sarg->capability == V4L2_AUDCAP_STEREO) {
798 state->audmode = V4L2_TUNER_MODE_STEREO;
799 } else {
800 state->audmode &= ~V4L2_TUNER_MODE_STEREO;
801 }
802 msp_any_set_audmode(client, state->audmode);
803 msp_wake_thread(client);
804 break;
805 }
806
807 case VIDIOC_G_TUNER:
808 {
809 struct v4l2_tuner *vt = arg;
810
811 msp_any_detect_stereo(client);
812 vt->audmode = state->audmode;
813 vt->rxsubchans = state->rxsubchans;
814 vt->capability = V4L2_TUNER_CAP_STEREO |
815 V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
816 break;
817 }
818
819 case VIDIOC_S_TUNER:
820 {
821 struct v4l2_tuner *vt = (struct v4l2_tuner *)arg;
822
823 /* only set audmode */
824 if (vt->audmode != -1 && vt->audmode != 0)
825 msp_any_set_audmode(client, vt->audmode);
826 break;
827 }
828
829 case VIDIOC_G_AUDOUT:
830 {
831 struct v4l2_audioout *a = (struct v4l2_audioout *)arg;
832 int idx = a->index;
833
834 memset(a, 0, sizeof(*a));
835
836 switch (idx) {
837 case 0:
838 strcpy(a->name, "Scart1 Out");
839 break;
840 case 1:
841 strcpy(a->name, "Scart2 Out");
842 break;
843 case 2:
844 strcpy(a->name, "I2S Out");
845 break;
846 default:
847 return -EINVAL;
848 }
849 break;
850
851 }
852
853 case VIDIOC_S_AUDOUT:
854 {
855 struct v4l2_audioout *a = (struct v4l2_audioout *)arg;
856
857 if (a->index < 0 || a->index > 2)
858 return -EINVAL;
859
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200860 v4l_dbg(1, client, "Setting audio out on msp34xx to input %i\n", a->index);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200861 msp_set_scart(client, state->in_scart, a->index + 1);
862
863 break;
864 }
865
866 case VIDIOC_INT_I2S_CLOCK_FREQ:
867 {
868 u32 *a = (u32 *)arg;
869
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200870 v4l_dbg(1, client, "Setting I2S speed to %d\n", *a);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200871
872 switch (*a) {
873 case 1024000:
874 state->i2s_mode = 0;
875 break;
876 case 2048000:
877 state->i2s_mode = 1;
878 break;
879 default:
880 return -EINVAL;
881 }
882 break;
883 }
884
885 case VIDIOC_QUERYCTRL:
886 {
887 struct v4l2_queryctrl *qc = arg;
888 int i;
889
890 for (i = 0; i < ARRAY_SIZE(msp_qctrl); i++)
891 if (qc->id && qc->id == msp_qctrl[i].id) {
892 memcpy(qc, &msp_qctrl[i], sizeof(*qc));
893 return 0;
894 }
895 return -EINVAL;
896 }
897
898 case VIDIOC_G_CTRL:
899 return msp_get_ctrl(client, arg);
900
901 case VIDIOC_S_CTRL:
902 return msp_set_ctrl(client, arg);
903
904 case VIDIOC_LOG_STATUS:
905 msp_any_detect_stereo(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200906 v4l_info(client, "%s rev1 = 0x%04x rev2 = 0x%04x\n",
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200907 client->name, state->rev1, state->rev2);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200908 v4l_info(client, "Audio: volume %d balance %d bass %d treble %d%s\n",
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200909 state->volume, state->balance,
910 state->bass, state->treble,
911 state->muted ? " (muted)" : "");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200912 v4l_info(client, "Mode: %s (%s%s)\n", msp_standard_mode_name(state->mode),
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200913 (state->rxsubchans & V4L2_TUNER_SUB_STEREO) ? "stereo" : "mono",
914 (state->rxsubchans & V4L2_TUNER_SUB_LANG2) ? ", dual" : "");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200915 v4l_info(client, "ACB: 0x%04x\n", state->acb);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200916 break;
917
918 default:
919 /* nothing */
920 break;
921 }
922 return 0;
923}
924
925static int msp_suspend(struct device * dev, pm_message_t state)
926{
927 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
928
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200929 v4l_dbg(1, client, "suspend\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200930 msp_reset(client);
931 return 0;
932}
933
934static int msp_resume(struct device * dev)
935{
936 struct i2c_client *client = container_of(dev, struct i2c_client, dev);
937
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200938 v4l_dbg(1, client, "resume\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200939 msp_wake_thread(client);
940 return 0;
941}
942
943/* ----------------------------------------------------------------------- */
944
945static struct i2c_driver i2c_driver;
946
947static int msp_attach(struct i2c_adapter *adapter, int address, int kind)
948{
949 struct i2c_client *client;
950 struct msp_state *state;
951 int (*thread_func)(void *data) = NULL;
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200952 int msp_hard;
953 int msp_family;
954 int msp_revision;
955 int msp_product, msp_prod_hi, msp_prod_lo;
956 int msp_rom;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200957
958 client = kmalloc(sizeof(*client), GFP_KERNEL);
959 if (client == NULL)
960 return -ENOMEM;
961 memset(client, 0, sizeof(*client));
962 client->addr = address;
963 client->adapter = adapter;
964 client->driver = &i2c_driver;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200965 snprintf(client->name, sizeof(client->name) - 1, "msp3400");
966
967 if (msp_reset(client) == -1) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200968 v4l_dbg(1, client, "msp3400 not found\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200969 kfree(client);
970 return -1;
971 }
972
973 state = kmalloc(sizeof(*state), GFP_KERNEL);
974 if (state == NULL) {
975 kfree(client);
976 return -ENOMEM;
977 }
978 i2c_set_clientdata(client, state);
979
980 memset(state, 0, sizeof(*state));
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200981 state->std = V4L2_STD_NTSC;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200982 state->volume = 58880; /* 0db gain */
983 state->balance = 32768; /* 0db gain */
984 state->bass = 32768;
985 state->treble = 32768;
986 state->input = -1;
987 state->muted = 0;
988 state->i2s_mode = 0;
989 init_waitqueue_head(&state->wq);
990
991 state->rev1 = msp_read_dsp(client, 0x1e);
992 if (state->rev1 != -1)
993 state->rev2 = msp_read_dsp(client, 0x1f);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200994 v4l_dbg(1, client, "rev1=0x%04x, rev2=0x%04x\n", state->rev1, state->rev2);
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200995 if (state->rev1 == -1 || (state->rev1 == 0 && state->rev2 == 0)) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200996 v4l_dbg(1, client, "not an msp3400 (cannot read chip version)\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -0200997 kfree(state);
998 kfree(client);
999 return -1;
1000 }
1001
1002 msp_set_audio(client);
1003
Hans Verkuil7560d7a2006-01-09 18:21:32 -02001004 msp_family = ((state->rev1 >> 4) & 0x0f) + 3;
1005 msp_product = (state->rev2 >> 8) & 0xff;
1006 msp_prod_hi = msp_product / 10;
1007 msp_prod_lo = msp_product % 10;
1008 msp_revision = (state->rev1 & 0x0f) + '@';
1009 msp_hard = ((state->rev1 >> 8) & 0xff) + '@';
1010 msp_rom = state->rev2 & 0x1f;
1011 snprintf(client->name, sizeof(client->name), "MSP%d4%02d%c-%c%d",
1012 msp_family, msp_product,
1013 msp_revision, msp_hard, msp_rom);
1014
1015 /* Has NICAM support: all mspx41x and mspx45x products have NICAM */
1016 state->has_nicam = msp_prod_hi == 1 || msp_prod_hi == 5;
1017 /* Has radio support: was added with revision G */
1018 state->has_radio = msp_revision >= 'G';
1019 /* Has headphones output: not for stripped down products */
1020 state->has_headphones = msp_prod_lo < 5;
1021 /* Has scart4 input: not in pre D revisions, not in stripped D revs */
1022 state->has_scart4 = msp_family >= 4 || (msp_revision >= 'D' && msp_prod_lo < 5);
1023 /* Has scart2 and scart3 inputs and scart2 output: not in stripped
1024 down products of the '3' family */
1025 state->has_scart23_in_scart2_out = msp_family >= 4 || msp_prod_lo < 5;
1026 /* Has subwoofer output: not in pre-D revs and not in stripped down products */
1027 state->has_subwoofer = msp_revision >= 'D' && msp_prod_lo < 5;
1028 /* Has soundprocessing (bass/treble/balance/loudness/equalizer): not in
1029 stripped down products */
1030 state->has_sound_processing = msp_prod_lo < 7;
1031 /* Has Virtual Dolby Surround: only in msp34x1 */
1032 state->has_virtual_dolby_surround = msp_revision == 'G' && msp_prod_lo == 1;
1033 /* Has Virtual Dolby Surround & Dolby Pro Logic: only in msp34x2 */
1034 state->has_dolby_pro_logic = msp_revision == 'G' && msp_prod_lo == 2;
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001035
1036 state->opmode = opmode;
1037 if (state->opmode == OPMODE_AUTO) {
1038 /* MSP revision G and up have both autodetect and autoselect */
Hans Verkuil7560d7a2006-01-09 18:21:32 -02001039 if (msp_revision >= 'G')
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001040 state->opmode = OPMODE_AUTOSELECT;
1041 /* MSP revision D and up have autodetect */
Hans Verkuil7560d7a2006-01-09 18:21:32 -02001042 else if (msp_revision >= 'D')
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001043 state->opmode = OPMODE_AUTODETECT;
1044 else
1045 state->opmode = OPMODE_MANUAL;
1046 }
1047
1048 /* hello world :-) */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001049 v4l_info(client, "%s found @ 0x%x (%s)\n", client->name, address << 1, adapter->name);
1050 v4l_info(client, "%s ", client->name);
Hans Verkuil7560d7a2006-01-09 18:21:32 -02001051 if (state->has_nicam && state->has_radio)
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001052 printk("supports nicam and radio, ");
Hans Verkuil7560d7a2006-01-09 18:21:32 -02001053 else if (state->has_nicam)
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001054 printk("supports nicam, ");
Hans Verkuil7560d7a2006-01-09 18:21:32 -02001055 else if (state->has_radio)
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001056 printk("supports radio, ");
1057 printk("mode is ");
1058
1059 /* version-specific initialization */
1060 switch (state->opmode) {
1061 case OPMODE_MANUAL:
1062 printk("manual");
1063 thread_func = msp3400c_thread;
1064 break;
1065 case OPMODE_AUTODETECT:
1066 printk("autodetect");
1067 thread_func = msp3410d_thread;
1068 break;
1069 case OPMODE_AUTOSELECT:
1070 printk("autodetect and autoselect");
1071 thread_func = msp34xxg_thread;
1072 break;
1073 }
1074 printk("\n");
1075
1076 /* startup control thread if needed */
1077 if (thread_func) {
1078 state->kthread = kthread_run(thread_func, client, "msp34xx");
1079
1080 if (state->kthread == NULL)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001081 v4l_warn(client, "kernel_thread() failed\n");
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001082 msp_wake_thread(client);
1083 }
1084
1085 /* done */
1086 i2c_attach_client(client);
1087
1088 return 0;
1089}
1090
1091static int msp_probe(struct i2c_adapter *adapter)
1092{
1093 if (adapter->class & I2C_CLASS_TV_ANALOG)
1094 return i2c_probe(adapter, &addr_data, msp_attach);
1095 return 0;
1096}
1097
1098static int msp_detach(struct i2c_client *client)
1099{
1100 struct msp_state *state = i2c_get_clientdata(client);
1101 int err;
1102
1103 /* shutdown control thread */
1104 if (state->kthread) {
1105 state->restart = 1;
1106 kthread_stop(state->kthread);
1107 }
1108 msp_reset(client);
1109
1110 err = i2c_detach_client(client);
1111 if (err) {
1112 return err;
1113 }
1114
1115 kfree(state);
1116 kfree(client);
1117 return 0;
1118}
1119
1120/* ----------------------------------------------------------------------- */
1121
1122/* i2c implementation */
1123static struct i2c_driver i2c_driver = {
1124 .id = I2C_DRIVERID_MSP3400,
1125 .attach_adapter = msp_probe,
1126 .detach_client = msp_detach,
1127 .command = msp_command,
1128 .driver = {
1129 .name = "msp3400",
1130 .suspend = msp_suspend,
1131 .resume = msp_resume,
1132 },
Hans Verkuil53b0a1c2006-01-09 15:32:39 -02001133};
1134
1135static int __init msp3400_init_module(void)
1136{
1137 return i2c_add_driver(&i2c_driver);
1138}
1139
1140static void __exit msp3400_cleanup_module(void)
1141{
1142 i2c_del_driver(&i2c_driver);
1143}
1144
1145module_init(msp3400_init_module);
1146module_exit(msp3400_cleanup_module);
1147
1148/*
1149 * Overrides for Emacs so that we follow Linus's tabbing style.
1150 * ---------------------------------------------------------------------------
1151 * Local variables:
1152 * c-basic-offset: 8
1153 * End:
1154 */