blob: eec7aa4c6f98f6b6a48c36177df93dfc5825b585 [file] [log] [blame]
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001/*
2 * Programming the mspx4xx sound processor family
3 *
4 * (c) 1997-2001 Gerd Knorr <kraxel@bytesex.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Hans Verkuild52c7382007-12-12 08:25:18 -030018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
Hans Verkuil7e8b09e2006-01-09 15:32:40 -020020 */
21
22
23#include <linux/kernel.h>
24#include <linux/module.h>
Hans Verkuil7e8b09e2006-01-09 15:32:40 -020025#include <linux/i2c.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070026#include <linux/freezer.h>
Hans Verkuil7e8b09e2006-01-09 15:32:40 -020027#include <linux/videodev2.h>
28#include <media/v4l2-common.h>
Mauro Carvalho Chehabd647f0b2015-11-13 19:40:07 -020029#include <media/drv-intf/msp3400.h>
Hans Verkuil7e8b09e2006-01-09 15:32:40 -020030#include <linux/kthread.h>
31#include <linux/suspend.h>
Hans Verkuil49965a82006-03-19 08:45:38 -030032#include "msp3400-driver.h"
Hans Verkuil7e8b09e2006-01-09 15:32:40 -020033
34/* this one uses the automatic sound standard detection of newer msp34xx
35 chip versions */
36static struct {
37 int retval;
38 int main, second;
39 char *name;
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -030040 v4l2_std_id std;
Hans Verkuil5af0c8f2006-01-09 18:21:37 -020041} msp_stdlist[] = {
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -030042 { 0x0000, 0, 0, "could not detect sound standard", V4L2_STD_ALL },
43 { 0x0001, 0, 0, "autodetect start", V4L2_STD_ALL },
44 { 0x0002, MSP_CARRIER(4.5), MSP_CARRIER(4.72),
45 "4.5/4.72 M Dual FM-Stereo", V4L2_STD_MN },
46 { 0x0003, MSP_CARRIER(5.5), MSP_CARRIER(5.7421875),
47 "5.5/5.74 B/G Dual FM-Stereo", V4L2_STD_BG },
48 { 0x0004, MSP_CARRIER(6.5), MSP_CARRIER(6.2578125),
49 "6.5/6.25 D/K1 Dual FM-Stereo", V4L2_STD_DK },
50 { 0x0005, MSP_CARRIER(6.5), MSP_CARRIER(6.7421875),
51 "6.5/6.74 D/K2 Dual FM-Stereo", V4L2_STD_DK },
52 { 0x0006, MSP_CARRIER(6.5), MSP_CARRIER(6.5),
53 "6.5 D/K FM-Mono (HDEV3)", V4L2_STD_DK },
54 { 0x0007, MSP_CARRIER(6.5), MSP_CARRIER(5.7421875),
55 "6.5/5.74 D/K3 Dual FM-Stereo", V4L2_STD_DK },
56 { 0x0008, MSP_CARRIER(5.5), MSP_CARRIER(5.85),
57 "5.5/5.85 B/G NICAM FM", V4L2_STD_BG },
58 { 0x0009, MSP_CARRIER(6.5), MSP_CARRIER(5.85),
59 "6.5/5.85 L NICAM AM", V4L2_STD_L },
60 { 0x000a, MSP_CARRIER(6.0), MSP_CARRIER(6.55),
61 "6.0/6.55 I NICAM FM", V4L2_STD_PAL_I },
62 { 0x000b, MSP_CARRIER(6.5), MSP_CARRIER(5.85),
63 "6.5/5.85 D/K NICAM FM", V4L2_STD_DK },
64 { 0x000c, MSP_CARRIER(6.5), MSP_CARRIER(5.85),
65 "6.5/5.85 D/K NICAM FM (HDEV2)", V4L2_STD_DK },
66 { 0x000d, MSP_CARRIER(6.5), MSP_CARRIER(5.85),
67 "6.5/5.85 D/K NICAM FM (HDEV3)", V4L2_STD_DK },
68 { 0x0020, MSP_CARRIER(4.5), MSP_CARRIER(4.5),
69 "4.5 M BTSC-Stereo", V4L2_STD_MTS },
70 { 0x0021, MSP_CARRIER(4.5), MSP_CARRIER(4.5),
71 "4.5 M BTSC-Mono + SAP", V4L2_STD_MTS },
72 { 0x0030, MSP_CARRIER(4.5), MSP_CARRIER(4.5),
73 "4.5 M EIA-J Japan Stereo", V4L2_STD_NTSC_M_JP },
74 { 0x0040, MSP_CARRIER(10.7), MSP_CARRIER(10.7),
75 "10.7 FM-Stereo Radio", V4L2_STD_ALL },
76 { 0x0050, MSP_CARRIER(6.5), MSP_CARRIER(6.5),
77 "6.5 SAT-Mono", V4L2_STD_ALL },
78 { 0x0051, MSP_CARRIER(7.02), MSP_CARRIER(7.20),
79 "7.02/7.20 SAT-Stereo", V4L2_STD_ALL },
80 { 0x0060, MSP_CARRIER(7.2), MSP_CARRIER(7.2),
81 "7.2 SAT ADR", V4L2_STD_ALL },
82 { -1, 0, 0, NULL, 0 }, /* EOF */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -020083};
84
85static struct msp3400c_init_data_dem {
86 int fir1[6];
87 int fir2[6];
88 int cdo1;
89 int cdo2;
90 int ad_cv;
91 int mode_reg;
92 int dsp_src;
93 int dsp_matrix;
94} msp3400c_init_data[] = {
95 { /* AM (for carrier detect / msp3400) */
96 {75, 19, 36, 35, 39, 40},
97 {75, 19, 36, 35, 39, 40},
98 MSP_CARRIER(5.5), MSP_CARRIER(5.5),
99 0x00d0, 0x0500, 0x0020, 0x3000
Hans Verkuild52c7382007-12-12 08:25:18 -0300100 }, { /* AM (for carrier detect / msp3410) */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200101 {-1, -1, -8, 2, 59, 126},
102 {-1, -1, -8, 2, 59, 126},
103 MSP_CARRIER(5.5), MSP_CARRIER(5.5),
104 0x00d0, 0x0100, 0x0020, 0x3000
Hans Verkuild52c7382007-12-12 08:25:18 -0300105 }, { /* FM Radio */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200106 {-8, -8, 4, 6, 78, 107},
107 {-8, -8, 4, 6, 78, 107},
108 MSP_CARRIER(10.7), MSP_CARRIER(10.7),
109 0x00d0, 0x0480, 0x0020, 0x3000
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300110 }, { /* Terrestrial FM-mono + FM-stereo */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200111 {3, 18, 27, 48, 66, 72},
112 {3, 18, 27, 48, 66, 72},
113 MSP_CARRIER(5.5), MSP_CARRIER(5.5),
114 0x00d0, 0x0480, 0x0030, 0x3000
Hans Verkuild52c7382007-12-12 08:25:18 -0300115 }, { /* Sat FM-mono */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200116 { 1, 9, 14, 24, 33, 37},
117 { 3, 18, 27, 48, 66, 72},
118 MSP_CARRIER(6.5), MSP_CARRIER(6.5),
119 0x00c6, 0x0480, 0x0000, 0x3000
Hans Verkuild52c7382007-12-12 08:25:18 -0300120 }, { /* NICAM/FM -- B/G (5.5/5.85), D/K (6.5/5.85) */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200121 {-2, -8, -10, 10, 50, 86},
122 {3, 18, 27, 48, 66, 72},
123 MSP_CARRIER(5.5), MSP_CARRIER(5.5),
124 0x00d0, 0x0040, 0x0120, 0x3000
Hans Verkuild52c7382007-12-12 08:25:18 -0300125 }, { /* NICAM/FM -- I (6.0/6.552) */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200126 {2, 4, -6, -4, 40, 94},
127 {3, 18, 27, 48, 66, 72},
128 MSP_CARRIER(6.0), MSP_CARRIER(6.0),
129 0x00d0, 0x0040, 0x0120, 0x3000
Hans Verkuild52c7382007-12-12 08:25:18 -0300130 }, { /* NICAM/AM -- L (6.5/5.85) */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200131 {-2, -8, -10, 10, 50, 86},
132 {-4, -12, -9, 23, 79, 126},
133 MSP_CARRIER(6.5), MSP_CARRIER(6.5),
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200134 0x00c6, 0x0140, 0x0120, 0x7c00
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200135 },
136};
137
138struct msp3400c_carrier_detect {
139 int cdo;
140 char *name;
141};
142
143static struct msp3400c_carrier_detect msp3400c_carrier_detect_main[] = {
144 /* main carrier */
145 { MSP_CARRIER(4.5), "4.5 NTSC" },
146 { MSP_CARRIER(5.5), "5.5 PAL B/G" },
147 { MSP_CARRIER(6.0), "6.0 PAL I" },
148 { MSP_CARRIER(6.5), "6.5 PAL D/K + SAT + SECAM" }
149};
150
151static struct msp3400c_carrier_detect msp3400c_carrier_detect_55[] = {
152 /* PAL B/G */
153 { MSP_CARRIER(5.7421875), "5.742 PAL B/G FM-stereo" },
154 { MSP_CARRIER(5.85), "5.85 PAL B/G NICAM" }
155};
156
157static struct msp3400c_carrier_detect msp3400c_carrier_detect_65[] = {
158 /* PAL SAT / SECAM */
159 { MSP_CARRIER(5.85), "5.85 PAL D/K + SECAM NICAM" },
160 { MSP_CARRIER(6.2578125), "6.25 PAL D/K1 FM-stereo" },
161 { MSP_CARRIER(6.7421875), "6.74 PAL D/K2 FM-stereo" },
162 { MSP_CARRIER(7.02), "7.02 PAL SAT FM-stereo s/b" },
163 { MSP_CARRIER(7.20), "7.20 PAL SAT FM-stereo s" },
164 { MSP_CARRIER(7.38), "7.38 PAL SAT FM-stereo b" },
165};
166
167/* ------------------------------------------------------------------------ */
168
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200169const char *msp_standard_std_name(int std)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200170{
171 int i;
172
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200173 for (i = 0; msp_stdlist[i].name != NULL; i++)
174 if (msp_stdlist[i].retval == std)
175 return msp_stdlist[i].name;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200176 return "unknown";
177}
178
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300179static v4l2_std_id msp_standard_std(int std)
180{
181 int i;
182
183 for (i = 0; msp_stdlist[i].name != NULL; i++)
184 if (msp_stdlist[i].retval == std)
185 return msp_stdlist[i].std;
186 return V4L2_STD_ALL;
187}
188
Adrian Bunk044f3242006-03-08 10:50:07 -0300189static void msp_set_source(struct i2c_client *client, u16 src)
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200190{
Hans Verkuil76efd622008-11-24 18:16:46 -0300191 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200192
193 if (msp_dolby) {
194 msp_write_dsp(client, 0x0008, 0x0520); /* I2S1 */
195 msp_write_dsp(client, 0x0009, 0x0620); /* I2S2 */
196 } else {
197 msp_write_dsp(client, 0x0008, src);
198 msp_write_dsp(client, 0x0009, src);
199 }
200 msp_write_dsp(client, 0x000a, src);
201 msp_write_dsp(client, 0x000b, src);
202 msp_write_dsp(client, 0x000c, src);
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300203 if (state->has_scart2_out)
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200204 msp_write_dsp(client, 0x0041, src);
205}
206
207void msp3400c_set_carrier(struct i2c_client *client, int cdo1, int cdo2)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200208{
209 msp_write_dem(client, 0x0093, cdo1 & 0xfff);
210 msp_write_dem(client, 0x009b, cdo1 >> 12);
211 msp_write_dem(client, 0x00a3, cdo2 & 0xfff);
212 msp_write_dem(client, 0x00ab, cdo2 >> 12);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200213 msp_write_dem(client, 0x0056, 0); /* LOAD_REG_1/2 */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200214}
215
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200216void msp3400c_set_mode(struct i2c_client *client, int mode)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200217{
Hans Verkuil76efd622008-11-24 18:16:46 -0300218 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200219 struct msp3400c_init_data_dem *data = &msp3400c_init_data[mode];
Hans Verkuil5325b422009-04-02 11:26:22 -0300220 int tuner = (state->route_in >> 3) & 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200221 int i;
222
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200223 dev_dbg_lvl(&client->dev, 1, msp_debug, "set_mode: %d\n", mode);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200224 state->mode = mode;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200225 state->rxsubchans = V4L2_TUNER_SUB_MONO;
226
Hans Verkuil2474ed42006-03-19 12:35:57 -0300227 msp_write_dem(client, 0x00bb, data->ad_cv | (tuner ? 0x100 : 0));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200228
229 for (i = 5; i >= 0; i--) /* fir 1 */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200230 msp_write_dem(client, 0x0001, data->fir1[i]);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200231
232 msp_write_dem(client, 0x0005, 0x0004); /* fir 2 */
233 msp_write_dem(client, 0x0005, 0x0040);
234 msp_write_dem(client, 0x0005, 0x0000);
235 for (i = 5; i >= 0; i--)
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200236 msp_write_dem(client, 0x0005, data->fir2[i]);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200237
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200238 msp_write_dem(client, 0x0083, data->mode_reg);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200239
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200240 msp3400c_set_carrier(client, data->cdo1, data->cdo2);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200241
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200242 msp_set_source(client, data->dsp_src);
Hans Verkuilde533cc2006-03-19 08:21:56 -0300243 /* set prescales */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200244
Hans Verkuilde533cc2006-03-19 08:21:56 -0300245 /* volume prescale for SCART (AM mono input) */
246 msp_write_dsp(client, 0x000d, 0x1900);
247 msp_write_dsp(client, 0x000e, data->dsp_matrix);
248 if (state->has_nicam) /* nicam prescale */
249 msp_write_dsp(client, 0x0010, 0x5a00);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200250}
251
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200252/* Set audio mode. Note that the pre-'G' models do not support BTSC+SAP,
253 nor do they support stereo BTSC. */
Adrian Bunk044f3242006-03-08 10:50:07 -0300254static void msp3400c_set_audmode(struct i2c_client *client)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200255{
Hans Verkuild52c7382007-12-12 08:25:18 -0300256 static char *strmode[] = {
257 "mono", "stereo", "lang2", "lang1", "lang1+lang2"
258 };
Hans Verkuil76efd622008-11-24 18:16:46 -0300259 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil301e22d2006-03-18 17:15:00 -0300260 char *modestr = (state->audmode >= 0 && state->audmode < 5) ?
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200261 strmode[state->audmode] : "unknown";
262 int src = 0; /* channel source: FM/AM, nicam or SCART */
Hans Verkuil70615612006-03-29 14:31:44 -0300263 int audmode = state->audmode;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200264
265 if (state->opmode == OPMODE_AUTOSELECT) {
266 /* this method would break everything, let's make sure
267 * it's never called
268 */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200269 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200270 "set_audmode called with mode=%d instead of set_source (ignored)\n",
271 state->audmode);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200272 return;
273 }
274
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300275 /* Note: for the C and D revs no NTSC stereo + SAP is possible as
276 the hardware does not support SAP. So the rxsubchans combination
277 of STEREO | LANG2 does not occur. */
278
Hans Verkuil2eb606d2006-04-02 08:21:02 -0300279 if (state->mode != MSP_MODE_EXTERN) {
280 /* switch to mono if only mono is available */
281 if (state->rxsubchans == V4L2_TUNER_SUB_MONO)
282 audmode = V4L2_TUNER_MODE_MONO;
283 /* if bilingual */
284 else if (state->rxsubchans & V4L2_TUNER_SUB_LANG2) {
285 /* and mono or stereo, then fallback to lang1 */
286 if (audmode == V4L2_TUNER_MODE_MONO ||
287 audmode == V4L2_TUNER_MODE_STEREO)
288 audmode = V4L2_TUNER_MODE_LANG1;
289 }
290 /* if stereo, and audmode is not mono, then switch to stereo */
291 else if (audmode != V4L2_TUNER_MODE_MONO)
292 audmode = V4L2_TUNER_MODE_STEREO;
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300293 }
Hans Verkuil70615612006-03-29 14:31:44 -0300294
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200295 /* switch demodulator */
296 switch (state->mode) {
297 case MSP_MODE_FM_TERRA:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200298 dev_dbg_lvl(&client->dev, 1, msp_debug, "FM set_audmode: %s\n", modestr);
Hans Verkuil70615612006-03-29 14:31:44 -0300299 switch (audmode) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200300 case V4L2_TUNER_MODE_STEREO:
301 msp_write_dsp(client, 0x000e, 0x3001);
302 break;
303 case V4L2_TUNER_MODE_MONO:
304 case V4L2_TUNER_MODE_LANG1:
305 case V4L2_TUNER_MODE_LANG2:
Hans Verkuil301e22d2006-03-18 17:15:00 -0300306 case V4L2_TUNER_MODE_LANG1_LANG2:
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200307 msp_write_dsp(client, 0x000e, 0x3000);
308 break;
309 }
310 break;
311 case MSP_MODE_FM_SAT:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200312 dev_dbg_lvl(&client->dev, 1, msp_debug, "SAT set_audmode: %s\n", modestr);
Hans Verkuil70615612006-03-29 14:31:44 -0300313 switch (audmode) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200314 case V4L2_TUNER_MODE_MONO:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200315 msp3400c_set_carrier(client, MSP_CARRIER(6.5), MSP_CARRIER(6.5));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200316 break;
317 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil301e22d2006-03-18 17:15:00 -0300318 case V4L2_TUNER_MODE_LANG1_LANG2:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200319 msp3400c_set_carrier(client, MSP_CARRIER(7.2), MSP_CARRIER(7.02));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200320 break;
321 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200322 msp3400c_set_carrier(client, MSP_CARRIER(7.38), MSP_CARRIER(7.02));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200323 break;
324 case V4L2_TUNER_MODE_LANG2:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200325 msp3400c_set_carrier(client, MSP_CARRIER(7.38), MSP_CARRIER(7.02));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200326 break;
327 }
328 break;
329 case MSP_MODE_FM_NICAM1:
330 case MSP_MODE_FM_NICAM2:
331 case MSP_MODE_AM_NICAM:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200332 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300333 "NICAM set_audmode: %s\n", modestr);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200334 if (state->nicam_on)
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200335 src = 0x0100; /* NICAM */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200336 break;
337 case MSP_MODE_BTSC:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200338 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300339 "BTSC set_audmode: %s\n", modestr);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200340 break;
341 case MSP_MODE_EXTERN:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200342 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300343 "extern set_audmode: %s\n", modestr);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200344 src = 0x0200; /* SCART */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200345 break;
346 case MSP_MODE_FM_RADIO:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200347 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300348 "FM-Radio set_audmode: %s\n", modestr);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200349 break;
350 default:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200351 dev_dbg_lvl(&client->dev, 1, msp_debug, "mono set_audmode\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200352 return;
353 }
354
355 /* switch audio */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200356 dev_dbg_lvl(&client->dev, 1, msp_debug, "set audmode %d\n", audmode);
Hans Verkuil70615612006-03-29 14:31:44 -0300357 switch (audmode) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200358 case V4L2_TUNER_MODE_STEREO:
Hans Verkuil301e22d2006-03-18 17:15:00 -0300359 case V4L2_TUNER_MODE_LANG1_LANG2:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200360 src |= 0x0020;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200361 break;
362 case V4L2_TUNER_MODE_MONO:
363 if (state->mode == MSP_MODE_AM_NICAM) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200364 dev_dbg_lvl(&client->dev, 1, msp_debug, "switching to AM mono\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200365 /* AM mono decoding is handled by tuner, not MSP chip */
366 /* SCART switching control register */
367 msp_set_scart(client, SCART_MONO, 0);
368 src = 0x0200;
369 break;
370 }
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200371 if (state->rxsubchans & V4L2_TUNER_SUB_STEREO)
372 src = 0x0030;
373 break;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200374 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200375 break;
376 case V4L2_TUNER_MODE_LANG2:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200377 src |= 0x0010;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200378 break;
379 }
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200380 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300381 "set_audmode final source/matrix = 0x%x\n", src);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200382
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200383 msp_set_source(client, src);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200384}
385
386static void msp3400c_print_mode(struct i2c_client *client)
387{
Hans Verkuil76efd622008-11-24 18:16:46 -0300388 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200389
Hans Verkuild52c7382007-12-12 08:25:18 -0300390 if (state->main == state->second)
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200391 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300392 "mono sound carrier: %d.%03d MHz\n",
393 state->main / 910000, (state->main / 910) % 1000);
394 else
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200395 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300396 "main sound carrier: %d.%03d MHz\n",
397 state->main / 910000, (state->main / 910) % 1000);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200398 if (state->mode == MSP_MODE_FM_NICAM1 || state->mode == MSP_MODE_FM_NICAM2)
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200399 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300400 "NICAM/FM carrier : %d.%03d MHz\n",
401 state->second / 910000, (state->second/910) % 1000);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200402 if (state->mode == MSP_MODE_AM_NICAM)
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200403 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300404 "NICAM/AM carrier : %d.%03d MHz\n",
405 state->second / 910000, (state->second / 910) % 1000);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200406 if (state->mode == MSP_MODE_FM_TERRA && state->main != state->second) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200407 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300408 "FM-stereo carrier : %d.%03d MHz\n",
409 state->second / 910000, (state->second / 910) % 1000);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200410 }
411}
412
413/* ----------------------------------------------------------------------- */
414
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200415static int msp3400c_detect_stereo(struct i2c_client *client)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200416{
Hans Verkuil76efd622008-11-24 18:16:46 -0300417 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200418 int val;
419 int rxsubchans = state->rxsubchans;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200420 int newnicam = state->nicam_on;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200421 int update = 0;
422
423 switch (state->mode) {
424 case MSP_MODE_FM_TERRA:
425 val = msp_read_dsp(client, 0x18);
426 if (val > 32767)
427 val -= 65536;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200428 dev_dbg_lvl(&client->dev, 2, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300429 "stereo detect register: %d\n", val);
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300430 if (val > 8192) {
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200431 rxsubchans = V4L2_TUNER_SUB_STEREO;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200432 } else if (val < -4096) {
433 rxsubchans = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
434 } else {
435 rxsubchans = V4L2_TUNER_SUB_MONO;
436 }
437 newnicam = 0;
438 break;
439 case MSP_MODE_FM_NICAM1:
440 case MSP_MODE_FM_NICAM2:
441 case MSP_MODE_AM_NICAM:
442 val = msp_read_dem(client, 0x23);
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200443 dev_dbg_lvl(&client->dev, 2, msp_debug, "nicam sync=%d, mode=%d\n",
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200444 val & 1, (val & 0x1e) >> 1);
445
446 if (val & 1) {
447 /* nicam synced */
448 switch ((val & 0x1e) >> 1) {
449 case 0:
450 case 8:
451 rxsubchans = V4L2_TUNER_SUB_STEREO;
452 break;
453 case 1:
454 case 9:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200455 rxsubchans = V4L2_TUNER_SUB_MONO;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200456 break;
457 case 2:
458 case 10:
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200459 rxsubchans = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200460 break;
461 default:
462 rxsubchans = V4L2_TUNER_SUB_MONO;
463 break;
464 }
465 newnicam = 1;
466 } else {
467 newnicam = 0;
468 rxsubchans = V4L2_TUNER_SUB_MONO;
469 }
470 break;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200471 }
472 if (rxsubchans != state->rxsubchans) {
473 update = 1;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200474 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300475 "watch: rxsubchans %02x => %02x\n",
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200476 state->rxsubchans, rxsubchans);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200477 state->rxsubchans = rxsubchans;
478 }
479 if (newnicam != state->nicam_on) {
480 update = 1;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200481 dev_dbg_lvl(&client->dev, 1, msp_debug, "watch: nicam %d => %d\n",
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200482 state->nicam_on, newnicam);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200483 state->nicam_on = newnicam;
484 }
485 return update;
486}
487
488/*
489 * A kernel thread for msp3400 control -- we don't want to block the
490 * in the ioctl while doing the sound carrier & stereo detect
491 */
492/* stereo/multilang monitoring */
493static void watch_stereo(struct i2c_client *client)
494{
Hans Verkuil76efd622008-11-24 18:16:46 -0300495 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200496
Hans Verkuild52c7382007-12-12 08:25:18 -0300497 if (msp_detect_stereo(client))
Hans Verkuilde533cc2006-03-19 08:21:56 -0300498 msp_set_audmode(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200499
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -0200500 if (msp_once)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200501 state->watch_stereo = 0;
502}
503
504int msp3400c_thread(void *data)
505{
506 struct i2c_client *client = data;
Hans Verkuil76efd622008-11-24 18:16:46 -0300507 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200508 struct msp3400c_carrier_detect *cd;
Hans Verkuild52c7382007-12-12 08:25:18 -0300509 int count, max1, max2, val1, val2, val, i;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200510
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200511 dev_dbg_lvl(&client->dev, 1, msp_debug, "msp3400 daemon started\n");
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300512 state->detected_std = V4L2_STD_ALL;
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700513 set_freezable();
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200514 for (;;) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200515 dev_dbg_lvl(&client->dev, 2, msp_debug, "msp3400 thread: sleep\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200516 msp_sleep(state, -1);
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200517 dev_dbg_lvl(&client->dev, 2, msp_debug, "msp3400 thread: wakeup\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200518
Hans Verkuild52c7382007-12-12 08:25:18 -0300519restart:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200520 dev_dbg_lvl(&client->dev, 2, msp_debug, "thread: restart scan\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200521 state->restart = 0;
522 if (kthread_should_stop())
523 break;
524
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200525 if (state->radio || MSP_MODE_EXTERN == state->mode) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200526 /* no carrier scan, just unmute */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200527 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300528 "thread: no carrier scan\n");
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300529 state->scan_in_progress = 0;
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300530 msp_update_volume(state);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200531 continue;
532 }
533
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300534 /* mute audio */
535 state->scan_in_progress = 1;
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300536 msp_update_volume(state);
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300537
Hans Verkuilde533cc2006-03-19 08:21:56 -0300538 msp3400c_set_mode(client, MSP_MODE_AM_DETECT);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200539 val1 = val2 = 0;
540 max1 = max2 = -1;
541 state->watch_stereo = 0;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200542 state->nicam_on = 0;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200543
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300544 /* wait for tuner to settle down after a channel change */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200545 if (msp_sleep(state, 200))
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200546 goto restart;
547
548 /* carrier detect pass #1 -- main carrier */
549 cd = msp3400c_carrier_detect_main;
550 count = ARRAY_SIZE(msp3400c_carrier_detect_main);
551
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -0200552 if (msp_amsound && (state->v4l2_std & V4L2_STD_SECAM)) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200553 /* autodetect doesn't work well with AM ... */
554 max1 = 3;
555 count = 0;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200556 dev_dbg_lvl(&client->dev, 1, msp_debug, "AM sound override\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200557 }
558
Hans Verkuild52c7382007-12-12 08:25:18 -0300559 for (i = 0; i < count; i++) {
560 msp3400c_set_carrier(client, cd[i].cdo, cd[i].cdo);
561 if (msp_sleep(state, 100))
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200562 goto restart;
563 val = msp_read_dsp(client, 0x1b);
564 if (val > 32767)
565 val -= 65536;
566 if (val1 < val)
Hans Verkuild52c7382007-12-12 08:25:18 -0300567 val1 = val, max1 = i;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200568 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300569 "carrier1 val: %5d / %s\n", val, cd[i].name);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200570 }
571
572 /* carrier detect pass #2 -- second (stereo) carrier */
573 switch (max1) {
574 case 1: /* 5.5 */
575 cd = msp3400c_carrier_detect_55;
576 count = ARRAY_SIZE(msp3400c_carrier_detect_55);
577 break;
578 case 3: /* 6.5 */
579 cd = msp3400c_carrier_detect_65;
580 count = ARRAY_SIZE(msp3400c_carrier_detect_65);
581 break;
582 case 0: /* 4.5 */
583 case 2: /* 6.0 */
584 default:
585 cd = NULL;
586 count = 0;
587 break;
588 }
589
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -0200590 if (msp_amsound && (state->v4l2_std & V4L2_STD_SECAM)) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200591 /* autodetect doesn't work well with AM ... */
592 cd = NULL;
593 count = 0;
594 max2 = 0;
595 }
Hans Verkuild52c7382007-12-12 08:25:18 -0300596 for (i = 0; i < count; i++) {
597 msp3400c_set_carrier(client, cd[i].cdo, cd[i].cdo);
598 if (msp_sleep(state, 100))
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200599 goto restart;
600 val = msp_read_dsp(client, 0x1b);
601 if (val > 32767)
602 val -= 65536;
603 if (val2 < val)
Hans Verkuild52c7382007-12-12 08:25:18 -0300604 val2 = val, max2 = i;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200605 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300606 "carrier2 val: %5d / %s\n", val, cd[i].name);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200607 }
608
609 /* program the msp3400 according to the results */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200610 state->main = msp3400c_carrier_detect_main[max1].cdo;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200611 switch (max1) {
612 case 1: /* 5.5 */
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300613 state->detected_std = V4L2_STD_BG | V4L2_STD_PAL_H;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200614 if (max2 == 0) {
615 /* B/G FM-stereo */
616 state->second = msp3400c_carrier_detect_55[max2].cdo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200617 msp3400c_set_mode(client, MSP_MODE_FM_TERRA);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200618 state->watch_stereo = 1;
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200619 } else if (max2 == 1 && state->has_nicam) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200620 /* B/G NICAM */
621 state->second = msp3400c_carrier_detect_55[max2].cdo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200622 msp3400c_set_mode(client, MSP_MODE_FM_NICAM1);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200623 state->nicam_on = 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200624 state->watch_stereo = 1;
625 } else {
626 goto no_second;
627 }
628 break;
629 case 2: /* 6.0 */
630 /* PAL I NICAM */
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300631 state->detected_std = V4L2_STD_PAL_I;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200632 state->second = MSP_CARRIER(6.552);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200633 msp3400c_set_mode(client, MSP_MODE_FM_NICAM2);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200634 state->nicam_on = 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200635 state->watch_stereo = 1;
636 break;
637 case 3: /* 6.5 */
638 if (max2 == 1 || max2 == 2) {
639 /* D/K FM-stereo */
640 state->second = msp3400c_carrier_detect_65[max2].cdo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200641 msp3400c_set_mode(client, MSP_MODE_FM_TERRA);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200642 state->watch_stereo = 1;
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300643 state->detected_std = V4L2_STD_DK;
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200644 } else if (max2 == 0 && (state->v4l2_std & V4L2_STD_SECAM)) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200645 /* L NICAM or AM-mono */
646 state->second = msp3400c_carrier_detect_65[max2].cdo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200647 msp3400c_set_mode(client, MSP_MODE_AM_NICAM);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200648 state->watch_stereo = 1;
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300649 state->detected_std = V4L2_STD_L;
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200650 } else if (max2 == 0 && state->has_nicam) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200651 /* D/K NICAM */
652 state->second = msp3400c_carrier_detect_65[max2].cdo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200653 msp3400c_set_mode(client, MSP_MODE_FM_NICAM1);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200654 state->nicam_on = 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200655 state->watch_stereo = 1;
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300656 state->detected_std = V4L2_STD_DK;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200657 } else {
658 goto no_second;
659 }
660 break;
661 case 0: /* 4.5 */
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300662 state->detected_std = V4L2_STD_MN;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200663 default:
Hans Verkuild52c7382007-12-12 08:25:18 -0300664no_second:
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200665 state->second = msp3400c_carrier_detect_main[max1].cdo;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200666 msp3400c_set_mode(client, MSP_MODE_FM_TERRA);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200667 break;
668 }
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300669 msp3400c_set_carrier(client, state->second, state->main);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200670
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300671 /* unmute */
672 state->scan_in_progress = 0;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200673 msp3400c_set_audmode(client);
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300674 msp_update_volume(state);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200675
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -0200676 if (msp_debug)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200677 msp3400c_print_mode(client);
678
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200679 /* monitor tv audio mode, the first time don't wait
680 so long to get a quick stereo/bilingual result */
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300681 count = 3;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200682 while (state->watch_stereo) {
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300683 if (msp_sleep(state, count ? 1000 : 5000))
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200684 goto restart;
Hans Verkuild52c7382007-12-12 08:25:18 -0300685 if (count)
686 count--;
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300687 watch_stereo(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200688 }
689 }
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200690 dev_dbg_lvl(&client->dev, 1, msp_debug, "thread: exit\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200691 return 0;
692}
693
694
695int msp3410d_thread(void *data)
696{
697 struct i2c_client *client = data;
Hans Verkuil76efd622008-11-24 18:16:46 -0300698 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300699 int val, i, std, count;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200700
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200701 dev_dbg_lvl(&client->dev, 1, msp_debug, "msp3410 daemon started\n");
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300702 state->detected_std = V4L2_STD_ALL;
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700703 set_freezable();
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200704 for (;;) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200705 dev_dbg_lvl(&client->dev, 2, msp_debug, "msp3410 thread: sleep\n");
Hans Verkuild52c7382007-12-12 08:25:18 -0300706 msp_sleep(state, -1);
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200707 dev_dbg_lvl(&client->dev, 2, msp_debug, "msp3410 thread: wakeup\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200708
Hans Verkuild52c7382007-12-12 08:25:18 -0300709restart:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200710 dev_dbg_lvl(&client->dev, 2, msp_debug, "thread: restart scan\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200711 state->restart = 0;
712 if (kthread_should_stop())
713 break;
714
715 if (state->mode == MSP_MODE_EXTERN) {
716 /* no carrier scan needed, just unmute */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200717 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300718 "thread: no carrier scan\n");
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300719 state->scan_in_progress = 0;
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300720 msp_update_volume(state);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200721 continue;
722 }
723
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300724 /* mute audio */
725 state->scan_in_progress = 1;
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300726 msp_update_volume(state);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200727
Hans Verkuilde533cc2006-03-19 08:21:56 -0300728 /* start autodetect. Note: autodetect is not supported for
Hans Verkuild52c7382007-12-12 08:25:18 -0300729 NTSC-M and radio, hence we force the standard in those
730 cases. */
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200731 if (state->radio)
732 std = 0x40;
Hans Verkuild312a462006-01-09 18:21:36 -0200733 else
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200734 std = (state->v4l2_std & V4L2_STD_NTSC) ? 0x20 : 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200735 state->watch_stereo = 0;
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200736 state->nicam_on = 0;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200737
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300738 /* wait for tuner to settle down after a channel change */
739 if (msp_sleep(state, 200))
740 goto restart;
741
Mauro Carvalho Chehabf167cb4e2006-01-11 19:41:49 -0200742 if (msp_debug)
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200743 dev_dbg_lvl(&client->dev, 2, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300744 "setting standard: %s (0x%04x)\n",
745 msp_standard_std_name(std), std);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200746
747 if (std != 1) {
748 /* programmed some specific mode */
749 val = std;
750 } else {
751 /* triggered autodetect */
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200752 msp_write_dem(client, 0x20, std);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200753 for (;;) {
Hans Verkuild312a462006-01-09 18:21:36 -0200754 if (msp_sleep(state, 100))
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200755 goto restart;
756
757 /* check results */
758 val = msp_read_dem(client, 0x7e);
759 if (val < 0x07ff)
760 break;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200761 dev_dbg_lvl(&client->dev, 2, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300762 "detection still in progress\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200763 }
764 }
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200765 for (i = 0; msp_stdlist[i].name != NULL; i++)
766 if (msp_stdlist[i].retval == val)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200767 break;
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200768 dev_dbg_lvl(&client->dev, 1, msp_debug, "current standard: %s (0x%04x)\n",
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200769 msp_standard_std_name(val), val);
770 state->main = msp_stdlist[i].main;
771 state->second = msp_stdlist[i].second;
772 state->std = val;
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300773 state->rxsubchans = V4L2_TUNER_SUB_MONO;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200774
Hans Verkuild52c7382007-12-12 08:25:18 -0300775 if (msp_amsound && !state->radio &&
776 (state->v4l2_std & V4L2_STD_SECAM) && (val != 0x0009)) {
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200777 /* autodetection has failed, let backup */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200778 dev_dbg_lvl(&client->dev, 1, msp_debug, "autodetection failed, switching to backup standard: %s (0x%04x)\n",
Hans Verkuild52c7382007-12-12 08:25:18 -0300779 msp_stdlist[8].name ?
780 msp_stdlist[8].name : "unknown", val);
Hans Verkuilde533cc2006-03-19 08:21:56 -0300781 state->std = val = 0x0009;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200782 msp_write_dem(client, 0x20, val);
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300783 } else {
784 state->detected_std = msp_standard_std(state->std);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200785 }
786
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200787 /* set stereo */
788 switch (val) {
789 case 0x0008: /* B/G NICAM */
790 case 0x000a: /* I NICAM */
Hans Verkuilde533cc2006-03-19 08:21:56 -0300791 case 0x000b: /* D/K NICAM */
792 if (val == 0x000a)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200793 state->mode = MSP_MODE_FM_NICAM2;
Hans Verkuilde533cc2006-03-19 08:21:56 -0300794 else
795 state->mode = MSP_MODE_FM_NICAM1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200796 /* just turn on stereo */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200797 state->nicam_on = 1;
798 state->watch_stereo = 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200799 break;
800 case 0x0009:
801 state->mode = MSP_MODE_AM_NICAM;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200802 state->nicam_on = 1;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200803 state->watch_stereo = 1;
804 break;
805 case 0x0020: /* BTSC */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200806 /* The pre-'G' models only have BTSC-mono */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200807 state->mode = MSP_MODE_BTSC;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200808 break;
809 case 0x0040: /* FM radio */
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200810 state->mode = MSP_MODE_FM_RADIO;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200811 state->rxsubchans = V4L2_TUNER_SUB_STEREO;
Hans Verkuil7560d7a2006-01-09 18:21:32 -0200812 /* not needed in theory if we have radio, but
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200813 short programming enables carrier mute */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200814 msp3400c_set_mode(client, MSP_MODE_FM_RADIO);
815 msp3400c_set_carrier(client, MSP_CARRIER(10.7),
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200816 MSP_CARRIER(10.7));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200817 break;
Hans Verkuilde533cc2006-03-19 08:21:56 -0300818 case 0x0002:
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200819 case 0x0003:
820 case 0x0004:
821 case 0x0005:
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200822 state->mode = MSP_MODE_FM_TERRA;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200823 state->watch_stereo = 1;
824 break;
825 }
826
Hans Verkuilde533cc2006-03-19 08:21:56 -0300827 /* set various prescales */
828 msp_write_dsp(client, 0x0d, 0x1900); /* scart */
829 msp_write_dsp(client, 0x0e, 0x3000); /* FM */
830 if (state->has_nicam)
831 msp_write_dsp(client, 0x10, 0x5a00); /* nicam */
832
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200833 if (state->has_i2s_conf)
834 msp_write_dem(client, 0x40, state->i2s_mode);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200835
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300836 /* unmute */
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200837 msp3400c_set_audmode(client);
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300838 state->scan_in_progress = 0;
Hans Verkuilebc3bba2010-05-24 10:01:58 -0300839 msp_update_volume(state);
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200840
841 /* monitor tv audio mode, the first time don't wait
842 so long to get a quick stereo/bilingual result */
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300843 count = 3;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200844 while (state->watch_stereo) {
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300845 if (msp_sleep(state, count ? 1000 : 5000))
Hans Verkuil8a4b2752006-01-23 17:11:09 -0200846 goto restart;
Hans Verkuild52c7382007-12-12 08:25:18 -0300847 if (count)
848 count--;
Hans Verkuil3bbe5a82006-04-01 15:27:52 -0300849 watch_stereo(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200850 }
851 }
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200852 dev_dbg_lvl(&client->dev, 1, msp_debug, "thread: exit\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200853 return 0;
854}
855
856/* ----------------------------------------------------------------------- */
857
Hans Verkuilde533cc2006-03-19 08:21:56 -0300858/* msp34xxG + (autoselect no-thread)
859 * this one uses both automatic standard detection and automatic sound
860 * select which are available in the newer G versions
861 * struct msp: only norm, acb and source are really used in this mode
862 */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200863
Hans Verkuil9a80a932006-03-19 07:25:42 -0300864static int msp34xxg_modus(struct i2c_client *client)
865{
Hans Verkuil76efd622008-11-24 18:16:46 -0300866 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil9a80a932006-03-19 07:25:42 -0300867
868 if (state->radio) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200869 dev_dbg_lvl(&client->dev, 1, msp_debug, "selected radio modus\n");
Hans Verkuil9a80a932006-03-19 07:25:42 -0300870 return 0x0001;
871 }
Hans Verkuil9a80a932006-03-19 07:25:42 -0300872 if (state->v4l2_std == V4L2_STD_NTSC_M_JP) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200873 dev_dbg_lvl(&client->dev, 1, msp_debug, "selected M (EIA-J) modus\n");
Hans Verkuil9a80a932006-03-19 07:25:42 -0300874 return 0x4001;
875 }
876 if (state->v4l2_std == V4L2_STD_NTSC_M_KR) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200877 dev_dbg_lvl(&client->dev, 1, msp_debug, "selected M (A2) modus\n");
Hans Verkuil9a80a932006-03-19 07:25:42 -0300878 return 0x0001;
879 }
Hans Verkuil2fd3c142008-04-22 14:45:51 -0300880 if (state->v4l2_std == V4L2_STD_SECAM_L) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200881 dev_dbg_lvl(&client->dev, 1, msp_debug, "selected SECAM-L modus\n");
Hans Verkuil2fd3c142008-04-22 14:45:51 -0300882 return 0x6001;
883 }
Hans Verkuil9a80a932006-03-19 07:25:42 -0300884 if (state->v4l2_std & V4L2_STD_MN) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200885 dev_dbg_lvl(&client->dev, 1, msp_debug, "selected M (BTSC) modus\n");
Hans Verkuil9a80a932006-03-19 07:25:42 -0300886 return 0x2001;
887 }
Hans Verkuil2fd3c142008-04-22 14:45:51 -0300888 return 0x7001;
Hans Verkuil9a80a932006-03-19 07:25:42 -0300889}
890
Hans Verkuil2474ed42006-03-19 12:35:57 -0300891static void msp34xxg_set_source(struct i2c_client *client, u16 reg, int in)
892 {
Hans Verkuil76efd622008-11-24 18:16:46 -0300893 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil2474ed42006-03-19 12:35:57 -0300894 int source, matrix;
895
896 switch (state->audmode) {
897 case V4L2_TUNER_MODE_MONO:
898 source = 0; /* mono only */
899 matrix = 0x30;
900 break;
Hans Verkuil2474ed42006-03-19 12:35:57 -0300901 case V4L2_TUNER_MODE_LANG2:
902 source = 4; /* stereo or B */
903 matrix = 0x10;
904 break;
Hans Verkuil301e22d2006-03-18 17:15:00 -0300905 case V4L2_TUNER_MODE_LANG1_LANG2:
Hans Verkuil2474ed42006-03-19 12:35:57 -0300906 source = 1; /* stereo or A|B */
907 matrix = 0x20;
908 break;
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300909 case V4L2_TUNER_MODE_LANG1:
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300910 source = 3; /* stereo or A */
911 matrix = 0x00;
912 break;
Hans Verkuilb331def2006-12-18 13:18:28 -0300913 case V4L2_TUNER_MODE_STEREO:
914 default:
915 source = 3; /* stereo or A */
916 matrix = 0x20;
917 break;
Hans Verkuil2474ed42006-03-19 12:35:57 -0300918 }
919
Hans Verkuil07151722006-04-01 18:03:23 -0300920 if (in == MSP_DSP_IN_TUNER)
Hans Verkuil2474ed42006-03-19 12:35:57 -0300921 source = (source << 8) | 0x20;
922 /* the msp34x2g puts the MAIN_AVC, MAIN and AUX sources in 12, 13, 14
923 instead of 11, 12, 13. So we add one for that msp version. */
Hans Verkuil07151722006-04-01 18:03:23 -0300924 else if (in >= MSP_DSP_IN_MAIN_AVC && state->has_dolby_pro_logic)
Hans Verkuil2474ed42006-03-19 12:35:57 -0300925 source = ((in + 1) << 8) | matrix;
926 else
927 source = (in << 8) | matrix;
928
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200929 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -0300930 "set source to %d (0x%x) for output %02x\n", in, source, reg);
Hans Verkuil2474ed42006-03-19 12:35:57 -0300931 msp_write_dsp(client, reg, source);
932}
933
934static void msp34xxg_set_sources(struct i2c_client *client)
935{
Hans Verkuil76efd622008-11-24 18:16:46 -0300936 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil5325b422009-04-02 11:26:22 -0300937 u32 in = state->route_in;
Hans Verkuil2474ed42006-03-19 12:35:57 -0300938
939 msp34xxg_set_source(client, 0x0008, (in >> 4) & 0xf);
940 /* quasi-peak detector is set to same input as the loudspeaker (MAIN) */
941 msp34xxg_set_source(client, 0x000c, (in >> 4) & 0xf);
942 msp34xxg_set_source(client, 0x0009, (in >> 8) & 0xf);
943 msp34xxg_set_source(client, 0x000a, (in >> 12) & 0xf);
Hans Verkuil0020d3e2006-03-30 19:50:34 -0300944 if (state->has_scart2_out)
Hans Verkuil2474ed42006-03-19 12:35:57 -0300945 msp34xxg_set_source(client, 0x0041, (in >> 16) & 0xf);
946 msp34xxg_set_source(client, 0x000b, (in >> 20) & 0xf);
947}
948
Hans Verkuilde533cc2006-03-19 08:21:56 -0300949/* (re-)initialize the msp34xxg */
950static void msp34xxg_reset(struct i2c_client *client)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200951{
Hans Verkuil76efd622008-11-24 18:16:46 -0300952 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil5325b422009-04-02 11:26:22 -0300953 int tuner = (state->route_in >> 3) & 1;
Hans Verkuilde533cc2006-03-19 08:21:56 -0300954 int modus;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200955
Hans Verkuilde533cc2006-03-19 08:21:56 -0300956 /* initialize std to 1 (autodetect) to signal that no standard is
957 selected yet. */
958 state->std = 1;
959
960 msp_reset(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200961
Hans Verkuil5af0c8f2006-01-09 18:21:37 -0200962 if (state->has_i2s_conf)
963 msp_write_dem(client, 0x40, state->i2s_mode);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200964
965 /* step-by-step initialisation, as described in the manual */
Hans Verkuil9a80a932006-03-19 07:25:42 -0300966 modus = msp34xxg_modus(client);
Hans Verkuil2474ed42006-03-19 12:35:57 -0300967 modus |= tuner ? 0x100 : 0;
Hans Verkuilde533cc2006-03-19 08:21:56 -0300968 msp_write_dem(client, 0x30, modus);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200969
970 /* write the dsps that may have an influence on
971 standard/audio autodetection right now */
Hans Verkuil2474ed42006-03-19 12:35:57 -0300972 msp34xxg_set_sources(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200973
Hans Verkuilde533cc2006-03-19 08:21:56 -0300974 msp_write_dsp(client, 0x0d, 0x1900); /* scart */
975 msp_write_dsp(client, 0x0e, 0x3000); /* FM */
976 if (state->has_nicam)
977 msp_write_dsp(client, 0x10, 0x5a00); /* nicam */
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200978
Hans Verkuilde533cc2006-03-19 08:21:56 -0300979 /* set identification threshold. Personally, I
980 * I set it to a higher value than the default
981 * of 0x190 to ignore noisy stereo signals.
982 * this needs tuning. (recommended range 0x00a0-0x03c0)
983 * 0x7f0 = forced mono mode
984 *
985 * a2 threshold for stereo/bilingual.
986 * Note: this register is part of the Manual/Compatibility mode.
987 * It is supported by all 'G'-family chips.
988 */
989 msp_write_dem(client, 0x22, msp_stereo_thresh);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200990}
991
992int msp34xxg_thread(void *data)
993{
994 struct i2c_client *client = data;
Hans Verkuil76efd622008-11-24 18:16:46 -0300995 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuilde533cc2006-03-19 08:21:56 -0300996 int val, i;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -0200997
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -0200998 dev_dbg_lvl(&client->dev, 1, msp_debug, "msp34xxg daemon started\n");
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -0300999 state->detected_std = V4L2_STD_ALL;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07001000 set_freezable();
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001001 for (;;) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001002 dev_dbg_lvl(&client->dev, 2, msp_debug, "msp34xxg thread: sleep\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001003 msp_sleep(state, -1);
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001004 dev_dbg_lvl(&client->dev, 2, msp_debug, "msp34xxg thread: wakeup\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001005
Hans Verkuild52c7382007-12-12 08:25:18 -03001006restart:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001007 dev_dbg_lvl(&client->dev, 1, msp_debug, "thread: restart scan\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001008 state->restart = 0;
1009 if (kthread_should_stop())
1010 break;
1011
Hans Verkuil2eb606d2006-04-02 08:21:02 -03001012 if (state->mode == MSP_MODE_EXTERN) {
1013 /* no carrier scan needed, just unmute */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001014 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -03001015 "thread: no carrier scan\n");
Hans Verkuil2eb606d2006-04-02 08:21:02 -03001016 state->scan_in_progress = 0;
Hans Verkuilebc3bba2010-05-24 10:01:58 -03001017 msp_update_volume(state);
Hans Verkuil2eb606d2006-04-02 08:21:02 -03001018 continue;
1019 }
1020
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001021 /* setup the chip*/
1022 msp34xxg_reset(client);
Hans Verkuilde98cda2006-10-01 17:56:32 -03001023 state->std = state->radio ? 0x40 :
1024 (state->force_btsc && msp_standard == 1) ? 32 : msp_standard;
Hans Verkuilde533cc2006-03-19 08:21:56 -03001025 msp_write_dem(client, 0x20, state->std);
Hans Verkuilde98cda2006-10-01 17:56:32 -03001026 /* start autodetect */
Hans Verkuile335fad2006-08-08 09:10:15 -03001027 if (state->std != 1)
1028 goto unmute;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001029
1030 /* watch autodetect */
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001031 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -03001032 "started autodetect, waiting for result\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001033 for (i = 0; i < 10; i++) {
1034 if (msp_sleep(state, 100))
1035 goto restart;
1036
1037 /* check results */
1038 val = msp_read_dem(client, 0x7e);
1039 if (val < 0x07ff) {
Hans Verkuilde533cc2006-03-19 08:21:56 -03001040 state->std = val;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001041 break;
1042 }
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001043 dev_dbg_lvl(&client->dev, 2, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -03001044 "detection still in progress\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001045 }
Hans Verkuilde533cc2006-03-19 08:21:56 -03001046 if (state->std == 1) {
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001047 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -03001048 "detection still in progress after 10 tries. giving up.\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001049 continue;
1050 }
1051
Hans Verkuild52c7382007-12-12 08:25:18 -03001052unmute:
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001053 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -03001054 "detected standard: %s (0x%04x)\n",
Hans Verkuilde533cc2006-03-19 08:21:56 -03001055 msp_standard_std_name(state->std), state->std);
Mauro Carvalho Chehab5d1ed982011-10-04 09:44:02 -03001056 state->detected_std = msp_standard_std(state->std);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001057
Hans Verkuil2eb606d2006-04-02 08:21:02 -03001058 if (state->std == 9) {
1059 /* AM NICAM mode */
1060 msp_write_dsp(client, 0x0e, 0x7c00);
1061 }
1062
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001063 /* unmute: dispatch sound to scart output, set scart volume */
Hans Verkuilebc3bba2010-05-24 10:01:58 -03001064 msp_update_volume(state);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001065
1066 /* restore ACB */
1067 if (msp_write_dsp(client, 0x13, state->acb))
1068 return -1;
1069
Hans Verkuilde533cc2006-03-19 08:21:56 -03001070 /* the periodic stereo/SAP check is only relevant for
1071 the 0x20 standard (BTSC) */
1072 if (state->std != 0x20)
1073 continue;
1074
1075 state->watch_stereo = 1;
1076
1077 /* monitor tv audio mode, the first time don't wait
1078 in order to get a quick stereo/SAP update */
1079 watch_stereo(client);
1080 while (state->watch_stereo) {
1081 watch_stereo(client);
1082 if (msp_sleep(state, 5000))
1083 goto restart;
1084 }
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001085 }
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001086 dev_dbg_lvl(&client->dev, 1, msp_debug, "thread: exit\n");
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001087 return 0;
1088}
1089
Hans Verkuilde533cc2006-03-19 08:21:56 -03001090static int msp34xxg_detect_stereo(struct i2c_client *client)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001091{
Hans Verkuil76efd622008-11-24 18:16:46 -03001092 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001093 int status = msp_read_dem(client, 0x0200);
1094 int is_bilingual = status & 0x100;
1095 int is_stereo = status & 0x40;
Hans Verkuilde533cc2006-03-19 08:21:56 -03001096 int oldrx = state->rxsubchans;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001097
Hans Verkuilb331def2006-12-18 13:18:28 -03001098 if (state->mode == MSP_MODE_EXTERN)
1099 return 0;
1100
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001101 state->rxsubchans = 0;
1102 if (is_stereo)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001103 state->rxsubchans = V4L2_TUNER_SUB_STEREO;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001104 else
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001105 state->rxsubchans = V4L2_TUNER_SUB_MONO;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001106 if (is_bilingual) {
Hans Verkuilde533cc2006-03-19 08:21:56 -03001107 if (state->std == 0x20)
1108 state->rxsubchans |= V4L2_TUNER_SUB_SAP;
1109 else
Hans Verkuild52c7382007-12-12 08:25:18 -03001110 state->rxsubchans =
1111 V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001112 }
Mauro Carvalho Chehab39ad7992016-11-16 09:10:14 -02001113 dev_dbg_lvl(&client->dev, 1, msp_debug,
Hans Verkuild52c7382007-12-12 08:25:18 -03001114 "status=0x%x, stereo=%d, bilingual=%d -> rxsubchans=%d\n",
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001115 status, is_stereo, is_bilingual, state->rxsubchans);
Hans Verkuilde533cc2006-03-19 08:21:56 -03001116 return (oldrx != state->rxsubchans);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001117}
1118
Adrian Bunk044f3242006-03-08 10:50:07 -03001119static void msp34xxg_set_audmode(struct i2c_client *client)
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001120{
Hans Verkuil76efd622008-11-24 18:16:46 -03001121 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001122
Hans Verkuilde533cc2006-03-19 08:21:56 -03001123 if (state->std == 0x20) {
1124 if ((state->rxsubchans & V4L2_TUNER_SUB_SAP) &&
Mauro Carvalho Chehabcc336682006-03-29 16:29:00 -03001125 (state->audmode == V4L2_TUNER_MODE_LANG1_LANG2 ||
Hans Verkuilde533cc2006-03-19 08:21:56 -03001126 state->audmode == V4L2_TUNER_MODE_LANG2)) {
1127 msp_write_dem(client, 0x20, 0x21);
1128 } else {
1129 msp_write_dem(client, 0x20, 0x20);
1130 }
1131 }
1132
Hans Verkuil2474ed42006-03-19 12:35:57 -03001133 msp34xxg_set_sources(client);
Hans Verkuil7e8b09e2006-01-09 15:32:40 -02001134}
1135
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001136void msp_set_audmode(struct i2c_client *client)
1137{
Hans Verkuil76efd622008-11-24 18:16:46 -03001138 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001139
1140 switch (state->opmode) {
1141 case OPMODE_MANUAL:
1142 case OPMODE_AUTODETECT:
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001143 msp3400c_set_audmode(client);
1144 break;
1145 case OPMODE_AUTOSELECT:
1146 msp34xxg_set_audmode(client);
1147 break;
1148 }
1149}
1150
Hans Verkuilde533cc2006-03-19 08:21:56 -03001151int msp_detect_stereo(struct i2c_client *client)
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001152{
Hans Verkuil76efd622008-11-24 18:16:46 -03001153 struct msp_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001154
1155 switch (state->opmode) {
1156 case OPMODE_MANUAL:
1157 case OPMODE_AUTODETECT:
Hans Verkuilde533cc2006-03-19 08:21:56 -03001158 return msp3400c_detect_stereo(client);
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001159 case OPMODE_AUTOSELECT:
Hans Verkuilde533cc2006-03-19 08:21:56 -03001160 return msp34xxg_detect_stereo(client);
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001161 }
Hans Verkuilde533cc2006-03-19 08:21:56 -03001162 return 0;
Hans Verkuil8a4b2752006-01-23 17:11:09 -02001163}
1164