blob: b6e70fada3fb204ec0a7e09a89c9ea937cecc890 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * i2c tv tuner chip device driver
4 * controls all those simple 4-control-bytes style tuners.
Michael Krufky4adad282007-08-27 21:59:08 -03005 *
6 * This "tuner-simple" module was split apart from the original "tuner" module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8#include <linux/delay.h>
9#include <linux/i2c.h>
Hans Verkuilf894dfd2008-07-25 07:39:54 -030010#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <media/tuner.h>
Hans Verkuilba8fc392006-06-25 15:34:39 -030012#include <media/v4l2-common.h>
Michael Krufky8218b0b2007-06-26 13:12:08 -030013#include <media/tuner-types.h>
Michael Krufky4adad282007-08-27 21:59:08 -030014#include "tuner-i2c.h"
15#include "tuner-simple.h"
16
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030017static int debug;
Michael Krufky4adad282007-08-27 21:59:08 -030018module_param(debug, int, 0644);
19MODULE_PARM_DESC(debug, "enable verbose debug messages");
20
Michael Krufky65511612008-04-22 14:46:12 -030021#define TUNER_SIMPLE_MAX 64
22static unsigned int simple_devcount;
23
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030024static int offset;
Mauro Carvalho Chehab4d988162006-08-12 21:59:19 -030025module_param(offset, int, 0664);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030026MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020027
Michael Krufky65511612008-04-22 14:46:12 -030028static unsigned int atv_input[TUNER_SIMPLE_MAX] = \
29 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
30static unsigned int dtv_input[TUNER_SIMPLE_MAX] = \
31 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
32module_param_array(atv_input, int, NULL, 0644);
33module_param_array(dtv_input, int, NULL, 0644);
34MODULE_PARM_DESC(atv_input, "specify atv rf input, 0 for autoselect");
35MODULE_PARM_DESC(dtv_input, "specify dtv rf input, 0 for autoselect");
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* ---------------------------------------------------------------------- */
38
39/* tv standard selection for Temic 4046 FM5
40 this value takes the low bits of control byte 2
41 from datasheet Rev.01, Feb.00
42 standard BG I L L2 D
43 picture IF 38.9 38.9 38.9 33.95 38.9
44 sound 1 33.4 32.9 32.4 40.45 32.4
45 sound 2 33.16
46 NICAM 33.05 32.348 33.05 33.05
47 */
48#define TEMIC_SET_PAL_I 0x05
49#define TEMIC_SET_PAL_DK 0x09
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030050#define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
51#define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define TEMIC_SET_PAL_BG 0x0c
53
54/* tv tuner system standard selection for Philips FQ1216ME
55 this value takes the low bits of control byte 2
56 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050057 standard BG DK I L L`
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 picture carrier 38.90 38.90 38.90 38.90 33.95
59 colour 34.47 34.47 34.47 34.47 38.38
60 sound 1 33.40 32.40 32.90 32.40 40.45
61 sound 2 33.16 - - - -
62 NICAM 33.05 33.05 32.35 33.05 39.80
63 */
64#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
65#define PHILIPS_SET_PAL_BGDK 0x09
66#define PHILIPS_SET_PAL_L2 0x0a
67#define PHILIPS_SET_PAL_L 0x0b
68
69/* system switching for Philips FI1216MF MK2
70 from datasheet "1996 Jul 09",
71 standard BG L L'
72 picture carrier 38.90 38.90 33.95
73 colour 34.47 34.37 38.38
74 sound 1 33.40 32.40 40.45
75 sound 2 33.16 - -
76 NICAM 33.05 33.05 39.80
77 */
Mauro Carvalho Chehabc57032d2007-05-21 11:39:21 -030078#define PHILIPS_MF_SET_STD_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
79#define PHILIPS_MF_SET_STD_L 0x03 /* Used on Secam France */
80#define PHILIPS_MF_SET_STD_LC 0x02 /* Used on SECAM L' */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070082/* Control byte */
83
84#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
85#define TUNER_RATIO_SELECT_50 0x00
86#define TUNER_RATIO_SELECT_32 0x02
87#define TUNER_RATIO_SELECT_166 0x04
88#define TUNER_RATIO_SELECT_62 0x06
89
90#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
91
92/* Status byte */
93
94#define TUNER_POR 0x80
95#define TUNER_FL 0x40
96#define TUNER_MODE 0x38
97#define TUNER_AFC 0x07
98#define TUNER_SIGNAL 0x07
99#define TUNER_STEREO 0x10
100
101#define TUNER_PLL_LOCKED 0x40
102#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Michael Krufky62325492008-04-22 14:45:52 -0300104static DEFINE_MUTEX(tuner_simple_list_mutex);
105static LIST_HEAD(hybrid_tuner_instance_list);
106
Michael Krufky6b1dde92007-08-11 15:42:12 -0300107struct tuner_simple_priv {
Michael Krufky65511612008-04-22 14:46:12 -0300108 unsigned int nr;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300109 u16 last_div;
Michael Krufky62325492008-04-22 14:45:52 -0300110
Michael Krufkydb8a6952007-08-21 01:24:42 -0300111 struct tuner_i2c_props i2c_props;
Michael Krufky62325492008-04-22 14:45:52 -0300112 struct list_head hybrid_tuner_instance_list;
Michael Krufky4adad282007-08-27 21:59:08 -0300113
114 unsigned int type;
115 struct tunertype *tun;
116
117 u32 frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300118 u32 bandwidth;
Hans Verkuildfc2e122013-04-06 04:41:29 -0300119 bool radio_mode;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300120};
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/* ---------------------------------------------------------------------- */
123
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300124static int tuner_read_status(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Michael Krufky4adad282007-08-27 21:59:08 -0300126 struct tuner_simple_priv *priv = fe->tuner_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 unsigned char byte;
128
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300129 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return byte;
133}
134
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300135static inline int tuner_signal(const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300137 return (status & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300140static inline int tuner_stereo(const int type, const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300142 switch (type) {
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300143 case TUNER_PHILIPS_FM1216ME_MK3:
144 case TUNER_PHILIPS_FM1236_MK3:
145 case TUNER_PHILIPS_FM1256_IH3:
146 case TUNER_LG_NTSC_TAPE:
Mauro Carvalho Chehab8f2b7b72008-08-05 10:11:25 -0300147 case TUNER_TCL_MF02GIP_5N:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300148 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
Dmitri Belimov5bc53a92009-08-26 22:06:28 -0300149 case TUNER_PHILIPS_FM1216MK5:
150 return status | TUNER_STEREO;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300151 default:
152 return status & TUNER_STEREO;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700153 }
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300154}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700155
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300156static inline int tuner_islocked(const int status)
157{
158 return (status & TUNER_FL);
159}
160
161static inline int tuner_afcstatus(const int status)
162{
163 return (status & TUNER_AFC) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Michael Krufky4adad282007-08-27 21:59:08 -0300167static int simple_get_status(struct dvb_frontend *fe, u32 *status)
168{
169 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300170 int tuner_status;
171
172 if (priv->i2c_props.adap == NULL)
173 return -EINVAL;
174
175 tuner_status = tuner_read_status(fe);
Michael Krufky4adad282007-08-27 21:59:08 -0300176
177 *status = 0;
178
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300179 if (tuner_islocked(tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300180 *status = TUNER_STATUS_LOCKED;
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300181 if (tuner_stereo(priv->type, tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300182 *status |= TUNER_STATUS_STEREO;
183
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300184 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
185
186 return 0;
187}
188
189static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
190{
191 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300192 int signal;
193
Hans Verkuildfc2e122013-04-06 04:41:29 -0300194 if (priv->i2c_props.adap == NULL || !priv->radio_mode)
Michael Krufkya81df362008-04-22 14:45:52 -0300195 return -EINVAL;
196
197 signal = tuner_signal(tuner_read_status(fe));
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300198
199 *strength = signal;
200
201 tuner_dbg("Signal strength: %d\n", signal);
Michael Krufky4adad282007-08-27 21:59:08 -0300202
203 return 0;
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* ---------------------------------------------------------------------- */
207
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300208static inline char *tuner_param_name(enum param_type type)
209{
210 char *name;
211
212 switch (type) {
213 case TUNER_PARAM_TYPE_RADIO:
214 name = "radio";
215 break;
216 case TUNER_PARAM_TYPE_PAL:
217 name = "pal";
218 break;
219 case TUNER_PARAM_TYPE_SECAM:
220 name = "secam";
221 break;
222 case TUNER_PARAM_TYPE_NTSC:
223 name = "ntsc";
224 break;
Michael Krufky62325492008-04-22 14:45:52 -0300225 case TUNER_PARAM_TYPE_DIGITAL:
226 name = "digital";
227 break;
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300228 default:
229 name = "unknown";
230 break;
231 }
232 return name;
233}
234
235static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
236 enum param_type desired_type)
237{
238 struct tuner_simple_priv *priv = fe->tuner_priv;
239 struct tunertype *tun = priv->tun;
240 int i;
241
242 for (i = 0; i < tun->count; i++)
243 if (desired_type == tun->params[i].type)
244 break;
245
246 /* use default tuner params if desired_type not available */
247 if (i == tun->count) {
248 tuner_dbg("desired params (%s) undefined for tuner %d\n",
249 tuner_param_name(desired_type), priv->type);
250 i = 0;
251 }
252
253 tuner_dbg("using tuner params #%d (%s)\n", i,
254 tuner_param_name(tun->params[i].type));
255
256 return &tun->params[i];
257}
258
259static int simple_config_lookup(struct dvb_frontend *fe,
260 struct tuner_params *t_params,
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300261 unsigned *frequency, u8 *config, u8 *cb)
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300262{
263 struct tuner_simple_priv *priv = fe->tuner_priv;
264 int i;
265
266 for (i = 0; i < t_params->count; i++) {
267 if (*frequency > t_params->ranges[i].limit)
268 continue;
269 break;
270 }
271 if (i == t_params->count) {
272 tuner_dbg("frequency out of range (%d > %d)\n",
273 *frequency, t_params->ranges[i - 1].limit);
274 *frequency = t_params->ranges[--i].limit;
275 }
276 *config = t_params->ranges[i].config;
277 *cb = t_params->ranges[i].cb;
278
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200279 tuner_dbg("freq = %d.%02d (%d), range = %d, config = 0x%02x, cb = 0x%02x\n",
Michael Krufky7f8447d2008-04-22 14:41:49 -0300280 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
281 i, *config, *cb);
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300282
283 return i;
284}
285
286/* ---------------------------------------------------------------------- */
287
Michael Krufky02f5f442008-04-22 14:45:55 -0300288static void simple_set_rf_input(struct dvb_frontend *fe,
289 u8 *config, u8 *cb, unsigned int rf)
290{
291 struct tuner_simple_priv *priv = fe->tuner_priv;
292
293 switch (priv->type) {
294 case TUNER_PHILIPS_TUV1236D:
295 switch (rf) {
296 case 1:
297 *cb |= 0x08;
298 break;
299 default:
300 *cb &= ~0x08;
301 break;
302 }
303 break;
Michael Krufkyab8b8702008-04-22 14:46:05 -0300304 case TUNER_PHILIPS_FCV1236D:
Michael Krufky02f5f442008-04-22 14:45:55 -0300305 switch (rf) {
306 case 1:
307 *cb |= 0x01;
308 break;
309 default:
310 *cb &= ~0x01;
311 break;
312 }
313 break;
314 default:
315 break;
316 }
317}
318
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300319static int simple_std_setup(struct dvb_frontend *fe,
320 struct analog_parameters *params,
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300321 u8 *config, u8 *cb)
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300322{
323 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300324 int rc;
325
326 /* tv norm specific stuff for multi-norm tuners */
327 switch (priv->type) {
328 case TUNER_PHILIPS_SECAM: /* FI1216MF */
329 /* 0x01 -> ??? no change ??? */
330 /* 0x02 -> PAL BDGHI / SECAM L */
331 /* 0x04 -> ??? PAL others / SECAM others ??? */
332 *cb &= ~0x03;
333 if (params->std & V4L2_STD_SECAM_L)
334 /* also valid for V4L2_STD_SECAM */
335 *cb |= PHILIPS_MF_SET_STD_L;
336 else if (params->std & V4L2_STD_SECAM_LC)
337 *cb |= PHILIPS_MF_SET_STD_LC;
338 else /* V4L2_STD_B|V4L2_STD_GH */
339 *cb |= PHILIPS_MF_SET_STD_BG;
340 break;
341
342 case TUNER_TEMIC_4046FM5:
343 *cb &= ~0x0f;
344
345 if (params->std & V4L2_STD_PAL_BG) {
346 *cb |= TEMIC_SET_PAL_BG;
347
348 } else if (params->std & V4L2_STD_PAL_I) {
349 *cb |= TEMIC_SET_PAL_I;
350
351 } else if (params->std & V4L2_STD_PAL_DK) {
352 *cb |= TEMIC_SET_PAL_DK;
353
354 } else if (params->std & V4L2_STD_SECAM_L) {
355 *cb |= TEMIC_SET_PAL_L;
356
357 }
358 break;
359
360 case TUNER_PHILIPS_FQ1216ME:
361 *cb &= ~0x0f;
362
363 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
364 *cb |= PHILIPS_SET_PAL_BGDK;
365
366 } else if (params->std & V4L2_STD_PAL_I) {
367 *cb |= PHILIPS_SET_PAL_I;
368
369 } else if (params->std & V4L2_STD_SECAM_L) {
370 *cb |= PHILIPS_SET_PAL_L;
371
372 }
373 break;
374
Michael Krufkyab8b8702008-04-22 14:46:05 -0300375 case TUNER_PHILIPS_FCV1236D:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300376 /* 0x00 -> ATSC antenna input 1 */
377 /* 0x01 -> ATSC antenna input 2 */
378 /* 0x02 -> NTSC antenna input 1 */
379 /* 0x03 -> NTSC antenna input 2 */
380 *cb &= ~0x03;
381 if (!(params->std & V4L2_STD_ATSC))
382 *cb |= 2;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300383 break;
384
385 case TUNER_MICROTUNE_4042FI5:
386 /* Set the charge pump for fast tuning */
387 *config |= TUNER_CHARGE_PUMP;
388 break;
389
390 case TUNER_PHILIPS_TUV1236D:
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300391 {
Mauro Carvalho Chehabef88f2b2009-02-13 08:24:34 -0300392 struct tuner_i2c_props i2c = priv->i2c_props;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300393 /* 0x40 -> ATSC antenna input 1 */
394 /* 0x48 -> ATSC antenna input 2 */
395 /* 0x00 -> NTSC antenna input 1 */
396 /* 0x08 -> NTSC antenna input 2 */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300397 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300398 *cb &= ~0x40;
399 if (params->std & V4L2_STD_ATSC) {
400 *cb |= 0x40;
401 buffer[1] = 0x04;
402 }
403 /* set to the correct mode (analog or digital) */
Mauro Carvalho Chehabef88f2b2009-02-13 08:24:34 -0300404 i2c.addr = 0x0a;
405 rc = tuner_i2c_xfer_send(&i2c, &buffer[0], 2);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300406 if (2 != rc)
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200407 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",
408 rc);
Mauro Carvalho Chehabef88f2b2009-02-13 08:24:34 -0300409 rc = tuner_i2c_xfer_send(&i2c, &buffer[2], 2);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300410 if (2 != rc)
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200411 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",
412 rc);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300413 break;
414 }
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300415 }
Michael Krufky65511612008-04-22 14:46:12 -0300416 if (atv_input[priv->nr])
417 simple_set_rf_input(fe, config, cb, atv_input[priv->nr]);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300418
419 return 0;
420}
421
Andy Walls5ddc9b12009-06-07 21:39:03 -0300422static int simple_set_aux_byte(struct dvb_frontend *fe, u8 config, u8 aux)
423{
424 struct tuner_simple_priv *priv = fe->tuner_priv;
425 int rc;
426 u8 buffer[2];
427
428 buffer[0] = (config & ~0x38) | 0x18;
429 buffer[1] = aux;
430
431 tuner_dbg("setting aux byte: 0x%02x 0x%02x\n", buffer[0], buffer[1]);
432
433 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
434 if (2 != rc)
435 tuner_warn("i2c i/o error: rc == %d (should be 2)\n", rc);
436
437 return rc == 2 ? 0 : rc;
438}
439
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300440static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
441 u16 div, u8 config, u8 cb)
442{
443 struct tuner_simple_priv *priv = fe->tuner_priv;
444 int rc;
445
446 switch (priv->type) {
447 case TUNER_LG_TDVS_H06XF:
Andy Walls5ddc9b12009-06-07 21:39:03 -0300448 simple_set_aux_byte(fe, config, 0x20);
449 break;
450 case TUNER_PHILIPS_FQ1216LME_MK3:
451 simple_set_aux_byte(fe, config, 0x60); /* External AGC */
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300452 break;
453 case TUNER_MICROTUNE_4042FI5:
454 {
455 /* FIXME - this may also work for other tuners */
456 unsigned long timeout = jiffies + msecs_to_jiffies(1);
457 u8 status_byte = 0;
458
459 /* Wait until the PLL locks */
460 for (;;) {
461 if (time_after(jiffies, timeout))
462 return 0;
463 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
464 &status_byte, 1);
465 if (1 != rc) {
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200466 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",
467 rc);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300468 break;
469 }
470 if (status_byte & TUNER_PLL_LOCKED)
471 break;
472 udelay(10);
473 }
474
475 /* Set the charge pump for optimized phase noise figure */
476 config &= ~TUNER_CHARGE_PUMP;
477 buffer[0] = (div>>8) & 0x7f;
478 buffer[1] = div & 0xff;
479 buffer[2] = config;
480 buffer[3] = cb;
481 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
482 buffer[0], buffer[1], buffer[2], buffer[3]);
483
484 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
485 if (4 != rc)
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200486 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",
487 rc);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300488 break;
489 }
490 }
491
492 return 0;
493}
494
495static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
496{
497 struct tuner_simple_priv *priv = fe->tuner_priv;
498
499 switch (priv->type) {
500 case TUNER_TENA_9533_DI:
501 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200502 tuner_dbg("This tuner doesn't have FM. Most cards have a TEA5767 for FM\n");
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300503 return 0;
504 case TUNER_PHILIPS_FM1216ME_MK3:
505 case TUNER_PHILIPS_FM1236_MK3:
506 case TUNER_PHILIPS_FMD1216ME_MK3:
Darron Broad953cafc2008-10-15 14:14:30 -0300507 case TUNER_PHILIPS_FMD1216MEX_MK3:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300508 case TUNER_LG_NTSC_TAPE:
509 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehab8f2b7b72008-08-05 10:11:25 -0300510 case TUNER_TCL_MF02GIP_5N:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300511 buffer[3] = 0x19;
512 break;
Dmitri Belimov5bc53a92009-08-26 22:06:28 -0300513 case TUNER_PHILIPS_FM1216MK5:
514 buffer[2] = 0x88;
515 buffer[3] = 0x09;
516 break;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300517 case TUNER_TNF_5335MF:
518 buffer[3] = 0x11;
519 break;
520 case TUNER_LG_PAL_FM:
521 buffer[3] = 0xa5;
522 break;
523 case TUNER_THOMSON_DTT761X:
524 buffer[3] = 0x39;
525 break;
Andy Walls5ddc9b12009-06-07 21:39:03 -0300526 case TUNER_PHILIPS_FQ1216LME_MK3:
Andy Walls095c2472010-06-12 20:20:36 -0300527 case TUNER_PHILIPS_FQ1236_MK5:
Andy Walls5ddc9b12009-06-07 21:39:03 -0300528 tuner_err("This tuner doesn't have FM\n");
529 /* Set the low band for sanity, since it covers 88-108 MHz */
530 buffer[3] = 0x01;
531 break;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300532 case TUNER_MICROTUNE_4049FM5:
533 default:
534 buffer[3] = 0xa4;
535 break;
536 }
537
538 return 0;
539}
540
541/* ---------------------------------------------------------------------- */
542
Michael Krufky4adad282007-08-27 21:59:08 -0300543static int simple_set_tv_freq(struct dvb_frontend *fe,
544 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Michael Krufky4adad282007-08-27 21:59:08 -0300546 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300547 u8 config, cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 u16 div;
Hans Verkuil27487d42006-01-15 15:04:52 -0200549 u8 buffer[4];
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300550 int rc, IFPCoff, i;
Michael Krufky476d63d2006-02-07 06:25:34 -0200551 enum param_type desired_type;
Michael Krufky4adad282007-08-27 21:59:08 -0300552 struct tuner_params *t_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Michael Krufky5f594182006-02-07 06:25:33 -0200554 /* IFPCoff = Video Intermediate Frequency - Vif:
555 940 =16*58.75 NTSC/J (Japan)
556 732 =16*45.75 M/N STD
557 704 =16*44 ATSC (at DVB code)
558 632 =16*39.50 I U.K.
559 622.4=16*38.90 B/G D/K I, L STD
560 592 =16*37.00 D China
561 590 =16.36.875 B Australia
562 543.2=16*33.95 L' STD
563 171.2=16*10.70 FM Radio (at set_radio_freq)
564 */
565
Michael Krufky4adad282007-08-27 21:59:08 -0300566 if (params->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200567 IFPCoff = 940;
568 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300569 } else if ((params->std & V4L2_STD_MN) &&
570 !(params->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200571 IFPCoff = 732;
572 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300573 } else if (params->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200574 IFPCoff = 543;
575 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200576 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200577 IFPCoff = 623;
578 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200579 }
580
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300581 t_params = simple_tuner_params(fe, desired_type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200582
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300583 i = simple_config_lookup(fe, t_params, &params->frequency,
584 &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300586 div = params->frequency + IFPCoff + offset;
Michael Krufky5f594182006-02-07 06:25:33 -0200587
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200588 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300589 params->frequency / 16, params->frequency % 16 * 100 / 16,
590 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
591 offset / 16, offset % 16 * 100 / 16, div);
Michael Krufky5f594182006-02-07 06:25:33 -0200592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /* tv norm specific stuff for multi-norm tuners */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300594 simple_std_setup(fe, params, &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Michael Krufky4adad282007-08-27 21:59:08 -0300596 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200597 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200598 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 buffer[2] = (div>>8) & 0x7f;
600 buffer[3] = div & 0xff;
601 } else {
602 buffer[0] = (div>>8) & 0x7f;
603 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200604 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200605 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Michael Krufky6b1dde92007-08-11 15:42:12 -0300607 priv->last_div = div;
Michael Krufky4adad282007-08-27 21:59:08 -0300608 if (t_params->has_tda9887) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300609 struct v4l2_priv_tun_config tda9887_cfg;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300610 int tda_config = 0;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300611 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
612 V4L2_STD_SECAM_LC)) &&
613 !(params->std & ~(V4L2_STD_SECAM_L |
614 V4L2_STD_SECAM_LC));
Hans Verkuilba8fc392006-06-25 15:34:39 -0300615
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300616 tda9887_cfg.tuner = TUNER_TDA9887;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300617 tda9887_cfg.priv = &tda_config;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300618
Michael Krufky4adad282007-08-27 21:59:08 -0300619 if (params->std == V4L2_STD_SECAM_LC) {
620 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300621 tda_config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300622 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300623 tda_config |= TDA9887_PORT2_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300624 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300625 if (t_params->port1_active)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300626 tda_config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300627 if (t_params->port2_active)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300628 tda_config |= TDA9887_PORT2_ACTIVE;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300629 }
Michael Krufky4adad282007-08-27 21:59:08 -0300630 if (t_params->intercarrier_mode)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300631 tda_config |= TDA9887_INTERCARRIER;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300632 if (is_secam_l) {
Michael Krufky4adad282007-08-27 21:59:08 -0300633 if (i == 0 && t_params->default_top_secam_low)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300634 tda_config |= TDA9887_TOP(t_params->default_top_secam_low);
Michael Krufky4adad282007-08-27 21:59:08 -0300635 else if (i == 1 && t_params->default_top_secam_mid)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300636 tda_config |= TDA9887_TOP(t_params->default_top_secam_mid);
Michael Krufky4adad282007-08-27 21:59:08 -0300637 else if (t_params->default_top_secam_high)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300638 tda_config |= TDA9887_TOP(t_params->default_top_secam_high);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300639 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300640 if (i == 0 && t_params->default_top_low)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300641 tda_config |= TDA9887_TOP(t_params->default_top_low);
Michael Krufky4adad282007-08-27 21:59:08 -0300642 else if (i == 1 && t_params->default_top_mid)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300643 tda_config |= TDA9887_TOP(t_params->default_top_mid);
Michael Krufky4adad282007-08-27 21:59:08 -0300644 else if (t_params->default_top_high)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300645 tda_config |= TDA9887_TOP(t_params->default_top_high);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300646 }
Michael Krufky4adad282007-08-27 21:59:08 -0300647 if (t_params->default_pll_gating_18)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300648 tda_config |= TDA9887_GATING_18;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300649 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
650 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300653 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300655 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
656 if (4 != rc)
657 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300659 simple_post_tune(fe, &buffer[0], div, config, cb);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300660
Michael Krufky4adad282007-08-27 21:59:08 -0300661 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Michael Krufky4adad282007-08-27 21:59:08 -0300664static int simple_set_radio_freq(struct dvb_frontend *fe,
665 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 struct tunertype *tun;
Michael Krufky4adad282007-08-27 21:59:08 -0300668 struct tuner_simple_priv *priv = fe->tuner_priv;
Hans Verkuil27487d42006-01-15 15:04:52 -0200669 u8 buffer[4];
670 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200671 int rc, j;
Michael Krufky4adad282007-08-27 21:59:08 -0300672 struct tuner_params *t_params;
673 unsigned int freq = params->frequency;
Maciej S. Szmigiero010b8762018-07-02 17:23:24 -0400674 bool mono = params->audmode == V4L2_TUNER_MODE_MONO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Michael Krufky4adad282007-08-27 21:59:08 -0300676 tun = priv->tun;
Michael Krufky476d63d2006-02-07 06:25:34 -0200677
Trent Piepho5e082f12007-08-03 18:32:38 -0300678 for (j = tun->count-1; j > 0; j--)
679 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
680 break;
Michael Krufky4adad282007-08-27 21:59:08 -0300681 /* default t_params (j=0) will be used if desired type wasn't found */
682 t_params = &tun->params[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Trent Piepho5e082f12007-08-03 18:32:38 -0300684 /* Select Radio 1st IF used */
Michael Krufky4adad282007-08-27 21:59:08 -0300685 switch (t_params->radio_if) {
Trent Piepho5e082f12007-08-03 18:32:38 -0300686 case 0: /* 10.7 MHz */
687 freq += (unsigned int)(10.7*16000);
688 break;
689 case 1: /* 33.3 MHz */
690 freq += (unsigned int)(33.3*16000);
691 break;
692 case 2: /* 41.3 MHz */
693 freq += (unsigned int)(41.3*16000);
694 break;
695 default:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300696 tuner_warn("Unsupported radio_if value %d\n",
697 t_params->radio_if);
Michael Krufky4adad282007-08-27 21:59:08 -0300698 return 0;
Trent Piepho5e082f12007-08-03 18:32:38 -0300699 }
700
Michael Krufky4adad282007-08-27 21:59:08 -0300701 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
Trent Piepho5e082f12007-08-03 18:32:38 -0300702 TUNER_RATIO_SELECT_50; /* 50 kHz step */
703
Dmitri Belimov436ae132009-05-24 22:22:41 -0300704 /* Bandswitch byte */
705 simple_radio_bandswitch(fe, &buffer[0]);
706
Trent Piepho5e082f12007-08-03 18:32:38 -0300707 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
708 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
709 freq * (1/800) */
710 div = (freq + 400) / 800;
711
Michael Krufky4adad282007-08-27 21:59:08 -0300712 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200713 buffer[0] = buffer[2];
714 buffer[1] = buffer[3];
715 buffer[2] = (div>>8) & 0x7f;
716 buffer[3] = div & 0xff;
717 } else {
718 buffer[0] = (div>>8) & 0x7f;
719 buffer[1] = div & 0xff;
720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300723 buffer[0], buffer[1], buffer[2], buffer[3]);
Michael Krufky6b1dde92007-08-11 15:42:12 -0300724 priv->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Michael Krufky4adad282007-08-27 21:59:08 -0300726 if (t_params->has_tda9887) {
Hans Verkuilba8fc392006-06-25 15:34:39 -0300727 int config = 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300728 struct v4l2_priv_tun_config tda9887_cfg;
729
730 tda9887_cfg.tuner = TUNER_TDA9887;
731 tda9887_cfg.priv = &config;
732
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300733 if (t_params->port1_active &&
734 !t_params->port1_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300735 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300736 if (t_params->port2_active &&
737 !t_params->port2_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300738 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300739 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300740 config |= TDA9887_INTERCARRIER;
Maciej S. Szmigiero010b8762018-07-02 17:23:24 -0400741 if (t_params->port1_set_for_fm_mono && mono)
742 config &= ~TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300743 if (t_params->fm_gain_normal)
Mauro Carvalho Chehab483deb02006-12-04 08:31:38 -0300744 config |= TDA9887_GAIN_NORMAL;
Michael Krufky4adad282007-08-27 21:59:08 -0300745 if (t_params->radio_if == 2)
Trent Piepho5e082f12007-08-03 18:32:38 -0300746 config |= TDA9887_RIF_41_3;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300747 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300748 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300749 }
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300750 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
751 if (4 != rc)
752 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Michael Krufky4adad282007-08-27 21:59:08 -0300753
Dmitri Belimovfabade52009-04-23 01:40:46 -0300754 /* Write AUX byte */
755 switch (priv->type) {
756 case TUNER_PHILIPS_FM1216ME_MK3:
757 buffer[2] = 0x98;
758 buffer[3] = 0x20; /* set TOP AGC */
759 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
760 if (4 != rc)
761 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
762 break;
763 }
764
Michael Krufky4adad282007-08-27 21:59:08 -0300765 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Michael Krufky4adad282007-08-27 21:59:08 -0300768static int simple_set_params(struct dvb_frontend *fe,
769 struct analog_parameters *params)
Michael Krufky6b1dde92007-08-11 15:42:12 -0300770{
Michael Krufky4adad282007-08-27 21:59:08 -0300771 struct tuner_simple_priv *priv = fe->tuner_priv;
772 int ret = -EINVAL;
773
Michael Krufkya81df362008-04-22 14:45:52 -0300774 if (priv->i2c_props.adap == NULL)
775 return -EINVAL;
776
Michael Krufky4adad282007-08-27 21:59:08 -0300777 switch (params->mode) {
778 case V4L2_TUNER_RADIO:
Hans Verkuildfc2e122013-04-06 04:41:29 -0300779 priv->radio_mode = true;
Michael Krufky4adad282007-08-27 21:59:08 -0300780 ret = simple_set_radio_freq(fe, params);
781 priv->frequency = params->frequency * 125 / 2;
782 break;
783 case V4L2_TUNER_ANALOG_TV:
784 case V4L2_TUNER_DIGITAL_TV:
Hans Verkuildfc2e122013-04-06 04:41:29 -0300785 priv->radio_mode = false;
Michael Krufky4adad282007-08-27 21:59:08 -0300786 ret = simple_set_tv_freq(fe, params);
787 priv->frequency = params->frequency * 62500;
788 break;
789 }
Michael Krufky62325492008-04-22 14:45:52 -0300790 priv->bandwidth = 0;
Michael Krufky4adad282007-08-27 21:59:08 -0300791
792 return ret;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300793}
794
Michael Krufky23a88102008-04-22 14:45:53 -0300795static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300796 const u32 delsys,
797 const u32 frequency,
798 const u32 bandwidth)
Michael Krufky23a88102008-04-22 14:45:53 -0300799{
800 struct tuner_simple_priv *priv = fe->tuner_priv;
801
802 switch (priv->type) {
803 case TUNER_PHILIPS_FMD1216ME_MK3:
Darron Broad953cafc2008-10-15 14:14:30 -0300804 case TUNER_PHILIPS_FMD1216MEX_MK3:
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300805 if (bandwidth == 8000000 &&
806 frequency >= 158870000)
Michael Krufky23a88102008-04-22 14:45:53 -0300807 buf[3] |= 0x08;
808 break;
Michael Krufky0e5d3832008-04-22 14:45:56 -0300809 case TUNER_PHILIPS_TD1316:
810 /* determine band */
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300811 buf[3] |= (frequency < 161000000) ? 1 :
812 (frequency < 444000000) ? 2 : 4;
Michael Krufky0e5d3832008-04-22 14:45:56 -0300813
814 /* setup PLL filter */
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300815 if (bandwidth == 8000000)
Michael Krufky0e5d3832008-04-22 14:45:56 -0300816 buf[3] |= 1 << 3;
817 break;
Michael Krufky02f5f442008-04-22 14:45:55 -0300818 case TUNER_PHILIPS_TUV1236D:
Michael Krufkyab8b8702008-04-22 14:46:05 -0300819 case TUNER_PHILIPS_FCV1236D:
Michael Krufky02f5f442008-04-22 14:45:55 -0300820 {
821 unsigned int new_rf;
822
Michael Krufky65511612008-04-22 14:46:12 -0300823 if (dtv_input[priv->nr])
824 new_rf = dtv_input[priv->nr];
825 else
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300826 switch (delsys) {
827 case SYS_DVBC_ANNEX_B:
Michael Krufky65511612008-04-22 14:46:12 -0300828 new_rf = 1;
829 break;
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300830 case SYS_ATSC:
Michael Krufky65511612008-04-22 14:46:12 -0300831 default:
832 new_rf = 0;
833 break;
834 }
Michael Krufky02f5f442008-04-22 14:45:55 -0300835 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
836 break;
837 }
Michael Krufky23a88102008-04-22 14:45:53 -0300838 default:
839 break;
840 }
841}
842
Michael Krufkya2a7f842008-04-22 14:45:56 -0300843static u32 simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300844 const u32 delsys,
845 const u32 freq,
846 const u32 bw)
Michael Krufky62325492008-04-22 14:45:52 -0300847{
Michael Krufkya2a7f842008-04-22 14:45:56 -0300848 /* This function returns the tuned frequency on success, 0 on error */
Michael Krufky62325492008-04-22 14:45:52 -0300849 struct tuner_simple_priv *priv = fe->tuner_priv;
850 struct tunertype *tun = priv->tun;
Gustavo A. R. Silva6ad33de2017-07-05 14:23:55 -0400851 struct tuner_params *t_params;
Michael Krufky62325492008-04-22 14:45:52 -0300852 u8 config, cb;
853 u32 div;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300854 int ret;
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300855 u32 frequency = freq / 62500;
Michael Krufky62325492008-04-22 14:45:52 -0300856
Michael Krufky6b550092009-01-02 15:55:29 -0300857 if (!tun->stepsize) {
858 /* tuner-core was loaded before the digital tuner was
859 * configured and somehow picked the wrong tuner type */
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200860 tuner_err("attempt to treat tuner %d (%s) as digital tuner without stepsize defined.\n",
Michael Krufky6b550092009-01-02 15:55:29 -0300861 priv->type, priv->tun->name);
862 return 0; /* failure */
863 }
864
Michael Krufky62325492008-04-22 14:45:52 -0300865 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
866 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
867 if (ret < 0)
Michael Krufkya2a7f842008-04-22 14:45:56 -0300868 return 0; /* failure */
Michael Krufky62325492008-04-22 14:45:52 -0300869
870 div = ((frequency + t_params->iffreq) * 62500 + offset +
871 tun->stepsize/2) / tun->stepsize;
872
873 buf[0] = div >> 8;
874 buf[1] = div & 0xff;
875 buf[2] = config;
876 buf[3] = cb;
877
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300878 simple_set_dvb(fe, buf, delsys, freq, bw);
Michael Krufky23a88102008-04-22 14:45:53 -0300879
Michael Krufky62325492008-04-22 14:45:52 -0300880 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
881 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
882
883 /* calculate the frequency we set it to */
884 return (div * tun->stepsize) - t_params->iffreq;
885}
886
887static int simple_dvb_calc_regs(struct dvb_frontend *fe,
Michael Krufky62325492008-04-22 14:45:52 -0300888 u8 *buf, int buf_len)
889{
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300890 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
891 u32 delsys = c->delivery_system;
892 u32 bw = c->bandwidth_hz;
Michael Krufky62325492008-04-22 14:45:52 -0300893 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufky62325492008-04-22 14:45:52 -0300894 u32 frequency;
895
896 if (buf_len < 5)
897 return -EINVAL;
898
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300899 frequency = simple_dvb_configure(fe, buf+1, delsys, c->frequency, bw);
Michael Krufkya2a7f842008-04-22 14:45:56 -0300900 if (frequency == 0)
901 return -EINVAL;
Michael Krufky62325492008-04-22 14:45:52 -0300902
903 buf[0] = priv->i2c_props.addr;
904
905 priv->frequency = frequency;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300906 priv->bandwidth = c->bandwidth_hz;
Michael Krufky62325492008-04-22 14:45:52 -0300907
908 return 5;
909}
910
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300911static int simple_dvb_set_params(struct dvb_frontend *fe)
Michael Krufky62325492008-04-22 14:45:52 -0300912{
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300913 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
914 u32 delsys = c->delivery_system;
915 u32 bw = c->bandwidth_hz;
916 u32 freq = c->frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300917 struct tuner_simple_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300918 u32 frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300919 u32 prev_freq, prev_bw;
920 int ret;
921 u8 buf[5];
922
923 if (priv->i2c_props.adap == NULL)
924 return -EINVAL;
925
926 prev_freq = priv->frequency;
927 prev_bw = priv->bandwidth;
928
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300929 frequency = simple_dvb_configure(fe, buf+1, delsys, freq, bw);
930 if (frequency == 0)
931 return -EINVAL;
932
933 buf[0] = priv->i2c_props.addr;
934
935 priv->frequency = frequency;
936 priv->bandwidth = bw;
Michael Krufky62325492008-04-22 14:45:52 -0300937
938 /* put analog demod in standby when tuning digital */
939 if (fe->ops.analog_ops.standby)
940 fe->ops.analog_ops.standby(fe);
941
942 if (fe->ops.i2c_gate_ctrl)
943 fe->ops.i2c_gate_ctrl(fe, 1);
944
945 /* buf[0] contains the i2c address, but *
946 * we already have it in i2c_props.addr */
947 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
948 if (ret != 4)
949 goto fail;
950
951 return 0;
952fail:
953 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
954 priv->frequency = prev_freq;
955 priv->bandwidth = prev_bw;
956
957 return ret;
958}
Michael Krufky4adad282007-08-27 21:59:08 -0300959
Michael Krufky6f4a5722008-04-22 14:45:53 -0300960static int simple_init(struct dvb_frontend *fe)
961{
962 struct tuner_simple_priv *priv = fe->tuner_priv;
963
964 if (priv->i2c_props.adap == NULL)
965 return -EINVAL;
966
967 if (priv->tun->initdata) {
968 int ret;
969
970 if (fe->ops.i2c_gate_ctrl)
971 fe->ops.i2c_gate_ctrl(fe, 1);
972
973 ret = tuner_i2c_xfer_send(&priv->i2c_props,
974 priv->tun->initdata + 1,
975 priv->tun->initdata[0]);
976 if (ret != priv->tun->initdata[0])
977 return ret;
978 }
979
980 return 0;
981}
982
983static int simple_sleep(struct dvb_frontend *fe)
984{
985 struct tuner_simple_priv *priv = fe->tuner_priv;
986
987 if (priv->i2c_props.adap == NULL)
988 return -EINVAL;
989
990 if (priv->tun->sleepdata) {
991 int ret;
992
993 if (fe->ops.i2c_gate_ctrl)
994 fe->ops.i2c_gate_ctrl(fe, 1);
995
996 ret = tuner_i2c_xfer_send(&priv->i2c_props,
997 priv->tun->sleepdata + 1,
998 priv->tun->sleepdata[0]);
999 if (ret != priv->tun->sleepdata[0])
1000 return ret;
1001 }
1002
1003 return 0;
1004}
1005
Max Kellermann194ced72016-08-09 18:32:31 -03001006static void simple_release(struct dvb_frontend *fe)
Michael Krufky4adad282007-08-27 21:59:08 -03001007{
Michael Krufky62325492008-04-22 14:45:52 -03001008 struct tuner_simple_priv *priv = fe->tuner_priv;
1009
1010 mutex_lock(&tuner_simple_list_mutex);
1011
1012 if (priv)
1013 hybrid_tuner_release_state(priv);
1014
1015 mutex_unlock(&tuner_simple_list_mutex);
1016
Michael Krufky4adad282007-08-27 21:59:08 -03001017 fe->tuner_priv = NULL;
Michael Krufky4adad282007-08-27 21:59:08 -03001018}
1019
1020static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
1021{
1022 struct tuner_simple_priv *priv = fe->tuner_priv;
1023 *frequency = priv->frequency;
1024 return 0;
1025}
1026
Michael Krufky62325492008-04-22 14:45:52 -03001027static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
1028{
1029 struct tuner_simple_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehabc6f56e72011-12-26 20:02:28 -03001030 *bandwidth = priv->bandwidth;
Michael Krufky62325492008-04-22 14:45:52 -03001031 return 0;
1032}
1033
Julia Lawall96105142016-09-11 11:44:13 -03001034static const struct dvb_tuner_ops simple_tuner_ops = {
Michael Krufky6f4a5722008-04-22 14:45:53 -03001035 .init = simple_init,
1036 .sleep = simple_sleep,
Michael Krufky4adad282007-08-27 21:59:08 -03001037 .set_analog_params = simple_set_params,
Michael Krufky62325492008-04-22 14:45:52 -03001038 .set_params = simple_dvb_set_params,
1039 .calc_regs = simple_dvb_calc_regs,
Michael Krufky735f0b9a2007-08-31 16:39:39 -03001040 .release = simple_release,
1041 .get_frequency = simple_get_frequency,
Michael Krufky62325492008-04-22 14:45:52 -03001042 .get_bandwidth = simple_get_bandwidth,
Michael Krufky735f0b9a2007-08-31 16:39:39 -03001043 .get_status = simple_get_status,
1044 .get_rf_strength = simple_get_rf_strength,
Michael Krufky5d807c92007-06-06 16:17:57 -03001045};
1046
Michael Krufky4adad282007-08-27 21:59:08 -03001047struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
1048 struct i2c_adapter *i2c_adap,
1049 u8 i2c_addr,
Michael Krufky060a5bd2008-04-22 14:41:51 -03001050 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Michael Krufky6b1dde92007-08-11 15:42:12 -03001052 struct tuner_simple_priv *priv = NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001053 int instance;
Michael Krufky6b1dde92007-08-11 15:42:12 -03001054
Michael Krufky65e8d292008-04-22 14:41:50 -03001055 if (type >= tuner_count) {
1056 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001057 __func__, type, tuner_count-1);
Michael Krufky65e8d292008-04-22 14:41:50 -03001058 return NULL;
1059 }
1060
Michael Krufkye8279312008-04-22 14:46:05 -03001061 /* If i2c_adap is set, check that the tuner is at the correct address.
1062 * Otherwise, if i2c_adap is NULL, the tuner will be programmed directly
1063 * by the digital demod via calc_regs.
1064 */
1065 if (i2c_adap != NULL) {
1066 u8 b[1];
1067 struct i2c_msg msg = {
1068 .addr = i2c_addr, .flags = I2C_M_RD,
1069 .buf = b, .len = 1,
1070 };
1071
1072 if (fe->ops.i2c_gate_ctrl)
1073 fe->ops.i2c_gate_ctrl(fe, 1);
1074
1075 if (1 != i2c_transfer(i2c_adap, &msg, 1))
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001076 printk(KERN_WARNING "tuner-simple %d-%04x: unable to probe %s, proceeding anyway.",
Andy Walls3b4a9712008-05-26 01:31:17 -03001077 i2c_adapter_id(i2c_adap), i2c_addr,
1078 tuners[type].name);
Michael Krufkye8279312008-04-22 14:46:05 -03001079
1080 if (fe->ops.i2c_gate_ctrl)
1081 fe->ops.i2c_gate_ctrl(fe, 0);
1082 }
1083
Michael Krufky62325492008-04-22 14:45:52 -03001084 mutex_lock(&tuner_simple_list_mutex);
1085
1086 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
1087 hybrid_tuner_instance_list,
1088 i2c_adap, i2c_addr,
1089 "tuner-simple");
1090 switch (instance) {
1091 case 0:
1092 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufky4adad282007-08-27 21:59:08 -03001093 return NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001094 case 1:
1095 fe->tuner_priv = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Michael Krufky62325492008-04-22 14:45:52 -03001097 priv->type = type;
1098 priv->tun = &tuners[type];
Michael Krufky65511612008-04-22 14:46:12 -03001099 priv->nr = simple_devcount++;
Michael Krufky62325492008-04-22 14:45:52 -03001100 break;
1101 default:
1102 fe->tuner_priv = priv;
1103 break;
1104 }
Michael Krufky27566652008-04-22 14:41:53 -03001105
Michael Krufky62325492008-04-22 14:45:52 -03001106 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufkydb8a6952007-08-21 01:24:42 -03001107
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001108 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1109 sizeof(struct dvb_tuner_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Mauro Carvalho Chehab0b82c5d2008-12-31 09:34:18 -03001111 if (type != priv->type)
1112 tuner_warn("couldn't set type to %d. Using %d (%s) instead\n",
1113 type, priv->type, priv->tun->name);
1114 else
1115 tuner_info("type set to %d (%s)\n",
1116 priv->type, priv->tun->name);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001117
Michael Krufky65511612008-04-22 14:46:12 -03001118 if ((debug) || ((atv_input[priv->nr] > 0) ||
1119 (dtv_input[priv->nr] > 0))) {
1120 if (0 == atv_input[priv->nr])
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001121 tuner_info("tuner %d atv rf input will be autoselected\n",
1122 priv->nr);
Michael Krufky65511612008-04-22 14:46:12 -03001123 else
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001124 tuner_info("tuner %d atv rf input will be set to input %d (insmod option)\n",
Michael Krufky65511612008-04-22 14:46:12 -03001125 priv->nr, atv_input[priv->nr]);
1126 if (0 == dtv_input[priv->nr])
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001127 tuner_info("tuner %d dtv rf input will be autoselected\n",
1128 priv->nr);
Michael Krufky65511612008-04-22 14:46:12 -03001129 else
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001130 tuner_info("tuner %d dtv rf input will be set to input %d (insmod option)\n",
Michael Krufky65511612008-04-22 14:46:12 -03001131 priv->nr, dtv_input[priv->nr]);
1132 }
1133
Mauro Carvalho Chehabc0decac2018-09-10 08:19:14 -04001134 strscpy(fe->ops.tuner_ops.info.name, priv->tun->name,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001135 sizeof(fe->ops.tuner_ops.info.name));
Michael Krufky4adad282007-08-27 21:59:08 -03001136
1137 return fe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
Michael Krufky4adad282007-08-27 21:59:08 -03001139EXPORT_SYMBOL_GPL(simple_tuner_attach);
1140
1141MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1142MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1143MODULE_LICENSE("GPL");